    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
    body { font-family: 'Plus Jakarta Sans', -apple-system, sans-serif; background: #1a1410; color: #FAF6ED; overflow: hidden; height: 100vh; width: 100vw; }

    :root {
      --cream: #FAF6ED; --ink: #1E150A; --muted: #8A7A66; --subtle: #B8A890;
      --blue: #3C5474; --rose: #C79592; --rose-light: #D4A9A7;
      --gold: #B8975A; --gold-light: #D4B06E;
      --dark: #1a1410; --dark-card: #221c16; --dark-elevated: #2a231b;
      --dark-border: rgba(250,246,237,0.07);
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* ─── PAGE SYSTEM ─── */
    .page { position: fixed; top: 0; left: 0; right: 0; bottom: 0; opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease), visibility 0.5s; z-index: 1; overflow-y: auto; overflow-x: hidden; }
    .page.active { opacity: 1; visibility: visible; z-index: 10; }
    .page.exiting { opacity: 0; z-index: 5; }
    .page::-webkit-scrollbar { width: 4px; }
    .page::-webkit-scrollbar-track { background: transparent; }
    .page::-webkit-scrollbar-thumb { background: rgba(250,246,237,0.1); border-radius: 4px; }

    /* ─── REVEAL ─── */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .rd1 { transition-delay: .06s } .rd2 { transition-delay: .12s } .rd3 { transition-delay: .18s } .rd4 { transition-delay: .24s }

    /* ─── NAV ─── */
    .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 48px; height: 64px; display: flex; align-items: center; justify-content: space-between; background: rgba(26,20,16,0.6); backdrop-filter: blur(24px) saturate(1.3); -webkit-backdrop-filter: blur(24px) saturate(1.3); border-bottom: 1px solid var(--dark-border); transition: all 0.4s var(--ease); }
    .nav.on-landing { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom-color: transparent; }
    .nav-logo { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; font-size: 20px; letter-spacing: 0.08em; color: var(--cream); text-decoration: none; cursor: pointer; display: flex; flex-direction: column; gap: 1px; line-height: 1.1; }
    .nav-logo b { font-weight: 600; }
    .nav-logo-sub { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 8.5px; font-weight: 500; letter-spacing: 0.22em; color: rgba(250,246,237,0.55); text-transform: uppercase; }
    .nav-links { display: flex; gap: 28px; list-style: none; }
    .nav-links a { font-size: 10.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,246,237,0.4); text-decoration: none; cursor: pointer; transition: color 0.3s; }
    .nav-links a:hover, .nav-links a.active { color: var(--cream); }
    .nav-book { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--cream); padding: 8px 20px; font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid rgba(250,246,237,0.25); cursor: pointer; font-family: inherit; transition: all 0.3s; }
    .nav-book:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

    /* Mobile */
    .mob-btn { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; z-index: 102; }
    .hamburger { width: 20px; height: 14px; position: relative; }
    .hamburger span { display: block; width: 100%; height: 1.5px; background: var(--cream); position: absolute; left: 0; transition: all 0.3s var(--ease); }
    .hamburger span:nth-child(1) { top: 0 } .hamburger span:nth-child(2) { top: 6px } .hamburger span:nth-child(3) { top: 12px }
    .mob-btn.open .hamburger span:nth-child(1) { top: 6px; transform: rotate(45deg); }
    .mob-btn.open .hamburger span:nth-child(2) { opacity: 0; }
    .mob-btn.open .hamburger span:nth-child(3) { top: 6px; transform: rotate(-45deg); }
    .mob-menu { position: fixed; inset: 0; z-index: 99; background: rgba(26,20,16,0.97); backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; opacity: 0; visibility: hidden; transition: all 0.4s var(--ease); }
    .mob-menu.open { opacity: 1; visibility: visible; }
    .mob-menu a { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px; font-weight: 300; color: rgba(250,246,237,0.45); padding: 14px 32px; cursor: pointer; transition: color 0.3s; text-decoration: none; }
    .mob-menu a:hover { color: var(--cream); }

    /* ─── STEP / BACK ─── */
    .back-btn { position: fixed; left: 36px; top: 50%; transform: translateY(-50%); z-index: 50; width: 44px; height: 44px; border-radius: 50%; background: rgba(250,246,237,0.04); border: 1px solid rgba(250,246,237,0.1); color: var(--cream); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; opacity: 0; visibility: hidden; }
    .back-btn.vis { opacity: 1; visibility: visible; }
    .back-btn:hover { background: rgba(250,246,237,0.08); }
    .back-btn svg { width: 16px; height: 16px; }

    /* ─── SHARED ─── */
    .section-label { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
    .section-title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-size: clamp(28px, 4.5vw, 52px); color: var(--cream); line-height: 1.1; margin-bottom: 12px; }
    .section-desc { font-size: 14px; color: rgba(250,246,237,0.4); font-weight: 300; line-height: 1.7; }
    .btn-p { display: inline-flex; align-items: center; gap: 10px; background: var(--cream); color: var(--ink); padding: 14px 32px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: none; cursor: pointer; font-family: inherit; transition: all 0.4s var(--ease); }
    .btn-p:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(250,246,237,0.12); }
    .btn-p svg { width: 14px; height: 14px; transition: transform 0.3s; }
    .btn-p:hover svg { transform: translateX(3px); }
    .btn-g { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(250,246,237,0.5); padding: 12px 24px; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid rgba(250,246,237,0.12); cursor: pointer; font-family: inherit; transition: all 0.3s; }
    .btn-g:hover { color: var(--cream); border-color: rgba(250,246,237,0.3); }
    .btn-gold { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--ink); padding: 14px 36px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: none; cursor: pointer; font-family: inherit; transition: all 0.4s var(--ease); }
    .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(184,151,90,0.2); }
    .btn-gold svg { width: 14px; height: 14px; transition: transform 0.3s; }
    .btn-gold:hover svg { transform: translateX(3px); }

    /* ── Trust strip (reusable) ── */
    .trust-strip { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; padding: 20px 0; margin-top: 32px; border-top: 1px solid var(--dark-border); }
    .trust-chip { display: flex; align-items: center; gap: 7px; font-size: 11px; color: rgba(250,246,237,0.4); }
    .trust-chip svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

    /* ── Page-bottom skip link ── */
    .skip-link { text-align: center; margin-top: 28px; }
    .skip-link a { font-size: 12px; color: rgba(250,246,237,0.25); cursor: pointer; text-decoration: none; transition: color 0.3s; border-bottom: 1px solid rgba(250,246,237,0.08); padding-bottom: 1px; }
    .skip-link a:hover { color: var(--gold); border-color: var(--gold); }

    /* ── Search-supporting content blocks ── */
    .seo-section {
      width: min(1120px, calc(100% - 96px));
      margin: 60px auto 0;
      padding: 0;
      color: var(--cream);
    }
    .seo-section.after-grid { margin-top: 54px; }
    .seo-section.compact { margin-top: 50px; }
    .seo-inner {
      position: relative;
      overflow: hidden;
      padding: 34px 22px 36px;
      border: 1px solid rgba(250,246,237,0.10);
      border-radius: 18px;
      background: linear-gradient(180deg, var(--dark) 0%, #100c08 100%);
    }
    .seo-kicker {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }
    .seo-title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 300;
      font-size: clamp(28px, 4vw, 48px);
      line-height: 1.12;
      color: var(--cream);
      margin-bottom: 24px;
      max-width: 780px;
    }
    .seo-title em {
      font-style: italic;
      font-weight: 400;
      color: var(--rose);
    }
    .seo-copy-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
      gap: 30px;
      align-items: start;
    }
    .seo-copy {
      display: grid;
      gap: 12px;
      font-size: 13.5px;
      line-height: 1.78;
      color: rgba(250,246,237,0.62);
      font-weight: 300;
    }
    .seo-copy p { max-width: 78ch; }
    .seo-primary-figure {
      width: min(100%, 480px);
      margin: 0 0 10px;
      overflow: hidden;
      border: 1px solid rgba(250,246,237,0.10);
      border-radius: 14px;
      background: rgba(250,246,237,0.04);
    }
    .seo-primary-image {
      display: block;
      width: 100%;
      aspect-ratio: 1600 / 1067;
      height: auto;
      object-fit: cover;
    }
    .seo-primary-figure figcaption {
      padding: 9px 12px 10px;
      font-size: 11px;
      line-height: 1.45;
      color: rgba(250,246,237,0.50);
    }
    .seo-points {
      display: grid;
      gap: 22px;
    }
    .seo-point {
      display: block;
      padding: 4px 0 22px;
      border-bottom: 1px solid rgba(250,246,237,0.07);
    }
    .seo-point:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }
    .seo-point[data-num] {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 14px;
    }
    .seo-point[data-num]::before {
      content: attr(data-num);
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-style: italic;
      font-weight: 400;
      font-size: 32px;
      line-height: 0.95;
      color: var(--gold-light);
      padding-top: 2px;
    }
    .seo-point strong {
      display: block;
      margin-bottom: 6px;
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-style: italic;
      font-weight: 400;
      font-size: 19px;
      color: var(--cream);
      line-height: 1.18;
    }
    .seo-point span {
      display: block;
      font-size: 13px;
      line-height: 1.75;
      color: rgba(250,246,237,0.62);
      font-weight: 300;
    }
    .seo-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }
    .seo-links a {
      color: rgba(250,246,237,0.58);
      border: 1px solid rgba(250,246,237,0.11);
      padding: 9px 13px;
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      transition: color 0.25s, border-color 0.25s;
    }
    .seo-links a:hover {
      color: var(--cream);
      border-color: rgba(250,246,237,0.32);
    }

    /* ── Official footer / contact (Variant G: B-desktop + D-mobile hybrid) ── */
    .site-footer {
      background: linear-gradient(180deg, var(--dark) 0%, #100c08 100%);
      border-top: 1px solid var(--dark-border);
      padding: 48px 48px 28px;
      color: rgba(250,246,237,0.78);
    }
    .site-footer-mark { display: none; }
    .site-footer-grid {
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 1.4fr 1fr;
      gap: 56px;
      padding-bottom: 36px;
      border-bottom: 1px solid var(--dark-border);
    }
    .site-footer-col-label {
      font-size: 9.5px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin: 0 0 14px;
      font-weight: 600;
    }
    .site-footer-brand-name {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-style: italic;
      font-weight: 400;
      font-size: 26px;
      color: var(--cream);
      line-height: 1.1;
      margin: 0 0 10px;
    }
    .site-footer-tag {
      font-size: 12.5px;
      color: rgba(250,246,237,0.78);
      line-height: 1.65;
      max-width: 240px;
      margin: 0;
    }
    .site-footer-nap {
      font-size: 12.5px;
      line-height: 1.85;
      color: rgba(250,246,237,0.78);
      font-style: normal;
    }
    .site-footer-nap a { display: block; color: rgba(250,246,237,0.78); text-decoration: none; transition: color 0.2s; }
    .site-footer-nap a:hover { color: var(--gold-light); }
    .site-footer-nap .site-footer-line-strong { color: var(--cream); font-weight: 500; display: block; }
    .site-footer-maps {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 10px;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold-light);
      border-bottom: 1px solid rgba(212,176,110,0.4);
      padding-bottom: 2px;
      text-decoration: none;
      transition: color 0.2s, border-color 0.2s;
    }
    .site-footer-maps:hover { color: var(--cream); border-color: var(--cream); }
    .site-footer-social {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .site-footer-social a {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 12.5px;
      color: rgba(250,246,237,0.78);
      padding: 6px 0;
      text-decoration: none;
      transition: color 0.2s;
    }
    .site-footer-social a:hover { color: var(--cream); }
    .site-footer-social svg {
      width: 18px;
      height: 18px;
      fill: var(--gold-light);
      flex-shrink: 0;
    }
    .site-footer-bottom {
      max-width: 1120px;
      margin: 0 auto;
      padding-top: 22px;
      display: flex;
      justify-content: space-between;
      font-size: 10.5px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(250,246,237,0.4);
    }

    @media (max-width: 768px) {
      /* Collapse to Variant D's centered masthead */
      .site-footer { padding: 42px 22px 22px; text-align: center; }
      .site-footer-mark { display: block; font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
      .site-footer-grid { display: block; padding-bottom: 22px; border-bottom: 0; }
      .site-footer-grid > div { margin-bottom: 22px; }
      .site-footer-grid > div:last-child { margin-bottom: 0; }
      .site-footer-col-label { display: none; }
      .site-footer-tag { display: none; }
      .site-footer-brand-name { font-size: 28px; margin: 0; }
      .site-footer-grid > div:first-child::after {
        content: '';
        display: block;
        width: 60px;
        height: 1px;
        background: var(--gold-light);
        opacity: 0.55;
        margin: 18px auto 0;
      }
      .site-footer-nap { font-size: 12.5px; line-height: 1.95; margin-bottom: 26px; }
      .site-footer-nap > .site-footer-line-strong,
      .site-footer-nap > a,
      .site-footer-nap > .site-footer-hours { display: block; }
      .site-footer-maps { font-size: 10.5px; letter-spacing: 0.22em; margin-top: 0; margin-bottom: 28px; }
      .site-footer-social { flex-direction: row; gap: 22px; justify-content: center; }
      .site-footer-social a { padding: 4px 0; gap: 0; }
      .site-footer-social a .site-footer-handle { display: none; }
      .site-footer-social svg { width: 18px; height: 18px; color: rgba(250,246,237,0.55); fill: currentColor; }
      .site-footer-social a:hover svg { color: var(--gold-light); }
      .site-footer-bottom { display: block; font-size: 10px; letter-spacing: 0.22em; margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--dark-border); }
      .site-footer-bottom span { display: inline; }
      .site-footer-bottom span + span::before { content: ' · '; margin: 0 4px; opacity: 0.7; }
    }

    /* ═══ PAGE 0: LANDING ═══ */
    .landing { position: relative; min-height: 100%; height: 100%; overflow: hidden; }
    .landing-hero { position: relative; width: 100%; height: 100%; min-height: 100%; }
    .landing-bg { position: absolute; inset: 0; background: #000; overflow: hidden; }
    .landing-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
    .landing-bg::after { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(26,20,16,0.45) 0%, rgba(26,20,16,0.15) 30%, rgba(26,20,16,0.35) 55%, rgba(26,20,16,0.86) 85%, rgba(26,20,16,0.96) 100%); }
    .landing-content { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 0 64px 64px; padding-bottom: max(64px, calc(env(safe-area-inset-bottom) + 40px)); text-align: left; max-width: 920px; }
    .hero-title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; font-size: clamp(46px, 8vw, 100px); line-height: 0.98; letter-spacing: -0.012em; color: var(--cream); margin-bottom: 22px; text-shadow: 0 3px 22px rgba(0,0,0,0.55); max-width: 880px; opacity: 0; transform: translateY(30px); animation: fadeUp 1s 0.5s var(--ease) forwards; }
    .hero-title em { font-style: italic; font-weight: 400; color: #D4B06E; letter-spacing: -0.005em; }
    .hero-sub { font-size: clamp(13px, 1.4vw, 15px); font-weight: 300; color: rgba(250,246,237,0.92); line-height: 1.75; max-width: 520px; margin: 0 0 32px; text-shadow: 0 1px 14px rgba(0,0,0,0.55); opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s 0.7s var(--ease) forwards; }
    .hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s 0.9s var(--ease) forwards; }
    .hero-meta { position: absolute; right: 48px; bottom: 64px; z-index: 3; font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase; color: rgba(250,246,237,0.55); text-align: right; line-height: 1.6; opacity: 0; animation: fadeUp 0.8s 1.1s var(--ease) forwards; }
    .hero-meta strong { color: var(--cream); font-weight: 500; }

    /* ─── VERSION BADGE (임시) ─── */
    .version-badge {
      display: none;
      position: fixed; left: 16px; bottom: 16px; z-index: 80;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 9px; font-weight: 700; letter-spacing: 0.18em;
      color: rgba(184,151,90,0.85);
      background: rgba(20,17,14,0.65);
      padding: 6px 12px; border-radius: 999px;
      text-transform: uppercase; pointer-events: none;
      backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(184,151,90,0.2);
    }
    .version-badge.is-visible { display: block; }
    @media (max-width: 600px) {
      .version-badge { left: 12px; bottom: 12px; font-size: 8.5px; padding: 5px 10px; }
    }

    /* ═══ PAGE 1: OCCASION ═══ */
    .occ-page { background: var(--dark); min-height: 100vh; padding: 100px 48px 60px; }
    .occ-header { text-align: center; margin-bottom: 48px; }
    .occ-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1300px; margin: 0 auto; }
    .occ-card { position: relative; aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; cursor: pointer; transition: all 0.5s var(--ease); }
    .occ-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(0,0,0,0.4); }
    .occ-card-bg { position: absolute; inset: 0; transition: transform 0.6s var(--ease); }
    .occ-card:hover .occ-card-bg { transform: scale(1.04); }
    .occ-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(26,20,16,0.85) 100%); }
    .occ-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px; z-index: 2; }
    .occ-card-label { font-size: 9px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
    .occ-card-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px; font-weight: 400; color: var(--cream); line-height: 1.15; margin-bottom: 4px; }
    .occ-card-sub { font-size: 11px; color: rgba(250,246,237,0.4); font-weight: 300; line-height: 1.5; max-height: 0; overflow: hidden; opacity: 0; transition: all 0.5s var(--ease); }
    .occ-card:hover .occ-card-sub { max-height: 50px; opacity: 1; }
    .occ-card-arrow { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; background: rgba(250,246,237,0.06); border: 1px solid rgba(250,246,237,0.1); display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(6px); transition: all 0.4s var(--ease); }
    .occ-card:hover .occ-card-arrow { opacity: 1; transform: translateY(0); }
    .occ-card-arrow svg { width: 13px; height: 13px; color: var(--cream); }

    /* ═══ PAGE 2: CONCEPT ═══ */
    .con-page { background: var(--dark); min-height: 100vh; padding: 100px 48px 60px; }
    .con-header { text-align: center; margin-bottom: 48px; }
    .con-occasion-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); margin-bottom: 14px; }
    .con-occasion-badge::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--rose); }
    .con-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 1300px; margin: 0 auto; }
    .con-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 6px; overflow: hidden; cursor: pointer; transition: all 0.5s var(--ease); }
    .con-card:hover { border-color: rgba(250,246,237,0.12); transform: translateY(-5px); box-shadow: 0 14px 44px rgba(0,0,0,0.25); }
    .con-card-img { width: 100%; aspect-ratio: 4/5; position: relative; overflow: hidden; }
    .con-card-img-inner { position: absolute; inset: 0; transition: transform 0.6s var(--ease); }
    .con-card:hover .con-card-img-inner { transform: scale(1.04); }
    .con-card-body { padding: 18px; }
    .con-card-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px; font-weight: 400; color: var(--cream); margin-bottom: 6px; }
    .con-card-desc { font-size: 12px; color: rgba(250,246,237,0.38); line-height: 1.6; font-weight: 300; margin-bottom: 8px; }
    .con-card-for { font-size: 10px; color: var(--rose); font-weight: 500; }
    .concept-service-nav,
    .concept-fit-links {
      max-width: 980px;
      margin: 24px auto 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px 16px;
      font-size: 12px;
      color: rgba(250,246,237,0.42);
    }
    .concept-service-nav span,
    .concept-fit-links span {
      color: rgba(250,246,237,0.36);
    }
    .concept-service-nav a,
    .concept-fit-links a {
      color: rgba(250,246,237,0.68);
      text-decoration: none;
      border-bottom: 1px solid rgba(250,246,237,0.14);
      padding-bottom: 1px;
      transition: color 0.25s ease, border-color 0.25s ease;
    }
    .concept-service-nav a:hover,
    .concept-fit-links a:hover {
      color: var(--gold);
      border-color: var(--gold);
    }
    .concept-fit-links {
      margin-bottom: 24px;
    }

    /* ═══ PAGE 3: PORTFOLIO ═══ */
    .port-page { background: var(--dark); min-height: 100vh; padding: 100px 48px 60px; }
    .port-header { text-align: center; margin-bottom: 40px; }
    .port-bc { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,246,237,0.3); margin-bottom: 16px; }
    .port-bc .active { color: var(--gold); }
    .port-concept-tag { display: none; }
    .port-gallery { max-width: 1100px; margin: 0 auto 40px; columns: 3; column-gap: 14px; }
    .port-item { break-inside: avoid; margin-bottom: 14px; border-radius: 4px; overflow: hidden; cursor: pointer; position: relative; }
    .port-item:hover .port-placeholder { transform: scale(1.02); }
    .port-placeholder { width: 100%; display: block; border-radius: 4px; transition: transform 0.5s var(--ease); overflow: hidden; background: #1a1410; }
    .port-placeholder img { width: 100%; height: auto; display: block; }
    .port-item { cursor: zoom-in; }
    /* Signature marker — option B (top-left blur pill) */
    .port-item.signature::before { content: 'Signature'; position: absolute; top: 8px; left: 8px; z-index: 3; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 8.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); background: rgba(20,16,12,0.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1px solid rgba(184,151,90,0.45); padding: 3px 8px; border-radius: 999px; pointer-events: none; }

    /* ═══ LIGHTBOX ═══ */
    .lightbox { position: fixed; inset: 0; background: rgba(20,17,14,0.96); z-index: 999; display: none; opacity: 0; transition: opacity 0.25s ease; }
    .lightbox.active { display: block; opacity: 1; }
    .lb-stage { position: absolute; inset: 0; touch-action: none; overflow: hidden; display: flex; align-items: center; justify-content: center; user-select: none; -webkit-user-select: none; }
    .lb-stage img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; pointer-events: none; user-select: none; -webkit-user-drag: none; transform-origin: center center; will-change: transform; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
    .lightbox .lb-hint { position: absolute; top: 30px; left: 50%; transform: translateX(-50%); z-index: 10; font-size: 9.5px; color: rgba(236,229,213,0.35); letter-spacing: 0.18em; text-transform: uppercase; pointer-events: none; opacity: 0; }
    .lightbox.active .lb-hint { animation: lbHintFade 4s ease-out 0.3s forwards; }
    @keyframes lbHintFade { 0% { opacity: 0; } 12% { opacity: 1; } 75% { opacity: 1; } 100% { opacity: 0; } }
    .lb-btn { position: absolute; z-index: 10; background: rgba(20,17,14,0.55); color: rgba(236,229,213,0.85); border: 1px solid rgba(236,229,213,0.14); width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; font-family: inherit; transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s var(--ease); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); box-shadow: 0 4px 18px rgba(0,0,0,0.25); }
    .lb-btn svg { width: 18px; height: 18px; display: block; stroke-width: 1.5; }
    .lb-btn:hover { background: rgba(20,17,14,0.82); border-color: rgba(236,229,213,0.4); color: var(--cream); }
    .lb-btn:active { transform: scale(0.94); }
    .lb-close { top: 28px; right: 28px; }
    .lb-prev { left: 28px; top: 50%; transform: translateY(-50%); }
    .lb-next { right: 28px; top: 50%; transform: translateY(-50%); }
    .lb-prev:active, .lb-next:active { transform: translateY(-50%) scale(0.94); }
    .lb-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 10; font-size: 12px; color: rgba(236,229,213,0.6); letter-spacing: 0.16em; pointer-events: none; }
    @media (max-width: 600px) {
      .lb-close { top: 16px; right: 16px; width: 42px; height: 42px; }
      .lb-prev, .lb-next { width: 42px; height: 42px; }
      .lb-prev { left: 14px; }
      .lb-next { right: 14px; }
      .lb-btn svg { width: 16px; height: 16px; }
      .lb-counter { bottom: 18px; font-size: 10px; }
      .lightbox .lb-hint { top: 18px; font-size: 9px; letter-spacing: 0.14em; }
    }

    /* ── Safety mini-section on portfolio page ── */
    .port-safety { max-width: 1100px; margin: 0 auto 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .port-safety-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 6px; padding: 22px 18px; display: flex; gap: 14px; align-items: flex-start; }
    .port-safety-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(199,149,146,0.06); border: 1px solid rgba(199,149,146,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .port-safety-icon svg { width: 17px; height: 17px; color: var(--rose); }
    .port-safety-title { font-size: 13px; font-weight: 600; color: var(--cream); margin-bottom: 3px; }
    .port-safety-desc { font-size: 12px; color: rgba(250,246,237,0.35); line-height: 1.55; font-weight: 300; }

    /* ── Mini review on portfolio page ── */
    .port-review { max-width: 640px; margin: 0 auto 40px; background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 6px; padding: 22px 24px; display: flex; gap: 16px; align-items: flex-start; }
    .port-review-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 600; color: var(--cream); flex-shrink: 0; }
    .port-review-text { font-size: 13px; color: rgba(250,246,237,0.5); line-height: 1.65; font-weight: 300; font-style: italic; }
    .port-review-name { font-size: 11px; color: rgba(250,246,237,0.3); margin-top: 8px; font-style: normal; }

    .port-cta { text-align: center; }

    /* ═══ PAGE 4: BOOKING ═══ */
    .booking-page {
      background: var(--dark);
      min-height: 100vh;
      padding: 100px 48px 80px;
    }
    .booking-max { max-width: 1100px; margin: 0 auto; }

    .bk-section { margin-bottom: 48px; }
    .bk-section-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .bk-section-title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 300;
      font-size: clamp(26px, 3vw, 40px);
      color: var(--cream);
      line-height: 1.15;
      margin-bottom: 8px;
    }
    .bk-section-desc {
      font-size: 13px;
      color: rgba(250,246,237,0.4);
      font-weight: 300;
    }

    /* ── Google Reviews ── */
    .reviews-bar { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
    .reviews-stars { display: flex; gap: 3px; }
    .reviews-stars svg { width: 18px; height: 18px; color: #FBBC04; fill: #FBBC04; }
    .reviews-score {
      font-size: 28px;
      font-weight: 300;
      color: var(--cream);
      font-family: 'Cormorant Garamond', Georgia, serif;
    }
    .reviews-meta { font-size: 12px; color: rgba(250,246,237,0.35); }
    .reviews-meta a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(184,151,90,0.3); transition: border-color 0.3s; }
    .reviews-meta a:hover { border-color: var(--gold); }
    .reviews-google-logo { display: flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(250,246,237,0.35); font-weight: 500; }
    .reviews-google-logo svg { height: 16px; }
    .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .review-card {
      background: var(--dark-card);
      border: 1px solid var(--dark-border);
      border-radius: 6px;
      padding: 24px;
      transition: border-color 0.3s;
    }
    .review-card:hover { border-color: rgba(250,246,237,0.15); }
    .review-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
    .review-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 600; color: var(--cream); flex-shrink: 0;
    }
    .review-name { font-size: 13px; font-weight: 500; color: var(--cream); }
    .review-date { font-size: 11px; color: rgba(250,246,237,0.3); }
    .review-stars { display: flex; gap: 2px; margin-bottom: 10px; }
    .review-stars svg { width: 13px; height: 13px; color: #FBBC04; fill: #FBBC04; }
    .review-text { font-size: 13px; color: rgba(250,246,237,0.55); line-height: 1.65; font-weight: 300; }
    .review-occasion {
      display: inline-block; margin-top: 10px;
      font-size: 10px; font-weight: 500; letter-spacing: 0.06em;
      color: var(--rose); background: rgba(199,149,146,0.08); padding: 3px 10px; border-radius: 2px;
    }

    /* ── Every Shoot Includes ── */
    .includes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .include-card {
      background: var(--dark-card);
      border: 1px solid var(--dark-border);
      border-radius: 6px;
      padding: 24px;
      text-align: center;
      transition: all 0.4s var(--ease);
    }
    .include-card:hover { border-color: rgba(250,246,237,0.15); transform: translateY(-3px); }
    .include-icon {
      width: 48px; height: 48px; border-radius: 50%;
      background: rgba(250,246,237,0.04); border: 1px solid var(--dark-border);
      display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
    }
    .include-icon svg { width: 22px; height: 22px; color: var(--rose); }
    .include-name { font-size: 14px; font-weight: 500; color: var(--cream); margin-bottom: 4px; }
    .include-desc { font-size: 12px; color: rgba(250,246,237,0.35); line-height: 1.5; }

    /* ── Celebrity Clients ── */
    .celeb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .celeb-card {
      background: var(--dark-card);
      border: 1px solid var(--dark-border);
      border-radius: 6px;
      overflow: hidden;
      transition: all 0.5s var(--ease);
      position: relative;
    }
    .celeb-card:hover { border-color: rgba(250,246,237,0.15); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
    .celeb-photo { width: 100%; aspect-ratio: 4/5; position: relative; overflow: hidden; }
    .celeb-photo-inner { position: absolute; inset: 0; transition: transform 0.6s var(--ease); }
    .celeb-card:hover .celeb-photo-inner { transform: scale(1.04); }
    .celeb-photo-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(26,20,16,0.9) 100%); }
    .celeb-verified {
      position: absolute; top: 14px; right: 14px;
      display: flex; align-items: center; gap: 5px;
      background: rgba(0,0,0,0.45); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      padding: 5px 10px; border-radius: 20px;
      font-size: 9px; font-weight: 600; letter-spacing: 0.06em; color: rgba(250,246,237,0.7); text-transform: uppercase;
    }
    .celeb-verified svg { width: 12px; height: 12px; color: #4DA6FF; fill: #4DA6FF; }
    .celeb-body { padding: 24px; }
    .celeb-quote {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 18px; font-weight: 400; font-style: italic;
      color: rgba(250,246,237,0.7); line-height: 1.5; margin-bottom: 16px;
      position: relative; padding-left: 16px; border-left: 2px solid var(--gold);
    }
    .celeb-info { display: flex; align-items: center; justify-content: space-between; }
    .celeb-name { font-size: 14px; font-weight: 600; color: var(--cream); }
    .celeb-title { font-size: 11px; color: rgba(250,246,237,0.35); margin-top: 1px; }
    .celeb-occasion-tag {
      font-size: 9px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--rose); background: rgba(199,149,146,0.08); padding: 4px 10px; border-radius: 2px;
    }
    .celeb-source {
      display: flex; align-items: center; gap: 6px; margin-top: 14px; padding-top: 14px;
      border-top: 1px solid var(--dark-border);
      font-size: 10px; color: rgba(250,246,237,0.25); text-decoration: none; transition: color 0.3s;
    }
    .celeb-source:hover { color: rgba(250,246,237,0.5); }
    .celeb-source svg { width: 12px; height: 12px; }

    /* ── Date picker ── */
    .date-picker-row { display: flex; gap: 12px; margin-bottom: 20px; }
    .date-input-wrap { flex: 1; position: relative; }
    .date-input-label { font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(250,246,237,0.35); margin-bottom: 6px; }
    .date-input {
      width: 100%; background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 4px;
      padding: 12px 14px; color: var(--cream); font-family: inherit; font-size: 13px; outline: none;
      transition: border-color 0.3s; -webkit-appearance: none;
    }
    .date-input:focus { border-color: var(--gold); }
    .date-input::-webkit-calendar-picker-indicator { filter: invert(0.7); cursor: pointer; }
    .people-select {
      width: 100%; background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 4px;
      padding: 12px 14px; color: var(--cream); font-family: inherit; font-size: 13px; outline: none;
      transition: border-color 0.3s; -webkit-appearance: none; appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23B8A890' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 12px center;
    }
    .people-select:focus { border-color: var(--gold); }

    /* ── Timeline ── */
    .timeline { display: flex; gap: 0; position: relative; }
    .timeline::before {
      content: ''; position: absolute; top: 19px; left: 20px; right: 20px; height: 1px; background: var(--dark-border);
    }
    .timeline-step { flex: 1; text-align: center; position: relative; }
    .timeline-dot {
      width: 38px; height: 38px; border-radius: 50%;
      background: var(--dark-card); border: 1px solid var(--dark-border);
      display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; position: relative; z-index: 2;
    }
    .timeline-dot svg { width: 16px; height: 16px; color: var(--subtle); }
    .timeline-step-label { font-size: 12px; font-weight: 500; color: var(--cream); margin-bottom: 2px; }
    .timeline-step-desc { font-size: 11px; color: rgba(250,246,237,0.3); }

    /* ── FAQ ── */
    .faq-list { display: flex; flex-direction: column; gap: 8px; }
    .faq-item {
      background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 6px;
      overflow: hidden; transition: border-color 0.3s;
    }
    .faq-item.open { border-color: rgba(250,246,237,0.12); }
    .faq-q {
      padding: 16px 20px; display: flex; align-items: center; justify-content: space-between;
      cursor: pointer; transition: background 0.2s;
    }
    .faq-q:hover { background: rgba(250,246,237,0.02); }
    .faq-q-text { font-size: 14px; font-weight: 400; color: var(--cream); }
    .faq-q-icon { width: 20px; height: 20px; color: rgba(250,246,237,0.3); transition: transform 0.3s var(--ease); flex-shrink: 0; }
    .faq-item.open .faq-q-icon { transform: rotate(180deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
    .faq-a-inner { padding: 0 20px 16px; font-size: 13px; color: rgba(250,246,237,0.45); line-height: 1.7; font-weight: 300; }
    .faq-item.open .faq-a { max-height: 200px; }

    /* ── Booking form area ── */
    .booking-form-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
    .booking-reassurance {
      margin: 0 0 28px;
      padding: 24px;
      background: linear-gradient(135deg, rgba(184,151,90,0.14), rgba(199,149,146,0.06));
      border: 1px solid rgba(184,151,90,0.24);
      border-radius: 6px;
    }
    .booking-reassurance-kicker {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .booking-reassurance h3 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(24px, 3vw, 34px);
      font-weight: 300;
      line-height: 1.08;
      color: var(--cream);
      margin: 0 0 18px;
    }
    .booking-reassurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .booking-reassurance-item {
      padding: 14px;
      background: rgba(26,20,16,0.32);
      border: 1px solid rgba(250,246,237,0.08);
      border-radius: 4px;
    }
    .booking-reassurance-item strong {
      display: block;
      font-size: 12px;
      color: var(--cream);
      margin-bottom: 4px;
    }
    .booking-reassurance-item span {
      display: block;
      font-size: 11.5px;
      line-height: 1.55;
      color: rgba(250,246,237,0.55);
    }
    .booking-summary {
      background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 6px; padding: 24px; margin-bottom: 20px;
    }
    .booking-summary-title { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(250,246,237,0.35); margin-bottom: 14px; }
    .booking-summary-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--dark-border); }
    .booking-summary-row:last-child { border-bottom: none; }
    .booking-summary-label { font-size: 13px; color: rgba(250,246,237,0.4); }
    .booking-summary-value { font-size: 13px; color: var(--cream); font-weight: 500; }

    .booking-message-box {
      background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 6px; padding: 24px; margin-bottom: 20px;
    }
    .booking-message-label {
      font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
      color: rgba(250,246,237,0.35); margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between;
    }
    .copy-btn {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(250,246,237,0.06); border: 1px solid rgba(250,246,237,0.1);
      color: rgba(250,246,237,0.5); padding: 6px 14px; font-size: 10px; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; font-family: inherit;
      transition: all 0.3s; border-radius: 2px;
    }
    .copy-btn:hover { background: rgba(250,246,237,0.1); color: var(--cream); }
    .copy-btn.copied { background: rgba(184,151,90,0.15); color: var(--gold); border-color: rgba(184,151,90,0.3); }
    .copy-btn svg { width: 12px; height: 12px; }
    .message-preview { font-size: 13px; color: rgba(250,246,237,0.55); line-height: 1.7; white-space: pre-line; font-family: inherit; }

    .booking-channels { display: flex; flex-direction: column; gap: 10px; }
    .channel-btn {
      display: flex; align-items: center; gap: 16px;
      background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 6px;
      padding: 18px 20px; cursor: pointer; transition: all 0.3s; text-decoration: none;
    }
    .channel-btn:hover { border-color: rgba(250,246,237,0.2); background: rgba(250,246,237,0.03); transform: translateX(4px); }
    .channel-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .channel-icon.ig { background: linear-gradient(135deg, #833AB4, #E1306C, #F77737); }
    .channel-icon.fb { background: #1877F2; }
    .channel-icon.email { background: var(--blue); }
    .channel-icon svg { width: 18px; height: 18px; color: #fff; }
    .channel-info { flex: 1; }
    .channel-name { font-size: 13px; font-weight: 500; color: var(--cream); margin-bottom: 1px; }
    .channel-detail { font-size: 11px; color: rgba(250,246,237,0.35); }
    .channel-arrow { color: rgba(250,246,237,0.2); transition: all 0.3s; }
    .channel-btn:hover .channel-arrow { color: rgba(250,246,237,0.5); transform: translateX(4px); }
    .channel-arrow svg { width: 16px; height: 16px; }
    .reply-panel {
      margin-top: 18px;
      padding: 22px;
      background: var(--dark-card);
      border: 1px solid rgba(250,246,237,0.10);
      border-radius: 6px;
    }
    .reply-panel-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }
    .reply-panel h3 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 28px;
      font-weight: 300;
      line-height: 1.1;
      color: var(--cream);
      margin: 0 0 8px;
    }
    .reply-panel p {
      margin: 0 0 18px;
      font-size: 12.5px;
      line-height: 1.65;
      color: rgba(250,246,237,0.5);
    }
    .reply-form { display: flex; flex-direction: column; gap: 12px; }
    .reply-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .reply-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(250,246,237,0.38);
    }
    .reply-input {
      width: 100%;
      min-width: 0;
      background: rgba(250,246,237,0.04);
      border: 1px solid rgba(250,246,237,0.10);
      color: var(--cream);
      border-radius: 4px;
      padding: 12px 13px;
      font-family: inherit;
      font-size: 13px;
      font-weight: 400;
      outline: none;
      transition: border-color 0.2s, background 0.2s;
    }
    .reply-input:focus { border-color: rgba(184,151,90,0.55); background: rgba(250,246,237,0.06); }
    .reply-input::placeholder { color: rgba(250,246,237,0.28); }
    select.reply-input {
      appearance: none;
      background-image: linear-gradient(45deg, transparent 50%, rgba(250,246,237,0.45) 50%), linear-gradient(135deg, rgba(250,246,237,0.45) 50%, transparent 50%);
      background-position: calc(100% - 16px) calc(50% - 3px), calc(100% - 11px) calc(50% - 3px);
      background-size: 5px 5px, 5px 5px;
      background-repeat: no-repeat;
      padding-right: 34px;
    }
    .reply-textarea {
      min-height: 96px;
      resize: vertical;
      line-height: 1.6;
      text-transform: none;
      letter-spacing: 0;
    }
    .reply-hp {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }
    .reply-submit {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-height: 44px;
      padding: 12px 20px;
      background: var(--gold);
      border: 1px solid var(--gold);
      color: var(--ink);
      border-radius: 4px;
      font-family: inherit;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }
    .reply-submit:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
    .reply-submit:disabled { opacity: 0.55; cursor: wait; transform: none; }
    .reply-status {
      min-height: 18px;
      font-size: 12px;
      line-height: 1.5;
      color: rgba(250,246,237,0.48);
    }
    .reply-status.ok { color: var(--gold); }
    .reply-status.error { color: #D4A9A7; }

    /* Toast */
    .toast { position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%) translateY(14px); z-index: 300; background: var(--gold); color: var(--ink); padding: 10px 20px; border-radius: 6px; font-size: 13px; font-weight: 600; box-shadow: 0 8px 32px rgba(0,0,0,0.35); opacity: 0; visibility: hidden; transition: all 0.3s var(--ease); white-space: nowrap; }
    .toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

    /* ─── STICKY MOBILE CTA (Filipino market 표준) ─── */
    .sticky-mobile-cta {
      position: fixed; left: 50%; transform: translateX(-50%);
      bottom: 20px; bottom: max(20px, calc(env(safe-area-inset-bottom) + 12px));
      z-index: 90; display: none;
      align-items: center; gap: 10px;
      padding: 11px 11px 11px 22px;
      background: var(--gold); color: var(--ink);
      font-family: inherit; font-size: 11px; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      border: none; cursor: pointer; border-radius: 999px;
      box-shadow: 0 14px 36px rgba(0,0,0,0.45);
      transition: all 0.4s var(--ease);
      opacity: 0; pointer-events: none;
    }
    .sticky-mobile-cta.vis { opacity: 1; pointer-events: auto; }
    .sticky-mobile-cta.scrolled { opacity: 0 !important; pointer-events: none !important; transform: translateX(-50%) translateY(28px); }
    .sticky-mobile-cta-tail {
      width: 26px; height: 26px; border-radius: 50%;
      background: var(--ink); color: var(--cream);
      display: flex; align-items: center; justify-content: center;
    }
    .sticky-mobile-cta-tail svg { width: 12px; height: 12px; }
    .sticky-mobile-cta:active { transform: translateX(-50%) scale(0.96); }
    @media (max-width: 768px) {
      .sticky-mobile-cta { display: inline-flex; }
    }

    /* ─── BRANCH CARDS (Page 3 → 4 또는 5) ─── */
    .port-branch { max-width: 1100px; margin: 0 auto; }
    .branch-intro { text-align: center; margin-bottom: 28px; }
    .branch-intro-title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-size: clamp(26px, 3.4vw, 40px); color: var(--cream); line-height: 1.15; margin-bottom: 8px; }
    .branch-intro-title em { font-style: italic; color: var(--rose); font-weight: 400; }
    .branch-intro-sub { font-size: 13px; color: rgba(250,246,237,0.5); font-weight: 300; }
    .branch-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: stretch; }
    .branch-card { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: 32px 30px; cursor: pointer; transition: all 0.4s var(--ease); text-align: left; border-radius: 4px; }
    .branch-card.primary { background: var(--gold); color: var(--ink); border: 1px solid var(--gold); }
    .branch-card.primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-3px); box-shadow: 0 18px 44px rgba(184,151,90,0.25); }
    .branch-card.secondary { background: var(--dark-card); border: 1px solid var(--dark-border); color: var(--cream); }
    .branch-card.secondary:hover { background: var(--dark-elevated); border-color: rgba(250,246,237,0.20); transform: translateY(-3px); }
    .branch-icon { width: 36px; height: 36px; display: flex; align-items: center; margin-bottom: 6px; }
    .branch-icon svg { width: 22px; height: 22px; stroke-width: 1.3; }
    .branch-card.primary .branch-icon svg { color: var(--ink); }
    .branch-card.secondary .branch-icon svg { color: var(--gold); }
    .branch-title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; font-size: 26px; line-height: 1.15; }
    .branch-card.primary .branch-title { color: var(--ink); }
    .branch-sub { font-size: 12.5px; line-height: 1.55; max-width: 280px; }
    .branch-card.primary .branch-sub { color: rgba(30,21,10,0.65); }
    .branch-card.secondary .branch-sub { color: rgba(250,246,237,0.45); }
    .branch-cta { margin-top: 6px; display: inline-flex; align-items: center; gap: 10px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
    .branch-cta svg { width: 12px; height: 10px; stroke-width: 1.8; transition: transform 0.3s; }
    .branch-card:hover .branch-cta svg { transform: translateX(4px); }
    .branch-back { text-align: center; margin-top: 24px; }
    .branch-back a { font-size: 11px; color: rgba(250,246,237,0.4); cursor: pointer; padding-bottom: 2px; border-bottom: 1px solid rgba(250,246,237,0.10); transition: all 0.3s; }
    .branch-back a:hover { color: var(--gold); border-color: var(--gold); }

    /* ─── WHY CIELO (Page 5) ─── */
    .why-page { background: var(--dark); min-height: 100vh; padding: 100px 48px 80px; }
    .why-max { max-width: 1100px; margin: 0 auto; }
    .why-header { text-align: center; margin-bottom: 56px; }
    .why-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
    .why-title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-size: clamp(34px, 4.6vw, 60px); color: var(--cream); line-height: 1.08; margin-bottom: 16px; }
    .why-title em { font-style: italic; color: var(--rose); font-weight: 400; }
    .why-deck { font-size: 14px; color: rgba(250,246,237,0.5); line-height: 1.7; max-width: 540px; margin: 0 auto; }
    .why-section { margin-bottom: 56px; }
    .why-section-label { font-size: 10px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
    .why-section-title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-size: clamp(24px, 3vw, 36px); color: var(--cream); line-height: 1.15; margin-bottom: 10px; }
    .why-section-desc { font-size: 13px; color: rgba(250,246,237,0.45); line-height: 1.65; max-width: 520px; margin-bottom: 22px; }
    .why-press { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 6px; overflow: hidden; }
    .why-press-photo { position: relative; aspect-ratio: 4/3; min-height: 280px; }
    .why-press-photo-bg { position: absolute; inset: 0; background: image-set(url('/assets/concepts/forest/44-sm.webp?v=2') type('image/webp'), url('/assets/concepts/forest/44-sm.jpg?v=2') type('image/jpeg')) center 25%/cover no-repeat; transition: transform 0.6s var(--ease); }
    .why-press:hover .why-press-photo-bg { transform: scale(1.03); }
    .why-press-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 50%, rgba(26,20,16,0.5) 100%); }
    .why-press-text { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
    .why-press-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
    .why-press-tag svg { width: 12px; height: 12px; }
    .why-press-title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-size: clamp(22px, 2.6vw, 32px); color: var(--cream); line-height: 1.15; margin-bottom: 14px; }
    .why-press-title em { font-style: italic; color: var(--rose); font-weight: 400; }
    .why-press-quote { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 15px; color: rgba(250,246,237,0.65); line-height: 1.55; padding-left: 14px; border-left: 1px solid var(--gold); margin-bottom: 16px; }
    .why-press-byline { font-size: 10.5px; font-weight: 500; letter-spacing: 0.10em; color: rgba(250,246,237,0.35); }
    .why-press-byline strong { color: var(--cream); font-weight: 500; }
    .why-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .why-review { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 6px; padding: 24px; display: flex; flex-direction: column; gap: 12px; }
    .why-review-stars { display: flex; gap: 2px; color: #FBBC04; font-size: 12px; letter-spacing: 0.04em; }
    .why-review-text { font-size: 13px; line-height: 1.65; color: rgba(250,246,237,0.55); font-weight: 300; flex: 1; }
    .why-review-attr { display: flex; align-items: center; gap: 10px; padding-top: 12px; border-top: 1px solid var(--dark-border); }
    .why-review-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: var(--cream); flex-shrink: 0; }
    .why-review-name { font-size: 12px; font-weight: 600; color: var(--cream); }
    .why-review-tag { font-size: 10px; color: var(--gold); letter-spacing: 0.05em; margin-top: 1px; }
    .why-includes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .why-include { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 6px; padding: 22px 20px; text-align: center; }
    .why-include-icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(184,151,90,0.08); border: 1px solid rgba(184,151,90,0.18); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
    .why-include-icon svg { width: 18px; height: 18px; color: var(--gold); stroke-width: 1.4; }
    .why-include-name { font-size: 12.5px; font-weight: 500; letter-spacing: 0.04em; color: var(--cream); margin-bottom: 4px; }
    .why-include-desc { font-size: 11.5px; color: rgba(250,246,237,0.35); line-height: 1.55; }
    .why-timeline { display: flex; gap: 0; position: relative; }
    .why-timeline::before { content: ''; position: absolute; top: 19px; left: 20px; right: 20px; height: 1px; background: var(--dark-border); }
    .why-step { flex: 1; text-align: center; position: relative; }
    .why-step-dot { width: 38px; height: 38px; border-radius: 50%; background: var(--dark-card); border: 1px solid var(--dark-border); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; position: relative; z-index: 2; }
    .why-step-dot svg { width: 16px; height: 16px; color: var(--gold); stroke-width: 1.4; }
    .why-step-name { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; color: var(--cream); margin-bottom: 4px; }
    .why-step-desc { font-size: 11px; color: rgba(250,246,237,0.35); line-height: 1.5; max-width: 140px; margin: 0 auto; }
    .why-faqs { display: flex; flex-direction: column; gap: 8px; }
    .why-faq { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 6px; overflow: hidden; transition: border-color 0.3s; }
    .why-faq.open { border-color: rgba(250,246,237,0.15); }
    .why-faq-q { padding: 16px 22px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: background 0.2s; }
    .why-faq-q:hover { background: rgba(250,246,237,0.02); }
    .why-faq-q-text { font-size: 13.5px; font-weight: 500; color: var(--cream); }
    .why-faq-q-icon { width: 18px; height: 18px; color: rgba(250,246,237,0.4); transition: transform 0.4s var(--ease); flex-shrink: 0; }
    .why-faq.open .why-faq-q-icon { transform: rotate(180deg); }
    .why-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
    .why-faq-a-inner { padding: 0 22px 18px; font-size: 13px; color: rgba(250,246,237,0.5); line-height: 1.7; font-weight: 300; }
    .why-faq.open .why-faq-a { max-height: 240px; }
    .why-final { margin-top: 64px; padding: 56px 48px; background: linear-gradient(160deg, rgba(184,151,90,0.10), rgba(199,149,146,0.06)); border: 1px solid rgba(184,151,90,0.20); border-radius: 6px; text-align: center; }
    .why-final-title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-size: clamp(28px, 3.6vw, 44px); color: var(--cream); line-height: 1.1; margin-bottom: 12px; }
    .why-final-title em { font-style: italic; color: var(--rose); font-weight: 400; }
    .why-final-deck { font-size: 13.5px; color: rgba(250,246,237,0.55); line-height: 1.65; margin-bottom: 28px; max-width: 460px; margin-left: auto; margin-right: auto; }
    .why-final-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes scrollPulse { 0%, 100% { opacity: 0.2; } 50% { opacity: 0.6; } }

    /* ─── TABLET ─── */
    @media (max-width: 1024px) {
      .occ-grid { grid-template-columns: repeat(3, 1fr); }
      .con-grid { grid-template-columns: repeat(3, 1fr); }
      .port-gallery { columns: 2; }
      .port-safety { grid-template-columns: 1fr 1fr 1fr; }
      .booking-form-layout { grid-template-columns: 1fr; gap: 40px; }
    }
    /* ─── MOBILE ─── */
    @media (max-width: 768px) {
      body { -webkit-tap-highlight-color: transparent; }
      .nav { padding: 0 20px; height: 56px; gap: 12px; }
      .nav-logo { font-size: 17px; min-width: 0; }
      .nav-logo-sub { font-size: 7.5px; letter-spacing: 0.18em; }
      .nav-links { display: none; }
      .nav-book { padding: 7px 14px; font-size: 9px; flex-shrink: 0; }
      .mob-btn { display: flex; flex-shrink: 0; }
      .back-btn { left: auto; right: 20px; top: auto; bottom: 72px; transform: none; width: 38px; height: 38px; }
      .landing-bg::after { background: linear-gradient(180deg, rgba(26,20,16,0.45) 0%, transparent 18%, transparent 38%, rgba(26,20,16,0.85) 80%, rgba(26,20,16,0.96) 100%); }
      .landing-content { padding: 0 22px 36px; padding-bottom: max(36px, calc(env(safe-area-inset-bottom) + 24px)); }
      .hero-title { font-size: clamp(36px, 10.5vw, 56px); line-height: 1; margin-bottom: 14px; transform: translateY(18px); animation-duration: 0.55s; animation-delay: 0.08s; }
      .hero-sub { font-size: 13px; line-height: 1.65; margin-bottom: 20px; max-width: 100%; transform: translateY(14px); animation-duration: 0.5s; animation-delay: 0.16s; }
      .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; transform: translateY(14px); animation-duration: 0.5s; animation-delay: 0.24s; }
      .btn-p, .btn-g, .btn-gold { width: 100%; max-width: 320px; justify-content: center; font-size: 10.5px; padding: 13px 22px; }
      .hero-meta { display: none; }
      .occ-page, .con-page, .port-page { padding: 80px 16px 80px; }
      .occ-header { margin-bottom: 36px; }
      .section-desc { max-width: 340px; margin-left: auto; margin-right: auto; }
      .occ-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; width: 100%; max-width: 100%; }
      .occ-card { min-width: 0; }
      .occ-grid .occ-card:last-child:nth-child(odd) { grid-column: 1 / -1; aspect-ratio: 16/9; }
      .occ-card-overlay { background: linear-gradient(180deg, transparent 62%, rgba(26,20,16,0.75) 100%); }
      .occ-card-content { min-width: 0; padding: 18px 14px; }
      .occ-card-label { letter-spacing: 0.14em; }
      .occ-card-name { font-size: 20px; overflow-wrap: break-word; }
      .occ-card-arrow { opacity: 0.5; transform: none; }
      .con-grid { grid-template-columns: 1fr; gap: 12px; max-width: 100%; }
      .con-card { display: grid; grid-template-columns: 110px 1fr; border-radius: 6px; }
      .con-card-img { aspect-ratio: auto; min-height: 100%; }
      .con-card-body { padding: 14px; display: flex; flex-direction: column; justify-content: center; }
      .con-card-name { font-size: 18px; margin-bottom: 4px; }
      .concept-service-nav,
      .concept-fit-links {
        justify-content: flex-start;
        gap: 9px 14px;
      }
      .port-gallery { columns: 2; column-gap: 10px; }
      .port-item { margin-bottom: 10px; }
      .seo-section { width: calc(100% - 32px); margin-top: 36px; }
      .seo-section.after-grid { margin-top: 32px; }
      .seo-section.compact { margin-top: 34px; }
      .seo-inner { padding: 24px 18px 22px; }
      .seo-kicker { font-size: 9px; margin-bottom: 10px; }
      .seo-title { font-size: 27px; margin-bottom: 18px; }
      .seo-copy-grid { grid-template-columns: 1fr; gap: 18px; }
      .seo-copy { font-size: 12.5px; line-height: 1.72; gap: 11px; }
      .seo-primary-figure { width: 100%; border-radius: 12px; }
      .seo-points { gap: 18px; }
      .seo-point { padding: 2px 0 18px; }
      .seo-point[data-num] { grid-template-columns: 38px 1fr; gap: 12px; }
      .seo-point[data-num]::before { font-size: 28px; padding-top: 2px; }
      .seo-point strong { font-size: 17px; margin-bottom: 5px; }
      .seo-point span { font-size: 12.5px; line-height: 1.68; }
      .seo-links { gap: 8px; }
      .seo-links a { font-size: 9.5px; padding: 8px 10px; }
      .port-safety { grid-template-columns: 1fr; gap: 10px; }
      .port-review { flex-direction: column; gap: 10px; }
      .booking-page { padding: 80px 16px 100px; }
      .booking-form-layout { grid-template-columns: 1fr; gap: 32px; }
      .booking-reassurance { padding: 18px; margin-bottom: 22px; }
      .booking-reassurance h3 { font-size: 25px; }
      .booking-reassurance-grid { grid-template-columns: 1fr; gap: 8px; }
      .booking-reassurance-item { padding: 12px; }
      .bk-section-title { font-size: clamp(22px, 5.5vw, 30px); }
      .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
      .reviews-bar { flex-wrap: wrap; gap: 12px; }
      .reviews-google-logo { margin-left: 0 !important; }
      .includes-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .include-card { padding: 16px; }
      .include-icon { width: 40px; height: 40px; margin-bottom: 10px; }
      .include-icon svg { width: 18px; height: 18px; }
      .include-name { font-size: 12px; }
      .include-desc { font-size: 11px; }
      .celeb-grid { grid-template-columns: 1fr; gap: 14px; }
      .celeb-card { display: grid; grid-template-columns: 140px 1fr; }
      .celeb-photo { aspect-ratio: auto; min-height: 100%; }
      .celeb-photo-inner { border-radius: 6px 0 0 6px; }
      .celeb-body { padding: 16px; }
      .celeb-quote { font-size: 15px; margin-bottom: 12px; padding-left: 12px; }
      .celeb-info { flex-direction: column; align-items: flex-start; gap: 8px; }
      .celeb-source { margin-top: 10px; padding-top: 10px; }
      .timeline { flex-wrap: wrap; gap: 8px; }
      .timeline::before { display: none; }
      .timeline-step { flex: 0 0 calc(33.33% - 6px); text-align: center; }
      .timeline-dot { width: 34px; height: 34px; }
      .timeline-step-label { font-size: 11px; }
      .timeline-step-desc { font-size: 10px; }
      .date-picker-row { flex-direction: column; gap: 10px; }
      .booking-summary { padding: 18px; }
      .booking-message-box { padding: 18px; }
      .message-preview { font-size: 12px; line-height: 1.7; }
      .channel-btn { padding: 14px 16px; }
      .channel-icon { width: 36px; height: 36px; }
      .channel-icon svg { width: 16px; height: 16px; }
      .channel-name { font-size: 13px; }
      .channel-detail { font-size: 11px; }
      .reply-panel { padding: 18px; }
      .reply-panel h3 { font-size: 24px; }
      .reply-form-grid { grid-template-columns: 1fr; gap: 10px; }
      .reply-submit { width: 100%; }
      .faq-q-text { font-size: 13px; }
      .trust-strip { gap: 12px; }
      .trust-chip { font-size: 10px; }
      .skip-link a { font-size: 11px; }
      /* Branch cards mobile — 2-col compact */
      .branch-cards { grid-template-columns: 1fr 1fr; gap: 8px; }
      .branch-card { padding: 14px 12px; gap: 6px; border-radius: 6px; }
      .branch-icon { width: 24px; height: 24px; }
      .branch-icon svg { width: 16px; height: 16px; }
      .branch-title { font-size: 15px; line-height: 1.2; }
      .branch-sub { font-size: 10.5px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
      .branch-cta { font-size: 9.5px; letter-spacing: 0.12em; }
      .branch-cta svg { width: 12px; height: 12px; }
      /* Why Cielo mobile */
      .why-page { padding: 80px 16px 80px; }
      .why-press { grid-template-columns: 1fr; }
      .why-press-photo { aspect-ratio: 16/10; min-height: 200px; }
      .why-press-text { padding: 24px 22px; }
      .why-reviews { grid-template-columns: 1fr; gap: 10px; }
      .why-includes { grid-template-columns: 1fr 1fr; gap: 10px; }
      .why-include { padding: 16px 14px; }
      .why-include-icon { width: 36px; height: 36px; margin-bottom: 10px; }
      .why-timeline { flex-wrap: wrap; gap: 8px; }
      .why-timeline::before { display: none; }
      .why-step { flex: 0 0 calc(33.33% - 6px); }
      .why-step-dot { width: 34px; height: 34px; }
      .why-final { padding: 36px 22px; }
      .why-final-actions { flex-direction: column; }
      .why-final-actions .btn-gold, .why-final-actions .btn-g { width: 100%; max-width: 280px; margin: 0 auto; justify-content: center; }
    }
    @media (max-width: 480px) {
      .nav-book { display: none; }
    }
    @media (max-width: 390px) {
      .hero-title { font-size: 38px; }
      .landing-content { padding: 0 18px 36px; }
      .occ-grid { grid-template-columns: 1fr; }
      .occ-card { aspect-ratio: 16/9; }
      .occ-grid .occ-card:last-child:nth-child(odd) { aspect-ratio: 16/9; }
      .booking-summary-label, .booking-summary-value { font-size: 12px; }
      .includes-grid { grid-template-columns: 1fr; }
    }
    @supports (padding-bottom: env(safe-area-inset-bottom)) {
      .landing-trust { padding-bottom: env(safe-area-inset-bottom); }
    }
    @media (hover: none) {
      .occ-card:hover { transform: none; box-shadow: none; }
      .occ-card:hover .occ-card-bg { transform: none; }
      .occ-card .occ-card-sub { max-height: 50px; opacity: 1; }
      .occ-card .occ-card-arrow { opacity: 0.4; transform: none; }
      .con-card:hover { transform: none; box-shadow: none; }
      .con-card:hover .con-card-img-inner { transform: none; }
      .channel-btn:hover { transform: none; }
      .channel-btn:hover .channel-arrow { transform: none; }
      .btn-p:active, .btn-gold:active { transform: scale(0.97); }
      .occ-card:active { transform: scale(0.97); }
      .con-card:active { transform: scale(0.98); }
    }

/* Anchor compatibility (button → a conversion in static pages) */
a.btn-p, a.btn-g, a.btn-gold,
a.nav-book, a.nav-logo,
a.occ-card, a.con-card,
a.branch-card, a.channel-btn,
.con-page a, .occ-page a, .why-final-actions a, .branch-back a { text-decoration: none; }
