/* ============================================================
   NovoTile — Concept 2 (LIGHT LUXURY): Ivory · Emerald · Brass
   Display: DM Serif Display · Body: Inter
   Mobile-first, NO absolute text overlays on hero
   ============================================================ */
:root {
  --bg: #F8F4ED;
  --bg-2: #F2EBDB;
  --surface: #FFFFFF;
  --surface-2: #FBF7EE;
  --ink: #1A1A1A;
  --ink-2: #4F4A40;
  --ink-soft: #837C6E;
  --rule: #E5DDC9;
  --rule-2: #D8CDB1;
  --emerald: #1F5141;
  --emerald-deep: #133729;
  --emerald-soft: #DDE8E1;
  --brass: #B08D57;
  --brass-soft: #EAD9B7;
  --maxw: 1280px;
  --ease: cubic-bezier(.2,.7,.15,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
::selection { background: var(--emerald); color: var(--bg); }

/* type */
h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  margin: 0 0 .35em;
  letter-spacing: -.005em;
  line-height: 1.06;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); letter-spacing: -.02em; }
h1 em, h2 em { font-style: italic; color: var(--emerald); }
h2 { font-size: clamp(1.9rem, 4.4vw, 3.4rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.7rem); }
h4 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; margin: 0 0 .35em; color: var(--ink); }
h5 { font-family: 'Inter', sans-serif; font-size: .7rem; text-transform: uppercase; letter-spacing: .24em; color: var(--emerald); margin: 0 0 14px; font-weight: 600; }
p { color: var(--ink-2); margin: 0 0 1rem; }

.num {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--emerald);
  margin: 0 0 24px;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 14px;
}
.num::before { content: ""; width: 28px; height: 1px; background: var(--emerald); flex: none; }

/* topbar */
.topbar {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  font-family: 'Inter', sans-serif;
  font-size: .76rem;
  color: var(--ink-soft);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.topbar-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
  flex-wrap: wrap; gap: 8px;
}
.topbar-link { color: var(--ink); text-decoration: none; font-weight: 500; }
.topbar-link:hover { color: var(--emerald); }

/* header */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(248,244,237,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 6px 30px -16px rgba(40,30,12,.12); border-bottom-color: var(--rule-2); }
.nav { display: flex; align-items: center; gap: 16px; padding: 18px 24px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-mono {
  width: 44px; height: 44px;
  flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--emerald);
  color: var(--emerald);
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  transition: background .35s, color .35s, transform .5s var(--ease);
}
.brand:hover .brand-mono { background: var(--emerald); color: var(--bg); transform: rotate(-4deg); }
.brand-block { display: grid; line-height: 1; min-width: 0; }
.brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  letter-spacing: .005em;
  color: var(--ink);
}
.brand-tag {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
  white-space: nowrap;
}
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  text-decoration: none;
  color: var(--ink-2);
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  letter-spacing: .08em;
  position: relative;
  transition: color .3s;
  white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 1px;
  background: var(--emerald); transform: scaleX(0); transform-origin: left;
  transition: transform .55s var(--ease);
}
.nav-links a:hover { color: var(--emerald); }
.nav-links a:hover::after { transform: scaleX(1); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  color: var(--ink);
  transition: background .4s var(--ease), color .4s, border-color .4s, transform .35s var(--ease), box-shadow .4s;
  position: relative;
  overflow: hidden;
}
.btn-emerald {
  background: var(--emerald); color: var(--bg);
  border-color: var(--emerald);
}
.btn-emerald:hover { background: var(--emerald-deep); border-color: var(--emerald-deep); transform: translateY(-2px); box-shadow: 0 18px 36px -16px rgba(19,55,41,.45); }
.btn-emerald::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.18) 50%, transparent 65%);
  transform: translateX(-110%);
  transition: transform 1.1s var(--ease);
}
.btn-emerald:hover::after { transform: translateX(110%); }
.btn-text {
  padding: 14px 4px;
  letter-spacing: .14em;
  color: var(--ink-2);
  border: none;
  border-bottom: 1px solid var(--rule-2);
}
.btn-text .arrow { transition: transform .35s var(--ease); }
.btn-text:hover { color: var(--emerald); border-bottom-color: var(--emerald); }
.btn-text:hover .arrow { transform: translateX(6px); }
.btn-lg { padding: 16px 30px; font-size: .86rem; }
.btn-block { width: 100%; }

/* HERO — clean side-by-side, NO overlay, NO absolute text */
.hero {
  padding: 70px 0 90px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 60%, var(--bg-2) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
@media (min-width: 920px) {
  .hero { padding: 100px 0 130px; }
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 80px; }
}
.hero-copy { min-width: 0; }
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .76rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--emerald);
  margin: 0 0 28px;
  font-weight: 500;
}
.hero-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 0 0 28px;
  max-width: 14ch;
  color: var(--ink);
}
.hero-title .word {
  display: inline-block;
  margin-right: .25em;
}
.hero-title .word-break { display: block; }
.hero-title em { font-style: italic; color: var(--emerald); }
.hero-lede {
  font-size: 1.1rem;
  max-width: 40ch;
  color: var(--ink-2);
  margin: 0 0 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; margin-bottom: 48px; }

.hero-stats {
  list-style: none; padding: 26px 0 0; margin: 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
}
@media (min-width: 480px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}
.hero-stats strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--ink);
  line-height: 1;
}
.hero-stats span {
  display: block;
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero-figure {
  margin: 0;
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--rule);
  overflow: visible;
}
.hero-figure img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.hero-figure:hover img { transform: scale(1.04); }
.hero-figure figcaption {
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.caption-num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--emerald);
  text-transform: none;
  letter-spacing: 0;
  flex: none;
}

/* MARQUEE */
.marquee {
  background: var(--surface);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  padding: 24px 0;
}
.marquee-track {
  display: flex; gap: 28px; align-items: center;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
}
.marquee-track .dot { color: var(--emerald); font-size: .5em; }
.marquee-track > span:not(.dot):nth-child(4n+1) { color: var(--emerald); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* SECTIONS */
.section { padding: 80px 0; position: relative; }
@media (min-width: 920px) { .section { padding: 120px 0; } }
.section-services { background: var(--surface); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.section-story { background: var(--bg); }
.section-design { background: var(--surface-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.section-ba { background: var(--bg); }
.section-commissions { background: var(--surface); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.section-values { background: var(--bg); }
.section-contact { background: var(--surface-2); border-top: 1px solid var(--rule); }
.section-head { max-width: 720px; margin: 0 0 48px; }
@media (min-width: 920px) { .section-head { margin-bottom: 70px; } }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head-center .num { justify-content: center; }
.section-head-center .num::after { content: ""; width: 28px; height: 1px; background: var(--emerald); margin-left: 14px; flex: none; }
.section-lede { font-size: 1.05rem; color: var(--ink-2); max-width: 60ch; }
.section-head-center .section-lede { margin-left: auto; margin-right: auto; }

/* SERVICES list */
.service-list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--rule);
}
.service-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px 24px;
  padding: 28px 4px;
  align-items: baseline;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: padding .55s var(--ease), background .55s var(--ease);
}
@media (min-width: 760px) {
  .service-item {
    grid-template-columns: 80px 1fr auto;
    gap: 36px;
    padding: 36px 4px;
  }
  .service-item:hover { padding-left: 24px; background: linear-gradient(90deg, var(--emerald-soft) 0%, transparent 50%); }
}
.svc-num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--emerald);
}
.svc-body { min-width: 0; }
.svc-body h3 { margin: 0 0 8px; }
.svc-body p { margin: 0; font-size: .98rem; max-width: 60ch; }
.svc-tag {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  grid-column: 2;
}
@media (min-width: 760px) {
  .svc-tag { grid-column: 3; text-align: right; }
}
.service-item-feature {
  background: linear-gradient(90deg, var(--emerald-soft), transparent 60%);
}

/* TWO-COL story */
.two-col {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 920px) { .two-col { grid-template-columns: 1fr 1fr; gap: 90px; } }
.story-image {
  margin: 0;
  background: var(--surface-2);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.story-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.story-image:hover img { transform: scale(1.04); }
.story-copy { min-width: 0; }
.numbers {
  list-style: none; padding: 28px 0 0; margin: 32px 0 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.numbers strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--emerald);
  line-height: 1;
  font-style: italic;
}
.numbers span {
  display: block;
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  color: var(--ink-soft);
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* DESIGN */
.design-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
  margin-bottom: 64px;
}
@media (min-width: 800px) {
  .design-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 320px 320px;
  }
  .design-img-1 { grid-row: span 2; }
}
.design-img {
  margin: 0;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.design-img img {
  width: 100%;
  flex: 1;
  min-height: 220px;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.design-img:hover img { transform: scale(1.04); }
.design-img figcaption {
  background: var(--surface);
  border-top: 1px solid var(--rule);
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex; gap: 10px; align-items: baseline;
  flex: none;
}
.design-img figcaption span {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--emerald);
  text-transform: none;
  letter-spacing: 0;
  flex: none;
}

.design-form-wrap {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  background: var(--surface);
  padding: 32px 24px;
  border: 1px solid var(--rule);
  position: relative;
}
.design-form-wrap::before {
  content: ""; position: absolute; top: 0; left: 24px; width: 60px; height: 1px;
  background: var(--emerald);
}
@media (min-width: 920px) {
  .design-form-wrap { grid-template-columns: 1fr 1.05fr; gap: 64px; padding: 56px 60px; }
  .design-form-wrap::before { left: 60px; }
}
.design-form-copy h3 { margin-bottom: 16px; }
.bullets {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: grid; gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .94rem;
  color: var(--ink-2);
}
.bullets li { position: relative; padding-left: 22px; }
.bullets li::before {
  content: "✦"; position: absolute; left: 0; color: var(--emerald);
}

.lead-form { display: grid; gap: 16px; }
.lead-form h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  margin: 0 0 4px;
  color: var(--ink);
  font-weight: 400;
}
.lead-form label {
  display: grid; gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  font: inherit;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  padding: 13px 16px;
  border: 1px solid var(--rule-2);
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  transition: border-color .35s, box-shadow .35s;
}
.lead-form input::placeholder, .lead-form textarea::placeholder { color: var(--ink-soft); }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none; border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(31,81,65,.12);
}
.lead-form textarea { resize: vertical; min-height: 100px; }
.form-row {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-thanks {
  background: var(--emerald-soft);
  color: var(--emerald-deep);
  padding: 12px 16px;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1rem;
  margin: 12px 0 0;
  text-align: center;
  border: 1px solid var(--rule-2);
}

/* BEFORE / AFTER */
.ba-slider {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 16/10;
  user-select: none;
  cursor: ew-resize;
  background: var(--surface-2);
  box-shadow: 0 30px 60px -32px rgba(40,30,12,.25);
  border: 1px solid var(--rule-2);
}
.ba-img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba-clip {
  position: absolute; inset: 0;
  width: 50%;
  overflow: hidden;
  pointer-events: none;
}
.ba-clip .ba-img { width: max(1000px, 100vw); max-width: none; height: 100%; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: var(--emerald);
  box-shadow: 0 0 0 1px rgba(255,255,255,.6), 0 6px 24px rgba(31,81,65,.4);
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle-circle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--emerald);
  color: #fff;
  font-size: 1.05rem;
  display: grid; place-items: center;
  box-shadow: 0 8px 22px -3px rgba(0,0,0,.25);
  transition: transform .4s var(--ease);
}
.ba-slider:hover .ba-handle-circle { transform: translate(-50%, -50%) scale(1.08); }
.ba-tag {
  position: absolute; top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .26em;
  padding: 7px 12px;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--rule);
}
.ba-tag-before { left: 16px; }
.ba-tag-after { right: 16px; color: #fff; background: var(--emerald); border-color: var(--emerald); }

@media (max-width: 600px) {
  .ba-slider { aspect-ratio: 4/5; }
  .ba-handle-circle { width: 44px; height: 44px; font-size: .95rem; }
  .ba-tag { font-size: .62rem; padding: 6px 10px; top: 12px; }
  .ba-tag-before { left: 12px; }
  .ba-tag-after { right: 12px; }
}

/* EDITORIAL — light, warm */
.editorial {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
@media (min-width: 920px) { .editorial { padding: 140px 0; } }
.editorial-marker {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--emerald);
  text-align: center;
  margin: 0 0 32px;
}
.pull-quote { margin: 0 auto; max-width: 940px; text-align: center; }
.pull-quote p {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 28px;
  font-weight: 400;
}
.pull-quote p .word-fade {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.pull-quote p .word-fade.visible { opacity: 1; transform: translateY(0); }
.pull-quote footer {
  font-family: 'Inter', sans-serif;
  font-size: .76rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 500;
}

/* GALLERY — captions BELOW image, never overlapping on mobile */
.gallery {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(280px, auto);
  }
  .gallery-feature { grid-column: span 2; grid-row: span 2; }
}
.gallery-item {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .8s var(--ease), border-color .5s, box-shadow .8s var(--ease);
}
.gallery-item img {
  width: 100%;
  flex: 1;
  min-height: 240px;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.gallery-item:hover { border-color: var(--emerald); box-shadow: 0 30px 60px -32px rgba(40,30,12,.25); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  background: var(--surface);
  border-top: 1px solid var(--rule);
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex; gap: 10px; align-items: baseline;
  flex: none;
}
.gallery-item figcaption span {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--emerald);
  text-transform: none;
  letter-spacing: 0;
  flex: none;
}

/* VALUES */
.values-grid {
  display: grid; gap: 1px;
  grid-template-columns: 1fr;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 760px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value {
  background: var(--bg);
  padding: 36px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background .5s var(--ease);
}
.value:hover { background: var(--surface); }
.value-num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--emerald);
}
.value h4 { color: var(--ink); font-size: 1.05rem; }
.value p { margin: 0; font-size: .94rem; color: var(--ink-2); }

/* CONTACT */
.contact-list {
  list-style: none; padding: 32px 0 0; margin: 32px 0 0;
  display: grid; gap: 22px;
  border-top: 1px solid var(--rule);
}
.contact-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
@media (min-width: 480px) {
  .contact-list li { grid-template-columns: 160px 1fr; gap: 24px; align-items: baseline; }
}
.contact-list strong {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 500;
}
.contact-list span {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--ink);
}
.contact-list a {
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--rule-2);
  transition: border-color .25s, color .25s;
}
.contact-list a:hover { border-bottom-color: var(--emerald); color: var(--emerald); }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: 36px 28px;
  display: grid; gap: 16px;
  position: relative;
}
.contact-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 60px; height: 1px;
  background: var(--emerald);
}
@media (min-width: 760px) { .contact-card { padding: 48px 40px; } }
.contact-card-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--emerald);
  margin: 0;
}
.contact-card h3 { font-size: 1.5rem; margin: 0 0 16px; }
.contact-card .btn { width: 100%; }

/* FOOTER */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  padding: 60px 0 28px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem; color: var(--ink-2);
}
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; } }
.footer-mark {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--emerald);
  font-size: 1.6rem;
  margin: 0 0 12px;
}
.footer-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0 0 6px;
}
.footer-tag {
  color: var(--ink-soft); font-size: .76rem;
  letter-spacing: .14em; text-transform: uppercase; margin: 0;
}
.site-footer h5 { color: var(--ink); }
.site-footer p { margin: 4px 0; color: var(--ink-2); }
.site-footer a { color: var(--ink); text-decoration: none; transition: color .25s; }
.site-footer a:hover { color: var(--emerald); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-size: .76rem;
  color: var(--ink-soft);
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}

/* RESPONSIVE — mobile clean-ups */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-cta { padding: 10px 14px; font-size: .72rem; letter-spacing: .14em; }
  .topbar-row { padding: 10px 18px; font-size: .68rem; gap: 6px; }
  .topbar-meta { width: 100%; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .nav { padding: 14px 18px; gap: 10px; }
  .brand-mono { width: 38px; height: 38px; font-size: 1.2rem; }
  .brand-name { font-size: 1.15rem; }
  .brand-tag { font-size: .62rem; letter-spacing: .2em; }
  .hero { padding: 50px 0 60px; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .hero-stats strong { font-size: 1.5rem; }
  .marquee-track { font-size: 1.15rem; gap: 18px; }
  .section { padding: 60px 0; }
  .design-form-wrap { padding: 24px 18px; }
  .design-form-wrap::before { left: 18px; }
  .footer-bottom { flex-direction: column; }
}

/* ============================================
   ANIMATIONS — refined editorial reveals
   ============================================ */
[data-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: transform, opacity;
}
[data-anim="fade-in"] { transform: none; }
[data-anim="fade-left"] { transform: translateX(40px); }
[data-anim].in { opacity: 1; transform: translateY(0) translateX(0); }

[data-anim="stagger"] { opacity: 1; transform: none; }
[data-anim="stagger"] > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-anim="stagger"].in > * { opacity: 1; transform: translateY(0); }
[data-anim="stagger"].in > *:nth-child(1) { transition-delay: .04s; }
[data-anim="stagger"].in > *:nth-child(2) { transition-delay: .14s; }
[data-anim="stagger"].in > *:nth-child(3) { transition-delay: .24s; }
[data-anim="stagger"].in > *:nth-child(4) { transition-delay: .34s; }
[data-anim="stagger"].in > *:nth-child(5) { transition-delay: .44s; }
[data-anim="stagger"].in > *:nth-child(6) { transition-delay: .54s; }

/* FAQ */
.section-faq { background: var(--bg-2); }
.faq-list { max-width: 820px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--rule-2);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 44px 24px 0;
  position: relative;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--ink);
  transition: color .3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--emerald);
  transition: transform .35s var(--ease);
}
.faq-item[open] summary { color: var(--emerald); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--emerald); }
.faq-answer { padding: 0 44px 24px 0; }
.faq-answer p { margin: 0; color: var(--ink-2); line-height: 1.7; }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.review-stars { color: var(--brass); letter-spacing: .15em; margin: 0 0 16px; font-size: .95rem; }
.review-card blockquote { margin: 0 0 20px; padding: 0; border: 0; }
.review-card blockquote p { font-family: 'DM Serif Display', serif; font-size: 1.1rem; line-height: 1.5; color: var(--ink); font-style: italic; margin: 0; }
.review-author { margin-top: auto; font-size: .85rem; color: var(--ink-soft); }
.review-author strong { color: var(--ink); font-weight: 600; display: block; font-size: .95rem; }

/* Hero word reveal */
.hero-title .word {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.hero-title.in .word { opacity: 1; transform: translateY(0); }
.hero-title.in .word:nth-child(1) { transition-delay: .12s; }
.hero-title.in .word:nth-child(2) { transition-delay: .26s; }
.hero-title.in .word:nth-child(3) { transition-delay: .4s; }
.hero-title.in .word:nth-child(4) { transition-delay: .54s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none; }
  [data-anim], [data-anim="stagger"] > *, .hero-title .word { opacity: 1; transform: none; }
}
