/* ============================================
   Retainer Pitch — Gorogue × Tastee
   Tone: editorial, warm, professional
   Palette: Tastee red + cream + charcoal + gold
   ============================================ */

:root {
  /* Core palette */
  --red: #B91C1C;
  --red-deep: #8A0F0F;
  --red-soft: #E84747;
  --gold: #C99A3B;
  --gold-soft: #E5C97A;

  /* Neutrals */
  --cream: #FAF6EE;
  --cream-2: #F2EBDC;
  --beige: #E8DFC9;
  --charcoal: #1F1A17;
  --ink: #2A211C;
  --muted: #6B5F55;
  --line: rgba(31, 26, 23, 0.12);

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 14px;
  --radius-lg: 22px;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle warm paper texture using gradient */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(201, 154, 59, 0.08), transparent 60%),
    radial-gradient(900px 500px at 0% 30%, rgba(185, 28, 28, 0.05), transparent 60%);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s var(--ease), opacity .2s var(--ease);
}

img {
  max-width: 100%;
  display: block;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

em {
  font-style: italic;
  color: var(--red);
  font-family: var(--font-display);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow.accent {
  color: var(--red);
}

.eyebrow.light {
  color: var(--gold-soft);
}

.eyebrow.muted {
  opacity: 0.7;
}

.lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 18px;
}

.muted {
  color: var(--muted);
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
  color: var(--charcoal);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--red);
  color: var(--cream);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brand-sub {
  color: var(--muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--red);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: var(--cream);
  box-shadow: 0 10px 28px -12px rgba(185, 28, 28, 0.55);
}

.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px -12px rgba(138, 15, 15, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--charcoal);
  transform: translateY(-1px);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.dot {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.hero-title {
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 26px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 680px;
  margin-bottom: 38px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-num span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
  letter-spacing: 0;
}

.stat-label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* Hero image area */
.hero-image {
  margin-top: 60px;
}

.placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(31, 26, 23, 0.04) 0 2px,
      transparent 2px 14px
    ),
    linear-gradient(135deg, var(--cream-2), var(--beige));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
}

.placeholder.tall {
  aspect-ratio: 4 / 5;
}

.placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(185, 28, 28, 0.08), transparent 50%);
  pointer-events: none;
}

/* ============================================
   Sections
   ============================================ */

.section {
  padding: 100px 0;
}

.section-title {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 500;
  margin-bottom: 18px;
}

.section-title.light {
  color: var(--cream);
}

.section-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 10px;
}

.section-sub.light {
  color: rgba(250, 246, 238, 0.7);
}

.section-head {
  margin-bottom: 56px;
  max-width: 720px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head .eyebrow {
  display: block;
  margin-bottom: 14px;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.two-col.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.two-col .eyebrow {
  display: block;
  margin-bottom: 14px;
}

/* Overview */
.overview {
  padding-top: 80px;
  padding-bottom: 80px;
  border-top: 1px solid var(--line);
}

/* ============================================
   Services Grid
   ============================================ */

.services {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 18px 36px -22px rgba(31, 26, 23, 0.3);
}

.service-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  line-height: 1.25;
}

.service-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

.service-card em {
  font-size: 13.5px;
  color: var(--gold);
  font-style: italic;
}

/* ============================================
   Commitment / Hours
   ============================================ */

.commitment {
  background: var(--cream);
  padding: 110px 0;
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

.commit-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
}

.commit-card.primary {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

.commit-card.primary p,
.commit-card.primary .commit-tag {
  color: rgba(250, 246, 238, 0.78);
}

.commit-card.primary .commit-hours,
.commit-card.primary .commit-hours span {
  color: var(--cream);
}

.commit-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid currentColor;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.commit-card.primary .commit-tag {
  color: var(--gold-soft);
}

.commit-hours {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.commit-hours span {
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
  letter-spacing: 0;
}

.commit-card p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.55;
}

.footnote {
  display: block;
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--muted);
  font-style: italic;
}

/* ============================================
   Why This Approach
   ============================================ */

.why {
  background: var(--cream-2);
  padding: 110px 0;
}

.bullet-list {
  list-style: none;
  margin-top: 30px;
}

.bullet-list li {
  position: relative;
  padding: 20px 0 20px 36px;
  border-bottom: 1px solid var(--line);
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink);
}

.bullet-list li:last-child {
  border-bottom: none;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  width: 18px;
  height: 1px;
  background: var(--red);
}

.bullet-list strong {
  display: block;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
  font-size: 16.5px;
}

/* ============================================
   Daily Execution
   ============================================ */

.daily {
  background: var(--charcoal);
  color: var(--cream);
  padding: 120px 0;
}

.daily .section-head {
  text-align: left;
}

.daily-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(250, 246, 238, 0.12);
  border-left: 1px solid rgba(250, 246, 238, 0.12);
}

.daily-item {
  padding: 36px 36px;
  border-right: 1px solid rgba(250, 246, 238, 0.12);
  border-bottom: 1px solid rgba(250, 246, 238, 0.12);
  transition: background .25s var(--ease);
}

.daily-item:hover {
  background: rgba(250, 246, 238, 0.03);
}

.daily-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-soft);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.daily-item h4 {
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 10px;
  font-weight: 500;
}

.daily-item p {
  color: rgba(250, 246, 238, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   Value Section
   ============================================ */

.value {
  padding: 120px 0;
  background: var(--cream);
}

.value-card {
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 70px 70px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(138, 15, 15, 0.5);
}

.value-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 201, 122, 0.18), transparent 65%);
}

.value-card .eyebrow {
  color: var(--gold-soft);
  margin-bottom: 22px;
  display: block;
  position: relative;
}

.value-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--cream);
  margin-bottom: 32px;
  line-height: 1.15;
  position: relative;
}

.value-title em {
  color: var(--gold-soft);
}

.value-body {
  position: relative;
  font-size: 17px;
  line-height: 1.7;
}

.value-body p {
  color: rgba(250, 246, 238, 0.92);
  margin-bottom: 18px;
}

.value-body strong {
  color: var(--cream);
  font-weight: 600;
}

.value-close {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(250, 246, 238, 0.18);
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--gold-soft);
}

/* ============================================
   Investment + Next Steps
   ============================================ */

.investment {
  background: var(--cream-2);
  padding: 110px 0;
}

.invest-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 50px 44px;
  position: sticky;
  top: 100px;
}

.invest-card .eyebrow {
  display: block;
  margin-bottom: 14px;
}

.fee {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  color: var(--red);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 18px 0 14px;
}

.fee-note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.55;
}

/* Steps */
.steps {
  list-style: none;
  counter-reset: step;
  margin-top: 24px;
}

.steps li {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: none;
}

.step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--red);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  display: grid;
  place-items: center;
}

.steps h4 {
  font-size: 17px;
  margin-bottom: 4px;
  color: var(--charcoal);
  font-weight: 600;
  font-family: var(--font-body);
}

.steps p {
  font-size: 14.5px;
  color: var(--muted);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 60px 0 50px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}

.footer-brand span {
  color: var(--gold-soft);
}

.footer-tagline {
  color: rgba(250, 246, 238, 0.65);
  font-size: 15px;
  max-width: 380px;
}

.footer-meta {
  text-align: right;
  font-size: 13px;
  color: rgba(250, 246, 238, 0.65);
  line-height: 1.7;
}

.footer-meta .muted {
  opacity: 0.6;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 50px 0 40px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .two-col,
  .two-col.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .daily-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    padding: 48px 32px;
  }

  .invest-card {
    position: static;
  }

  .section {
    padding: 70px 0;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .stat-num {
    font-size: 36px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .commit-card,
  .value-card,
  .invest-card {
    padding: 36px 26px;
  }

  .commit-hours {
    font-size: 52px;
  }

  .fee {
    font-size: 52px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    text-align: left;
  }
}
