  /* ─── RESET & BASE ─── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --black:    #07090a;
    --forest:   #0e1a0c;
    --moss:     #1e3318;
    --mid:      #2d4a22;
    --sage:     #5a7a4a;
    --gold:     #c8a96e;
    --gold-lt:  #e0c98a;
    --cream:    #f2ede0;
    --warm-wh:  #faf8f2;
    --muted:    #8a9e82;
    --font-disp: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', sans-serif;
  }
  html { scroll-behavior: smooth; }
  body {
    background: var(--forest);
    color: var(--cream);
    font-family: var(--font-body);
    font-weight: 300;
    cursor: none;
    overflow-x: hidden;
  }
  ::selection { background: var(--gold); color: var(--black); }

  /* ─── CUSTOM CURSOR ─── */
  #cursor {
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform .15s ease, width .3s ease, height .3s ease, background .3s ease;
    mix-blend-mode: difference;
  }
  #cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid rgba(200,169,110,.45);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: transform .35s cubic-bezier(.23,1,.32,1), width .3s ease, height .3s ease;
  }
  body:hover #cursor { opacity: 1; }

  /* ─── NAVIGATION ─── */
  nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 24px 60px;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(to bottom, rgba(7,9,10,.92) 0%, transparent 100%);
    backdrop-filter: blur(0px);
    transition: background .4s, padding .4s;
  }
  nav.scrolled {
    background: rgba(7,9,10,.95);
    backdrop-filter: blur(20px);
    padding: 16px 60px;
    border-bottom: 1px solid rgba(200,169,110,.12);
  }
  .nav-logo {
    font-family: var(--font-disp);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: .08em;
    color: var(--cream);
    text-decoration: none;
    cursor: none;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    cursor: none;
    position: relative;
    transition: color .3s;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .35s ease;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--cream); }
  .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
  .nav-cta {
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    cursor: none;
    border: 1px solid rgba(200,169,110,.4);
    padding: 10px 24px;
    transition: background .3s, border-color .3s, color .3s;
  }
  .nav-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
  }

  /* ─── PAGE SYSTEM ─── */
  /* .page display handled per template */
  .page.active { display: block; }

  /* ─── SECTION UTILITY ─── */
  .section { padding: 120px 60px; }
  .section-sm { padding: 80px 60px; }
  .container { max-width: 1320px; margin: 0 auto; }

  .gold-rule {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 16px;
  }
  .gold-rule::before, .gold-rule::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
  }
  .gold-rule::after {
    background: linear-gradient(to left, transparent, var(--gold));
  }
  .gold-rule span {
    font-size: .65rem; letter-spacing: .35em; text-transform: uppercase;
    color: var(--gold); font-family: var(--font-body); font-weight: 400;
    white-space: nowrap;
  }
  .eyebrow {
    font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--gold); font-weight: 400; margin-bottom: 20px; display: block;
  }
  .display-title {
    font-family: var(--font-disp);
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -.01em;
    color: var(--cream);
  }
  .display-title em { font-style: italic; color: var(--gold); }
  .body-text {
    font-size: .95rem;
    line-height: 1.85;
    color: var(--muted);
    font-weight: 300;
    max-width: 600px;
  }
  .btn-primary {
    display: inline-block;
    font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
    font-weight: 400; cursor: none; text-decoration: none;
    background: var(--gold);
    color: var(--black);
    padding: 16px 44px;
    transition: background .3s, transform .2s;
    border: none;
  }
  .btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
  .btn-outline {
    display: inline-block;
    font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
    font-weight: 400; cursor: none; text-decoration: none;
    background: transparent;
    color: var(--cream);
    padding: 15px 44px;
    border: 1px solid rgba(242,237,224,.3);
    transition: border-color .3s, color .3s, transform .2s;
  }
  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
  }

  /* ─── FADE-IN ANIMATIONS ─── */
  .fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s ease, transform .9s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up.d1 { transition-delay: .1s; }
  .fade-up.d2 { transition-delay: .2s; }
  .fade-up.d3 { transition-delay: .3s; }
  .fade-up.d4 { transition-delay: .4s; }
  .fade-up.d5 { transition-delay: .5s; }

  /* ══════════════════════════════════════════
     HOME PAGE
  ══════════════════════════════════════════ */

  /* HERO */
  #hero {
    height: 100vh; min-height: 700px;
    position: relative; overflow: hidden;
    display: flex; align-items: flex-end;
    padding: 0 60px 80px;
  }
  #hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 90% 80% at 70% 40%, rgba(30,60,20,.55) 0%, transparent 70%),
      radial-gradient(ellipse 50% 60% at 20% 80%, rgba(45,74,34,.4) 0%, transparent 60%),
      linear-gradient(175deg, #07090a 0%, #0d1a0b 40%, #152412 100%);
    z-index: 0;
  }
  /* Animated bokeh orbs */
  .orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: .18;
    animation: drift 12s ease-in-out infinite alternate;
  }
  .orb-1 { width: 600px; height: 600px; background: #2a5c18; top: -100px; right: -50px; animation-duration: 15s; }
  .orb-2 { width: 400px; height: 400px; background: #4a8030; bottom: 100px; right: 200px; animation-duration: 10s; animation-delay: -3s; }
  .orb-3 { width: 300px; height: 300px; background: #c8a96e; top: 40%; left: 30%; opacity: .07; animation-duration: 18s; animation-delay: -6s; }
  @keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(40px, -30px) scale(1.1); }
  }
  /* Grain texture overlay */
  #hero::after {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' 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");
    opacity: .4; pointer-events: none;
  }
  .hero-content { position: relative; z-index: 2; max-width: 900px; }
  .hero-kicker {
    font-size: .68rem; letter-spacing: .4em; text-transform: uppercase;
    color: var(--gold); font-weight: 400; margin-bottom: 28px;
    display: flex; align-items: center; gap: 16px;
  }
  .hero-kicker::before {
    content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
  }
  .hero-title {
    font-family: var(--font-disp);
    font-size: clamp(3.5rem, 8vw, 8.5rem);
    font-weight: 300; line-height: 1.0; letter-spacing: -.02em;
    color: var(--cream); margin-bottom: 40px;
  }
  .hero-title em { font-style: italic; color: var(--gold); }
  .hero-sub {
    font-size: .95rem; color: var(--muted); line-height: 1.8;
    max-width: 480px; margin-bottom: 50px; font-weight: 300;
  }
  .hero-actions { display: flex; gap: 20px; align-items: center; }
  .hero-scroll {
    position: absolute; right: 60px; bottom: 80px; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
  }
  .hero-scroll span {
    font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--muted); writing-mode: vertical-rl;
  }
  .scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: .4; transform: scaleY(.6); }
  }

  /* MARQUEE */
  .marquee-wrap {
    overflow: hidden; border-top: 1px solid rgba(200,169,110,.15);
    border-bottom: 1px solid rgba(200,169,110,.15);
    background: rgba(14,26,12,.8); padding: 16px 0;
  }
  .marquee-track {
    display: flex; gap: 0;
    animation: marquee 30s linear infinite;
    width: max-content;
  }
  .marquee-item {
    display: flex; align-items: center; gap: 32px;
    padding: 0 40px;
    font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--muted); font-weight: 400; white-space: nowrap;
  }
  .marquee-item .dot { color: var(--gold); font-size: 1rem; }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* STATEMENT PIECES */
  .statement-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 480px 300px;
    gap: 12px;
  }
  .statement-card {
    position: relative; overflow: hidden;
    background: var(--moss);
    cursor: none;
  }
  .statement-card:first-child {
    grid-row: span 2;
  }
  .card-img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .8s ease;
  }
  .statement-card:hover .card-img { transform: scale(1.06); }
  .card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(7,9,10,.85) 0%, transparent 55%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 32px;
    opacity: 0; transition: opacity .4s ease;
  }
  .statement-card:hover .card-overlay { opacity: 1; }
  .card-tag {
    font-size: .62rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px; font-weight: 400;
  }
  .card-title {
    font-family: var(--font-disp);
    font-size: 1.6rem; font-weight: 300; color: var(--cream); line-height: 1.2;
  }
  /* SVG-based moss art placeholders */
  .moss-art {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .moss-art-1 { background: linear-gradient(135deg, #0a1508 0%, #1a3012 40%, #2a4e20 100%); }
  .moss-art-2 { background: linear-gradient(135deg, #0e1a0c 0%, #162810 50%, #243d18 100%); }
  .moss-art-3 { background: linear-gradient(135deg, #060d05 0%, #111e0e 60%, #1e3016 100%); }
  .moss-art-4 { background: linear-gradient(135deg, #0c1a09 0%, #203318 50%, #2d4a22 100%); }
  .moss-art-5 { background: linear-gradient(135deg, #08120a 0%, #172814 60%, #243a1a 100%); }

  /* TESTIMONIALS */
  .testimonials-section { background: var(--black); }
  .testimonial-slider { position: relative; overflow: hidden; }
  .testimonial-track {
    display: flex;
    transition: transform .6s cubic-bezier(.23,1,.32,1);
  }
  .testimonial-slide {
    min-width: 100%;
    display: flex; align-items: flex-start;
    gap: 80px; padding: 60px 0;
  }
  .quote-mark {
    font-family: var(--font-disp);
    font-size: 12rem; line-height: 1;
    color: var(--gold); opacity: .12; flex-shrink: 0;
    margin-top: -40px; user-select: none;
  }
  .testimonial-content { flex: 1; }
  .testimonial-text {
    font-family: var(--font-disp);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 300; font-style: italic;
    line-height: 1.5; color: var(--cream);
    margin-bottom: 36px;
  }
  .testimonial-author { display: flex; flex-direction: column; gap: 4px; }
  .author-name {
    font-size: .8rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--cream); font-weight: 400;
  }
  .author-role {
    font-size: .72rem; color: var(--muted); font-weight: 300;
  }
  .slider-controls { display: flex; gap: 12px; margin-top: 20px; }
  .slider-btn {
    width: 48px; height: 48px; border: 1px solid rgba(200,169,110,.3);
    background: transparent; color: var(--gold); font-size: 1.1rem;
    cursor: none; display: flex; align-items: center; justify-content: center;
    transition: background .3s, border-color .3s;
  }
  .slider-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

  /* CLIENTS */
  .clients-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2px; margin-top: 60px;
  }
  .client-card {
    border: 1px solid rgba(200,169,110,.1);
    padding: 40px 30px;
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    background: rgba(14,26,12,.4);
    transition: border-color .3s, background .3s;
  }
  .client-card:hover {
    border-color: rgba(200,169,110,.3);
    background: rgba(30,51,24,.4);
  }
  .client-initial {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(200,169,110,.1); border: 1px solid rgba(200,169,110,.25);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-disp); font-size: 1.4rem; color: var(--gold);
  }
  .client-name {
    font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--muted); text-align: center; font-weight: 400;
  }
  .client-type {
    font-size: .68rem; color: rgba(138,158,130,.5); font-weight: 300;
  }

  /* STATS ROW */
  .stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2px; margin: 80px 0;
  }
  .stat-block {
    background: rgba(14,26,12,.5);
    border: 1px solid rgba(200,169,110,.08);
    padding: 48px 32px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .stat-num {
    font-family: var(--font-disp);
    font-size: 3.5rem; font-weight: 300;
    color: var(--cream); line-height: 1;
  }
  .stat-num span { color: var(--gold); }
  .stat-label {
    font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--muted); font-weight: 400;
  }

  /* ══════════════════════════════════════════
     PRODUCTS PAGE
  ══════════════════════════════════════════ */
  .products-hero {
    height: 55vh; min-height: 400px;
    background: linear-gradient(165deg, #07090a 0%, #0e1a0c 50%, #1a2e14 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 60px 60px;
    position: relative; overflow: hidden;
  }
  .products-hero::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,74,34,.4) 0%, transparent 70%);
  }
  .products-hero > * { position: relative; z-index: 1; }
  .product-categories {
    display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px;
  }
  .cat-btn {
    font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--muted); font-weight: 400; cursor: none;
    padding: 10px 24px;
    border: 1px solid rgba(138,158,130,.2);
    background: transparent;
    transition: all .3s;
  }
  .cat-btn:hover, .cat-btn.active {
    color: var(--gold); border-color: rgba(200,169,110,.4);
    background: rgba(200,169,110,.05);
  }
  .products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; margin-top: 60px;
  }
  .product-card {
    background: rgba(14,26,12,.6);
    border: 1px solid rgba(200,169,110,.08);
    cursor: none; overflow: hidden;
    transition: border-color .3s;
    position: relative;
  }
  .product-card:hover { border-color: rgba(200,169,110,.25); }
  .product-art {
    height: 280px; width: 100%;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    transition: transform .5s ease;
  }
  .product-card:hover .product-art { transform: scale(1.03); }
  .product-badge {
    position: absolute; top: 20px; right: 20px;
    font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--black); background: var(--gold); padding: 6px 12px; font-weight: 500;
  }
  .product-info { padding: 28px; }
  .product-name {
    font-family: var(--font-disp);
    font-size: 1.4rem; font-weight: 400; color: var(--cream);
    margin-bottom: 10px;
  }
  .product-desc {
    font-size: .82rem; color: var(--muted); line-height: 1.7;
    margin-bottom: 20px; font-weight: 300;
  }
  .product-detail-btn {
    font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
    color: var(--gold); font-weight: 400; cursor: none;
    display: flex; align-items: center; gap: 10px;
    background: none; border: none; padding: 0;
    transition: gap .3s;
  }
  .product-detail-btn:hover { gap: 16px; }
  .product-detail-btn::after { content: '→'; }

  /* PRODUCT MODAL */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(7,9,10,.92);
    backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .4s ease;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }
  .modal {
    background: var(--forest);
    border: 1px solid rgba(200,169,110,.2);
    width: 90%; max-width: 900px; max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px);
    transition: transform .4s cubic-bezier(.23,1,.32,1);
    scrollbar-width: none;
  }
  .modal::-webkit-scrollbar { display: none; }
  .modal-overlay.open .modal { transform: translateY(0); }
  .modal-layout { display: grid; grid-template-columns: 1.1fr 1fr; }
  .modal-art { height: 100%; min-height: 400px; }
  .modal-body { padding: 50px 44px; }
  .modal-close {
    position: absolute; top: 20px; right: 20px;
    width: 44px; height: 44px; background: rgba(200,169,110,.1);
    border: 1px solid rgba(200,169,110,.2);
    color: var(--cream); font-size: 1rem; cursor: none;
    display: flex; align-items: center; justify-content: center;
    transition: background .3s;
  }
  .modal-close:hover { background: var(--gold); color: var(--black); }
  .modal-wrap { position: relative; }
  .modal-title {
    font-family: var(--font-disp);
    font-size: 2.4rem; font-weight: 300;
    color: var(--cream); margin: 16px 0 20px;
  }
  .modal-desc {
    font-size: .88rem; line-height: 1.85; color: var(--muted);
    margin-bottom: 28px;
  }
  .modal-specs { margin-bottom: 32px; }
  .spec-row {
    display: flex; justify-content: space-between;
    padding: 12px 0; border-bottom: 1px solid rgba(200,169,110,.1);
    font-size: .8rem;
  }
  .spec-row:last-child { border-bottom: none; }
  .spec-key { color: var(--muted); font-weight: 300; }
  .spec-val { color: var(--cream); font-weight: 400; }
  .modal-note {
    font-size: .78rem; color: rgba(138,158,130,.6);
    line-height: 1.7; font-style: italic;
    border-left: 2px solid rgba(200,169,110,.3);
    padding-left: 16px; margin-bottom: 28px;
  }

  /* ══════════════════════════════════════════
     INQUIRY PAGE
  ══════════════════════════════════════════ */
  .inquiry-layout {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 80px; align-items: start;
  }
  .inquiry-info { position: sticky; top: 120px; }
  .inquiry-features { margin-top: 50px; display: flex; flex-direction: column; gap: 28px; }
  .feature-item { display: flex; gap: 20px; align-items: flex-start; }
  .feature-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    border: 1px solid rgba(200,169,110,.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--gold);
    background: rgba(200,169,110,.05);
  }
  .feature-txt h4 {
    font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
    color: var(--cream); font-weight: 400; margin-bottom: 6px;
  }
  .feature-txt p { font-size: .82rem; color: var(--muted); line-height: 1.7; }
  .inquiry-form-box {
    background: rgba(14,26,12,.5);
    border: 1px solid rgba(200,169,110,.12);
    padding: 56px 48px;
  }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .form-field { display: flex; flex-direction: column; gap: 8px; }
  .form-field.full { grid-column: span 2; }
  .form-label {
    font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--muted); font-weight: 400;
  }
  .form-input, .form-select, .form-textarea {
    background: rgba(7,9,10,.6);
    border: 1px solid rgba(138,158,130,.2);
    color: var(--cream);
    padding: 14px 18px;
    font-size: .88rem; font-family: var(--font-body); font-weight: 300;
    outline: none; cursor: none; width: 100%;
    transition: border-color .3s;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: rgba(200,169,110,.5);
  }
  .form-textarea { resize: vertical; min-height: 120px; }
  .form-select { appearance: none; }
  option { background: #0e1a0c; }
  .form-submit {
    margin-top: 32px; width: 100%;
    background: var(--gold); color: var(--black);
    border: none; cursor: none;
    padding: 18px 44px;
    font-size: .75rem; letter-spacing: .25em; text-transform: uppercase;
    font-family: var(--font-body); font-weight: 500;
    transition: background .3s, transform .2s;
  }
  .form-submit:hover { background: var(--gold-lt); transform: translateY(-2px); }
  .min-order-banner {
    background: rgba(200,169,110,.08);
    border: 1px solid rgba(200,169,110,.2);
    border-left: 3px solid var(--gold);
    padding: 20px 24px; margin-bottom: 32px;
    display: flex; align-items: flex-start; gap: 16px;
  }
  .min-order-banner .icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
  .min-order-banner p { font-size: .82rem; color: var(--muted); line-height: 1.7; }
  .min-order-banner strong { color: var(--cream); display: block; margin-bottom: 4px; }

  /* ══════════════════════════════════════════
     GALLERY PAGE
  ══════════════════════════════════════════ */
  .gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
  .gallery-masonry {
    columns: 3; column-gap: 12px;
  }
  .gallery-item {
    break-inside: avoid; margin-bottom: 12px;
    position: relative; overflow: hidden;
    cursor: none;
  }
  .gallery-art {
    display: block; width: 100%;
    transition: transform .6s ease;
  }
  .gallery-item:hover .gallery-art { transform: scale(1.04); }
  .gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(7,9,10,.9), transparent);
    padding: 40px 20px 20px;
    transform: translateY(8px); opacity: 0;
    transition: opacity .3s, transform .3s;
  }
  .gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
  .gallery-caption h4 {
    font-family: var(--font-disp);
    font-size: 1.1rem; font-weight: 400; color: var(--cream); margin-bottom: 4px;
  }
  .gallery-caption p { font-size: .72rem; color: var(--muted); letter-spacing: .1em; }

  /* ══════════════════════════════════════════
     ABOUT PAGE
  ══════════════════════════════════════════ */
  .about-hero-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    min-height: 80vh; padding-top: 140px;
  }
  .about-art-container { position: relative; }
  .about-art-main {
    width: 100%; aspect-ratio: 3/4;
    background: linear-gradient(135deg, #0e1a0c, #1e3318, #2d4a22);
    position: relative; overflow: hidden;
  }
  .about-art-accent {
    position: absolute; bottom: -40px; right: -40px;
    width: 220px; height: 220px;
    border: 1px solid rgba(200,169,110,.2);
    background: rgba(14,26,12,.8);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 8px;
    padding: 28px;
  }
  .accent-num {
    font-family: var(--font-disp);
    font-size: 3rem; font-weight: 300; color: var(--gold); line-height: 1;
  }
  .accent-txt {
    font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--muted); text-align: center;
  }
  .about-values { margin-top: 80px; }
  .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 40px; }
  .value-block {
    padding: 40px 32px;
    background: rgba(14,26,12,.5);
    border: 1px solid rgba(200,169,110,.08);
    transition: border-color .3s, background .3s;
  }
  .value-block:hover {
    border-color: rgba(200,169,110,.2);
    background: rgba(25,44,20,.5);
  }
  .value-num {
    font-family: var(--font-disp); font-size: 2.5rem; font-weight: 300;
    color: rgba(200,169,110,.25); margin-bottom: 20px; line-height: 1;
  }
  .value-title {
    font-size: .8rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--cream); font-weight: 400; margin-bottom: 12px;
  }
  .value-body { font-size: .84rem; color: var(--muted); line-height: 1.75; }

  /* ── FOOTER ── */
  footer {
    background: var(--black);
    border-top: 1px solid rgba(200,169,110,.1);
    padding: 60px 60px 40px;
  }
  .footer-layout {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 60px;
  }
  .footer-brand p {
    font-size: .83rem; color: var(--muted); line-height: 1.8; margin-top: 16px; max-width: 260px;
  }
  .footer-col h4 {
    font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
    color: var(--cream); margin-bottom: 20px; font-weight: 400;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a {
    font-size: .83rem; color: var(--muted); text-decoration: none; cursor: none;
    transition: color .3s;
  }
  .footer-col ul a:hover { color: var(--cream); }
  .footer-bottom {
    padding-top: 28px; border-top: 1px solid rgba(200,169,110,.08);
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bottom p { font-size: .72rem; color: rgba(138,158,130,.5); }

  /* ── MOSS SVG DECORATIONS ── */
  .moss-decoration {
    position: absolute; pointer-events: none; opacity: .12;
    user-select: none;
  }

/* ── WordPress integration overrides ── */
.page { display: block !important; min-height: unset; }
body { cursor: none; }

/* ── Elementor integration ── */
.elementor-content { display: none; }
.elementor-page .elementor-content { display: block; }
.elementor-page .elementor-content > * { display: none; }
