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

    :root {
      --ink:     #1a1714;
      --warm:    #2e2820;
      --stone:   #6b6157;
      --sand:    #c9bfb0;
      --cream:   #f5f0e8;
      --gold:    #b89a5e;
      --gold-lt: #d4b97a;
      --white:   #fdf9f4;
      --paragraph-scale: 1.25;
    }

    html { scroll-behavior: smooth; }
    html.font-scale-large { --paragraph-scale: 1.625; }
    body { font-family: 'Jost', sans-serif; background: var(--white); color: var(--ink); overflow-x: hidden; }

    .nav-font-toggle {
      display: inline-flex;
      align-items: center;
      gap: 0.34rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold-lt);
      background: rgba(184,154,94,0.14);
      border: 1px solid rgba(184,154,94,0.55);
      padding: 0.42rem 0.7rem;
      line-height: 1;
      cursor: pointer;
      transition: color 0.25s, background 0.25s, border-color 0.25s;
    }
    .fst-opt {
      color: var(--sand);
      transition: color 0.2s;
    }
    .fst-sep {
      color: rgba(212,185,122,0.55);
      letter-spacing: 0;
      transform: translateY(-0.03rem);
    }
    .nav-font-toggle[data-scale="default"] .fst-opt--default,
    .nav-font-toggle[data-scale="large"] .fst-opt--large {
      color: var(--white);
    }
    .nav-font-toggle:hover,
    .nav-font-toggle:focus-visible {
      color: var(--white);
      background: rgba(184,154,94,0.28);
      border-color: var(--gold-lt);
      outline: none;
    }
    html.font-scale-large .nav-font-toggle {
      background: rgba(184,154,94,0.28);
      border-color: var(--gold-lt);
    }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.6rem 4rem;
      background: transparent;
      transition: background 0.5s, padding 0.4s;
    }
    nav.scrolled { background: rgba(26,23,20,0.94); backdrop-filter: blur(8px); padding: 1rem 4rem; }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400;
      letter-spacing: 0.12em; color: var(--white); text-decoration: none; text-transform: uppercase;
    }

    /* HERO */
    #hero {
      position: relative; height: 100vh; min-height: 700px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden; background: var(--ink);
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(184,154,94,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 70%, rgba(107,97,87,0.15) 0%, transparent 55%),
        linear-gradient(160deg, #0e0c0a 0%, #1a1714 50%, #221e18 100%);
    }
    .hero-bg::after {
      content: ''; position: absolute; inset: 0; opacity: 0.35; pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    }
    .hero-content {
      position: relative; z-index: 2; text-align: center; padding: 0 2rem;
      animation: fadeUp 1.4s cubic-bezier(0.16,1,0.3,1) both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(36px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif; font-size: clamp(3.2rem, 7vw, 6.2rem);
      font-weight: 300; line-height: 1.08; color: var(--white); letter-spacing: 0.02em;
      animation: fadeUp 1.4s 0.2s cubic-bezier(0.16,1,0.3,1) both;
    }
    .hero-title em { font-style: italic; color: var(--gold-lt); }
    .hero-subtitle {
      margin-top: 1.8rem; font-size: calc(0.88rem * var(--paragraph-scale)); font-weight: 300; letter-spacing: 0.14em;
      color: var(--sand); max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.9;
      animation: fadeUp 1.4s 0.35s cubic-bezier(0.16,1,0.3,1) both;
    }
    .hero-scroll {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
      animation: fadeUp 1.4s 0.7s cubic-bezier(0.16,1,0.3,1) both;
    }
    .hero-scroll span { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--stone); }
    .scroll-line {
      width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%,100% { opacity: 0.3; } 50% { opacity: 1; }
    }

    .btn {
      display: inline-block; padding: 0.85rem 2.4rem; font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
      transition: all 0.3s; cursor: pointer; border: none;
    }
    .btn-gold { background: var(--gold); color: var(--ink); }
    .btn-gold:hover { background: var(--gold-lt); }
    .btn-warranty {
      background: transparent; color: var(--gold-lt); border: 1px solid var(--gold);
    }
    .btn-warranty:hover { background: rgba(184,154,94,0.12); }

    /* SHARED */
    section { position: relative; }
    .section-inner { max-width: 1180px; margin: 0 auto; padding: 0 2.5rem; }
    .section-tag { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
    .section-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 300; line-height: 1.15; color: var(--ink); margin-bottom: 1.2rem; }
    .section-heading em { font-style: italic; color: var(--stone); }
    .divider { width: 56px; height: 1px; background: var(--gold); margin: 1.8rem 0; }

    /* DIFFERENCE */
    #difference {
      background: var(--ink);
      padding: 6rem 0;
      border-top: 1px solid rgba(184,154,94,0.15);
    }
    .diff-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }
    .diff-col {
      padding: 3rem 3.5rem;
    }
    .diff-col:first-child {
      border-right: 1px solid rgba(184,154,94,0.15);
    }
    .diff-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 300;
      color: var(--gold-lt); letter-spacing: 0.04em;
      margin-bottom: 1.8rem;
    }
    .diff-list {
      list-style: none;
      display: flex; flex-direction: column; gap: 0.85rem;
      margin-bottom: 1.8rem;
    }
    .diff-list--against li {
      font-size: calc(0.82rem * var(--paragraph-scale));
      font-weight: 300; color: var(--stone);
      padding-left: 1.4rem; position: relative;
      line-height: 1.55;
    }
    .diff-list--against li::before {
      content: '✕';
      position: absolute; left: 0;
      font-size: 0.6rem; color: rgba(107,97,87,0.5);
      top: 0.15rem;
    }
    .diff-divider {
      width: 40px; height: 1px;
      background: var(--gold);
      margin-bottom: 1.4rem;
      opacity: 0.6;
    }
    .diff-our {
      font-size: calc(0.88rem * var(--paragraph-scale));
      font-weight: 300; line-height: 1.9;
      color: var(--sand);
    }

    @media (max-width: 900px) {
      .diff-grid { grid-template-columns: 1fr; }
      .diff-col { padding: 2.5rem 0; }
      .diff-col:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(184,154,94,0.15);
      }
    }

    /* ABOUT */
    #about { background: var(--white); padding: 9rem 0 8rem; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
    .about-visual { position: relative; }
    .about-img-frame { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--ink); }
    .about-img-inner {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 50% at 35% 40%, #3a3028 0%, #1a1714 70%),
        repeating-linear-gradient(107deg, transparent 0px, transparent 18px, rgba(255,255,255,0.012) 18px, rgba(255,255,255,0.012) 19px);
      display: flex; align-items: center; justify-content: center;
    }
    .about-img-caption {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
      padding: 2.5rem 1.8rem 1.6rem;
      background: linear-gradient(to top, rgba(26,23,20,0.96) 0%, rgba(26,23,20,0.7) 60%, transparent 100%);
    }
    .about-img-caption-tag {
      display: block;
      font-size: 0.6rem; font-weight: 500; letter-spacing: 0.28em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 0.6rem;
    }
    .about-img-caption p {
      font-size: calc(0.78rem * var(--paragraph-scale)); font-weight: 300; line-height: 1.75;
      color: var(--sand); font-style: italic;
      margin-bottom: 0 !important;
    }
    .about-img-inner svg { opacity: 0.18; width: 140px; }
    .about-img-frame::before {
      content: ''; position: absolute; top: -18px; left: -18px; right: 18px; bottom: 18px;
      border: 1px solid var(--gold); opacity: 0.35; pointer-events: none; z-index: 2;
    }
    .about-badge {
      position: absolute; bottom: -1.5rem; right: -1.5rem; width: 120px; height: 120px;
      background: var(--gold); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 3;
    }
    .about-badge .num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--ink); line-height: 1; }
    .about-badge .lbl { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--warm); margin-top: 0.25rem; text-align: center; padding: 0 0.5rem; }
    .about-text p { font-size: calc(0.95rem * var(--paragraph-scale)); font-weight: 300; line-height: 1.95; color: var(--stone); margin-bottom: 1.4rem; }
    .about-text p strong { color: var(--ink); font-weight: 400; }
    .about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 2.8rem; }
    .pillar { padding: 1.4rem; border: 1px solid rgba(201,191,176,0.4); background: var(--cream); transition: border-color 0.3s; }
    .pillar:hover { border-color: var(--gold); }
    .pillar-icon { width: 28px; height: 2px; background: var(--gold); margin-bottom: 0.9rem; }
    .pillar--wide { grid-column: span 2; }
    .pillar h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 400; color: var(--ink); margin-bottom: 0.4rem; }
    .pillar p { font-size: calc(0.78rem * var(--paragraph-scale)) !important; line-height: 1.7 !important; margin-bottom: 0 !important; }

    /* GALLERY NOTE */
    .gallery-note { margin-bottom: 3rem; }
    .gallery-note-inner {
      display: flex; align-items: flex-start; gap: 1.2rem;
      padding: 1.6rem 2rem;
      border: 1px solid rgba(184,154,94,0.3);
      background: rgba(184,154,94,0.04);
    }
    .gallery-note-icon { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; padding-top: 0.15rem; }
    .gallery-note p {
      font-size: calc(0.82rem * var(--paragraph-scale)); font-weight: 300; line-height: 1.85;
      color: var(--stone); font-style: italic;
    }

    /* GALLERY */
    #gallery { background: var(--cream); padding: 9rem 0 8rem; }
    .gallery-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 4rem; }
    .gallery-link {
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 0.6rem; transition: gap 0.3s;
    }
    .gallery-link:hover { gap: 1rem; }
    .gallery-link::after { content: '→'; }
    .gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.2rem; }
    .g-item { overflow: hidden; position: relative; cursor: pointer; }
    .g-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
    .g-item:nth-child(2) { grid-column: span 5; }
    .g-item:nth-child(3) { grid-column: span 5; }
    .g-item:nth-child(4) { grid-column: span 4; }
    .g-item:nth-child(5) { grid-column: span 4; }
    .g-item:nth-child(6) { grid-column: span 4; }
    .g-inner {
      width: 100%; height: 100%; min-height: 240px; background: #f0ece4;
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); position: relative; overflow: hidden;
    }
    .g-item:nth-child(1) .g-inner { min-height: 480px; }
    .g-inner img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; padding: 0.8rem; }
    .g-item:hover .g-inner { transform: scale(1.04); }
    .g-label {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 1.8rem 1.4rem 1.2rem;
      background: linear-gradient(to top, rgba(245,240,232,0.97) 0%, transparent 100%);
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    }
    .g-item:hover .g-label { transform: translateY(0); }
    .g-label h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--ink); }
    .g-label span { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }



    /* WARRANTY */
    #warranty { background: var(--ink); padding: 9rem 0 8rem; }
    #warranty .section-tag { color: var(--gold); }
    #warranty .section-heading { color: var(--white); }
    #warranty .section-heading em { color: var(--gold-lt); }
    #warranty .divider { background: var(--gold); }
    .warranty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
    .warranty-left p {
      font-size: calc(0.88rem * var(--paragraph-scale)); font-weight: 300; line-height: 1.95;
      color: var(--stone); margin-bottom: 1.2rem;
    }
    .warranty-left p strong { color: var(--sand); font-weight: 400; }
    .warranty-lead {
      font-family: 'Cormorant Garamond', serif !important;
      font-size: calc(1.25rem * var(--paragraph-scale)) !important; font-style: italic;
      color: var(--sand) !important; line-height: 1.7 !important;
      margin-bottom: 1.8rem !important;
    }
    .warranty-badge-wrap { display: flex; flex-direction: column; align-items: center; gap: 3rem; }
    .warranty-badge {
      width: 220px; height: 220px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      position: relative;
    }
    .warranty-badge svg { width: 100%; height: 100%; }
    .warranty-points { width: 100%; display: flex; flex-direction: column; gap: 1.4rem; }
    .warranty-point {
      display: flex; gap: 1rem; align-items: flex-start;
      padding-bottom: 1.4rem;
      border-bottom: 1px solid rgba(201,191,176,0.1);
    }
    .warranty-point:last-child { border-bottom: none; padding-bottom: 0; }
    .wp-icon {
      width: 22px; height: 22px; flex-shrink: 0;
      border: 1px solid var(--gold); color: var(--gold);
      font-size: 0.7rem; display: flex; align-items: center; justify-content: center;
      margin-top: 0.1rem;
    }
    .warranty-point strong {
      display: block; font-size: 0.82rem; font-weight: 500;
      letter-spacing: 0.06em; color: var(--sand); margin-bottom: 0.2rem;
    }
    .warranty-point span {
      font-size: calc(0.78rem * var(--paragraph-scale)); font-weight: 300; color: var(--stone); line-height: 1.6;
    }
    .warranty-point--exception { opacity: 0.7; }
    .wp-icon--ex { border-color: var(--stone) !important; color: var(--stone) !important; font-style: italic; }
    .warranty-point--exception strong { color: var(--stone) !important; }

    .btn-warranty {
      background: transparent;
      color: var(--gold-lt);
      border: 1px solid var(--gold);
    }
    .btn-warranty:hover { background: rgba(184,154,94,0.12); }


    /* SECTION DIVIDER */
    .section-divider {
      background: var(--ink);
      display: flex; align-items: center; justify-content: center;
      gap: 1.4rem; padding: 0 4rem;
    }
    .section-divider-line {
      flex: 1; height: 1px;
      background: linear-gradient(to var(--dir, right), transparent, rgba(184,154,94,0.35));
    }
    .section-divider-line:last-child { --dir: left; }
    .section-divider-mark {
      color: var(--gold); font-size: 0.7rem; opacity: 0.6; flex-shrink: 0;
    }

    /* CONTACT */
    #contact { background: var(--ink); padding: 8rem 0; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start; }
    #contact .section-heading { color: var(--white); }
    #contact .section-heading em { color: var(--gold-lt); }
    #contact .divider { background: var(--gold); }
    #contact p { font-size: calc(0.9rem * var(--paragraph-scale)); font-weight: 300; line-height: 1.9; color: var(--stone); }
    .contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
    .contact-item { display: flex; gap: 1rem; align-items: flex-start; }
    .contact-item-label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); min-width: 80px; padding-top: 0.1rem; }
    .contact-item-val { font-size: calc(0.88rem * var(--paragraph-scale)); font-weight: 300; color: var(--sand); line-height: 1.6; }
    .contact-item-val a,
    .contact-item-val a:visited {
      color: var(--sand);
      text-decoration-color: rgba(201,191,176,0.45);
      text-underline-offset: 0.16em;
      transition: color 0.2s, text-decoration-color 0.2s;
    }
    .contact-item-val a:hover {
      color: var(--gold-lt);
      text-decoration-color: rgba(212,185,122,0.9);
    }
    .contact-item-val a:focus-visible {
      outline: 1px solid rgba(212,185,122,0.75);
      outline-offset: 2px;
    }
    .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
    .form-field { display: flex; flex-direction: column; gap: 0.45rem; }
    .form-field label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }
    .form-field input, .form-field textarea, .form-field select {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(201,191,176,0.15);
      color: var(--white); padding: 0.85rem 1rem; font-family: 'Jost', sans-serif;
      font-size: 0.88rem; font-weight: 300; outline: none; transition: border-color 0.3s;
      width: 100%; appearance: none; -webkit-appearance: none; border-radius: 0;
    }
    .form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--gold); }
    .form-field textarea { resize: vertical; min-height: 120px; }
    .form-field select option { background: var(--ink); }
    .form-field input::placeholder, .form-field textarea::placeholder { color: rgba(201,191,176,0.3); }
    .form-field--hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
    .contact-form .btn[disabled] { opacity: 0.7; cursor: wait; }
    .contact-form-status {
      min-height: 1.4em;
      margin-top: 0.1rem;
      font-size: calc(0.7rem * var(--paragraph-scale));
      line-height: 1.45;
      color: var(--stone);
    }
    .contact-form-status--success { color: #b8cf9c; }
    .contact-form-status--error { color: #d89a8c; }

    /* FOOTER */
    footer { background: #0e0c0a; padding: 3rem 0; border-top: 1px solid rgba(255,255,255,0.05); }
    .footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 2.5rem; display: flex; align-items: center; justify-content: space-between; }
    .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sand); }
    .footer-copy { font-size: 0.7rem; color: var(--stone); letter-spacing: 0.1em; }
    .footer-links { display: flex; gap: 2rem; list-style: none; }
    .footer-links a { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); text-decoration: none; transition: color 0.3s; }
    .footer-links a:hover { color: var(--gold); }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.22s; }
    .reveal-delay-3 { transition-delay: 0.36s; }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      nav { padding: 1.4rem 2rem; }
      nav.scrolled { padding: 0.9rem 2rem; }
      .about-grid { grid-template-columns: 1fr; gap: 4rem; }
      .about-visual { max-width: 460px; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .g-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
      .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
      .craft-grid { grid-template-columns: 1fr; }
      .warranty-grid { grid-template-columns: 1fr; gap: 4rem; }
      .gallery-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
      .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
    }
    @media (max-width: 600px) {
      nav {
        padding: 0.9rem 1.2rem;
      }
      nav.scrolled {
        padding: 0.75rem 1.2rem;
      }
      .nav-logo {
        font-size: 0.92rem;
        letter-spacing: 0.08em;
      }
      .nav-font-toggle {
        font-size: 0.5rem;
        letter-spacing: 0.11em;
        padding: 0.34rem 0.46rem;
        gap: 0.18rem;
      }
      .hero-title { font-size: 2.6rem; }
      .about-pillars { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; }
      .g-item:nth-child(n) { grid-column: span 1; }

      .cfg-preview-wrap {
        padding: 1.5rem 1rem;
      }
      .cfg-preview-col {
        min-height: 280px;
      }
    }
  
    /* GALLERY STRIP */
    #gallery { background: var(--ink); line-height: 0; }
    .gallery-strip {
      display: flex;
      width: 100%;
      height: 300px;
      overflow: hidden;
    }
    .gallery-strip-item {
      flex: 1;
      overflow: hidden;
      position: relative;
      border-right: 1px solid rgba(255,255,255,0.05);
      transition: flex 0.5s cubic-bezier(0.16,1,0.3,1);
    }
    .gallery-strip-item:last-child { border-right: none; }
    .gallery-strip-item:hover { flex: 1.15; }
    .gallery-strip-item svg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: opacity 0.3s;
    }
    .gallery-strip-item:hover svg { opacity: 0.9; }

    @media (max-width: 600px) {
      .gallery-strip { height: 180px; }
      .gallery-strip-item:nth-child(n+4) { display: none; }
    }

      /* OUR STORY */
      #story {
        background: var(--white);
        padding: 6rem 0 5.5rem;
        border-top: 1px solid rgba(201,191,176,0.35);
        border-bottom: 1px solid rgba(201,191,176,0.35);
      }
      .story-wrap {
        max-width: 860px;
      }
      .story-wrap .section-heading {
        margin-bottom: 1rem;
      }
      .story-copy {
        font-size: calc(0.92rem * var(--paragraph-scale));
        font-weight: 300;
        line-height: 1.95;
        color: var(--stone);
        margin-bottom: 1.1rem;
      }
      .story-copy:last-child {
        margin-bottom: 0;
      }

    /* ── CONFIGURATOR ─────────────────────────────────────────────────────── */
    #configurator { background: var(--cream); padding: 9rem 0 8rem; }

    .cfg-header {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 1.6rem;
    }
    .cfg-intro-text {
      font-size: calc(0.84rem * var(--paragraph-scale)); font-weight: 300; line-height: 1.85; color: var(--stone);
      max-width: 520px; margin-top: 0.8rem;
    }

    .cfg-designer-cta {
      padding: 1rem 2.2rem;
      font-size: 0.78rem;
      letter-spacing: 0.22em;
      border: 1px solid rgba(184,154,94,0.85);
      box-shadow: 0 12px 30px rgba(184,154,94,0.22), 0 2px 6px rgba(26,23,20,0.16);
    }

    .cfg-designer-cta:hover,
    .cfg-designer-cta:focus-visible {
      transform: translateY(-1px);
      box-shadow: 0 16px 36px rgba(184,154,94,0.3), 0 4px 10px rgba(26,23,20,0.2);
    }

    /* Shell: two-column side-by-side */
    .cfg-shell {
      display: grid;
      grid-template-columns: 320px 1fr;
      grid-template-rows: auto;
      gap: 0;
      border: 1px solid rgba(201,191,176,0.4);
      background: var(--white);
      overflow: hidden;
    }
    .cfg-controls      { grid-column: 1; grid-row: 1; }
    .cfg-preview-col   { grid-column: 2; grid-row: 1; }

    /* ── Controls column ── */
    .cfg-controls {
      border-right: 1px solid rgba(201,191,176,0.25);
      padding: 1.6rem 1.6rem 0;
      display: flex; flex-direction: column;
    }

    /* Section */
    .cfg-section {
      border-bottom: 1px solid rgba(201,191,176,0.2);
      padding-bottom: 1rem;
      margin-bottom: 1rem;
    }
    .cfg-section:last-of-type { border-bottom: none; margin-bottom: 0; }

    .cfg-section-head {
      display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.7rem;
    }
    .cfg-section-label {
      flex: 1;
      font-size: 0.58rem; font-weight: 600; letter-spacing: 0.28em;
      text-transform: uppercase; color: var(--gold);
    }

    /* Toggle */
    .cfg-toggle-wrap {
      position: relative; display: inline-block;
      width: 36px; height: 20px; flex-shrink: 0; cursor: pointer;
    }
    .cfg-toggle-wrap--locked { opacity: 0.45; pointer-events: none; }
    .cfg-toggle-input { opacity: 0; width: 0; height: 0; position: absolute; }
    .cfg-toggle-track {
      position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      border-radius: 20px; background: rgba(180,170,158,0.3);
      transition: background 0.22s;
    }
    .cfg-toggle-input:checked + .cfg-toggle-track { background: var(--gold); }
    .cfg-toggle-thumb {
      position: absolute; top: 3px; left: 3px;
      width: 14px; height: 14px; border-radius: 50%;
      background: var(--white); box-shadow: 0 1px 3px rgba(0,0,0,0.18);
      transition: left 0.22s;
    }
    .cfg-toggle-input:checked + .cfg-toggle-track .cfg-toggle-thumb { left: 19px; }

    /* Field */
    .cfg-field { margin-bottom: 0.6rem; }
    .cfg-field-label {
      display: block; font-size: calc(0.62rem * var(--paragraph-scale)); font-weight: 400; color: var(--stone);
      letter-spacing: 0.06em; margin-bottom: 0.35rem;
    }
    .cfg-sub { margin-top: 0.4rem; }

    /* Pills */
    .cfg-pills { display: flex; gap: 4px; flex-wrap: wrap; }
    .cfg-pill {
      padding: 0.26rem 0.48rem; font-size: calc(0.66rem * var(--paragraph-scale)); font-family: 'Jost', sans-serif;
      font-weight: 500; letter-spacing: 0.02em; cursor: pointer;
      border: 1px solid rgba(180,165,145,0.35);
      background: transparent; color: var(--stone);
      transition: all 0.15s;
    }
    .cfg-pill:hover { border-color: var(--gold); color: var(--ink); }
    .cfg-pill--active {
      border-color: var(--gold); background: var(--gold); color: var(--ink);
    }

    /* Detail rows */
    .cfg-detail-rows { display: flex; flex-direction: column; gap: 0.7rem; }
    .cfg-detail-row {
      display: flex; align-items: flex-start; gap: 0.6rem;
    }
    .cfg-detail-text { flex: 1; }
    .cfg-detail-name {
      display: block; font-size: calc(0.76rem * var(--paragraph-scale)); font-weight: 400; color: var(--warm);
    }
    .cfg-detail-sub {
      display: block; font-size: calc(0.6rem * var(--paragraph-scale)); color: var(--stone); font-weight: 300;
      line-height: 1.45; margin-top: 0.08rem;
    }

    /* Delivery */
    .cfg-section--delivery .cfg-section-head { margin-bottom: 0; }
    .cfg-delivery-note {
      font-size: calc(0.6rem * var(--paragraph-scale)); color: rgba(184,154,94,0.65); font-style: italic;
      margin-top: 0.35rem;
    }

    /* Simple total — anchored to bottom of controls column */
    .cfg-simple-total {
      margin-top: auto;
      border-top: 1px solid rgba(201,191,176,0.2);
    }
    .cfg-simple-total-inner {
      background: var(--ink);
      padding: 1rem 1.6rem 1.2rem;
    }
    .cfg-simple-total-row {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 0.4rem;
    }
    .cfg-simple-total-label {
      font-size: 0.52rem; font-weight: 600; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--gold);
    }
    .cfg-simple-total-val {
      font-family: 'Cormorant Garamond', serif; font-size: 2rem;
      font-weight: 300; color: var(--gold-lt); line-height: 1;
    }
    .cfg-simple-total-note {
      font-size: calc(0.58rem * var(--paragraph-scale)); font-weight: 300; color: var(--stone); font-style: italic;
    }

    /* ── Preview column ── */
    .cfg-preview-col {
      display: flex; flex-direction: column;
    }

    .cfg-preview-wrap {
      flex: 1; display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      padding: 2.5rem 2rem;
      background: radial-gradient(ellipse 65% 55% at 50% 52%, rgba(228,221,210,0.55) 0%, transparent 70%),
        #ede8df;
      position: relative;
    }
    .cfg-preview-wrap::before {
      content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.035;
      background-image:
        linear-gradient(rgba(107,97,87,1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107,97,87,1) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    #cfg-svg {
      width: 100%; height: auto;
      position: relative; z-index: 1;
    }

    .cfg-preview-label {
      font-size: 0.52rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
      color: rgba(107,97,87,0.4); margin-top: 0.8rem; position: relative; z-index: 1;
    }

    /* Responsive configurator */
    @media (max-width: 900px) {
      .cfg-shell { 
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
      }
      .cfg-controls { 
        grid-column: 1;
        grid-row: 1;
        border-right: none; 
        border-bottom: 1px solid rgba(201,191,176,0.25);
      }
      .cfg-preview-col {
        grid-column: 1;
        grid-row: 2;
        min-height: 420px;
      }
      .cfg-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

      .cfg-designer-cta {
        width: 100%;
        text-align: center;
      }
    }