/* ---------- Design tokens ---------- */
  :root {
    --gold:       #C5A572;
    --gold-dark:  #9C7D4A;
    --gold-light: #FFF8EC;
    --near-black: #1A1A1A;
    --darkest:    #0F0F0F;
    --cream:      #FAF9F4;
    --sand:       #F2EDE3;
    --navy:       #1B2A4A;
    --text-mid:   #555555;
    --text-dim:   #888888;
    --text-faint: #AAAAAA;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-sans:    'DM Sans', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;

    --radius-sm: 8px;
    --radius:    12px;
    --radius-pill: 9999px;

    --pad-lg-desktop: 140px;
    --pad-lg-mobile:  80px;
    --pad-md-desktop: 120px;
    --pad-md-mobile:  64px;

    --nav-height: 72px;
  }

  /* ---------- Reset ---------- */
  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
  }
  /* Anchored sections sit just below the sticky nav */
  section[id] { scroll-margin-top: 88px; }
  body {
    font-family: var(--font-sans);
    color: var(--near-black);
    /* Warm cream radial vignette — matches the iPhone Gold mockup page.
       fixed attachment keeps the spotlight glow anchored in the viewport
       so it gently lights every section behind their solid backgrounds. */
    background:
      radial-gradient(ellipse 100% 80% at 50% 35%,
        #fbf7ed 0%,
        #f0e6d2 55%,
        #ddc9a8 100%);
    background-attachment: fixed;
    /* Warm cream fallback — matches gradient top-of-viewport color, so
       browsers that fail to render the gradient (e.g. iOS Safari with
       background-attachment: fixed) don't reveal a near-white band. */
    background-color: #F3E9D5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.5;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  img { display: block; max-width: 100%; }

  ::selection { background: var(--gold); color: #fff; }

  /* ---------- Shared primitives ---------- */
  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }
  @media (max-width: 767px) {
    .container { padding: 0 24px; }
  }

  .eyebrow {
    display: inline-block;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    border: 1.5px solid transparent;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  }
  .btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(156,125,74,0.25); }
  .btn-ghost-light {
    background: transparent;
    color: var(--near-black);
    border-color: var(--near-black);
  }
  .btn-ghost-light:hover { background: rgba(26,26,26,0.06); transform: translateY(-1px); }
  .btn-ghost-dark {
    background: transparent;
    color: #fff;
    border-color: #fff;
  }
  .btn-ghost-dark:hover { background: rgba(255,255,255,0.08); transform: translateY(-1px); }
  @media (max-width: 767px) {
    .btn { white-space: normal; line-height: 1.3; text-align: center; }
  }

  /* Visible keyboard focus */
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  .btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
  }
  .btn:focus-visible { border-radius: var(--radius-pill); }

  /* ---------- Top navigation ---------- */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background-color .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  }
  .nav.is-scrolled {
    background: rgba(250, 249, 244, 0.92);
    backdrop-filter: saturate(140%) blur(8px);
    -webkit-backdrop-filter: saturate(140%) blur(8px);
    border-bottom-color: rgba(197, 165, 114, 0.25);
  }
  .nav-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 40px;
  }
  @media (max-width: 767px) {
    .nav-inner { padding: 0 24px; gap: 0; }
  }

  /* Logo */
  .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--near-black);
  }
  .logo-img {
    display: block;
    height: 32px;
    width: auto;
  }
  @media (max-width: 767px) {
    .logo-img { height: 28px; }
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
  }
  .nav-link {
    transition: opacity .15s ease, color .15s ease;
    padding: 6px 0;
  }
  .nav-link:hover { opacity: 1; color: var(--gold-dark); }

  /* Mobile nav */
  .nav-hamburger {
    margin-left: auto;
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
  }
  .nav-hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--near-black);
    position: relative;
  }
  .nav-hamburger span::before,
  .nav-hamburger span::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    height: 1.5px;
    background: var(--near-black);
  }
  .nav-hamburger span::before { top: -6px; }
  .nav-hamburger span::after  { top:  6px; }

  .nav-drawer {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(197, 165, 114, 0.25);
    /* translateY(-100vh) guarantees the drawer is fully above the viewport
       regardless of its own height. -110% used to leave the drawer's bottom
       edge visible (~47px) inside the viewport when its height + nav-height
       exceeded 110% of its own height, creating a phantom white band at top. */
    transform: translateY(-100vh);
    transition: transform .3s ease;
    z-index: 49;
    padding: 8px 24px 24px;
    display: none;
  }
  .nav-drawer.is-open { transform: translateY(0); }
  .nav-drawer .nav-link {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  @media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-hamburger { display: inline-flex; }
    .nav-drawer { display: block; }
  }

  /* ---------- Hero ---------- */
  .hero {
    /* Transparent so the warm cream radial vignette on <body> shows through.
       The previous flat var(--cream) blocked it. */
    background: transparent;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 48px) 0 80px;
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    gap: 48px;
  }
  @media (max-width: 1023px) {
    .hero { min-height: 0; padding: calc(var(--nav-height) + 56px) 0 96px; }
    .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  }

  .hero-eyebrow { margin-bottom: 28px; }

  .hero-headline {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 64px;
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: var(--near-black);
    margin: 0 0 28px;
    text-wrap: balance;
  }
  .hero-headline .line { display: block; }
  .hero-headline .accent {
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
  }

  @media (max-width: 767px) {
    .hero-headline { font-size: 40px; }
  }

  .hero-subhead {
    margin: 0;
    text-wrap: pretty;
  }

  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 60px;
  }
  @media (max-width: 767px) {
    .hero-ctas { margin-top: 40px; }
    .hero-ctas .btn { flex: 1 1 auto; min-width: 0; }
  }

  .hero-trust {
    margin-top: 28px;
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.01em;
  }
  .hero-trust .dot { color: var(--gold); margin: 0 8px; }

  /* ---------- iPhone mockup ---------- */
  .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .phone-tilt {
    transform: rotate(6deg);
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.12));
    transition: transform .4s ease;
  }
  .phone-tilt:hover { transform: rotate(4deg) translateY(-4px); }

  .phone {
    --phone-w: 300px;
    --phone-h: 612px;
    width: var(--phone-w);
    height: var(--phone-h);
    background: #1d1d1f;
    border-radius: 44px;
    padding: 8px;
    position: relative;
    box-shadow:
      inset 0 0 0 1.5px #2a2a2c,
      inset 0 0 0 3px #0a0a0a;
  }
  @media (max-width: 480px) {
    .phone { --phone-w: 260px; --phone-h: 530px; }
  }
  .phone::before {
    /* side button hints */
    content: "";
    position: absolute;
    right: -2px;
    top: 170px;
    width: 2px;
    height: 64px;
    background: #2a2a2c;
    border-radius: 2px;
  }
  .phone::after {
    content: "";
    position: absolute;
    left: -2px;
    top: 130px;
    width: 2px;
    height: 32px;
    background: #2a2a2c;
    border-radius: 2px;
    box-shadow: 0 50px 0 #2a2a2c, 0 96px 0 #2a2a2c;
  }
  .phone-screen {
    width: 100%;
    height: 100%;
    background: #FAF9F4;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
  }
  .phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 28px;
    background: #0a0a0a;
    border-radius: 999px;
    z-index: 4;
  }

  /* iPhone screen content - reservation flow placeholder */
  .res-screen {
    position: absolute;
    inset: 0;
    padding: 44px 16px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: var(--font-sans);
  }
  .res-statusbar {
    position: absolute;
    top: 12px;
    left: 22px;
    right: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10.5px;
    font-weight: 600;
    color: #1a1a1a;
    z-index: 3;
    line-height: 1;
  }
  .res-statusbar .icons {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 9px;
  }
  .res-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 2px;
  }
  .res-header .back {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #f2ede3;
    display: grid; place-items: center;
    color: #1a1a1a;
    font-size: 12px;
    line-height: 1;
    flex-shrink: 0;
  }
  .res-header .title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
  }
  .res-header .step {
    font-size: 9.5px;
    color: var(--text-dim);
    letter-spacing: 0.08em;
    flex-shrink: 0;
  }

  .res-venue {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    padding: 9px 10px;
    display: flex;
    gap: 9px;
    align-items: center;
  }
  .res-venue .thumb {
    width: 34px; height: 34px;
    border-radius: 6px;
    background:
      repeating-linear-gradient(45deg, #d9c79c, #d9c79c 4px, #c5a572 4px, #c5a572 8px);
    flex-shrink: 0;
  }
  .res-venue .meta { flex: 1; min-width: 0; }
  .res-venue .name {
    font-family: var(--font-display);
    font-size: 12.5px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .res-venue .sub {
    font-size: 9px;
    color: var(--text-dim);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .res-section-label {
    font-size: 8.5px;
    letter-spacing: 0.18em;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    margin: 2px 2px -6px;
  }

  .res-floorplan {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    padding: 10px 10px 8px;
    position: relative;
  }
  .res-floorplan .area-name {
    font-family: var(--font-display);
    font-size: 12.5px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    line-height: 1;
  }
  .res-floorplan .area-name .badge {
    font-family: var(--font-sans);
    font-size: 8px;
    color: var(--gold);
    background: var(--gold-light);
    border-radius: 999px;
    padding: 3px 7px;
    font-weight: 500;
    letter-spacing: 0.04em;
    white-space: nowrap;
    line-height: 1;
  }
  .res-floorplan svg {
    display: block;
    width: 100%;
    height: auto;
  }

  .res-cta {
    margin-top: auto;
    background: var(--gold);
    color: #fff;
    border-radius: 999px;
    padding: 11px 16px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.02em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1;
  }
  .res-cta .price {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
  }
  .res-home-indicator {
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    border-radius: 999px;
    background: #1a1a1a;
    opacity: 0.85;
    z-index: 5;
  }

  /* ---------- Section padding utilities ---------- */
  .sec-lg { padding: 140px 0; }
  .sec-md { padding: 120px 0; }
  @media (max-width: 767px) {
    .sec-lg { padding: 80px 0; }
    .sec-md { padding: 64px 0; }
  }

  .sec-cream { background: var(--cream); color: var(--near-black); }
  .sec-dark  { background: var(--near-black); color: #fff; }

  .center-stack { text-align: center; }
  .mx-auto { margin-left: auto; margin-right: auto; }

  .sec-eyebrow { display: block; margin-bottom: 24px; }

  .sec-headline {
    margin: 0 auto;
    text-wrap: balance;
  }
      @media (max-width: 767px) {
          }

  .sec-subhead {
    margin: 24px auto 0;
    text-wrap: pretty;
  }
  
  .spacer-40  { height: 40px; }
  .spacer-60  { height: 60px; }
  .spacer-80  { height: 80px; }
  .spacer-100 { height: 100px; }
  @media (max-width: 767px) {
    .spacer-40  { height: 28px; }
    .spacer-60  { height: 40px; }
    .spacer-80  { height: 56px; }
    .spacer-100 { height: 64px; }
  }

  /* ---------- Section 2: Industry logic ---------- */
  .industry-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 960px;
    margin: 0 auto;
  }
  .industry-col {
    text-align: center;
    padding: 0 24px;
    border-left: 1px solid rgba(197,165,114,0.35);
  }
  .industry-col:first-child { border-left: 0; }
  .industry-col .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    color: var(--gold);
  }
  .industry-col .label {
    margin: 18px 0 6px;
  }
  .industry-col .sub {
    margin: 0;
  }
  @media (max-width: 767px) {
    .industry-row { grid-template-columns: 1fr; }
    .industry-col { border-left: 0; border-top: 1px solid rgba(197,165,114,0.35); padding: 36px 0; }
    .industry-col:first-child { border-top: 0; padding-top: 0; }
  }

  .bridge-para {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    text-wrap: pretty;
  }

  .stat-callout {
    background: var(--gold-light);
    border: 1px solid rgba(197,165,114,0.55);
    border-radius: var(--radius);
    padding: 48px;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
  }
  .stat-callout .quote {
    margin: 0;
    text-wrap: balance;
  }
  .stat-callout .source {
    margin: 20px 0 0;
  }
  @media (max-width: 767px) {
    .stat-callout { padding: 32px 24px; }
    .stat-callout .quote {}
  }

  .gold-bridge {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }

  /* ---------- Section 3: Guest experience (dark) ---------- */
  .sec-dark .sec-headline {}
  .twin-phones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    gap: 48px;
    max-width: 760px;
    margin: 0 auto;
  }
  @media (max-width: 767px) {
    .twin-phones { grid-template-columns: 1fr; gap: 56px; }
  }
  .twin-phones .phone-tilt {
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  }
  .twin-phones .glow {
    position: relative;
  }
  .twin-phones .glow::before {
    content: "";
    position: absolute;
    inset: -10% -10% -20%;
    background: radial-gradient(closest-side, rgba(197,165,114,0.22), rgba(197,165,114,0));
    z-index: 0;
    pointer-events: none;
  }
  .twin-phones .glow > * { position: relative; z-index: 1; }
  .twin-phones .tilt-left  { transform: rotate(-5deg); }
  .twin-phones .tilt-right { transform: rotate(5deg); }

  .journey-strip {
    text-align: center;
    color: #CCC;
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.9;
    max-width: 980px;
    margin: 0 auto;
    text-wrap: balance;
  }
  .journey-strip .dot {
    color: var(--gold);
    margin: 0 10px;
  }

  .gold-italic {
    text-align: center;
    margin: 0 auto;
    text-wrap: balance;
  }
      
  .footnote {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--text-dim);
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* ---------- Section 4: Integration ---------- */
  .foh-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 760px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .foh-logo {
    display: block;
    height: 26px;
    width: auto;
    opacity: 0.85;
    pointer-events: none;
  }
  /* On the dark integration section, force the logos to render as solid white
     silhouettes so each brand reads cleanly regardless of its own colors. */
  .foh-row-dark .foh-logo { filter: brightness(0) invert(1); opacity: 0.8; }
  /* Per-logo size tuning — some wordmarks read smaller than others at the
     baseline height, so scale these to balance the visual weight. */
  .foh-logo[alt="SevenRooms"] { height: 48.75px; }
  .foh-logo[alt="OpenTable"]  { height: 32.5px; }
  .foh-logo[alt="SerVme"]     { height: 24.375px; }
  .foh-logo[alt="EatApp"]     { height: 19.5px; }
  @media (max-width: 767px) {
    .foh-row { justify-content: center; gap: 28px 36px; }
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  @media (max-width: 900px) {
    .feature-grid { grid-template-columns: 1fr; }
  }
  .feature-card {
    background: #fff;
    border: 1px solid #E8E6E1;
    border-radius: var(--radius);
    padding: 32px;
  }
  .feature-card .icon {
    color: var(--gold);
    width: 32px; height: 32px;
    margin-bottom: 24px;
    display: inline-flex;
  }
  .feature-card h3 {
    margin: 0 0 12px;
  }
  .feature-card p {
    margin: 0;
    text-wrap: pretty;
  }

  /* ---------- Section 5: Control (dark) ---------- */
  .control-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
  }
  @media (max-width: 900px) {
    .control-grid { grid-template-columns: 1fr; gap: 56px; }
  }
  .control-col .icon {
    color: var(--gold);
    width: 40px; height: 40px;
    margin-bottom: 24px;
    display: inline-flex;
  }
  .control-col h3 {
    margin: 0 0 14px;
  }
  .control-col p {
    margin: 0;
    text-wrap: pretty;
  }

  /* Variant of phone for twin-phones (slightly smaller) */
  .twin-phones .phone {
    --phone-w: 260px;
    --phone-h: 540px;
  }
  @media (max-width: 480px) {
    .twin-phones .phone { --phone-w: 240px; --phone-h: 500px; }
  }

  /* ---------- Section 6: Revenue Calculator ---------- */
  .calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: stretch;
  }
  @media (max-width: 1023px) {
    .calc-grid { grid-template-columns: 1fr; gap: 32px; }
  }

  .calc-card-inputs {
    background: #fff;
    border: 1.5px solid #E2E0DB;
    border-radius: var(--radius);
    padding: 32px;
  }
  .calc-card-output {
    background: var(--near-black);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius);
    padding: 48px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  @media (max-width: 767px) {
    .calc-card-output { padding: 32px; }
  }

  .calc-slider + .calc-slider { margin-top: 24px; }
  .calc-slider .row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 10px;
  }
  .calc-slider .label {
  }
  .calc-slider .value {
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
  }

  /* Range styling */
  input[type="range"].calc-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: #E8D5A8;
    outline: none;
    cursor: pointer;
    margin: 0;
  }
  input[type="range"].calc-range::-webkit-slider-runnable-track {
    height: 4px;
    border-radius: 999px;
    background:
      linear-gradient(to right, var(--gold) 0%, var(--gold-dark) var(--fill, 50%), transparent var(--fill, 50%));
    background-color: #E8D5A8;
  }
  input[type="range"].calc-range::-moz-range-track {
    height: 4px;
    border-radius: 999px;
    background: #E8D5A8;
  }
  input[type="range"].calc-range::-moz-range-progress {
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(to right, var(--gold), var(--gold-dark));
  }
  input[type="range"].calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(156,125,74,0.35);
    margin-top: -8px;
    cursor: grab;
    transition: transform .15s ease;
  }
  input[type="range"].calc-range::-webkit-slider-thumb:active { transform: scale(1.08); cursor: grabbing; }
  input[type="range"].calc-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(156,125,74,0.35);
    cursor: grab;
  }

    .calc-monthly {
    font-variant-numeric: tabular-nums;
    margin: 0;
  }
  @media (max-width: 767px) {
    .calc-monthly {}
  }
  .calc-divider {
    height: 1px;
    background: rgba(197,165,114,0.35);
    border: 0;
    margin: 32px 0 24px;
  }
    .calc-annual {
    font-variant-numeric: tabular-nums;
    margin: 0;
  }
  @media (max-width: 767px) {
    .calc-annual {}
  }

  .calc-footnote {
    max-width: 720px;
    margin: 48px auto 0;
    text-align: center;
  }

  /* ---------- Section 7: Commercial model ---------- */
  .nofee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  @media (max-width: 900px) {
    .nofee-grid { grid-template-columns: 1fr; }
  }
  .nofee-card {
    background: var(--near-black);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius);
    padding: 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 140px;
  }
  .nofee-card .icon {
    color: var(--gold);
    width: 24px; height: 24px;
    display: inline-flex;
  }
  .nofee-card .label {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    line-height: 1.3;
  }



  
  /* ---------- Section 8: Experiences & add-ons ---------- */
  .compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    text-align: left;
  }
  @media (max-width: 900px) {
    .compare-grid { grid-template-columns: 1fr; }
  }
  .compare-card {
    background: #fff;
    border: 1px solid #E8E6E1;
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    overflow: hidden;
  }
  .compare-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gold);
  }
    .compare-card .italic-line {
    font-style: italic;
    margin: 8px 0 0;
  }
  .compare-card p {
    margin: 24px 0 0;
    text-wrap: pretty;
  }

  .upsell-block {
    background: var(--sand);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
  }
  .upsell-block .bold {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 28px;
    color: var(--near-black);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.25;
    text-wrap: balance;
  }
  .upsell-block p {
    font-family: var(--font-sans);
    font-size: 17px;
    color: var(--text-mid);
    max-width: 720px;
    margin: 24px auto 0;
    line-height: 1.7;
    text-wrap: pretty;
  }
  @media (max-width: 767px) {
    .upsell-block { padding: 32px 24px; }
    .upsell-block .bold { font-size: 22px; }
  }

  /* ---------- Section 9: Flexible pricing ---------- */
  .calendar-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 880px;
    margin: 0 auto;
  }
  @media (max-width: 767px) {
    .calendar-strip { grid-template-columns: 1fr 1fr; }
  }
  .calendar-cell {
    background: #fff;
    border: 1px solid #E8E6E1;
    border-top: 1.5px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 28px 18px;
    text-align: center;
  }
  .calendar-cell .when {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    display: block;
  }
  .calendar-cell .price {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 36px;
    color: var(--near-black);
    margin-top: 20px;
    display: block;
    line-height: 1;
    font-variant-numeric: tabular-nums;
  }
  @media (max-width: 767px) {
    .calendar-cell .price { font-size: 28px; }
  }

  .dim-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .dim-pill {
    background: var(--gold-light);
    border: 1px solid rgba(197,165,114,0.6);
    border-radius: 9999px;
    padding: 8px 16px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    color: var(--gold-dark);
    white-space: nowrap;
  }

  /* Secondary phone variants: category list & confirmation */
  .res-list-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .res-list-item.is-selected {
    border-color: var(--gold);
    background: var(--gold-light);
  }
  .res-list-item .left { display: flex; align-items: center; gap: 10px; min-width: 0; }
  .res-list-item .dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #E6DFD0; flex-shrink: 0;
  }
  .res-list-item.is-selected .dot {
    background: var(--gold);
    box-shadow: 0 0 0 3px rgba(197,165,114,0.25);
  }
  .res-list-item .name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .res-list-item .price {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    color: var(--gold-dark);
    white-space: nowrap;
  }
  .res-list-item.is-muted .price { color: var(--text-dim); }

  .res-confirm {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .res-confirm .check {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: grid; place-items: center;
    font-size: 18px;
    line-height: 1;
    margin: 2px auto 4px;
  }
  .res-confirm .title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #1a1a1a;
    line-height: 1.2;
  }
  .res-confirm .row {
    display: flex; justify-content: space-between; gap: 8px;
    font-family: var(--font-sans);
    font-size: 10.5px;
    line-height: 1.3;
  }
  .res-confirm .row .k { color: var(--text-dim); letter-spacing: 0.04em; }
  .res-confirm .row .v { color: #1a1a1a; font-weight: 500; text-align: right; }
  .res-confirm hr {
    border: 0;
    border-top: 1px dashed rgba(0,0,0,0.1);
    margin: 4px 0;
  }
  .res-confirm .total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--font-sans);
    font-size: 10.5px;
    color: var(--text-dim);
    letter-spacing: 0.04em;
  }
  .res-confirm .total .v {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--near-black);
  }

  /* ---------- Footer ---------- */
  .footer {
    background: var(--darkest);
    color: #CCC;
    padding: 80px 0 40px;
  }
  .footer .container { max-width: 1280px; }
  .footer-grid {
    display: grid;
    grid-template-columns: 4fr 3fr 3fr;
    gap: 64px;
  }
  @media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  }

  .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  .footer-logo .logo-img { height: 40px; }

  .footer-tagline {
    margin: 0 0 8px;
  }
  .footer-micro {
    margin: 0;
  }
  .footer-entity {
    margin-top: 24px;
  }
  .footer-location {
    margin-top: 2px;
  }

  
  .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer-links a {
    transition: color .15s ease;
  }
  .footer-links a:hover { color: var(--gold); }

  .footer-links .spacer { height: 16px; }
  .footer-links .legal a { color: var(--text-dim); }
  .footer-links .legal a:hover { color: var(--gold); }

  .footer-bottom {
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid #222;
    text-align: center;
  }
  

/* ============ NEW SECTIONS 10-13 ============ */

/* ---------- Section 10: Onboarding (dark) ---------- */
.timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 1.5px;
  background: var(--gold);
  z-index: 0;
}
.timeline-node {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.timeline-node .circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  display: grid;
  place-items: center;
  line-height: 1;
  box-shadow: 0 0 0 6px var(--near-black);
}
.timeline-node .label {
  text-align: center;
}
@media (max-width: 767px) {
  .timeline {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
    padding-left: 0;
    max-width: 320px;
  }
  .timeline::before {
    left: 24px;
    right: auto;
    top: 24px;
    bottom: 24px;
    height: auto;
    width: 1.5px;
  }
  .timeline-node {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    width: 100%;
  }
  .timeline-node .label { text-align: left; }
}

/* Onboarding 3-up feature blocks: reuse .control-grid + .control-col already defined */

/* Channels strip */
.channels-lead {
  text-align: center;
  margin: 0 auto 24px;
  text-wrap: balance;
  max-width: 720px;
}
.channels-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 32px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  color: #CCC;
}
.channels-row .ch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.channels-row .ch .e {
  font-size: 16px;
  line-height: 1;
}
.channels-row .sep {
  color: var(--gold);
  opacity: 0.55;
}
@media (max-width: 767px) {
  .channels-row .sep { display: none; }
}

/* ---------- Section 11: Why us ---------- */
.why-rows {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: left;
}
.why-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px;
  align-items: start;
}
.why-row .icon {
  color: var(--gold);
  width: 32px; height: 32px;
  display: inline-flex;
  margin-top: 2px;
}
.why-row h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 19px;
  color: var(--near-black);
  margin: 0 0 6px;
  line-height: 1.3;
}
.why-row p {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
  text-wrap: pretty;
}

/* ---------- Section 12: FAQ ---------- */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}
.faq-item {
  border-bottom: 1px solid #E8E6E1;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
}
.faq-q:hover { color: var(--gold-dark); }
.faq-q .chev {
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-item[data-open="true"] .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 0 24px;
  max-width: 760px;
}

/* ---------- Section 13: Final CTA ---------- */
.final-cta { padding: 160px 0; }
@media (max-width: 767px) {
  .final-cta { padding: 96px 0; }
}
.final-cta-headline {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  text-wrap: balance;
}
@media (max-width: 767px) {
  .final-cta-headline {}
}
.final-cta .sec-subhead {}
.final-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .final-cta-row {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }
}
.brand-line {
  width: 60px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.brand-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  color: var(--gold);
  text-align: center;
  margin: 24px 0 0;
  letter-spacing: 0.005em;
}

/* ---------- Sub-pages (privacy / terms) ---------- */
.subpage {
  padding-top: calc(var(--nav-height) + 96px);
  padding-bottom: 96px;
  background: var(--cream);
  min-height: 70vh;
}
.subpage .container { max-width: 760px; }
.subpage h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 48px;
  color: var(--near-black);
  margin: 0 0 12px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
@media (max-width: 767px) {
  .subpage h1 { font-size: 36px; }
}
.subpage .lastmod {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 14px;
  color: var(--text-dim);
  margin: 0 0 40px;
}
.subpage .gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 40px;
}
.subpage .placeholder {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}


/* ---------- Section 2.5: Explainer (sand background) ---------- */
.sec-sand { background: var(--sand); color: var(--near-black); }

.explainer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 900px) {
  .explainer-cols { grid-template-columns: 1fr; gap: 48px; }
}
.explainer-col .icon {
  color: var(--gold);
  width: 40px; height: 40px;
  margin-bottom: 18px;
  display: inline-flex;
}
.explainer-col .eb {
  display: block;
  margin-bottom: 10px;
}
.explainer-col h3 {
  margin: 0 0 12px;
}
.explainer-col p {
  margin: 0;
  text-wrap: pretty;
}

/* Journey card */
.journey-card {
  background: #fff;
  border: 1px solid #E8E6E1;
  border-radius: var(--radius);
  padding: 40px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.journey-card .eb {
  display: block;
  margin-bottom: 32px;
}
.journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  text-align: left;
}
.journey-steps::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(197,165,114,0.45);
  z-index: 0;
}
.journey-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.journey-step .num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  display: grid;
  place-items: center;
  line-height: 1;
  box-shadow: 0 0 0 4px var(--sand);
}
.journey-step h4 {
  margin: 0;
  text-align: center;
}
.journey-step p {
  margin: 0;
  text-align: center;
  text-wrap: pretty;
}
@media (max-width: 900px) {
  .journey-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .journey-steps::before {
    top: 16px; bottom: 16px;
    left: 16px; right: auto;
    width: 1px; height: auto;
    background: rgba(197,165,114,0.45);
  }
  .journey-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }
  .journey-step h4,
  .journey-step p { text-align: left; }
  .journey-step .num { box-shadow: 0 0 0 4px var(--sand); flex-shrink: 0; }
  .journey-step .body { flex: 1; }
}
@media (max-width: 767px) {
  .journey-card { padding: 28px 22px; }
}

/* Pre-order block (on sand, with cream interior) */
.preorder-block {
  background: var(--cream);
  border-top: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.preorder-block .eb {
  display: block;
  margin-bottom: 32px;
}
.preorder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 767px) {
  .preorder-grid { grid-template-columns: 1fr; gap: 32px; }
  .preorder-block { padding: 28px 22px; }
}
.preorder-col h4 {
  margin: 0;
}
.preorder-col .sub {
  margin: 4px 0 16px;
}
.preorder-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.preorder-col li {
}
.preorder-col li::before {
  content: "·";
  color: var(--gold);
  margin-right: 10px;
  font-weight: 700;
}



/* ============ REFINEMENT PASS ============ */

/* 12: Hero CTAs — column on mobile, full-width pills */
.hero-ctas .btn { flex: 0 0 auto; }
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn { width: 100%; }
}

/* 13/14: Multi-line headlines — break lines inside sec-headline */
.sec-headline.split .line,
.sec-headline .line {
  display: block;
}

/* 13: Section 2 headline carries more text — slightly smaller on mobile */
@media (max-width: 767px) {
  .sec-headline.split.size-48 { font-size: 28px; }
}

/* 15: Journey strip → chip pills */
.journey-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.journey-strip .chip {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(197,165,114,0.35);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: #CCC;
  background: rgba(255,255,255,0.02);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

/* 17: Calendar cell label tightening */
.calendar-cell .when { letter-spacing: 0.10em; }

/* 18: Final CTA headline lines */
.final-cta-headline .line { display: block; }


/* 20: Tighter large-section padding on desktop */
.sec-lg { padding: 120px 0; }
@media (max-width: 767px) {
  .sec-lg { padding: 80px 0; }
}

/* 21: Stat callout padding */
.stat-callout { padding: 36px; }
@media (max-width: 767px) {
  .stat-callout { padding: 28px 22px; }
  .stat-callout .quote {}
}

/* 22: Calendar cell tightening */
.calendar-cell { padding: 22px 14px; }
.calendar-cell .price { font-size: 32px; margin-top: 14px; }
@media (max-width: 767px) {
  .calendar-cell .price { font-size: 26px; }
}

/* 23: Why-rows → 3 horizontal columns */
.why-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 900px) {
  .why-rows { grid-template-columns: 1fr; gap: 40px; }
}
.why-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  grid-template-columns: none;
}
.why-row .icon { margin-bottom: 4px; margin-top: 0; }

/* 24: Reusable headline size */
@media (max-width: 767px) {
    }

/* ============ SECTION 6 (Calculator) — RANGE-OUTPUT VARIANT ============ */

/* Headline range number (overrides the previous .calc-monthly) */
.calc-monthly {
  font-variant-numeric: tabular-nums;
  margin: 0;
}
/* Desktop: the t-stat--xl 72px size makes the "AED 234,000 — 316,000"
   range too wide for the output card, forcing a line break. Reduce to
   58px and keep it on one line. */
@media (min-width: 1024px) {
  .calc-card-output .calc-monthly { font-size: 58px; white-space: nowrap; }
}
@media (max-width: 767px) {
  .calc-monthly {}
}

/* Smaller annual (now per-month-average) figure */
.calc-annual {
  font-variant-numeric: tabular-nums;
  margin: 0;
}
@media (max-width: 767px) {
  .calc-annual {}
}

/* "from premium table selection" context line below the range */
.calc-context-line {
  margin: 8px 0 0;
}

/* Fainter divider used above the chips block */
.calc-divider-faint {
  background: rgba(197, 165, 114, 0.20);
  margin: 28px 0 24px;
}

/* Eyebrow above the chip row */

/* Chip row */
.uplift-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}
.uplift-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border: 1px solid rgba(197, 165, 114, 0.45);
  border-radius: 9999px;
  background: rgba(197, 165, 114, 0.05);
  white-space: nowrap;
}
@media (max-width: 480px) {
  .uplift-chip {}
}

/* "Walked through in our meeting →" line below the chips */
.calc-chips-cta {
  margin: 16px 0 0;
}

/* Per-slider guidance text */
.slider-guidance {
  font-style: italic;
  margin: 10px 0 0;
}


/* Keep the estimated-annual-revenue range on a single line */
@media (max-width: 1023px) {
  }
@media (max-width: 767px) {
  }
@media (max-width: 480px) {
  }


/* ============================================================
   v2 IMPROVEMENT PASS — appended overrides & new components
   ============================================================ */

/* ---------- Section padding & spacers (tightened) ---------- */
.sec-lg { padding: 96px 0; }
.sec-md { padding: 80px 0; }
@media (max-width: 767px) {
  .sec-lg { padding: 80px 0; }
  .sec-md { padding: 64px 0; }
}
.spacer-40 { height: 32px; }
.spacer-60 { height: 48px; }
.spacer-80 { height: 64px; }
.spacer-100 { height: 80px; }
@media (max-width: 767px) {
  .spacer-40 { height: 24px; }
  .spacer-60 { height: 32px; }
  .spacer-80 { height: 48px; }
  .spacer-100 { height: 56px; }
}

/* ---------- Eyebrow base bump for 35+ readability ---------- */
.eyebrow {}

/* ---------- Headline scale standardization ---------- */
@media (max-width: 767px) {
        }
/* All section text blocks → canonical max-widths via the headline/subhead defaults */
.sec-headline { max-width: 960px; }
.sec-headline.split { max-width: 1080px; }
.sec-subhead { max-width: 720px; }
.footnote { max-width: 720px; }
.bridge-para { max-width: 1100px; }
.gold-bridge { max-width: 720px; }

/* ---------- Hero rewrite ---------- */
.hero-headline { margin: 0 0 24px; }   /* container — children carry size */
.hero-line-eyebrow-bold {
  display: block;
}
.hero-tagline-line {
  display: block;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .hero-line-eyebrow-bold {}
  .hero-tagline-line {}
}

.hero-subhead {}
@media (max-width: 767px) {
  .hero-subhead {}
}

/* .hero-cta-label rule removed — the "Talk to us anytime." paragraph that
   used to sit between the subhead and the CTAs is no longer in the markup.
   The .hero-ctas margin-top: 0 override was paired with that label (the label
   provided the gap); removed so the base rule's 60px (desktop) / 40px (mobile)
   spacing applies again. */

.hero-trust-strip {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(197, 165, 114, 0.25);
}
.hero-trust-label {
  margin: 0 0 14px;
}
.hero-trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  align-items: center;
}
.trust-logo {
  display: block;
  height: 22px;
  width: auto;
  /* Recolor any input (black SVG paths, colored SVGs, raster PNG) to brand
     gold (#C5A572) so all four wordmarks read as a single uniform color on
     the cream hero. The filter chain works by first flattening to black
     (brightness 0), then tinting to the target gold via sepia + saturation
     + hue. Pointer-events disabled because the logos aren't clickable. */
  filter: brightness(0) saturate(100%) invert(72%) sepia(15%) saturate(820%) hue-rotate(2deg) brightness(91%) contrast(83%);
  pointer-events: none;
}
.trust-logo[alt="SevenRooms"] { height: 41.25px; }
.trust-logo[alt="OpenTable"]  { height: 27.5px; }
.trust-logo[alt="SerVme"]     { height: 20.625px; }
.trust-logo[alt="EatApp"]     { height: 16.5px; }
@media (max-width: 480px) {
  .hero-trust-logos { gap: 14px 22px; }
  .trust-logo { height: 18px; }
  .trust-logo[alt="SevenRooms"] { height: 33.75px; }
  .trust-logo[alt="OpenTable"]  { height: 22.5px; }
  .trust-logo[alt="SerVme"]     { height: 16.875px; }
  .trust-logo[alt="EatApp"]     { height: 13.5px; }
}

/* Hero phone radial spotlight */
.hero-visual { position: relative; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -8% -5% -8% -5%;
  background: radial-gradient(closest-side,
    rgba(197, 165, 114, 0.18) 0%,
    rgba(197, 165, 114, 0.10) 40%,
    rgba(197, 165, 114, 0) 80%);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}
.hero-visual > * { position: relative; z-index: 1; }

/* ---------- Lucide icon helper ---------- */
[data-lucide] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  line-height: 0;
}
[data-lucide] svg { display: block; }

/* Industry row icons */
.industry-col .icon[data-lucide] svg { width: 44px; height: 44px; }

/* Explainer col icons */
.explainer-col .icon[data-lucide] svg { width: 36px; height: 36px; }

/* Feature/control card icons */
.feature-card .icon[data-lucide] svg { width: 30px; height: 30px; }
.control-col .icon[data-lucide] svg { width: 36px; height: 36px; }

/* ---------- Pre-order icon lists ---------- */
.preorder-col .icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.preorder-col .icon-list li {
  display: flex;
  align-items: center;
  padding: 4px 0;
}
.preorder-col .icon-list li::before { content: none; }
.preorder-col .icon-list .li-icon {
  color: var(--gold);
  margin-right: 10px;
  flex-shrink: 0;
}
.preorder-col .icon-list .li-icon svg { width: 14px; height: 14px; }

/* ---------- Merged section: How It Fits (now on dark bg) ---------- */

.feature-grid-2 { grid-template-columns: 1fr 1fr; max-width: 880px; margin: 0 auto; }
@media (max-width: 900px) {
  .feature-grid-2 { grid-template-columns: 1fr; }
}
.feature-card-dark {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 165, 114, 0.22);
}
.feature-card-dark h3 { color: #fff; }
.feature-card-dark p { color: #BBB; }

/* ---------- Commercial + Pricing merged ---------- */
.merged-divider {
  border: 0;
  height: 1px;
  background: rgba(197, 165, 114, 0.22);
  max-width: 880px;
  margin: 0 auto;
}
.merged-subhead {
  margin: 0 0 14px;
  text-align: center;
}
@media (max-width: 767px) {
  .merged-subhead {}
}
.merged-sublead {
  margin: 0 auto 48px;
  max-width: 640px;
  text-align: center;
}

.dynamic-pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .dynamic-pricing-cards { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .dynamic-pricing-cards { grid-template-columns: 1fr; }
}
.dp-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 165, 114, 0.25);
  border-radius: var(--radius-sm);
  padding: 28px 20px;
  text-align: center;
}
.dp-card .dp-icon {
  display: inline-flex;
  color: var(--gold);
  margin-bottom: 16px;
}
.dp-card .dp-icon svg { width: 28px; height: 28px; }
.dp-card h4 {
  margin: 0 0 8px;
}
.dp-card p {
  margin: 0;
}

/* ---------- Section 8 add-on icon strip ---------- */
.addon-icon-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  color: var(--gold);
  flex-wrap: wrap;
}
.addon-icon-strip .strip-icon svg { width: 24px; height: 24px; }

/* ---------- Onboarding channels row (icon-only) ---------- */
.channels-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  color: var(--gold);
  font-size: 0;
}
.channels-row .ch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0;
}
.channels-row .ch svg {
  width: 28px;
  height: 28px;
  opacity: 0.85;
}
.channels-row .sep { display: none; }

/* ---------- Calculator label icons ---------- */
.calc-slider .label {
  display: inline-flex;
  align-items: center;
}
.calc-label-icon {
  color: var(--gold);
  margin-right: 8px;
  display: inline-flex;
}
.calc-label-icon svg { width: 16px; height: 16px; }

/* ---------- FAQ numbering + size bump ---------- */
.faq-list { counter-reset: faqcounter; max-width: 880px; }
.faq-item { counter-increment: faqcounter; position: relative; }
.faq-q {}
.faq-q::before {
  content: counter(faqcounter, decimal-leading-zero);
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-right: 20px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  align-self: center;
}
.faq-q > span:first-of-type { flex: 1; }
.faq-a-inner {}
@media (max-width: 767px) {
  .faq-q {}
  .faq-q::before { margin-right: 14px; font-size: 12px; }
  .faq-a-inner {}
}

/* ---------- Final CTA "what's next" strip ---------- */
.final-cta { padding: 120px 0; }
@media (max-width: 767px) {
  .final-cta { padding: 96px 0; }
}
.whats-next-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 56px auto 0;
  max-width: 920px;
}
.wn-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.wn-icon { color: var(--gold); display: inline-flex; }
.wn-icon svg { width: 22px; height: 22px; }
.wn-label {
}
.wn-sep {
  color: var(--gold);
  opacity: 0.5;
  font-size: 18px;
}
@media (max-width: 767px) {
  .whats-next-strip { gap: 14px; }
  .wn-sep { display: none; }
  .wn-step { flex: 0 0 auto; }
}

/* ---------- iPhone interior text bump (readability) ---------- */
.res-statusbar { font-size: 11px; }
.res-statusbar .icons { font-size: 10px; }
.res-venue .sub { font-size: 10px; }
.res-section-label { font-size: 9.5px; }
.res-list-item .price { font-size: 11.5px; }
.res-confirm .row { font-size: 11px; }
.res-confirm .total { font-size: 11px; }
.res-floorplan .area-name .badge { font-size: 9px; }
.res-header .step { font-size: 10px; }

/* ---------- Explainer close line (gold italic) ---------- */
@media (max-width: 767px) {
  }

/* ---------- Footer bottom simplified ---------- */

/* ════════════════════════════════════════════════════════════
   Hero phone — live auto-demo of the reservation prototype
   Flat (Option A). Uses the prototype's own iPhone frame.
   ════════════════════════════════════════════════════════════ */
.hero-phone-stage {
  --phone-display-w: 300px;
  --phone-display-h: 668px;   /* 393 × (300/393) × (874/393) ≈ 668 */
  --phone-scale: 0.7634;       /* 300 / 393 */

  width: var(--phone-display-w);
  height: var(--phone-display-h);
  position: relative;
  border-radius: 42px;         /* prototype's 55px × phone-scale */
  overflow: hidden;
  background: #000;            /* matches prototype bezel — bleeds cleanly at edges */

  /* Sharper compositing for any text inside the iframe */
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: translateZ(0);

  /* Soft elevated shadow */
  filter:
    drop-shadow(0 30px 60px rgba(0,0,0,0.18))
    drop-shadow(0 6px 14px rgba(0,0,0,0.10));
  transition: transform .4s ease;
}
.hero-phone-stage:hover { transform: translateY(-4px); }

.hero-phone-inner {
  position: absolute;
  top: 0; left: 0;
  width: 393px;
  height: 874px;
  transform: scale(var(--phone-scale));
  transform-origin: top left;
}

.hero-phone-iframe {
  width: 393px;
  height: 874px;
  border: 0;
  display: block;
  background: #FAF9F4;
  pointer-events: none;        /* fully static for the visitor */
  image-rendering: -webkit-optimize-contrast;
}

/* "Live preview" badge — subtle pulse to telegraph it's auto-playing */
.hero-phone-badge {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 10px;
  background: rgba(20,20,20,0.78);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 6;
  pointer-events: none;
  opacity: 0;
  animation: heroPhoneBadgeIn .6s ease .8s forwards;
}
.hero-phone-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6EE7B7;
  box-shadow: 0 0 0 0 rgba(110,231,183,0.6);
  animation: heroPhoneBadgePulse 1.8s ease-in-out infinite;
}
@keyframes heroPhoneBadgeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes heroPhoneBadgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(110,231,183,0.55); }
  50%      { box-shadow: 0 0 0 6px rgba(110,231,183,0); }
}

/* Iframe is always visible — auto-demo kicks in once scrollable target found.
   No opacity gating so the phone never appears as a black void. */
.hero-phone-stage .hero-phone-iframe {
  opacity: 1;
}

/* Responsive — match existing breakpoint */
@media (max-width: 480px) {
  .hero-phone-stage {
    --phone-display-w: 270px;
    --phone-display-h: 601px;
    --phone-scale: 0.6870;
    border-radius: 38px;
  }
}

/* Reduced motion — kill the badge pulse + hover lift */
@media (prefers-reduced-motion: reduce) {
  .hero-phone-stage:hover { transform: none; }
  .hero-phone-badge .dot { animation: none; }
  .hero-phone-badge { animation: none; opacity: 1; }
}

/* ════════════════════════════════════════════════════════════════════
   ATMOSPHERIC BACKGROUND SYSTEM — Approach C
   ────────────────────────────────────────────────────────────────────
   Replaces flat cream / flat dark section backgrounds with positioned
   radial gradients in a left → right → center reading rhythm. Adds
   thin gradient bridges between sections and a subtle viewport edge
   vignette. Background-only — no content/layout/motion changes.
   ════════════════════════════════════════════════════════════════════ */

/* ── PART 1 · Palette extensions (additive — do not remove existing tokens) ── */
:root {
  /* Cream → sand atmospheric palette */
  --atm-cream-bright:  #FBF7ED;
  --atm-cream-base:    #F4EBD8;
  --atm-cream-deep:    #E8D5B5;
  --atm-sand-edge:     #DDC9A8;

  /* Dark atmospheric tones */
  --atm-dark-warm:     #1F1A12;
  --atm-dark-glow:     #2B2418;
  --atm-dark-deepest:  #0F0B06;
}

/* ── PART 2 · Per-section gradients (positional system) ── */

/* 2.1 Hero — top-center spotlight, stage light */
.hero {
  background:
    radial-gradient(ellipse 110% 75% at 50% 25%,
      var(--atm-cream-bright) 0%,
      var(--atm-cream-base)   45%,
      var(--atm-cream-deep)   85%,
      var(--atm-sand-edge)    100%);
}

/* 2.2 Section 2 — Industry Logic — top-center, continues hero family */
#logic {
  background:
    radial-gradient(ellipse 100% 70% at 50% 30%,
      var(--atm-cream-bright) 0%,
      var(--atm-cream-base)   50%,
      var(--atm-cream-deep)   100%);
}

/* 2.3 Section 2.5 — Explainer — top-LEFT */
#explainer {
  background:
    radial-gradient(ellipse 90% 80% at 25% 35%,
      #F8EFD8 0%,
      #F2EDE3 40%,
      #E8DCC0 80%,
      #D9C9A6 100%);
}

/* 2.4 Section 3 — Guest Experience — top-center warm ember */
#guest-experience {
  background:
    radial-gradient(ellipse 100% 80% at 50% 20%,
      var(--atm-dark-glow)    0%,
      var(--atm-dark-warm)    50%,
      var(--atm-dark-deepest) 100%);
}

/* 2.5 Section 4 — How It Fits — top-RIGHT */
#integration {
  background:
    radial-gradient(ellipse 100% 75% at 75% 30%,
      var(--atm-dark-glow)    0%,
      var(--atm-dark-warm)    45%,
      var(--atm-dark-deepest) 100%);
}

/* 2.6 Section 6 — Revenue Calculator — top-center, slightly higher */
#revenue {
  background:
    radial-gradient(ellipse 105% 70% at 50% 20%,
      var(--atm-cream-bright) 0%,
      var(--atm-cream-base)   50%,
      var(--atm-cream-deep)   100%);
}

/* 2.7 Section 7 — Commercial — BOTTOM-center "hot ember" */
#commercial {
  background:
    radial-gradient(ellipse 110% 85% at 50% 80%,
      var(--atm-dark-glow)    0%,
      var(--atm-dark-warm)    40%,
      var(--atm-dark-deepest) 100%);
}

/* 2.8 Section 8 — Experiences & Add-ons — top-LEFT */
#experiences {
  background:
    radial-gradient(ellipse 95% 75% at 30% 25%,
      var(--atm-cream-bright) 0%,
      var(--atm-cream-base)   45%,
      var(--atm-cream-deep)   100%);
}

/* 2.9 Section 10 — Onboarding — top-RIGHT */
#onboarding {
  background:
    radial-gradient(ellipse 100% 80% at 70% 25%,
      var(--atm-dark-glow)    0%,
      var(--atm-dark-warm)    50%,
      var(--atm-dark-deepest) 100%);
}

/* 2.10 FAQ — top-center, reading rhythm returns to center */
#faq {
  background:
    radial-gradient(ellipse 100% 70% at 50% 28%,
      var(--atm-cream-bright) 0%,
      var(--atm-cream-base)   50%,
      var(--atm-cream-deep)   100%);
}

/* 2.11 Final CTA — dead-center subtle warm core (kept dark for text legibility) */
.final-cta {
  background:
    radial-gradient(ellipse 90% 75% at 50% 50%,
      #2E2618                  0%,    /* faint warm core — opaque, never brightens */
      var(--atm-dark-glow)     35%,
      var(--atm-dark-warm)     70%,
      var(--atm-dark-deepest)  100%);
}

/* ── PART 3 · Section transition bridges (thin gradient strips) ── */

/* Universal section bridge — applied to every direct section element */
section[id], section.hero, section.final-cta { position: relative; }

section[id]::before,
section.hero::before,
section.final-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  pointer-events: none;
  z-index: 1;
}

/* Cream / sand bridges — warm-shadow top fade */
.sec-cream::before,
.sec-sand::before {
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.025) 0%,
    rgba(0, 0, 0, 0.008) 40%,
    rgba(0, 0, 0, 0)     100%);
}

/* Dark bridges — warm gold-edged top fade */
.sec-dark::before,
.final-cta::before {
  background: linear-gradient(180deg,
    rgba(197, 165, 114, 0.06) 0%,
    rgba(197, 165, 114, 0.02) 35%,
    rgba(0, 0, 0, 0)          100%);
}

/* Hero gets no top bridge — nav handles the transition */
.hero::before { height: 0; }

/* Ensure section content sits ABOVE the bridge pseudo-element */
section[id] > *,
section.hero > *,
section.final-cta > * { position: relative; z-index: 2; }

/* ── PART 4 · Viewport edge vignette ── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  background:
    radial-gradient(ellipse 130% 100% at 50% 50%,
      transparent              60%,
      rgba(20, 14, 6, 0.025)   85%,
      rgba(20, 14, 6, 0.055)   100%);
  mix-blend-mode: multiply;
}

/* Raise nav above the vignette so it stays crisp on top */
.nav { z-index: 1001; }

/* ── PART 6 · Mobile simplifications (avoid banding on small viewports) ── */
@media (max-width: 767px) {
  /* iOS Safari ignores background-attachment: fixed and falls back to scroll,
     which sizes the body gradient to the full document (~17k px) and pushes
     the bright halo far below the viewport — leaving the visible top of the
     page rendering as the near-white background-color fallback. Disable
     fixed attachment on mobile so the gradient sizes to the viewport and
     renders the warm cream tone consistently at the top. */
  body { background-attachment: scroll; }
  .hero {
    background-color: #F3E9D5;
    background-image:
      radial-gradient(ellipse 130% 60% at 50% 35%,
        var(--atm-cream-bright) 0%,
        var(--atm-cream-base)   55%,
        var(--atm-cream-deep)   100%);
  }
  #logic, #revenue, #faq {
    background:
      radial-gradient(ellipse 130% 60% at 50% 25%,
        var(--atm-cream-bright) 0%,
        var(--atm-cream-base)   55%,
        var(--atm-cream-deep)   100%);
  }
  #explainer {
    background:
      radial-gradient(ellipse 130% 70% at 30% 30%,
        #F8EFD8 0%,
        #F2EDE3 50%,
        #E8DCC0 100%);
  }
  #experiences {
    background:
      radial-gradient(ellipse 130% 65% at 35% 25%,
        var(--atm-cream-bright) 0%,
        var(--atm-cream-base)   55%,
        var(--atm-cream-deep)   100%);
  }
  #integration, #onboarding {
    background:
      radial-gradient(ellipse 130% 70% at 65% 30%,
        var(--atm-dark-glow)    0%,
        var(--atm-dark-warm)    55%,
        var(--atm-dark-deepest) 100%);
  }
  #commercial {
    background:
      radial-gradient(ellipse 130% 70% at 50% 75%,
        var(--atm-dark-glow)    0%,
        var(--atm-dark-warm)    50%,
        var(--atm-dark-deepest) 100%);
  }
  .final-cta {
    background:
      radial-gradient(ellipse 110% 70% at 50% 50%,
        #2E2618                  0%,
        var(--atm-dark-glow)     35%,
        var(--atm-dark-warm)     70%,
        var(--atm-dark-deepest)  100%);
  }
  body::after {
    background:
      radial-gradient(ellipse 150% 110% at 50% 50%,
        transparent              65%,
        rgba(20, 14, 6, 0.02)    88%,
        rgba(20, 14, 6, 0.04)    100%);
  }
}


/* ════════════════════════════════════════════════════════════
   COMPREHENSIVE IMPROVEMENT PASS — May 2026
   Mobile responsive fixes (PART A) + Visual additions (PART C)
   ════════════════════════════════════════════════════════════ */

/* ---------- A.1 — Calculator output range: progressive mobile sizing ---------- */
@media (max-width: 1023px) {
  .calc-card-output .calc-monthly { font-size: 48px; white-space: nowrap; }
}
@media (max-width: 767px) {
  .calc-card-output .calc-monthly { font-size: 36px; }
  .calc-card-output .calc-annual { font-size: 22px; }
}
@media (max-width: 480px) {
  .calc-card-output .calc-monthly {
    font-size: 28px;
    letter-spacing: -0.02em;
    white-space: normal;
    line-height: 1.15;
  }
  .calc-card-output .calc-annual { font-size: 20px; }
}
@media (max-width: 380px) {
  .calc-card-output .calc-monthly { font-size: 24px; }
  .calc-card-output .calc-annual { font-size: 18px; }
}

/* ---------- A.3 — FAQ numbered prefix mobile collision ---------- */
@media (max-width: 480px) {
  .faq-q::before {
    margin-right: 12px;
    font-size: 11px;
  }
  .faq-q {}
  .faq-a-inner { padding-left: 0; }
}
@media (max-width: 360px) {
  .faq-q::before { margin-right: 8px; }
}

/* ---------- A.4 — Hero trust logos: centered 2-per-row on small viewports ---------- */
@media (max-width: 480px) {
  .hero-trust-logos {
    justify-content: center;
    gap: 12px 20px;
  }
  .trust-logo {}
}
@media (max-width: 360px) {
  .hero-trust-logos { gap: 10px 16px; }
  .trust-logo {}
}

/* ---------- A.6 — Journey card drops to 1-column earlier (1023 not 900) ---------- */
@media (max-width: 1023px) {
  .journey-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .journey-steps::before {
    top: 16px; bottom: 16px;
    left: 16px; right: auto;
    width: 1px; height: auto;
  }
  .journey-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }
  .journey-step h4,
  .journey-step p { text-align: left; }
  .journey-step .num { flex-shrink: 0; }
  .journey-step .body { flex: 1; }
}

/* ---------- A.7 — Pre-order block gap reduction ---------- */
.preorder-grid { gap: 40px; }
@media (max-width: 767px) {
  .preorder-grid { gap: 32px; }
}

/* ---------- A.8 — Industry row column dividers stronger against warm cream ---------- */
.industry-col { border-left: 1px solid rgba(197, 165, 114, 0.55); }
@media (max-width: 767px) {
  .industry-col {
    border-left: 0;
    border-top: 1px solid rgba(197, 165, 114, 0.55);
  }
}

/* ---------- A.9 — Dynamic pricing cards tightness at 480-680px ---------- */
@media (max-width: 900px) {
  .dynamic-pricing-cards { gap: 12px; }
  .dp-card { padding: 24px 16px; }
  .dp-card h4 {}
  .dp-card p {}
}

/* ---------- A.10 — Hero CTAs on 360px viewports ---------- */
@media (max-width: 360px) {
  .hero-ctas .btn { font-size: 13px; padding: 12px 20px; }
}

/* ---------- A.11 — "What happens next" strip stacks at small widths ---------- */
@media (max-width: 480px) {
  .whats-next-strip {
    gap: 16px 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .wn-step {
    flex-wrap: nowrap;
    width: 100%;
  }
  .wn-label {
    white-space: normal;
  }
}

/* ════════════════════════════════════════════════════════════
   PART C — VISUAL ADDITIONS
   ════════════════════════════════════════════════════════════ */

/* ---------- C.1 — Explainer ambience thumbnails ---------- */
.explainer-thumb {
  width: 80px;
  height: 60px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(60, 40, 15, 0.08);
}
.explainer-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(0,0,0,0.06));
  pointer-events: none;
}
/* Warm restaurant interior tones */
.explainer-thumb-1 {
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%,
      #4A2F1A 0%,
      #2E1A0F 50%,
      #1A0F08 100%);
}
.explainer-thumb-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 35%, rgba(255, 200, 130, 0.45) 0%, transparent 18%),
    radial-gradient(circle at 70% 30%, rgba(255, 200, 130, 0.35) 0%, transparent 16%),
    radial-gradient(circle at 50% 45%, rgba(255, 200, 130, 0.30) 0%, transparent 14%);
}
/* Beach club / sunset tones */
.explainer-thumb-2 {
  background:
    linear-gradient(180deg,
      #C5A572 0%,
      #E8A87C 40%,
      #D4716A 70%,
      #4A3A4D 100%);
}
.explainer-thumb-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 35%, rgba(255, 235, 180, 0.65) 0%, transparent 22%);
}
/* Venue floor / business tones */
.explainer-thumb-3 {
  background:
    linear-gradient(135deg,
      #1F1A12 0%,
      #2E2618 35%,
      #3D3220 70%,
      #5C4A2E 100%);
}
.explainer-thumb-3::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg,
      transparent 0px,
      transparent 6px,
      rgba(197, 165, 114, 0.08) 6px,
      rgba(197, 165, 114, 0.08) 7px);
}
/* TODO: Replace .explainer-thumb-N CSS with <img> when real photography is added.
   Suggested searches: "luxury restaurant interior dim warm", "beach club sunset cabana", "chef plating fine dining" */

/* ---------- C.4 + B.11 — Heroized 35% stat callout ---------- */
.stat-callout-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 56px 36px;
}
.stat-callout-hero .hero-number {
  position: relative;
  display: inline-block;
}
.stat-callout-hero .hero-number::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 80px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.stat-callout-hero .hero-claim {
  margin: 18px 0 0;
  max-width: 640px;
  text-wrap: balance;
  text-align: center;
}
.stat-callout-hero .source {
  margin: 8px 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  .stat-callout-hero { padding: 40px 24px; }
  .stat-callout-hero .hero-number {}
  .stat-callout-hero .hero-claim {}
}
@media (max-width: 480px) {
  .stat-callout-hero .hero-number {}
  .stat-callout-hero .hero-claim {}
}


/* ════════════════════════════════════════════════════════════
   CONTENT + READABILITY PASS — May 2026 (round 2)
   PART A readability fixes + PART B.9 zero-cost cards
   ════════════════════════════════════════════════════════════ */

/* ---------- A.1 — Font size floor (≥13px body, ≥14px secondary) ---------- */
.calendar-cell .when      { font-size: 13px; }
.footnote                 { font-size: 14px; }
.footer-bottom            {}
.footer-location          {}
.footer-entity            {}
.footer-tagline           {}
.slider-guidance          {}
.calc-context-line        {}
.calc-chips-cta           {}
.uplift-chip              {}
.preorder-col li          {}
.journey-step h4          {}
.journey-step p           {}

/* ---------- A.2 — Pre-order subtitles: dim sans, not italic gold ---------- */
.preorder-col .sub {
  margin: 4px 0 18px;
}

/* Compare-card italic line — gold-dark for stronger contrast on cream */
.compare-card .italic-line {
  font-style: italic;
  margin: 8px 0 0;
}

/* ---------- A.3 — Eyebrow + headline scale ---------- */
.sec-eyebrow {
  font-size: 14px;
  margin-bottom: 18px;
  letter-spacing: 0.18em;
}

@media (max-width: 767px) {
      }

/* ---------- A.5 — Pre-order icon-list alignment ---------- */
.preorder-col .icon-list li { align-items: flex-start; }
.preorder-col .icon-list .li-icon { margin-top: 3px; }

/* ════════════════════════════════════════════════════════════
   PART B.9 — No cost. No risk. Section 7 restructure
   ════════════════════════════════════════════════════════════ */

.zero-cost-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .zero-cost-row { grid-template-columns: 1fr; gap: 16px; }
}
.zero-cost-card {
  background: rgba(197, 165, 114, 0.06);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.zero-cost-card .zc-amount {
}
.zero-cost-card .zc-label {
}
@media (max-width: 767px) {
  .zero-cost-card { padding: 36px 24px; }
  .zero-cost-card .zc-amount {}
}

.commission-scope {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .commission-scope {}
}


/* ════════════════════════════════════════════════════════════
   CANONICAL TYPOGRAPHY SYSTEM — May 2026
   Every text element on the site uses exactly one of these 10 styles.
   Placed last in stylesheet so source order wins over legacy declarations.
   ════════════════════════════════════════════════════════════ */

/* ── 1. Display — hero headline only ── */
.t-display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--near-black);
}
.sec-dark .t-display,
.final-cta .t-display { color: #fff; }
@media (max-width: 767px) { .t-display { font-size: 34px; } }

/* ── 2. H1 — section title ── */
.t-h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--near-black);
}
.sec-dark .t-h1,
.final-cta .t-h1 { color: #fff; }
@media (max-width: 767px) { .t-h1 { font-size: 28px; } }

/* ── 3. H2 — sub-section title within a section ── */
.t-h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--near-black);
}
.sec-dark .t-h2,
.final-cta .t-h2 { color: #fff; }
@media (max-width: 767px) { .t-h2 { font-size: 22px; } }

/* ── 4. H3 — card title (display serif) ── */
.t-h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--near-black);
}
.sec-dark .t-h3,
.final-cta .t-h3 { color: #fff; }
@media (max-width: 767px) { .t-h3 { font-size: 19px; } }

/* ── 5. H4 — inline title / small card title (sans-serif) ── */
.t-h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--near-black);
}
.sec-dark .t-h4,
.final-cta .t-h4,
.footer .t-h4 { color: #fff; }

/* ── 6. Lead — large body paragraph (section intros) ── */
.t-lead {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--text-mid);
  text-wrap: pretty;
}
.sec-dark .t-lead,
.final-cta .t-lead { color: #BBB; }
@media (max-width: 767px) { .t-lead { font-size: 16px; } }

/* ── 7. Body — standard paragraph ── */
.t-body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--text-mid);
  text-wrap: pretty;
}
.sec-dark .t-body,
.final-cta .t-body { color: #BBB; }

/* ── 8. Caption — small text, metadata, footnote ── */
.t-caption {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--text-dim);
}
.sec-dark .t-caption,
.final-cta .t-caption,
.footer .t-caption { color: #999; }

/* ── 9. Eyebrow — uppercase label ── */
.t-eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-block;
}
.sec-dark .t-eyebrow,
.final-cta .t-eyebrow,
.footer .t-eyebrow { color: var(--gold); }

/* ── 10. Tagline — italic display accent ── */
.t-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--gold);
  text-wrap: balance;
}
.sec-dark .t-tagline,
.final-cta .t-tagline { color: var(--gold); }
@media (max-width: 767px) { .t-tagline { font-size: 20px; } }

/* ── Stat number modifiers ── */
.t-stat {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--gold);
  /* Cormorant Garamond defaults to old-style figures (oldnum), which renders
     '0' at x-height with a descender — next to caps like "AED" it reads as a
     lowercase 'o'. Force lining figures so digits align to cap-height. */
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum", "tnum";
}
.t-stat--xxl { font-size: 120px; }
.t-stat--xl  { font-size: 72px; }
.t-stat--lg  { font-size: 32px; }
@media (max-width: 767px) {
  .t-stat--xxl { font-size: 64px; }
  .t-stat--xl  { font-size: 56px; }
  .t-stat--lg  { font-size: 26px; }
}

/* End of canonical typography system */


/* ---------- Post-typography cleanup: re-add removed structural properties ---------- */
.hero-subhead { max-width: 600px; }
.calc-slider .value { color: var(--gold); font-variant-numeric: tabular-nums; white-space: nowrap; }
