  /* ============ TOKENS ============ */
  :root {
    --cream: #F5EFE3;
    --cream-soft: #FBF7EE;
    --cream-deep: #EDE3D1;
    --espresso: #1C120A;
    --espresso-soft: #382519;
    --ink: #211611;
    --terracotta: #B5421F;
    --terracotta-deep: #8E2E12;
    --burgundy: #5B1A22;
    --gold: #B58748;
    --gold-soft: #D4B07A;
    --olive: #6B6B3A;
    --line: rgba(28, 18, 10, 0.12);
    --line-soft: rgba(28, 18, 10, 0.06);
  }

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

  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

  body {
    font-family: 'Manrope', -apple-system, sans-serif;
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
  }

  /* Subtle paper grain */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.11 0 0 0 0 0.07 0 0 0 0 0.04 0 0 0 0.09 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  }

  ::selection { background: var(--terracotta); color: var(--cream-soft); }

  .container { max-width: 1240px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }

  h1, h2, h3, h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 400;
    color: var(--espresso);
    letter-spacing: -0.02em;
    line-height: 1.05;
  }

  a { color: inherit; text-decoration: none; }

  button, .btn {
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    border: none;
    background: none;
    font-size: inherit;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    transition: all 0.35s cubic-bezier(.2,.8,.2,1);
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--espresso);
    color: var(--cream-soft);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 10px 30px -12px rgba(28,18,10,0.5);
  }
  .btn-primary:hover { background: var(--terracotta); transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(181,66,31,0.6); }
  .btn-ghost {
    background: transparent;
    color: var(--espresso);
    border: 1px solid var(--line);
  }
  .btn-ghost:hover { border-color: var(--espresso); background: var(--cream-soft); }
  .btn-cream {
    background: var(--cream-soft);
    color: var(--espresso);
  }
  .btn-cream:hover { background: var(--cream); }

  /* ============ NAV ============ */
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(245, 239, 227, 0.78);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
  }
  .nav.scrolled { border-bottom-color: var(--line); }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--espresso);
  }
  .logo-mark {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--espresso);
    color: var(--cream-soft);
    display: grid; place-items: center;
    font-style: italic;
    font-size: 17px;
    font-weight: 500;
    position: relative;
  }
  .logo-mark::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid var(--espresso);
    border-radius: 50%;
    opacity: 0.25;
  }
  .nav-links {
    display: flex; gap: 36px;
    font-size: 14.5px;
    color: var(--espresso-soft);
  }
  .nav-links a { transition: color 0.2s; }
  .nav-links a:hover { color: var(--terracotta); }
  .nav-cta { display: flex; gap: 10px; align-items: center; }
  .nav-cta .btn { padding: 11px 20px; font-size: 14px; }
  .nav-login { color: var(--espresso); font-weight: 500; font-size: 14.5px; padding: 11px 16px; }
  .nav-login:hover { color: var(--terracotta); }

  .menu-toggle { display: none; }

  /* ============ HERO ============ */
  .hero {
    padding: 90px 0 120px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(181,66,31,0.08), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid var(--line);
    background: var(--cream-soft);
    border-radius: 999px;
    font-size: 12.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--espresso-soft);
    font-weight: 500;
  }
  .eyebrow .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--terracotta);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }
  .hero h1 {
    font-size: clamp(48px, 6.5vw, 88px);
    margin: 24px 0 28px;
    font-weight: 350;
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--terracotta);
  }
  .hero h1 .underline {
    position: relative;
    display: inline-block;
    white-space: nowrap;
  }
  .hero h1 .underline::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: 0; right: 0;
    height: 8px;
    background: var(--gold-soft);
    opacity: 0.6;
    z-index: -1;
    border-radius: 4px;
  }
  .hero p.lede {
    font-size: 19px;
    color: var(--espresso-soft);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.55;
  }
  .hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .hero-trust {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13.5px;
    color: var(--espresso-soft);
  }
  .avatars { display: flex; }
  .avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2px solid var(--cream);
    margin-left: -10px;
    background: var(--terracotta);
    display: grid; place-items: center;
    color: var(--cream-soft);
    font-size: 13px;
    font-weight: 600;
  }
  .avatar:first-child { margin-left: 0; background: var(--gold); }
  .avatar:nth-child(2) { background: var(--burgundy); }
  .avatar:nth-child(3) { background: var(--olive); }
  .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }

  /* Hero visual — restaurant card mockup */
  .hero-visual {
    position: relative;
    aspect-ratio: 1 / 1.05;
  }
  .mockup {
    position: absolute;
    background: var(--cream-soft);
    border-radius: 18px;
    box-shadow:
      0 30px 60px -20px rgba(28,18,10,0.25),
      0 10px 20px -8px rgba(28,18,10,0.1),
      0 0 0 1px var(--line-soft);
    overflow: hidden;
  }
  .mockup-main {
    inset: 0 60px 80px 0;
    z-index: 2;
    transform: rotate(-1.5deg);
    animation: float 7s ease-in-out infinite;
  }
  .mockup-secondary {
    width: 240px;
    bottom: 30px;
    right: 0;
    z-index: 3;
    transform: rotate(3deg);
    border-radius: 16px;
    animation: float 8s ease-in-out infinite reverse;
  }
  @keyframes float {
    0%, 100% { transform: rotate(-1.5deg) translateY(0); }
    50% { transform: rotate(-1deg) translateY(-8px); }
  }

  .mock-bar {
    height: 30px;
    background: var(--cream-deep);
    display: flex; align-items: center;
    padding: 0 12px; gap: 6px;
  }
  .mock-bar span {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: rgba(28,18,10,0.18);
  }
  .mock-bar span:first-child { background: var(--terracotta); opacity: 0.7; }
  .mock-bar .url {
    margin-left: 14px;
    font-size: 11px;
    color: var(--espresso-soft);
    background: var(--cream);
    padding: 4px 10px;
    border-radius: 6px;
    font-family: 'Manrope', monospace;
    width: fit-content;
  }
  .mock-content { padding: 22px; }
  .mock-hero {
    background: linear-gradient(135deg, var(--burgundy), var(--terracotta));
    border-radius: 12px;
    padding: 28px 22px;
    color: var(--cream-soft);
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
  }
  .mock-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 80% 20%, rgba(212,176,122,0.4), transparent 50%),
      radial-gradient(circle at 20% 80%, rgba(181,66,31,0.3), transparent 50%);
  }
  .mock-hero-tag {
    font-size: 9.5px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 8px;
    font-weight: 500;
    position: relative;
  }
  .mock-hero-title {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.1;
    position: relative;
    margin-bottom: 14px;
  }
  .mock-hero-title em { font-style: italic; color: var(--gold-soft); }
  .mock-hero-cta {
    background: var(--cream-soft);
    color: var(--espresso);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
    position: relative;
  }
  .mock-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .mock-dish {
    background: var(--cream);
    border-radius: 10px;
    padding: 12px;
    border: 1px solid var(--line-soft);
  }
  .mock-dish-img {
    height: 50px;
    background: linear-gradient(135deg, var(--gold-soft), var(--terracotta));
    border-radius: 6px;
    margin-bottom: 8px;
    opacity: 0.9;
  }
  .mock-dish:nth-child(2) .mock-dish-img { background: linear-gradient(135deg, var(--olive), var(--gold)); }
  .mock-dish-name {
    font-family: 'Fraunces', serif;
    font-size: 12px;
    color: var(--espresso);
    margin-bottom: 2px;
  }
  .mock-dish-price {
    font-size: 10.5px;
    color: var(--terracotta);
    font-weight: 600;
  }

  /* Secondary mockup — booking */
  .mock-card {
    padding: 18px;
  }
  .mock-card-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 14px;
  }
  .mock-card-header span:first-child {
    font-family: 'Fraunces', serif;
    font-size: 14px;
  }
  .mock-card-header span:last-child {
    font-size: 10px;
    background: rgba(107,107,58,0.15);
    color: var(--olive);
    padding: 3px 8px;
    border-radius: 999px;
    font-weight: 600;
  }
  .mock-row {
    display: flex; justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 11.5px;
  }
  .mock-row:last-child { border: none; }
  .mock-row span:first-child { color: var(--espresso-soft); }
  .mock-row span:last-child { font-weight: 600; color: var(--espresso); }
  .mock-stat {
    margin-top: 14px;
    background: var(--cream-deep);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
  }
  .mock-stat strong {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    color: var(--terracotta);
    font-weight: 500;
    display: block;
  }
  .mock-stat small {
    font-size: 10px;
    color: var(--espresso-soft);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  /* Decorative stamp */
  .stamp {
    position: absolute;
    top: -20px; left: -30px;
    width: 110px; height: 110px;
    z-index: 4;
    animation: stamp-rotate 30s linear infinite;
  }
  @keyframes stamp-rotate {
    to { transform: rotate(360deg); }
  }
  .stamp svg { width: 100%; height: 100%; }

  /* ============ SOCIAL PROOF ============ */
  .social-proof {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 36px 0;
    background: var(--cream-soft);
  }
  .social-proof-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  .social-proof-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--espresso-soft);
    font-weight: 500;
  }
  .logos {
    display: flex; gap: 50px; align-items: center; flex-wrap: wrap;
    font-family: 'Fraunces', serif;
    font-size: 19px;
    color: var(--espresso-soft);
    opacity: 0.75;
  }
  .logos span { display: flex; align-items: center; gap: 6px; letter-spacing: -0.01em; }
  .logos span::before {
    content: '◆';
    color: var(--terracotta);
    font-size: 10px;
  }

  /* ============ SECTIONS ============ */
  section { padding: 120px 0; position: relative; }
  .section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
  }
  .section-head .eyebrow { margin-bottom: 22px; }
  .section-head h2 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 350;
    margin-bottom: 20px;
  }
  .section-head h2 em { font-style: italic; color: var(--terracotta); font-weight: 300; }
  .section-head p {
    font-size: 18px;
    color: var(--espresso-soft);
    max-width: 580px;
    margin: 0 auto;
  }

  /* ============ FEATURES ============ */
  .features {
    background: var(--cream-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
  }
  .feature {
    background: var(--cream-soft);
    padding: 44px 36px;
    transition: background 0.4s;
    position: relative;
  }
  .feature:hover { background: var(--cream); }
  .feature-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--cream-deep);
    display: grid; place-items: center;
    margin-bottom: 24px;
    color: var(--terracotta);
    transition: transform 0.4s;
  }
  .feature:hover .feature-icon { transform: rotate(-6deg) scale(1.05); }
  .feature-icon svg { width: 24px; height: 24px; }
  .feature h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 450;
  }
  .feature p {
    color: var(--espresso-soft);
    font-size: 15px;
    line-height: 1.6;
  }
  .feature-num {
    position: absolute;
    top: 24px; right: 28px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--espresso-soft);
    opacity: 0.4;
  }

  /* ============ MULTI-BRANCH FEATURE ============ */
  .multibranch {
    padding: 130px 0;
  }
  .mb-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
  }
  .mb-text h2 {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 350;
    margin-bottom: 24px;
  }
  .mb-text h2 em { font-style: italic; color: var(--terracotta); font-weight: 300; }
  .mb-text p {
    font-size: 17px;
    color: var(--espresso-soft);
    margin-bottom: 18px;
  }
  .mb-checks { margin-top: 28px; }
  .mb-check {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .mb-check:last-child { border: none; }
  .mb-check-icon {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--cream-soft);
    display: grid; place-items: center;
    font-size: 12px;
    margin-top: 2px;
  }
  .mb-check h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--espresso);
    margin-bottom: 3px;
  }
  .mb-check p {
    font-size: 14.5px;
    margin: 0;
    color: var(--espresso-soft);
  }

  /* Branch dashboard visual */
  .mb-visual {
    background: var(--cream-soft);
    border-radius: 22px;
    padding: 28px;
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px -20px rgba(28,18,10,0.18);
    position: relative;
  }
  .mb-visual-head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 22px;
  }
  .mb-visual-head h4 {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 500;
  }
  .mb-tab {
    background: var(--espresso);
    color: var(--cream-soft);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
  }
  .branch {
    background: var(--cream);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 12px;
    border: 1px solid var(--line-soft);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .branch:hover { transform: translateX(4px); box-shadow: 0 6px 20px -8px rgba(28,18,10,0.15); }
  .branch-pin {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--terracotta);
    color: var(--cream-soft);
    display: grid; place-items: center;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 500;
  }
  .branch:nth-child(2) .branch-pin { background: var(--burgundy); }
  .branch:nth-child(3) .branch-pin { background: var(--gold); }
  .branch:nth-child(4) .branch-pin { background: var(--olive); }
  .branch-info h5 {
    font-family: 'Manrope', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--espresso);
    margin-bottom: 2px;
  }
  .branch-info p {
    font-size: 12.5px;
    color: var(--espresso-soft);
    margin: 0;
  }
  .branch-stat {
    text-align: right;
    font-family: 'Fraunces', serif;
    font-size: 17px;
    color: var(--espresso);
    font-weight: 500;
  }
  .branch-stat small {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--olive);
    font-weight: 600;
    margin-top: 2px;
  }
  .mb-add {
    border: 1.5px dashed var(--line);
    border-radius: 14px;
    padding: 14px;
    text-align: center;
    font-size: 13px;
    color: var(--espresso-soft);
    cursor: pointer;
    transition: all 0.3s;
  }
  .mb-add:hover { border-color: var(--terracotta); color: var(--terracotta); }

  /* ============ HOW IT WORKS ============ */
  .how {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12%; right: 12%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
    z-index: 0;
  }
  .step {
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .step-num {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--cream-soft);
    border: 1px solid var(--line);
    display: grid; place-items: center;
    margin: 0 auto 24px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 32px;
    color: var(--terracotta);
    font-weight: 400;
    position: relative;
  }
  .step-num::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid var(--line);
    border-radius: 50%;
    opacity: 0.5;
  }
  .step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 450;
  }
  .step p {
    color: var(--espresso-soft);
    font-size: 15px;
    max-width: 280px;
    margin: 0 auto;
  }

  /* ============ PRICING ============ */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .price-card {
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 36px 32px;
    position: relative;
    transition: transform 0.4s, box-shadow 0.4s;
  }
  .price-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -20px rgba(28,18,10,0.2); }
  .price-card.featured {
    background: var(--espresso);
    color: var(--cream-soft);
    border-color: var(--espresso);
  }
  .price-card.featured h3,
  .price-card.featured .price-amount { color: var(--cream-soft); }
  .price-card.featured .price-feature { color: rgba(245,239,227,0.85); border-color: rgba(245,239,227,0.12); }
  .price-card.featured .price-feature svg { color: var(--gold-soft); }
  .price-badge {
    position: absolute;
    top: -12px; right: 24px;
    background: var(--terracotta);
    color: var(--cream-soft);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .price-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
    font-weight: 450;
  }
  .price-tag {
    font-size: 13px;
    color: var(--espresso-soft);
    margin-bottom: 24px;
  }
  .price-card.featured .price-tag { color: rgba(245,239,227,0.7); }
  .price-amount {
    font-family: 'Fraunces', serif;
    font-size: 56px;
    font-weight: 350;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.03em;
  }
  .price-amount sup {
    font-size: 22px;
    font-weight: 400;
    vertical-align: top;
    margin-right: 4px;
    color: var(--espresso-soft);
  }
  .price-amount sub {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--espresso-soft);
    vertical-align: baseline;
  }
  .price-card.featured .price-amount sup,
  .price-card.featured .price-amount sub { color: rgba(245,239,227,0.7); }
  .price-features { margin: 28px 0; }
  .price-feature {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 12px 0;
    border-top: 1px solid var(--line-soft);
    font-size: 14.5px;
    color: var(--espresso-soft);
  }
  .price-feature svg {
    flex-shrink: 0;
    width: 16px; height: 16px;
    color: var(--terracotta);
    margin-top: 3px;
  }
  .price-card .btn {
    width: 100%;
    padding: 14px;
  }
  .price-card.featured .btn-primary {
    background: var(--cream-soft);
    color: var(--espresso);
  }
  .price-card.featured .btn-primary:hover { background: var(--gold-soft); color: var(--espresso); }

  /* ============ TESTIMONIALS ============ */
  .testimonials {
    background: var(--cream-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .testimonial {
    background: var(--cream);
    padding: 36px;
    border-radius: 18px;
    border: 1px solid var(--line);
    position: relative;
  }
  .testimonial::before {
    content: '"';
    font-family: 'Fraunces', serif;
    font-size: 90px;
    color: var(--terracotta);
    position: absolute;
    top: 10px; left: 22px;
    line-height: 1;
    opacity: 0.25;
  }
  .testimonial blockquote {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    line-height: 1.45;
    color: var(--espresso);
    font-weight: 350;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.005em;
  }
  .testimonial blockquote em { font-style: italic; color: var(--terracotta); }
  .testimonial-author {
    display: flex; gap: 14px; align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--line-soft);
  }
  .testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--cream-soft);
    display: grid; place-items: center;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 18px;
  }
  .testimonial:nth-child(2) .testimonial-avatar { background: var(--burgundy); }
  .testimonial:nth-child(3) .testimonial-avatar { background: var(--gold); color: var(--espresso); }
  .testimonial:nth-child(4) .testimonial-avatar { background: var(--olive); }
  .testimonial-name {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--espresso);
  }
  .testimonial-role {
    font-size: 13px;
    color: var(--espresso-soft);
  }

  /* ============ FAQ ============ */
  .faq {
    max-width: 820px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid var(--line);
    padding: 4px 0;
  }
  .faq-q {
    width: 100%;
    text-align: left;
    padding: 22px 0;
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-weight: 450;
    color: var(--espresso);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--terracotta); }
  .faq-toggle {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--cream-soft);
    border: 1px solid var(--line);
    display: grid; place-items: center;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.3s;
    font-size: 16px;
    color: var(--espresso);
  }
  .faq-item.open .faq-toggle {
    background: var(--terracotta);
    color: var(--cream-soft);
    transform: rotate(45deg);
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    color: var(--espresso-soft);
    font-size: 15.5px;
    line-height: 1.65;
  }
  .faq-item.open .faq-a {
    max-height: 280px;
    padding-bottom: 22px;
  }

  /* ============ FINAL CTA ============ */
  .final-cta {
    padding: 130px 0;
    text-align: center;
    background:
      radial-gradient(ellipse at top, rgba(181,66,31,0.15), transparent 60%),
      var(--espresso);
    color: var(--cream-soft);
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><circle cx='30' cy='30' r='1' fill='%23F5EFE3' fill-opacity='0.06'/></svg>");
  }
  .final-cta > .container { position: relative; z-index: 1; }
  .final-cta h2 {
    color: var(--cream-soft);
    font-size: clamp(44px, 5.5vw, 78px);
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }
  .final-cta h2 em { font-style: italic; color: var(--gold-soft); font-weight: 300; }
  .final-cta p {
    font-size: 19px;
    color: rgba(245,239,227,0.75);
    max-width: 560px;
    margin: 0 auto 40px;
  }
  .final-cta .btn-primary { background: var(--cream-soft); color: var(--espresso); }
  .final-cta .btn-primary:hover { background: var(--terracotta); color: var(--cream-soft); }

  /* ============ FOOTER ============ */
  footer {
    background: var(--espresso);
    color: rgba(245,239,227,0.7);
    padding: 70px 0 32px;
    border-top: 1px solid rgba(245,239,227,0.08);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  .footer-brand {
    max-width: 320px;
  }
  .footer-brand .logo { color: var(--cream-soft); margin-bottom: 16px; }
  .footer-brand .logo-mark { background: var(--cream-soft); color: var(--espresso); }
  .footer-brand p {
    font-size: 14px;
    line-height: 1.6;
  }
  .footer-col h5 {
    font-family: 'Fraunces', serif;
    font-size: 14px;
    color: var(--cream-soft);
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--gold-soft); }
  .footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(245,239,227,0.1);
    display: flex; justify-content: space-between;
    font-size: 13px;
    flex-wrap: wrap; gap: 14px;
  }

  /* ============ REVEAL ANIM ============ */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.2,.8,.2,1);
  }
  .reveal.in { opacity: 1; transform: none; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 980px) {
    .nav-links { display: none; }
    .nav-cta .nav-login { display: none; }
    .hero-grid, .mb-grid, .footer-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-visual { max-width: 480px; margin: 0 auto; }
    .feature-grid, .steps, .pricing-grid, .testimonial-grid { grid-template-columns: 1fr; }
    .feature-grid { border-radius: 18px; }
    .steps::before { display: none; }
    section { padding: 80px 0; }
    .hero { padding: 50px 0 80px; }
    .container { padding: 0 22px; }
    .price-card.featured { transform: none; }
    .stamp { width: 80px; height: 80px; top: -10px; left: -10px; }
  }

  @media (max-width: 560px) {
    .hero h1 { font-size: 44px; }
    .section-head h2, .mb-text h2 { font-size: 36px; }
    .final-cta h2 { font-size: 40px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .testimonial { padding: 28px 24px; }
    .price-card { padding: 28px 24px; }
    .footer-bottom { flex-direction: column; }
    .logos { gap: 28px; font-size: 16px; }
  }
