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

    :root {
      --teal: #0a4a63;
      --teal-light: #0d6080;
      --teal-pale: #e8f4f9;
      --white: #ffffff;
      --off-white: #eef1f4;
      --text: #1a1a1a;
      --text-muted: #4b5563;
      --border: #e5eaee;
      --radius: 12px;
      --radius-lg: 20px;
      /* Shared band min-height — measured at 1440×900, reduced 100px from 774 */
      --section-min-height: 674px;
      --hero-min-height: 524px;
      --section-padding-y: 100px;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
      max-width: 100%;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
      max-width: 100%;
    }


    .nav-social {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-left: 8px;
    }
    .nav-icon {
      display: flex;
      align-items: center;
      color: var(--text-muted);
      transition: color 0.2s;
      text-decoration: none;
    }
    .nav-icon:hover { color: var(--teal); }
    .nav-icon svg { width: 18px; height: 18px; }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 72px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }

    @media (min-width: 1140px) {
      nav {
        padding: 0 calc((100vw - 1140px) / 2 + 40px);
      }
    }
    .nav-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    nav.scrolled { box-shadow: 0 2px 20px rgba(10,74,99,0.08); }

    .nav-logo svg { height: 28px; width: auto; }
    .logo-badge svg path:not(.cls-1) { fill: white !important; }
    .logo-badge {
      background: #1a1a1a;
      border-radius: 12px;
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }
    .nav-logo:hover .logo-badge { background: var(--teal); }
    .nav-logo path:not(.cls-1) { fill: var(--teal); }
    .logo-badge path:not(.cls-1) { fill: white !important; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }
    .nav-links a {
      font-size: 13px;
      font-weight: 400;
      color: var(--text-muted);
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--teal); }

    .nav-cta {
      background: var(--teal);
      color: var(--white) !important;
      padding: 0 20px;
      height: 38px;
      border-radius: 100px !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 13px !important;
      font-weight: 500 !important;
      letter-spacing: 0.01em;
      border: 1.5px solid var(--teal);
      transition: background 0.25s ease, color 0.25s ease !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      box-sizing: border-box !important;
    }
    .nav-cta:hover { background: transparent !important; color: var(--teal) !important; }

    .nav-social {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-left: 12px;
    }
    .nav-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px; height: 32px;
      border-radius: 50%;
      color: var(--text-muted);
      transition: color 0.2s, background 0.2s;
      text-decoration: none;
    }
    .nav-icon:hover { color: var(--teal); background: var(--teal-pale); }
    .nav-icon svg { width: 16px; height: 16px; }

    /* ── HERO ── */
    .section-band {
      min-height: var(--section-min-height);
    }

    #hero {
      position: relative;
      margin-top: 72px;
      padding: 0;
      display: block;
      background: var(--white);
      min-height: var(--hero-min-height);
      box-sizing: border-box;
    }

    .hero-left {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-sizing: border-box;
      width: 40%;
      max-width: 520px;
      padding: 0 40px;
      background: transparent;
    }

    .hero-left .hero-eyebrow,
    .hero-left .hero-headline,
    .hero-left .hero-buttons {
      max-width: 100%;
      width: auto;
    }

    .hero-left .hero-headline {
      width: max-content;
    }

    .hero-left .hero-sub {
      max-width: min(100%, calc(5.85 * clamp(2.375rem, 4.5vw, 3.5rem)));
      width: auto;
    }

    @media (min-width: 1140px) {
      .hero-left {
        left: calc((100vw - 1140px) / 2);
        padding-left: 40px;
        padding-right: 40px;
      }
    }

    @media (max-width: 900px) {
      .hero-left {
        left: 0;
        padding-left: 24px;
        padding-right: 24px;
      }
    }

    .hero-eyebrow {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(12px);
      animation: fadeUp 0.6s ease forwards 0.2s;
    }

    .hero-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(38px, 4.5vw, 56px);
      font-weight: 900;
      line-height: 1.0;
      color: var(--text);
      margin-bottom: 24px;
    }

    .hero-headline .word {
      display: inline-block;
      opacity: 0;
      transform: translateY(24px);
      animation: fadeUp 0.5s ease forwards;
    }

    .hero-headline em {
      font-style: italic;
      color: var(--teal);
      font-weight: 700;
    }

    .hero-sub {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 0.6s ease forwards 0.9s;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.6s ease forwards 1.1s;
    }

    .btn-primary, button.btn-primary {
      background: var(--teal);
      color: var(--white);
      padding: 0 24px;
      height: 38px;
      border-radius: 100px;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 500;
      text-decoration: none;
      border: 1.5px solid var(--teal);
      transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      cursor: pointer;
    }
    .btn-primary:hover { background: transparent; color: var(--teal); transform: translateY(-2px); }

    .btn-outline {
      background: transparent;
      color: var(--teal);
      padding: 0 24px;
      height: 38px;
      border-radius: 100px;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 500;
      text-decoration: none;
      border: 1.5px solid var(--teal);
      transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }
    .btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

    /* ── QUOTE CTA BANNER ── */
    .quote-cta-banner {
      background: var(--text);
      color: rgba(255, 255, 255, 0.5);
      padding: 80px 0;
      text-align: center;
    }

    .quote-cta-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    .quote-cta-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.5vw, 40px);
      font-weight: 900;
      line-height: 1.15;
      color: var(--white);
      max-width: 640px;
      margin: 0;
    }

    .quote-cta-headline strong {
      font-weight: 900;
      color: var(--white);
    }

    .quote-cta-btn {
      background: var(--white);
      color: var(--teal);
      padding: 0 24px;
      height: 38px;
      border-radius: 100px;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 500;
      text-decoration: none;
      border: 2px solid #0a4a64;
      transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      cursor: pointer;
      line-height: 1;
    }

    .quote-cta-btn:hover {
      background: var(--teal);
      color: var(--white);
      transform: translateY(-2px);
    }

    @media (max-width: 600px) {
      .quote-cta-banner {
        padding: 60px 0;
      }

      .quote-cta-inner {
        gap: 20px;
      }
    }

    /* ── SUBPAGE HEADER (shared top spacing + headline size) ── */
    .subpage-header .booking-header {
      margin-bottom: 48px;
    }

    .subpage-header .booking-header .hero-headline {
      font-size: clamp(28px, 3.2vw, 38px);
      line-height: 1.15;
    }

    /* ── PACKAGES PAGE ── */
    .packages-header-sub {
      color: var(--text-muted);
      max-width: 640px;
    }

    .booking-header .section-label.reveal {
      transition-delay: 0s;
    }

    .booking-header .hero-headline.reveal {
      transition-delay: 0.1s;
    }

    .booking-header .packages-header-sub.reveal {
      transition-delay: 0.2s;
    }

    .packages-grid .packages-card.reveal:nth-child(1) {
      transition-delay: 0s;
    }

    .packages-grid .packages-card.reveal:nth-child(2) {
      transition-delay: 0.1s;
    }

    .packages-grid .packages-card.reveal:nth-child(3) {
      transition-delay: 0.2s;
    }

    .packages-grid .packages-card.reveal:nth-child(4) {
      transition-delay: 0.3s;
    }

    .packages-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      align-items: stretch;
    }

    .packages-card.skill-card {
      background: #ffffff;
      padding: 0;
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      border: 2px solid #e2e6ea;
      border-radius: 22px;
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .packages-card.skill-card.reveal {
      transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.25s ease;
    }

    .packages-card.skill-card.reveal.visible {
      transition: transform 0.25s, box-shadow 0.25s, opacity 0.6s ease;
    }

    .packages-card.skill-card.packages-card--featured {
      border: 2px solid #0a4a64;
    }

    .packages-card.skill-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(10, 74, 99, 0.12);
    }

    .packages-card__top {
      padding: 28px 28px 20px;
    }

    .packages-card__title-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 4px;
    }

    .packages-card__title-row .booking-tier {
      margin-bottom: 0;
    }

    .packages-badge-pill {
      display: inline-flex;
      align-items: center;
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: #0a4a64;
      background: #cfe3ec;
      border-radius: 100px;
      padding: 4px 12px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .packages-card__top .booking-meta {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }

    .packages-card:not(.packages-card--featured) .packages-card__top {
      padding-bottom: 12px;
    }

    .packages-card:not(.packages-card--featured) .packages-card__guidance {
      padding-top: 8px;
    }

    .packages-card__guidance {
      font-size: 13px;
      line-height: 1.55;
      font-style: italic;
      color: #8a9099;
      margin: 0 0 20px;
      padding-top: 12px;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .packages-card--featured .packages-card__top {
      background: #0a4a64;
      margin: 0;
      padding: 28px 28px 20px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .packages-card--featured .packages-card__body {
      padding-top: 0;
    }

    .packages-card--featured .packages-card__guidance {
      border-top: none;
      padding-top: 20px;
    }

    .packages-card--featured .packages-card__top .booking-tier {
      color: var(--white);
    }

    .packages-card--featured .packages-card__top .section-label {
      color: rgba(255, 255, 255, 0.7);
    }

    .packages-card--featured .packages-card__top .booking-price {
      margin-top: 10px;
    }

    .packages-card__body {
      padding: 14px 28px 28px;
      flex: 1;
      display: flex;
      flex-direction: column;
      min-height: 0;
    }

    .packages-card__body .booking-includes-label {
      margin-top: 0;
      margin-bottom: 10px;
    }

    .packages-card .booking-includes-list {
      gap: 6px;
      margin-bottom: 28px;
    }

    .packages-card .booking-includes-list li {
      font-size: 13px;
      padding-left: 20px;
    }

    .packages-card .booking-includes-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      top: 0.1em;
      width: auto;
      height: auto;
      border-radius: 0;
      background: none;
      color: var(--teal);
      font-size: 12px;
      font-weight: 700;
      line-height: 1;
      transform: none;
    }

    .packages-card__cta.btn-primary {
      margin-top: auto;
      align-self: stretch;
      width: 100%;
      height: 38px;
      padding: 0 24px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      flex-shrink: 0;
    }

    @media (min-width: 601px) and (max-width: 1199px) {
      .packages-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1200px) {
      .packages-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
      }

      .packages-card__top {
        padding: 20px 18px 16px;
      }

      .packages-card--featured .packages-card__top {
        padding: 20px 18px 16px;
      }

      .packages-card__body {
        padding: 12px 18px 22px;
      }

      .packages-card__guidance {
        font-size: 12px;
      }
    }

    @media (max-width: 600px) {
      .packages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .booking-page:has(.packages-grid) .container {
        padding-left: 50px;
        padding-right: 50px;
      }

      .subpage-header .booking-header {
        margin-bottom: 24px;
      }

      .packages-card__top,
      .packages-card--featured .packages-card__top {
        padding: 20px 20px 14px;
      }

      .packages-card:not(.packages-card--featured) .packages-card__top {
        padding-bottom: 8px;
      }

      .packages-card__body {
        padding: 10px 20px 20px;
      }

      .packages-card__guidance {
        margin-bottom: 14px;
        padding-top: 8px;
        line-height: 1.5;
      }

      .packages-card:not(.packages-card--featured) .packages-card__guidance {
        padding-top: 6px;
      }

      .packages-card--featured .packages-card__guidance {
        padding-top: 14px;
      }

      .packages-card__body .booking-includes-label {
        margin-bottom: 6px;
      }

      .packages-card .booking-includes-list {
        gap: 4px;
        margin-bottom: 18px;
      }

      .packages-card .booking-includes-list li {
        line-height: 1.45;
      }

      .packages-card--featured .packages-card__top .booking-price {
        margin-top: 6px;
      }

      .packages-card__cta.btn-primary {
        height: 36px;
      }
    }

    .hero-right {
      position: absolute;
      top: -72px;
      left: 0;
      right: 0;
      width: 100%;
      height: calc(100% + 72px);
      min-height: calc(100% + 72px);
      overflow: hidden;
      z-index: 0;
      background: var(--white);
    }
    .hero-right img {
      position: absolute;
      right: 0;
      top: 0;
      z-index: 0;
      width: 66.667%;
      height: 100%;
      min-height: 100%;
      object-fit: cover;
      object-position: 32% center;
      display: block;
      margin: 0;
      padding: 0;
    }

    @media (max-width: 1200px) {
      .hero-right img {
        object-position: 38% center;
      }
    }

    @media (max-width: 1000px) {
      .hero-right img {
        object-position: 44% center;
      }
    }

    @media (max-width: 850px) {
      .hero-right img {
        object-position: 50% center;
      }
    }

    @media (max-width: 700px) {
      .hero-right img {
        object-position: 54% center;
      }
    }
    .hero-right::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      pointer-events: none;
      background: linear-gradient(
        to right,
        #ffffff 0%,
        #ffffff 37.5%,
        rgba(255, 255, 255, 0.88) 41%,
        rgba(255, 255, 255, 0.55) 44.5%,
        rgba(255, 255, 255, 0.22) 48%,
        rgba(255, 255, 255, 0) 51.5%
      );
    }

    /* ── SECTIONS ── */
    section { padding: 100px 0; }
    .container { max-width: 1140px; margin: 0 auto; padding: 0 40px; }

    .section-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 3.5vw, 44px);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .section-title em {
      font-style: italic;
      color: var(--teal);
    }

    .section-sub {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 560px;
    }

    /* ── ABOUT ── */
    #about { background: var(--off-white); }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-image-wrap {
      padding: 40px 40px 88px;
      width: 100%;
      max-width: 100%;
      justify-self: stretch;
      align-self: start;
    }

    .about-image-frame {
      position: relative;
      width: 100%;
      max-width: 100%;
    }

    .about-image-frame img {
      display: block;
      width: 100%;
      aspect-ratio: 4 / 5;
      height: auto;
      object-fit: cover;
      border-radius: var(--radius-lg);
    }

    .about-image-frame .about-badge {
      position: absolute;
      top: auto;
      left: auto;
      bottom: 0;
      right: 0;
      transform: translate(50%, 50%);
      margin: 0;
      background: var(--white);
      border-radius: var(--radius);
      width: 96px;
      height: 96px;
      padding: 12px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 32px rgba(10,74,99,0.15);
      text-align: center;
      z-index: 1;
    }

    .about-image-placeholder {
      width: 72%;
      aspect-ratio: 4/5;
      border-radius: var(--radius-lg);
      position: relative;
      overflow: hidden;
      margin: 20px auto;
      padding: 20px;
    }

    .about-image-placeholder::before {
      content: '';
      position: absolute;
      bottom: -40px; right: -40px;
      width: 200px; height: 200px;
      background: rgba(255,255,255,0.07);
      border-radius: 50%;
    }

    .about-badge-num {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 900;
      color: var(--teal);
      line-height: 1;
    }
    .about-badge-label {
      font-size: 11px;
      line-height: 1.25;
      color: var(--text-muted);
      margin-top: 4px;
    }
    @media (max-width: 900px) {
      .about-image-frame .about-badge {
        width: 76px;
        height: 76px;
        padding: 8px;
        right: 0;
        transform: translate(50%, 50%);
      }
      .about-badge-num { font-size: 22px; }
      .about-badge-label { font-size: 9px; }
    }

    .about-content .section-title { margin-top: 12px; }
    .about-text {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-top: 20px;
      margin-bottom: 20px;
    }

    /* Privacy policy: compact legal prose */
    .booking-page:has(.privacy-content) .booking-header {
      margin-bottom: 28px;
    }

    .privacy-content {
      max-width: 42rem;
      padding-bottom: 48px;
      font-size: 15px;
      line-height: 1.65;
      color: var(--text-muted);
    }

    /* Override global section { padding: 100px 0 } */
    .privacy-section {
      padding: 0;
    }

    .privacy-section + .privacy-section {
      margin-top: 1.5rem;
    }

    .privacy-section .booking-tier {
      font-family: 'Inter', sans-serif;
      font-size: 1.125rem;
      font-weight: 600;
      line-height: 1.35;
      color: var(--dark);
      margin: 0 0 0.5rem;
      letter-spacing: -0.01em;
    }

    .privacy-section .about-text,
    .privacy-section .privacy-list {
      font-size: inherit;
      line-height: inherit;
      color: inherit;
      margin: 0;
    }

    .privacy-section .about-text + .about-text,
    .privacy-section .privacy-list + .about-text {
      margin-top: 0.875rem;
    }

    .privacy-list {
      list-style: disc;
      padding-left: 1.35em;
      margin-top: 0.25rem;
    }

    .privacy-list li + li {
      margin-top: 0.35rem;
    }

    .privacy-content a {
      color: var(--teal);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .privacy-content a:hover {
      color: var(--teal-light);
    }

    @media (max-width: 900px) {
      .privacy-content,
      .privacy-content p,
      .privacy-content li {
        font-size: 15px !important;
        line-height: 1.65 !important;
      }

      .privacy-section .booking-tier {
        font-size: 1.0625rem;
      }
    }

    /* ── SKILLS ── */
    #skills { background: var(--white); }

    .skills-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
      margin-bottom: 64px;
    }

    .skills-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .skill-card {
      background: var(--off-white);
      border-radius: var(--radius);
      padding: 32px 28px;
      border: 1px solid var(--border);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .skill-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(10,74,99,0.1);
    }

    .packages-card.skill-card {
      border-radius: 22px !important;
    }

    .packages-card__top {
      border-radius: 20px 20px 0 0;
    }

    .packages-card--featured .packages-card__top {
      border-radius: 20px 20px 0 0;
    }

    .packages-card__body {
      border-radius: 0 0 20px 20px;
    }

    .skill-icon {
      width: 44px; height: 44px;
      background: var(--teal-pale);
      border-radius: 10px;
      border: 1px solid rgba(10,74,99,0.15);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }
    .skill-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

    .skill-card h3 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .skill-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 12px;
    }
    .skill-tag {
      font-size: 11px;
      font-weight: 500;
      background: var(--teal-pale);
      color: var(--teal);
      padding: 4px 10px;
      border-radius: 100px;
      border: 1px solid rgba(10,74,99,0.15);
    }

    /* ── PROJECTS ── */
    #projects { background: var(--off-white); }

    .projects-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 40px;
      flex-wrap: wrap;
      gap: 24px;
    }

    .filter-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .filter-tab {
      font-size: 13px;
      font-weight: 500;
      padding: 8px 18px;
      border-radius: 100px;
      border: 1.5px solid var(--border);
      background: var(--white);
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.2s;
    }
    .filter-tab:hover { border-color: var(--teal); color: var(--teal); }
    .filter-tab.active {
      background: var(--teal);
      color: var(--white);
      border-color: var(--teal);
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .project-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.25s, box-shadow 0.25s;
      border: 1px solid var(--border);
    }
    .project-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(10,74,99,0.12);
    }
    .project-card.hidden { display: none; }

    .project-thumb {
      width: 100%;
      aspect-ratio: 16/10;
      object-fit: cover;
      display: block;
      background: linear-gradient(135deg, var(--teal-pale), var(--teal));
    }

    .project-thumb-placeholder {
      width: 100%;
      aspect-ratio: 16/10;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.05em;
    }

    .project-info {
      padding: 24px;
    }

    .project-category {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 8px;
    }

    .project-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .project-info p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .project-arrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 600;
      color: var(--teal);
      margin-top: 16px;
    }

    /* ── REVIEWS ── */
    #reviews { background: var(--teal); }

    #reviews .section-label { color: rgba(255,255,255,0.5); }
    #reviews .section-title { color: var(--white); }
    #reviews .section-title em { color: rgba(255,255,255,0.6); }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .review-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      transition: background 0.2s;
    }
    .review-card:hover { background: rgba(255,255,255,0.12); }

    .review-stars {
      display: flex;
      gap: 4px;
      margin-bottom: 20px;
      color: #ffffff;
      font-size: 16px;
    }
    .star { color: #ffffff; font-size: 16px; }

    .review-text {
      font-size: 15px;
      color: rgba(255,255,255,0.85);
      line-height: 1.75;
      margin-bottom: 28px;
      font-style: italic;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .review-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      font-weight: 700;
      color: white;
      font-family: 'Playfair Display', serif;
      flex-shrink: 0;
    }

    .review-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--white);
    }
    .review-role {
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      margin-top: 2px;
    }

    /* ── CONTACT ── */
    #contact { background: var(--off-white); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .form-group label {
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      padding: 12px 16px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
      color: var(--text);
      outline: none;
      transition: border-color 0.2s;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus { border-color: var(--teal); }

    .form-group textarea { resize: vertical; min-height: 120px; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }


    .contact-info .section-title { margin-bottom: 16px; }
    .contact-info .section-sub { margin-bottom: 40px; }

    .contact-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 24px;
    }
    .contact-icon {
      width: 40px; height: 40px;
      background: var(--teal-pale);
      border-radius: 10px;
      border: 1px solid rgba(10,74,99,0.15);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-icon svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .contact-item-label { font-size: 12px; color: var(--text-muted); margin-bottom: 2px; }
    .contact-item-value { font-size: 15px; font-weight: 500; color: var(--text); }

    /* ── FOOTER ── */
    footer {
      background: var(--text);
      color: rgba(255,255,255,0.5);
      padding: 40px 0;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-logo svg { height: 42px; }
    .footer-logo path:not(.cls-1) { fill: rgba(255,255,255,0.7); }

    .footer-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }
    .footer-links a {
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: rgba(255,255,255,0.8); }

    .footer-links a.footer-link-highlight {
      color: var(--white);
    }

    .footer-links a.footer-link-highlight:hover {
      color: var(--white);
    }

    .footer-copy { font-size: 13px; }

    /* ── MODAL ── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(10,74,99,0.5);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }
    .modal-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .modal {
      background: var(--white);
      border-radius: var(--radius-lg);
      max-width: 1000px;
      width: 100%;
      max-height: 85vh;
      overflow-y: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      transform: translateY(20px);
      transition: transform 0.3s;
    }
    .modal-overlay.open .modal { transform: translateY(0); }

    .modal-content { padding: 52px 48px; overflow-y: auto; }

    .modal-close {
      position: absolute;
      top: 24px; right: 24px;
      width: 36px; height: 36px;
      background: var(--off-white);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      color: var(--text-muted);
      transition: background 0.2s;
    }
    .modal-close:hover { background: var(--border); }

    .modal-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 12px;
    }
    .modal-title {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .modal-body {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.8;
    }
    .modal-body p { margin-bottom: 14px; }

    .modal-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 24px;
    }
    .modal-tag {
      font-size: 12px;
      font-weight: 500;
      background: var(--teal-pale);
      color: var(--teal);
      padding: 5px 12px;
      border-radius: 100px;
    }

    .modal-images {
      background: var(--off-white);
      border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
      padding: 32px 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      overflow-y: auto;
    }

    .modal-img {
      width: 100%;
      border-radius: var(--radius);
      background: linear-gradient(135deg, var(--teal-pale), var(--teal));
      aspect-ratio: 16/10;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.5);
      font-size: 13px;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      /* NAV */
      nav { padding: 0 24px; }

      /* GLOBAL BODY TEXT */
      p, li, .section-sub, .skill-card p, .project-info p,
      .review-text, .contact-item-value, .contact-item-label,
      .form-group label, .about-text, .modal-body { font-size: 13px !important; line-height: 1.6 !important; }
      .section-label { font-size: 10px !important; }

      /* ABOUT — keep two-col but smaller */
      .about-grid { grid-template-columns: 1fr 1fr !important; gap: 24px; }
      .about-text { font-size: 13px !important; line-height: 1.6 !important; }
      #about .section-sub { font-size: 13px !important; }

      /* OTHER SECTIONS — collapse */
      .skills-intro, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .skills-grid { grid-template-columns: 1fr 1fr; }
      .projects-grid { grid-template-columns: 1fr 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .modal { grid-template-columns: 1fr; }
      .modal-images { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
      .footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
      }

      .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 20px;
      }

      .footer-copy {
        text-align: center;
        width: 100%;
      }

      .packages-card .booking-tier {
        font-size: 28px !important;
        line-height: 1.1 !important;
      }

      .packages-card .booking-price {
        font-size: 25px !important;
        line-height: 1.1 !important;
      }

      .booking-package-card .booking-price {
        font-size: 25px !important;
        line-height: 1.1 !important;
      }

      .quote-cta-headline {
        font-size: 28px !important;
        line-height: 1.1 !important;
      }
    }

    @media (max-width: 600px) {
      .skills-grid, .projects-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      section { padding: 60px 0; }
      #about { padding-top: 40px; }
      section#hero { padding: 0 !important; margin-bottom: 0 !important; }
      .section-title { font-size: clamp(34px, 9vw, 44px) !important; line-height: 1.05 !important; }
      .section-label { font-size: 10px !important; }
      .skills-intro { gap: 12px !important; margin-bottom: 28px !important; }
      #skills { padding: 48px 0 !important; }

      .container {
        padding: 0 30px;
      }

      nav {
        padding: 0 30px;
      }

      .form-group input,
      .form-group textarea,
      .form-group select {
        width: 100%;
      }
    }

    /* ── HAMBURGER ── */
    .hamburger {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      border-radius: 6px;
      transition: background 0.2s;
    }
    .hamburger:hover { background: var(--teal-pale); }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all 0.25s ease;
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── MOBILE PHONES ONLY ── */
    @media (max-width: 600px) {

      /* HERO: image on top, text below, single column */
      #hero {
        height: auto !important;
        min-height: unset !important;
        max-height: unset !important;
        margin-top: 72px !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
      }
      .hero-right {
        position: relative !important;
        top: -72px !important;
        left: auto !important;
        width: 100% !important;
        height: calc(58vw + 72px) !important;
        min-height: calc(200px + 72px) !important;
        margin-bottom: -72px !important;
        order: 1 !important;
        z-index: 0 !important;
        flex-shrink: 0 !important;
        overflow: hidden !important;
      }
      .hero-right img {
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        object-fit: cover !important;
        object-position: 48% center !important;
        margin-left: 0 !important;
        right: auto !important;
        left: 0 !important;
      }
      .hero-right::after {
        background: linear-gradient(to bottom, rgba(255,255,255,0) 50%, rgba(255,255,255,0.3) 100%) !important;
      }
      .hero-left {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        order: 2 !important;
        z-index: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 28px 30px 32px !important;
        background: var(--white) !important;
        margin: 0 !important;
      }
      .hero-left .hero-eyebrow,
      .hero-left .hero-headline,
      .hero-left .hero-sub,
      .hero-left .hero-buttons {
        max-width: 100% !important;
      }
      .hero-eyebrow { font-size: 10px !important; margin-bottom: 8px !important; }
      .hero-headline { font-size: clamp(36px, 9vw, 48px) !important; line-height: 1.0 !important; margin-bottom: 14px !important; }
      .hero-sub { font-size: 13px !important; line-height: 1.6 !important; margin-bottom: 20px !important; max-width: 100% !important; }
      .hero-buttons { flex-direction: row !important; flex-wrap: wrap !important; gap: 10px !important; }

      /* ABOUT: single column on mobile */
      .about-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
      .about-image-wrap {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 40px 40px 78px;
        justify-self: stretch;
      }

      .about-image-frame .about-badge {
        right: 0 !important;
        transform: translate(50%, 50%) !important;
      }
    }


    /* ── TABLET + PHONE: hamburger replaces nav links ── */
    @media (max-width: 900px) {
      .hamburger { display: flex; }
      .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0; right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 16px 0 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 32px rgba(0,0,0,0.08);
        z-index: 99;
      }
      .nav-links.open {
        display: flex;
      }
      .nav-links li { width: 100%; text-align: center; }
      .nav-links a {
        display: block;
        padding: 14px 24px;
        font-size: 15px !important;
        font-weight: 500 !important;
      }
      .nav-links .nav-cta {
        margin: 8px auto 0;
        width: auto;
        display: inline-flex !important;
      }
    }

    .modal-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 20px;
      padding: 9px 20px;
      border-radius: 100px;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 500;
      text-decoration: none;
      border: 1.5px solid var(--teal);
      color: var(--teal);
      background: transparent;
      transition: background 0.25s ease, color 0.25s ease;
      box-sizing: border-box;
    }
    .modal-link:hover { background: var(--teal); color: white; }
    .modal-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .modal-inactive {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 20px;
      padding: 9px 20px;
      border-radius: 100px;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: var(--text-muted);
      background: var(--border);
      border: 1.5px solid var(--border);
      cursor: default;
      box-sizing: border-box;
    }

    /* ── BOOKING PAGE ── */
    .booking-page {
      min-height: 100vh;
      padding: 72px 0 88px;
      background: var(--off-white);
    }

    /* Subpages: extra breathing room below the fixed nav */
    .subpage-header.booking-page {
      padding-top: 88px;
    }

    .booking-header {
      margin-bottom: 40px;
    }

    .booking-header .hero-headline {
      margin-bottom: 16px;
    }

    .booking-grid {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .booking-embeds {
      display: flex;
      flex-direction: column;
      gap: 48px;
      width: 100%;
      min-width: 0;
    }

    .cal-frame {
      position: relative;
      width: 100%;
      min-width: 0;
      padding: 16px;
      box-sizing: border-box;
      border-radius: var(--radius);
      overflow: visible;
    }

    .cal-frame-bg {
      position: absolute;
      inset: 0;
      background: var(--teal);
      z-index: 0;
      border-radius: var(--radius);
      pointer-events: none;
    }

    .cal-frame #my-cal-inline-45min {
      position: relative;
      z-index: 1;
      width: 100%;
      min-width: 0;
      overflow: auto;
      -webkit-overflow-scrolling: touch;
    }

    .cal-frame #my-cal-inline-45min > style {
      display: none !important;
    }

    .cal-frame iframe {
      display: block;
      width: 100%;
      border: none;
      border-radius: 8px;
      min-height: 400px;
    }

    .cal-error-message {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      min-height: 300px;
      text-align: center;
      color: rgba(255, 255, 255, 0.9);
      font-family: 'Inter', sans-serif;
      padding: 32px;
    }

    .cal-error-message p {
      margin: 4px 0;
    }

    @media (min-width: 1024px) {
      .cal-frame {
        min-height: 0;
      }

      .cal-frame #my-cal-inline-45min {
        min-width: 0;
        width: 100%;
      }
    }

    .booking-tier {
      font-family: 'Playfair Display', serif;
      font-size: clamp(24px, 3vw, 30px);
      font-weight: 900;
      line-height: 1.1;
      color: var(--teal);
      margin: 0 0 6px;
    }

    .booking-price {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--text);
      margin: 0 0 4px;
    }

    .booking-meta {
      font-size: 13px;
      color: var(--text-muted);
      margin: 0 0 24px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border);
    }

    .packages-card--featured .packages-card__top .booking-price,
    .packages-card--featured .packages-card__top .booking-meta {
      color: #ffffff;
    }

    .booking-includes-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--teal);
      margin: 0 0 14px;
    }

    .booking-includes-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .booking-includes-list li {
      position: relative;
      padding-left: 20px;
      font-size: 14px;
      line-height: 1.5;
      color: var(--text);
    }

    .booking-includes-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      top: 0.1em;
      width: auto;
      height: auto;
      border-radius: 0;
      background: none;
      color: var(--teal);
      font-size: 12px;
      font-weight: 700;
      line-height: 1;
      transform: none;
    }

    .booking-embed-placeholder {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 220px;
      border: 1.5px dashed var(--border);
      border-radius: var(--radius);
      background: var(--teal-pale);
      color: var(--text-muted);
      font-size: 14px;
      text-align: center;
      padding: 24px;
    }

    .booking-package-card {
      background: var(--white);
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .booking-package-card.skill-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(10, 74, 99, 0.12);
    }

    #tally-form-container {
      background: var(--white);
    }

    #tally-form-container .booking-embed-placeholder {
      color: var(--text);
    }

    /* ── QUOTE CALCULATOR ── */
    .quote-card {
      background: var(--white);
      max-width: 560px;
      margin: 0 auto;
      padding: 32px 28px;
    }

    .quote-card.skill-card:hover {
      transform: none;
      box-shadow: none;
    }

    .quote-progress {
      height: 3px;
      background: rgba(10, 74, 99, 0.12);
      border-radius: 2px;
      margin-bottom: 32px;
      overflow: hidden;
    }

    .quote-progress-bar {
      height: 100%;
      background: var(--teal);
      transition: width 0.4s ease;
    }

    .quote-question-card {
      display: flex;
      flex-direction: column;
    }

    .quote-step-label {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 10px;
      letter-spacing: 0.04em;
    }

    .quote-question-label {
      font-family: 'Inter', sans-serif;
      font-size: 19px;
      font-weight: 600;
      color: var(--text);
      line-height: 1.4;
      margin: 0 0 6px;
    }

    .quote-question-label--solo {
      margin-bottom: 20px;
    }

    .quote-question-sub {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.5;
      margin: 0 0 20px;
    }

    .quote-options {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .quote-option {
      text-align: left;
      padding: 14px 16px;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: var(--white);
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      color: var(--text);
      transition: border-color 0.15s ease, background 0.15s ease;
      line-height: 1.4;
    }

    .quote-option:hover {
      border-color: var(--teal);
    }

    .quote-option--selected {
      border: 2px solid var(--teal);
      background: rgba(10, 74, 99, 0.05);
      padding: 13px 15px;
    }

    .quote-back {
      margin-top: 18px;
      background: none;
      border: none;
      color: var(--text-muted);
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      cursor: pointer;
      padding: 0;
      text-align: left;
    }

    .quote-back:hover {
      color: var(--teal);
    }

    .quote-reveal-ready {
      text-align: center;
      padding: 12px 0;
    }

    .quote-ready-text {
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      color: var(--text);
      margin-bottom: 20px;
    }

    .quote-reveal-btn {
      height: auto;
      padding: 13px 28px;
      border-radius: 8px;
      font-size: 15px;
    }

    .quote-result-label {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 8px;
    }

    .quote-tier-name {
      margin-bottom: 4px;
    }

    .quote-tier-meta {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      color: var(--text-muted);
      margin: 0 0 20px;
    }

    .quote-line-item {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-top: 1px solid var(--border);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: var(--text);
    }

    .quote-total-section {
      margin-top: 16px;
      padding-top: 16px;
      border-top: 2px solid var(--teal);
    }

    .quote-total-row {
      display: flex;
      justify-content: space-between;
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--teal);
      margin-bottom: 12px;
    }

    .quote-deposit {
      background: var(--off-white);
      border-radius: 8px;
      padding: 14px 16px;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: var(--text);
      line-height: 1.5;
    }

    .quote-actions {
      margin-top: 20px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .quote-actions .btn-primary,
    .quote-actions .btn-outline {
      flex: 1;
      min-width: 140px;
      height: auto;
      padding: 13px 20px;
      border-radius: 8px;
      font-size: 14px;
      cursor: pointer;
    }

    @keyframes quoteFadeIn {
      from { opacity: 0; transform: translateY(4px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .quote-fade-in {
      animation: quoteFadeIn 0.35s ease;
    }

    @media (min-width: 1024px) {
      .booking-page {
        padding: 88px 0 100px;
      }

      .subpage-header.booking-page {
        padding-top: 104px;
      }

      .booking-grid {
        display: grid;
        grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
        gap: 48px;
        align-items: start;
      }

      .booking-grid > .booking-embeds {
        min-width: 0;
      }

      .booking-embeds {
        gap: 56px;
      }

      #tally-form-container {
        min-height: 360px;
      }
    }

    /* ── THANK YOU PAGE ── */
    .thank-you-page {
      --thank-you-section-gap: 48px;
      min-height: 100vh;
      padding: 72px 0 88px;
      background: var(--off-white);
    }

    .thank-you-page .container {
      display: flex;
      flex-direction: column;
      gap: var(--thank-you-section-gap);
    }

    .thank-you-page section.thank-you-banner,
    .thank-you-page section.thank-you-content {
      padding: 0;
      margin: 0;
    }

    .thank-you-banner {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--white);
      aspect-ratio: 1792 / 592;
    }

    .thank-you-banner__image {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .thank-you-banner::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.85) 30%, rgba(255,255,255,0.35) 55%, rgba(255,255,255,0) 72%);
      pointer-events: none;
      z-index: 1;
    }

    .thank-you-banner__overlay {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 2;
      padding: var(--thank-you-section-gap) 40px;
      max-width: min(520px, 85%);
      pointer-events: none;
    }

    .thank-you-banner .hero-headline {
      margin-bottom: 0;
      line-height: 1;
      opacity: 0;
      transform: translateY(12px);
      animation: fadeUp 0.6s ease forwards 0.45s;
    }

    .thank-you-banner .hero-headline .thank-you-headline-emoji {
      display: inline;
      margin: 0;
      padding: 0;
      vertical-align: baseline;
      line-height: inherit;
    }

    .thank-you-content {
      max-width: 640px;
    }

    .thank-you-content .about-text:first-child {
      margin-top: 0;
    }

    .thank-you-list {
      margin: 8px 0 20px;
    }

    @media (max-width: 900px) {
      .thank-you-page {
        --thank-you-section-gap: 24px;
        padding: 48px 0 72px;
      }

      .thank-you-banner {
        aspect-ratio: auto;
        overflow: visible;
        background: transparent;
        border-radius: 0;
      }

      .thank-you-banner__image {
        position: static;
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
      }

      .thank-you-banner::after {
        display: none;
      }

      .thank-you-banner__overlay {
        position: static;
        top: auto;
        left: auto;
        z-index: auto;
        max-width: none;
        padding: var(--thank-you-section-gap) 0 0;
        pointer-events: auto;
      }

      .thank-you-banner .hero-headline {
        font-size: clamp(28px, 7vw, 40px) !important;
        line-height: 1 !important;
      }

      .thank-you-banner .hero-eyebrow {
        margin-bottom: 12px;
      }
    }
