
    /* ── Reset & Base ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:        #f1f4ff;
      --surface:   #ffffff;
      --accent:    #8b7355;      /* warm antique bronze */
      --accent2:   #4a5568;      /* deep ink grey */
      --text:      #2d2d2d;
      --muted:     #6b7280;
      --border:    #d9dff5;
      --radius:    12px;
      --shadow:    0 4px 20px rgba(100,110,160,0.10);
      --shadow-lg: 0 8px 40px rgba(100,110,160,0.16);
    }

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: 'Georgia', 'Times New Roman', serif;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    img { display: block; width: 100%; height: 100%; object-fit: cover; }

    /* ── Typography ── */
    h1, h2, h3 {
      font-family: 'Georgia', serif;
      letter-spacing: 0.02em;
    }
    .eyebrow {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 600;
    }

    /* ── Layout ── */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    section { padding: 72px 0; }

    /* ────────────────────────────────────────
       HERO
    ──────────────────────────────────────── */
    .hero {
      padding: 96px 0 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 50% at 15% 40%, rgba(139,115,85,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 85% 60%, rgba(100,110,180,0.06) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-eyebrow {
      margin-bottom: 14px;
    }
    .hero h1 {
      font-size: clamp(2rem, 5vw, 3.4rem);
      color: var(--text);
      max-width: 720px;
      margin: 0 auto 20px;
      line-height: 1.25;
    }
    .hero-sub {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 540px;
      margin: 0 auto 48px;
      font-weight: 300;
    }
    /* Hero mosaic — 3 images */
    .hero-mosaic {
      display: grid;
      grid-template-columns: 1fr 1.2fr 1fr;
      gap: 12px;
      max-width: 900px;
      margin: 0 auto;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .hero-mosaic .img-wrap {
      aspect-ratio: 1/1;
      overflow: hidden;
      position: relative;
    }
    .hero-mosaic .img-wrap img {
      transition: transform 0.5s ease;
    }
    .hero-mosaic .img-wrap:hover img { transform: scale(1.04); }

    /* ────────────────────────────────────────
       SECTION HEADER
    ──────────────────────────────────────── */
    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .section-header h2 {
      font-size: clamp(1.5rem, 3.5vw, 2.2rem);
      margin-top: 10px;
      color: var(--text);
    }
    .section-header p {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      color: var(--muted);
      max-width: 520px;
      margin: 12px auto 0;
      font-size: 0.95rem;
    }
    .divider {
      width: 48px;
      height: 2px;
      background: var(--accent);
      margin: 16px auto 0;
      border-radius: 2px;
    }

    /* ────────────────────────────────────────
       OPENING STORY — single wide image
    ──────────────────────────────────────── */
    .story-wrap {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      aspect-ratio: 1/1;
      max-width: 680px;
      margin: 0 auto;
    }
    .story-wrap img { transition: transform 0.6s ease; }
    .story-wrap:hover img { transform: scale(1.03); }

    /* ────────────────────────────────────────
       GALLERY — CSS Columns waterfall
    ──────────────────────────────────────── */
    .gallery-cols {
      columns: 3 280px;
      column-gap: 16px;
    }
    .gallery-cols .g-item {
      break-inside: avoid;
      margin-bottom: 16px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: var(--surface);
      position: relative;
    }
    .gallery-cols .g-item .img-wrap {
      aspect-ratio: 1/1;
      overflow: hidden;
    }
    .gallery-cols .g-item img {
      transition: transform 0.45s ease;
    }
    .gallery-cols .g-item:hover img { transform: scale(1.05); }
    .g-caption {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      font-size: 0.75rem;
      color: var(--muted);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 10px 14px 12px;
      background: var(--surface);
    }

    /* ────────────────────────────────────────
       LIFESTYLE SPLIT — 2-col model shots
    ──────────────────────────────────────── */
    .lifestyle-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .lifestyle-card {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: var(--surface);
    }
    .lifestyle-card .img-wrap {
      aspect-ratio: 1/1;
      overflow: hidden;
    }
    .lifestyle-card img { transition: transform 0.5s ease; }
    .lifestyle-card:hover img { transform: scale(1.04); }
    .lifestyle-card .card-body {
      padding: 20px 22px 22px;
    }
    .lifestyle-card .card-body h3 {
      font-size: 1rem;
      margin-bottom: 6px;
      color: var(--text);
    }
    .lifestyle-card .card-body p {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ────────────────────────────────────────
       DETAIL PAIR — 2 detail shots side by side
    ──────────────────────────────────────── */
    .detail-pair {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .detail-card {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: var(--surface);
    }
    .detail-card .img-wrap {
      aspect-ratio: 1/1;
      overflow: hidden;
    }
    .detail-card img { transition: transform 0.5s ease; }
    .detail-card:hover img { transform: scale(1.06); }
    .detail-card .label {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      padding: 10px 14px 12px;
    }

    /* ────────────────────────────────────────
       ENDING — gift box full-width + thematic
    ──────────────────────────────────────── */
    .ending-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 20px;
      align-items: stretch;
    }
    .ending-main {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .ending-main .img-wrap { aspect-ratio: 1/1; overflow: hidden; }
    .ending-main img { transition: transform 0.5s ease; }
    .ending-main:hover img { transform: scale(1.03); }

    .ending-sub {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .ending-sub .img-wrap { aspect-ratio: 1/1; overflow: hidden; }
    .ending-sub img { transition: transform 0.5s ease; }
    .ending-sub:hover img { transform: scale(1.04); }

    /* ────────────────────────────────────────
       EXTRA GRID — 6 extras in 3-col grid
    ──────────────────────────────────────── */
    .extra-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .extra-card {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: var(--surface);
    }
    .extra-card .img-wrap {
      aspect-ratio: 1/1;
      overflow: hidden;
    }
    .extra-card img { transition: transform 0.45s ease; }
    .extra-card:hover img { transform: scale(1.05); }

    /* ────────────────────────────────────────
       LIGHTBOX
    ──────────────────────────────────────── */
    .lightbox-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.85);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      padding: 20px;
      cursor: zoom-out;
    }
    .lightbox-overlay.active { display: flex; }
    .lightbox-overlay img {
      max-width: min(90vw, 720px);
      max-height: 90vh;
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      cursor: default;
      animation: lbIn 0.25s ease;
    }
    @keyframes lbIn {
      from { opacity:0; transform: scale(0.93); }
      to   { opacity:1; transform: scale(1); }
    }
    .lb-close {
      position: fixed;
      top: 20px; right: 26px;
      color: #fff;
      font-size: 2rem;
      cursor: pointer;
      line-height: 1;
      user-select: none;
      z-index: 10000;
    }
    /* all clickable image wrappers */
    [data-lb] { cursor: zoom-in; }

    /* ────────────────────────────────────────
       PRODUCT SPECS STRIP
    ──────────────────────────────────────── */
    .specs-strip {
      background: var(--surface);
      border-radius: var(--radius);
      padding: 40px 48px;
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      text-align: center;
    }
    .spec-item h3 {
      font-size: 1.5rem;
      color: var(--accent);
      margin-bottom: 6px;
    }
    .spec-item p {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      font-size: 0.85rem;
      color: var(--muted);
    }

    /* ────────────────────────────────────────
       STYLE CARDS — 3 SKUs
    ──────────────────────────────────────── */
    .style-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .style-card {
      background: var(--surface);
      border-radius: var(--radius);
      padding: 28px 24px 30px;
      box-shadow: var(--shadow);
      border-top: 3px solid var(--accent);
    }
    .style-card .style-dot {
      width: 36px; height: 36px;
      border-radius: 50%;
      margin-bottom: 14px;
    }
    .style-card h3 {
      font-size: 1rem;
      margin-bottom: 8px;
    }
    .style-card p {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      font-size: 0.83rem;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ────────────────────────────────────────
       FAQ
    ──────────────────────────────────────── */
    .faq-list { max-width: 760px; margin: 0 auto; }
    .faq-item {
      background: var(--surface);
      border-radius: var(--radius);
      margin-bottom: 12px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 20px 24px;
      font-family: 'Georgia', serif;
      font-size: 1rem;
      color: var(--text);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }
    .faq-q:hover { background: var(--bg); }
    .faq-q .faq-icon {
      flex-shrink: 0;
      width: 24px; height: 24px;
      border-radius: 50%;
      background: var(--bg);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      color: var(--accent);
      transition: transform 0.3s ease;
      font-style: normal;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.3s ease;
      font-family: 'Helvetica Neue', Arial, sans-serif;
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.75;
      padding: 0 24px;
    }
    .faq-item.open .faq-a {
      max-height: 300px;
      padding: 0 24px 22px;
    }

    /* ────────────────────────────────────────
       FOOTER
    ──────────────────────────────────────── */
    footer {
      background: var(--accent2);
      color: rgba(255,255,255,0.65);
      text-align: center;
      padding: 36px 20px;
      font-family: 'Helvetica Neue', Arial, sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.04em;
    }
    footer .footer-tagline {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.9);
      margin-bottom: 8px;
      font-family: 'Georgia', serif;
      letter-spacing: 0.06em;
    }

    /* ────────────────────────────────────────
       SECTION BG ALT
    ──────────────────────────────────────── */
    .bg-white { background: var(--surface); }
    .bg-alt   { background: #eceffe; }

    /* ────────────────────────────────────────
       RESPONSIVE
    ──────────────────────────────────────── */
    @media (max-width: 900px) {
      .hero-mosaic { grid-template-columns: 1fr 1fr; }
      .hero-mosaic .img-wrap:last-child { display: none; }
      .specs-strip { grid-template-columns: 1fr 1fr; }
      .style-cards { grid-template-columns: 1fr 1fr; }
      .extra-grid  { grid-template-columns: 1fr 1fr; }
      .ending-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      section { padding: 52px 0; }
      .hero   { padding: 64px 0 52px; }
      .hero-mosaic { grid-template-columns: 1fr; max-width: 360px; }
      .hero-mosaic .img-wrap:not(:first-child) { display: none; }
      .lifestyle-grid { grid-template-columns: 1fr; }
      .detail-pair    { grid-template-columns: 1fr; }
      .style-cards    { grid-template-columns: 1fr; }
      .specs-strip    { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; }
      .extra-grid     { grid-template-columns: 1fr 1fr; }
      .gallery-cols   { columns: 2 160px; }
      .ending-grid    { grid-template-columns: 1fr; }
    }
  