
    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Inter', sans-serif;
      background: #f1f4ff;
      color: #1a1a2e;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { cursor: pointer; border: none; background: none; font: inherit; }

    :root {
      --bg:          #f1f4ff;
      --bg-card:     #ffffff;
      --bg-dark:     #1a1a2e;
      --accent:      #b8860b;
      --accent-lt:   #d4a843;
      --accent-pale: #fdf3dc;
      --text-main:   #1a1a2e;
      --text-muted:  #6b7280;
      --text-light:  #f1f4ff;
      --border:      #e0e4f4;
      --radius-sm:   6px;
      --radius-md:   12px;
      --radius-lg:   20px;
      --shadow-sm:   0 2px 8px rgba(26,26,46,.06);
      --shadow-md:   0 8px 32px rgba(26,26,46,.10);
      --shadow-lg:   0 20px 60px rgba(26,26,46,.14);
      --max-w:       1200px;
      --gap:         clamp(16px, 3vw, 28px);
    }

    .serif { font-family: 'Playfair Display', Georgia, serif; }
    .eyebrow {
      font-size: .72rem; font-weight: 600; letter-spacing: .18em;
      text-transform: uppercase; color: var(--accent);
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 700; line-height: 1.2; color: var(--text-main);
    }
    .section-sub {
      font-size: clamp(.9rem, 1.8vw, 1.05rem);
      color: var(--text-muted); margin-top: .55rem;
      max-width: 560px;
    }

    .container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(16px,4vw,48px); }
    .section    { padding: clamp(48px,8vw,96px) 0; }

    /* ============================================================
       HEADER
    ============================================================ */
    .site-header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(241,244,255,.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; }
    .brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem; font-weight: 700;
      letter-spacing: .05em; color: var(--text-main);
    }
    .brand span { color: var(--accent); }
    .nav-links {
      display: flex; gap: 28px; list-style: none;
      font-size: .85rem; font-weight: 500;
    }
    .nav-links a:hover { color: var(--accent); }
    .nav-cta {
      background: var(--accent); color: #fff;
      padding: 8px 20px; border-radius: 40px;
      font-size: .82rem; font-weight: 600; letter-spacing: .04em;
      transition: background .2s, transform .15s;
    }
    .nav-cta:hover { background: var(--accent-lt); transform: translateY(-1px); }
    @media(max-width:700px){ .nav-links { display: none; } }

    /* ============================================================
       HERO
    ============================================================ */
    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(24px,5vw,64px);
      align-items: center;
      padding: clamp(48px,8vw,96px) 0 clamp(32px,5vw,64px);
    }
    @media(max-width:760px){ .hero { grid-template-columns:1fr; } }

    .gallery-main {
      position: relative; border-radius: var(--radius-lg);
      overflow: hidden; background: var(--bg-card);
      box-shadow: var(--shadow-lg); aspect-ratio: 1/1;
      cursor: zoom-in;
    }
    .gallery-main img { width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
    .gallery-main:hover img { transform: scale(1.03); }
    .gallery-thumbs {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 8px; margin-top: 10px;
    }
    .thumb {
      aspect-ratio:1/1; border-radius: var(--radius-sm);
      overflow:hidden; cursor:pointer; border: 2px solid transparent;
      transition: border-color .2s, transform .15s; background: var(--bg-card);
    }
    .thumb:hover, .thumb.active { border-color: var(--accent); transform: translateY(-2px); }
    .thumb img { width:100%; height:100%; object-fit:cover; }

    .hero-copy { display:flex; flex-direction:column; gap:18px; }
    .hero-copy .eyebrow { margin-bottom: 4px; }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem,4vw,2.8rem);
      font-weight: 700; line-height: 1.15;
    }
    .hero-title em { font-style:italic; color: var(--accent); }
    .hero-desc { font-size: clamp(.92rem,1.6vw,1.05rem); color: var(--text-muted); max-width: 480px; }
    .hero-badges { display:flex; flex-wrap:wrap; gap:8px; }
    .badge {
      background: var(--bg); border: 1px solid var(--border);
      border-radius: 40px; padding: 5px 14px;
      font-size: .76rem; font-weight: 500; color: var(--text-muted);
    }
    .badge--gold { background: var(--accent-pale); border-color: var(--accent-lt); color: #7a5900; }
    .hero-cta-row { display:flex; gap:12px; flex-wrap:wrap; margin-top:6px; }
    .btn-primary {
      background: var(--accent); color: #fff;
      padding: 13px 28px; border-radius: 40px;
      font-size: .92rem; font-weight: 600; letter-spacing: .04em;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 16px rgba(184,134,11,.3);
      display: inline-block;
    }
    .btn-primary:hover { background: var(--accent-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,134,11,.35); }
    .btn-secondary {
      background: var(--bg-card); color: var(--text-main);
      padding: 13px 28px; border-radius: 40px;
      font-size: .92rem; font-weight: 500;
      border: 1.5px solid var(--border);
      transition: border-color .2s, transform .15s;
      display: inline-block;
    }
    .btn-secondary:hover { border-color: var(--accent); transform: translateY(-2px); }
    .trust-row {
      display:flex; align-items:center; gap:16px; flex-wrap:wrap;
      font-size:.78rem; color: var(--text-muted);
    }
    .trust-item { display:flex; align-items:center; gap:5px; }
    .trust-item svg { width:14px; height:14px; color: var(--accent); flex-shrink:0; }

    /* ============================================================
       FEATURES STRIP
    ============================================================ */
    .features-strip { padding: clamp(32px,5vw,56px) 0; }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
      gap: var(--gap);
    }
    .feature-card {
      background: var(--bg-card);
      border-radius: var(--radius-md);
      padding: 24px 20px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      transition: box-shadow .2s, transform .2s;
    }
    .feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .feature-icon {
      font-size: 1.6rem; margin-bottom: 12px;
      width:44px; height:44px; display:flex; align-items:center; justify-content:center;
      background: var(--accent-pale); border-radius: var(--radius-sm);
    }
    .feature-card h3 { font-size:.9rem; font-weight:600; margin-bottom:6px; }
    .feature-card p  { font-size:.82rem; color:var(--text-muted); line-height:1.55; }

    /* ============================================================
       16:9 DESKTOP SERIES
    ============================================================ */
    .series-section { padding: clamp(48px,8vw,80px) 0; }
    .series-header { text-align:center; margin-bottom: clamp(28px,5vw,48px); }
    .series-header .section-sub { margin: .55rem auto 0; }

    .desktop-series-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(12px,2vw,20px);
    }
    @media(max-width:600px){ .desktop-series-grid { grid-template-columns: 1fr; } }

    .series-img-wrap {
      position: relative; border-radius: var(--radius-md);
      overflow: hidden; background: var(--bg-card);
      box-shadow: var(--shadow-sm);
      transition: box-shadow .25s, transform .25s;
      cursor: zoom-in;
    }
    .series-img-wrap:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .series-img-wrap img { width:100%; display:block; aspect-ratio:16/9; object-fit:cover; }
    .series-img-label {
      position:absolute; bottom:10px; left:12px;
      background: rgba(26,26,46,.65); backdrop-filter:blur(4px);
      color:#fff; font-size:.7rem; font-weight:500; letter-spacing:.08em;
      text-transform:uppercase; padding:4px 10px; border-radius:40px;
    }

    /* ============================================================
       1:1 MOBILE GALLERY
    ============================================================ */
    .mobile-gallery-section { padding: clamp(32px,5vw,64px) 0; background: var(--bg-card); }
    .mobile-gallery-grid {
      columns: 3 200px;
      column-gap: clamp(8px,1.5vw,14px);
    }
    @media(max-width:500px){ .mobile-gallery-grid { columns: 2 140px; } }

    .mobile-gallery-item {
      break-inside: avoid;
      margin-bottom: clamp(8px,1.5vw,14px);
      border-radius: var(--radius-md);
      overflow: hidden;
      background: var(--bg);
      box-shadow: var(--shadow-sm);
      transition: box-shadow .2s, transform .2s;
      cursor: zoom-in;
    }
    .mobile-gallery-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
    .mobile-gallery-item img { width:100%; display:block; aspect-ratio:1/1; object-fit:cover; }

    /* ============================================================
       SPECS
    ============================================================ */
    .specs-section {
      padding: clamp(48px,8vw,80px) 0;
      background: var(--bg-dark); color: var(--text-light);
    }
    .specs-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,72px);
      align-items: start;
    }
    @media(max-width:700px){ .specs-inner{ grid-template-columns:1fr; } }
    .specs-copy .eyebrow { color: var(--accent-lt); }
    .specs-copy .section-title { color:#fff; }
    .specs-copy .section-sub { color: rgba(241,244,255,.65); max-width:420px; }
    .specs-table { width:100%; border-collapse:collapse; margin-top:8px; }
    .specs-table tr { border-bottom: 1px solid rgba(241,244,255,.1); }
    .specs-table tr:last-child { border:none; }
    .specs-table td { padding: 11px 0; font-size:.9rem; vertical-align:top; }
    .specs-table td:first-child { color: rgba(241,244,255,.55); width:45%; padding-right:16px; font-size:.82rem; text-transform:uppercase; letter-spacing:.06em; }
    .specs-table td:last-child { font-weight:500; }

    /* ============================================================
       WHY CHOOSE
    ============================================================ */
    .why-section { padding: clamp(48px,8vw,80px) 0; }
    .why-header { text-align:center; margin-bottom:clamp(28px,5vw,48px); }
    .why-header .section-sub { margin:.55rem auto 0; }
    .why-grid {
      display:grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
      gap:var(--gap);
    }
    .why-card {
      background: var(--bg-card); border:1px solid var(--border);
      border-radius: var(--radius-md); padding:28px 24px;
      box-shadow:var(--shadow-sm); position:relative;
      transition: box-shadow .2s, transform .2s;
    }
    .why-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); }
    .why-card__num {
      font-family:'Playfair Display',serif; font-size:2.8rem; font-weight:700;
      color:var(--border); line-height:1; margin-bottom:12px; user-select:none;
    }
    .why-card h3 { font-size:.95rem; font-weight:600; margin-bottom:8px; }
    .why-card p  { font-size:.84rem; color:var(--text-muted); line-height:1.6; }

    /* ============================================================
       FAQ
    ============================================================ */
    .faq-section { padding: clamp(48px,8vw,80px) 0; background: var(--accent-pale); }
    .faq-header { text-align:center; margin-bottom:clamp(28px,4vw,44px); }
    .faq-list { max-width:780px; margin:0 auto; display:flex; flex-direction:column; gap:10px; }
    .faq-item {
      background: var(--bg-card); border:1px solid var(--border);
      border-radius: var(--radius-md); overflow:hidden;
      box-shadow: var(--shadow-sm);
    }
    .faq-q {
      width:100%; text-align:left; padding:18px 22px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      font-size:.95rem; font-weight:600; color:var(--text-main);
      transition: color .2s;
    }
    .faq-q:hover { color: var(--accent); }
    .faq-q .icon {
      flex-shrink:0; width:22px; height:22px;
      border:1.5px solid var(--border); border-radius:50%;
      display:flex; align-items:center; justify-content:center;
      font-size:1rem; line-height:1; color:var(--accent);
      transition: transform .3s, background .2s;
    }
    .faq-item.open .faq-q .icon { transform:rotate(45deg); background:var(--accent); color:#fff; border-color:var(--accent); }
    .faq-a {
      max-height:0; overflow:hidden;
      transition: max-height .35s ease, padding .3s;
      font-size:.88rem; color:var(--text-muted); line-height:1.7;
    }
    .faq-a-inner { padding: 0 22px 18px; }
    .faq-item.open .faq-a { max-height: 500px; }

    /* ============================================================
       CTA
    ============================================================ */
    .cta-section {
      padding: clamp(56px,9vw,100px) 0;
      background: var(--bg-dark);
      text-align:center; position:relative; overflow:hidden;
    }
    .cta-section::before {
      content:''; position:absolute; inset:0;
      background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(184,134,11,.18), transparent);
      pointer-events:none;
    }
    .cta-section .eyebrow { color: var(--accent-lt); }
    .cta-section .section-title { color:#fff; margin-top:8px; }
    .cta-section .section-sub { color:rgba(241,244,255,.6); max-width:520px; margin:12px auto 0; }
    .cta-form {
      display:flex; gap:10px; flex-wrap:wrap;
      justify-content:center; margin-top:36px;
    }
    .cta-form input {
      flex:1 1 260px; max-width:380px;
      background: rgba(241,244,255,.08);
      border: 1px solid rgba(241,244,255,.18);
      border-radius:40px; padding:13px 22px;
      color:#fff; font-size:.9rem; font-family:inherit;
      outline:none; transition:border-color .2s;
    }
    .cta-form input::placeholder { color:rgba(241,244,255,.4); }
    .cta-form input:focus { border-color: var(--accent-lt); }

    /* ============================================================
       FOOTER
    ============================================================ */
    .site-footer {
      background: #12122a; color: rgba(241,244,255,.45);
      padding: clamp(32px,5vw,56px) 0 24px;
      font-size:.82rem;
    }
    .footer-inner {
      display:grid; grid-template-columns: 2fr 1fr 1fr; gap:var(--gap);
    }
    @media(max-width:680px){ .footer-inner{ grid-template-columns:1fr; } }
    .footer-brand { font-family:'Playfair Display',serif; font-size:1.1rem; font-weight:700; color:#fff; margin-bottom:10px; }
    .footer-brand span { color: var(--accent-lt); }
    .footer-tagline { max-width:280px; line-height:1.6; }
    .footer-col h4 { color:rgba(241,244,255,.75); font-size:.8rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom:14px; }
    .footer-links { list-style:none; display:flex; flex-direction:column; gap:8px; }
    .footer-links a:hover { color:var(--accent-lt); }
    .footer-bottom {
      border-top:1px solid rgba(241,244,255,.08); margin-top:36px; padding-top:18px;
      display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px;
    }

    /* ============================================================
       LIGHTBOX
    ============================================================ */
    .lightbox {
      display:none; position:fixed; inset:0; z-index:999;
      background:rgba(10,10,20,.92); align-items:center; justify-content:center;
    }
    .lightbox.active { display:flex; }
    .lightbox img { max-width:90vw; max-height:90vh; border-radius:var(--radius-md); object-fit:contain; }
    .lightbox-close {
      position:absolute; top:20px; right:24px;
      color:#fff; font-size:2rem; line-height:1; cursor:pointer;
      width:44px; height:44px; display:flex; align-items:center; justify-content:center;
      border-radius:50%; background:rgba(255,255,255,.1); transition:background .2s;
    }
    .lightbox-close:hover { background:rgba(255,255,255,.2); }

    .reveal { opacity:0; transform:translateY(24px); transition:opacity .55s ease, transform .55s ease; }
    .reveal.visible { opacity:1; transform:none; }

    ::selection { background: var(--accent-pale); color: var(--text-main); }
    ::-webkit-scrollbar { width:6px; } ::-webkit-scrollbar-track { background:var(--bg); }
    ::-webkit-scrollbar-thumb { background:var(--border); border-radius:3px; }
  