/* ==========================================================================
   NUNUSZ PHOTOGRAPHY — Design Tokens
   Palette: grounded in Kentucky's own landscape (bluegrass, bourbon,
   limestone), tuned for a quieter, more editorial luxury register.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Libre+Franklin:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Space+Mono:wght@400;700&display=swap');

:root{
  --cream:        #F4EFE2;
  --cream-deep:   #EBE3CE;
  --ink:          #201B16;
  --ink-soft:     #4A4237;
  --green:        #2E3A27;
  --green-deep:   #1B2415;
  --amber:        #A67C3D;   /* antique gold, refined from a warmer bourbon tone */
  --amber-bright: #CBA662;
  --rose:         #B08573;
  --stone:        #86796A;
  --stone-line:   #D9CFB8;
  --white:        #FFFCF6;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Libre Franklin', -apple-system, sans-serif;
  --font-mono:    'Space Mono', monospace;

  --container: 1180px;
  --radius: 2px;
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
}
body.is-ready{
  opacity: 1;
  transition: opacity 0.6s var(--ease-lux);
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight:500; margin:0; color: var(--ink); }
p{ margin:0; }
.section-inner, .nav-inner, .footer-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px){
  .section-inner, .nav-inner, .footer-inner{ padding: 0 20px; }
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  body{ opacity: 1 !important; }
}

/* ==========================================================================
   SCROLL REVEAL
   Sections and elements fade and rise into place as they enter the
   viewport. Applied via JS toggling .is-visible once observed.
   ========================================================================== */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-lux), transform 0.9s var(--ease-lux);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
.reveal-stagger > *{ opacity:0; transform: translateY(22px); transition: opacity 0.7s var(--ease-lux), transform 0.7s var(--ease-lux); }
.reveal-stagger.is-visible > *{ opacity:1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1){ transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2){ transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(3){ transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(4){ transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(5){ transition-delay: 0.45s; }
.reveal-stagger.is-visible > *:nth-child(6){ transition-delay: 0.55s; }

/* ==========================================================================
   CUSTOM CURSOR (desktop, non-touch only, toggled by JS)
   ========================================================================== */
.cursor-dot, .cursor-ring{
  position: fixed; top:0; left:0; pointer-events:none; z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot{ width:6px; height:6px; background: var(--amber); }
.cursor-ring{
  width: 34px; height: 34px; border: 1px solid rgba(166,124,61,0.55);
  transition: width 0.25s var(--ease-lux), height 0.25s var(--ease-lux), border-color 0.25s ease, opacity 0.25s ease;
}
.cursor-ring.is-active{ width:56px; height:56px; border-color: var(--amber); }
body.has-custom-cursor, body.has-custom-cursor a, body.has-custom-cursor button{ cursor: none; }
@media (max-width: 900px), (pointer: coarse){
  .cursor-dot, .cursor-ring{ display:none !important; }
}

/* ==========================================================================
   SIGNATURE ELEMENT: contact sheet frame system
   ========================================================================== */
.frame-label{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 18px;
}
.frame-label::before{
  content: attr(data-frame);
  background: var(--ink);
  color: var(--cream);
  padding: 3px 7px;
  border-radius: var(--radius);
  font-size: 10.5px;
}
.sprocket-rule{
  height: 14px;
  background-image: radial-gradient(circle, var(--stone-line) 2px, transparent 2.2px);
  background-size: 22px 14px;
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.9;
}

/* ==========================================================================
   MARQUEE — a slow, continuous ribbon of text. Used sparingly, for a
   single quiet announcement rather than a hard-sell banner.
   ========================================================================== */
.marquee{
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  padding: 15px 0;
}
.marquee-track{
  display:inline-block;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-track span{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,239,226,0.82);
}
.marquee-track span.dot{ color: var(--amber-bright); padding: 0 22px; }
@keyframes marquee-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ==========================================================================
   NAV
   ========================================================================== */
.site-nav{
  position: sticky; top:0; z-index: 100;
  background: rgba(244,239,226,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stone-line);
  transition: background 0.3s ease;
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  height: 84px;
}
.nav-logo{
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-logo em{ color: var(--amber); font-style: normal; }
.nav-links{ display:flex; gap: 26px; align-items:center; }
.nav-links a{
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:-2px; height:1px; width:0; background: var(--amber);
  transition: width 0.35s var(--ease-lux);
}
.nav-links a.is-active, .nav-links a:hover{ color: var(--ink); }
.nav-links a.is-active::after, .nav-links a:hover::after{ width: 100%; }
.nav-cta{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--green);
  color: var(--white) !important;
  padding: 12px 22px;
  border-radius: var(--radius);
  transition: background 0.3s ease, transform 0.3s var(--ease-lux);
}
.nav-cta::after{ display:none; }
.nav-cta:hover{ background: var(--green-deep); transform: translateY(-1px); }
.nav-toggle{ display:none; }

@media (max-width: 860px){
  .nav-links{
    position: fixed; top:84px; left:0; right:0; bottom:0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-lux);
    z-index: 99;
  }
  .nav-links.is-open{ transform: translateX(0); }
  .nav-links li{ width:100%; }
  .nav-links a{ font-size: 18px; display:block; padding: 15px 4px; width:100%; }
  .nav-links a.nav-cta{ display:inline-flex; width:auto; margin-top:12px; }
  .nav-toggle{
    display:flex; align-items:center; justify-content:center;
    flex-direction: column; gap:5px;
    background:none; border:none; cursor:pointer;
    width: 44px; height: 44px;
    margin: -8px;
    touch-action: manipulation;
  }
  .nav-toggle span{ width:22px; height:2px; background: var(--ink); display:block; transition: transform 0.3s ease, opacity 0.3s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor:pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-lux), border-color 0.3s ease, color 0.3s ease;
}
.btn span{ position: relative; z-index: 2; }
.btn::before{
  content:'';
  position:absolute; inset:0;
  transform: translateY(101%);
  transition: transform 0.45s var(--ease-lux);
  z-index: 1;
}
.btn-primary{ background: var(--green); color: var(--white); }
.btn-primary::before{ background: var(--green-deep); }
.btn-primary:hover::before{ transform: translateY(0); }
.btn-primary:hover{ transform: translateY(-2px); }
.btn-ghost{ background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost::before{ background: var(--ink); }
.btn-ghost:hover::before{ transform: translateY(0); }
.btn-ghost:hover{ color: var(--cream); transform: translateY(-2px); }
.btn-ghost-light{ background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-ghost-light::before{ background: var(--white); }
.btn-ghost-light:hover::before{ transform: translateY(0); }
.btn-ghost-light:hover{ color: var(--green-deep); transform: translateY(-2px); }
.btn-block{ width:100%; }

/* ==========================================================================
   IMAGE SLOTS — styled, labeled placeholders standing in for real photos
   ========================================================================== */
.img-slot{
  position: relative;
  background: linear-gradient(155deg, var(--cream-deep), #DED2B0);
  border: 1px solid var(--stone-line);
  border-radius: var(--radius);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap: 10px;
  color: var(--stone);
  text-align:center;
  overflow:hidden;
  transition: transform 0.7s var(--ease-lux);
}
.img-slot::before{
  content:'';
  position:absolute; inset:0;
  background-image: repeating-linear-gradient(45deg, rgba(32,27,22,0.035) 0 2px, transparent 2px 14px);
}
.img-slot:hover{ transform: scale(1.015); }
.img-slot-icon{ width:34px; height:34px; opacity:0.5; position:relative; }
.img-slot-label{ font-family: var(--font-mono); font-size:11px; letter-spacing:0.08em; text-transform:uppercase; position:relative; }
.img-slot-note{ font-size:12px; color: var(--stone); max-width:220px; position:relative; opacity:0.85; }
.img-slot--hero{ aspect-ratio: 4/5; }
.img-slot--wide{ aspect-ratio: 16/10; }
.img-slot--square{ aspect-ratio: 1/1; }
.img-slot--full{ aspect-ratio: 16/9; }
.img-slot--dark{ background: linear-gradient(155deg, #362E22, var(--green-deep)); color: rgba(244,239,226,0.75); }
.img-slot--dark .img-slot-label, .img-slot--dark .img-slot-note{ color: rgba(244,239,226,0.75); }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
section{ padding: 116px 0; }
.section-tight{ padding: 72px 0; }
.bg-alt{ background: var(--cream-deep); }
.bg-dark{ background: var(--green-deep); color: var(--cream); }
.bg-dark h2, .bg-dark h3{ color: var(--cream); }
.bg-dark .frame-label{ color: var(--amber-bright); }
.eyebrow-lockup{ display:flex; align-items:baseline; justify-content:space-between; gap:24px; flex-wrap:wrap; margin-bottom:52px;}
.section-title{ font-size: clamp(28px, 3.4vw, 44px); max-width: 640px; line-height:1.14; }
.section-lede{ max-width: 460px; color: var(--stone); font-size:15.5px; }
.bg-dark .section-lede{ color: rgba(244,239,226,0.72); }

/* ==========================================================================
   HOMEPAGE: FULL-BLEED HERO
   ========================================================================== */
.hero-full{
  position: relative;
  min-height: 92vh;
  display:flex;
  align-items:flex-end;
  background: linear-gradient(180deg, #372E22 0%, var(--green-deep) 100%);
  overflow: hidden;
}
.hero-full::before{
  content:'';
  position:absolute; inset:0;
  background-image: repeating-linear-gradient(45deg, rgba(244,239,226,0.025) 0 2px, transparent 2px 16px);
}
.hero-full-inner{
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto; width:100%;
  padding: 0 32px 72px;
  display:grid; grid-template-columns: 1fr auto; align-items:flex-end; gap: 40px;
}
.hero-full-eyebrow{
  font-family: var(--font-mono); font-size:12px; letter-spacing:0.2em; text-transform:uppercase;
  color: var(--amber-bright); margin-bottom: 22px;
}
.hero-full h1{
  color: var(--cream);
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 900px;
}
.hero-full h1 .word{ display:inline-block; overflow:hidden; }
.hero-full h1 .word span{ display:inline-block; transform: translateY(110%); transition: transform 0.9s var(--ease-lux); }
.hero-full.is-loaded h1 .word span{ transform: translateY(0); }
.hero-full-sub{
  color: rgba(244,239,226,0.72); font-size: 16px; max-width: 340px; text-align:right;
}
.hero-scroll-cue{
  position:absolute; left:32px; bottom:28px; z-index:2;
  font-family: var(--font-mono); font-size:11px; letter-spacing:0.14em; text-transform:uppercase;
  color: rgba(244,239,226,0.55);
  display:flex; align-items:center; gap:12px;
}
.hero-scroll-cue::after{
  content:''; width:1px; height:34px; background: rgba(244,239,226,0.4);
  animation: scroll-cue 2.4s ease-in-out infinite;
}
@keyframes scroll-cue{
  0%{ transform: scaleY(0); transform-origin: top; opacity:0; }
  40%{ transform: scaleY(1); transform-origin: top; opacity:1; }
  60%{ transform: scaleY(1); transform-origin: bottom; opacity:1; }
  100%{ transform: scaleY(0); transform-origin: bottom; opacity:0; }
}
@media (max-width: 860px){
  .hero-full-inner{ grid-template-columns: 1fr; }
  .hero-full-sub{ text-align:left; max-width: 100%; }
}

/* ==========================================================================
   HOMEPAGE: MANIFESTO STATEMENT
   ========================================================================== */
.manifesto{ text-align:center; }
.manifesto .frame-label{ justify-content:center; }
.manifesto p{
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.5;
  max-width: 780px;
  margin: 0 auto;
  color: var(--ink);
}
.manifesto p em{ color: var(--amber); font-style: italic; }

/* ==========================================================================
   HOMEPAGE: PILLARS (three quiet category tiles)
   ========================================================================== */
.pillars{ display:grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--stone-line); border: 1px solid var(--stone-line); }
.pillar{
  background: var(--cream);
  padding: 40px 28px;
  position: relative;
  transition: background 0.4s ease;
}
.pillar:hover{ background: var(--white); }
.pillar .frame-num{ font-family: var(--font-mono); font-size:12px; color: var(--amber); }
.pillar h3{ font-size: 22px; margin: 16px 0 10px; }
.pillar p{ font-size:14px; color: var(--ink-soft); margin-bottom: 20px; }
.pillar .pillar-link{
  font-family: var(--font-mono); font-size:11px; letter-spacing:0.08em; text-transform:uppercase;
  display:inline-flex; align-items:center; gap:8px; color: var(--ink);
}
.pillar .pillar-link .arrow{ display:inline-block; transition: transform 0.35s var(--ease-lux); }
.pillar:hover .pillar-link .arrow{ transform: translateX(5px); }
@media (max-width: 960px){ .pillars{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .pillars{ grid-template-columns: 1fr; } }

/* ==========================================================================
   PROBLEM / PAIN-POINT CARDS (used on interior pages)
   ========================================================================== */
.pain-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--stone-line);
  border: 1px solid var(--stone-line);
}
.pain-card{ background: var(--cream); padding: 34px 30px 30px; transition: background 0.4s ease; }
.pain-card:hover{ background: var(--white); }
.pain-card .frame-num{ font-family: var(--font-mono); font-size:12px; color: var(--stone); margin-bottom:18px; display:block; }
.pain-card h3{ font-size: 20px; margin-bottom:12px; line-height:1.25; }
.pain-card p{ font-size: 14.5px; color: var(--ink-soft); }
@media (max-width: 860px){ .pain-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   PROCESS / STEPS
   ========================================================================== */
.steps{ display:grid; grid-template-columns: repeat(3,1fr); gap:40px; margin-top:48px; }
.step{ position:relative; padding-top: 26px; border-top: 1px solid var(--ink); }
.step .frame-num{ font-family: var(--font-mono); font-size:13px; color: var(--amber); }
.step h3{ font-size:21px; margin: 14px 0 10px; }
.step p{ font-size:14.5px; color: var(--ink-soft); }
@media (max-width: 860px){ .steps{ grid-template-columns:1fr; } }

/* ==========================================================================
   GALLERY GRID
   ========================================================================== */
.gallery-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid .img-slot:nth-child(3n+1){ grid-row: span 2; }
@media (max-width: 900px){
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .gallery-grid .img-slot:nth-child(3n+1){ grid-row: span 1; }
}

/* ==========================================================================
   TESTIMONIAL SLOTS
   ========================================================================== */
.testi-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testi-card{ background: var(--white); border: 1px dashed var(--stone-line); border-radius: var(--radius); padding: 28px 26px; }
.testi-card .quote-mark{ font-family: var(--font-display); font-size:40px; color: var(--stone-line); line-height:1; margin-bottom:8px; }
.testi-card p.placeholder-text{ font-size:14px; color: var(--stone); font-style:italic; }
.testi-card .who{ margin-top:16px; font-family: var(--font-mono); font-size:12px; color:var(--stone); text-transform:uppercase; letter-spacing:0.05em; }
@media (max-width: 860px){ .testi-grid{ grid-template-columns:1fr; } }

/* ==========================================================================
   PRICING / INVESTMENT CARDS
   ========================================================================== */
.price-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:2px; background:var(--stone-line); border:1px solid var(--stone-line); }
.price-card{ background:var(--cream); padding: 40px 32px; display:flex; flex-direction:column; transition: transform 0.4s var(--ease-lux); }
.price-card:hover{ transform: translateY(-4px); }
.price-card.is-popular{ background: var(--ink); color: var(--cream); }
.price-card.is-popular h3, .price-card.is-popular .price-tag{ color: var(--cream); }
.price-card .badge{ font-family:var(--font-mono); font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--amber-bright); margin-bottom:14px; }
.price-card h3{ font-size:22px; margin-bottom:6px; }
.price-card .price-tag{ font-family:var(--font-display); font-size:32px; color: var(--green); margin: 10px 0 18px; }
.price-card.is-popular .price-tag{ color: var(--amber-bright); }
.price-card ul{ margin: 18px 0 26px; display:flex; flex-direction:column; gap:10px; font-size:14px; }
.price-card ul li{ padding-left:18px; position:relative; color: var(--ink-soft); }
.price-card.is-popular ul li{ color: rgba(244,239,226,0.82); }
.price-card ul li::before{ content:'\2022'; position:absolute; left:0; color:var(--amber); }
.price-card .btn{ margin-top:auto; }
@media (max-width: 900px){ .price-grid{ grid-template-columns:1fr; } }

/* ==========================================================================
   SCARCITY BAR (interior pages)
   ========================================================================== */
.scarcity-bar{ background: var(--amber); color: var(--white); }
.scarcity-inner{
  max-width: var(--container); margin:0 auto; padding: 14px 32px;
  display:flex; align-items:center; justify-content:center; gap:12px; flex-wrap:wrap;
  font-family: var(--font-mono); font-size: 13px; letter-spacing:0.03em; text-align:center;
}
.scarcity-bar a{ text-decoration: underline; text-underline-offset:3px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background: var(--green-deep); color: rgba(244,239,226,0.78); padding: 72px 0 28px; }
.footer-inner{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand{ font-family: var(--font-display); letter-spacing:0.1em; text-transform:uppercase; color: var(--cream); font-size:20px; margin-bottom:14px; }
.footer-inner h4{ font-family: var(--font-mono); font-size:11.5px; letter-spacing:0.1em; text-transform:uppercase; color: var(--amber-bright); margin-bottom:16px; }
.footer-inner ul{ display:flex; flex-direction:column; gap:10px; font-size:14px; }
.footer-inner a{ transition: color 0.25s ease; }
.footer-inner a:hover{ color: var(--cream); }
.footer-bottom{
  max-width: var(--container); margin: 48px auto 0; padding: 22px 32px 0;
  border-top: 1px solid rgba(244,239,226,0.15);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:12px; letter-spacing:0.02em; color: rgba(244,239,226,0.5);
}
@media (max-width: 860px){ .footer-inner{ grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   PAGE HERO (interior pages)
   ========================================================================== */
.page-hero{ padding: 64px 0 72px; border-bottom:1px solid var(--stone-line); }
.page-hero .section-inner{ max-width: 760px; }
.page-hero h1{ font-size: clamp(32px, 4.2vw, 50px); line-height:1.08; }
.page-hero p{ margin-top:20px; font-size:17px; color: var(--ink-soft); max-width:560px; }
.hero-eyebrow{
  font-family: var(--font-mono); font-size: 12px; letter-spacing:0.18em; text-transform:uppercase;
  color: var(--amber); margin-bottom: 20px;
}
.hero-actions{ display:flex; gap:16px; margin-top: 28px; flex-wrap:wrap; }

/* ==========================================================================
   TWO-COL CONTENT
   ========================================================================== */
.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center; }
.two-col.reverse .two-col-text{ order:2; }
@media (max-width: 860px){ .two-col{ grid-template-columns:1fr; } .two-col.reverse .two-col-text{ order:0; } }
.two-col-text .frame-label{ margin-bottom:16px; }
.two-col-text h2{ font-size: clamp(26px,3vw,36px); margin-bottom:18px; line-height:1.15; }
.two-col-text p{ color: var(--ink-soft); margin-bottom:16px; font-size:15.5px; }
.two-col-text p:last-of-type{ margin-bottom:0; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-item{ border-bottom:1px solid var(--stone-line); padding: 24px 0; }
.faq-item summary{ cursor:pointer; font-family: var(--font-display); font-size:19px; list-style:none; display:flex; justify-content:space-between; gap:20px; align-items:center; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:'+'; font-family: var(--font-mono); color: var(--amber); font-size:20px; flex-shrink:0;
  display:inline-block; transition: transform 0.35s var(--ease-lux);
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item p{ margin-top:14px; color: var(--ink-soft); font-size:15px; max-width:640px; }

/* ==========================================================================
   FORM
   ========================================================================== */
.contact-form{ display:flex; flex-direction:column; gap:20px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
@media (max-width:640px){ .form-row{ grid-template-columns:1fr; } }
.field label{ display:block; font-family:var(--font-mono); font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:var(--stone); margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; background: var(--white); border:1px solid var(--stone-line); border-radius: var(--radius);
  padding: 13px 14px; font-family: var(--font-body); font-size:15px; color: var(--ink);
  transition: border-color 0.25s ease;
}
.field textarea{ resize:vertical; min-height:120px; }
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--amber); outline:none; }

/* ==========================================================================
   UTILITY
   ========================================================================== */
.text-center{ text-align:center; margin-left:auto; margin-right:auto; }
.mt-lg{ margin-top:48px; }
.badge-list{ display:flex; flex-wrap:wrap; gap:10px 24px; margin-top:24px; }
.badge-list li{ font-family:var(--font-mono); font-size:11.5px; letter-spacing:0.05em; color:var(--stone); text-transform:uppercase; }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-grid .img-slot{ order:-1; }
}
