/* ============================================================
   SR Interiors & Construction
   Editorial luxury aesthetic — bone, ink, terracotta, brass
   ============================================================ */

:root {
  /* palette */
  --bone:        #F2EDE4;
  --paper:       #E8DFCC;
  --warm-white:  #FAF7F1;
  --ink:         #0E0D0B;
  --ink-2:       #1B1814;
  --ink-soft:    #2B2520;
  --stone:       #8C8275;
  --stone-soft:  #B7AE9E;
  --line:        #D8CFBE;
  --line-dark:   #2A2520;
  --terra:       #C8642C;   /* logo roof / accent */
  --terra-soft:  #E08953;
  --brass:       #A78A53;
  --brass-soft:  #C7AC79;

  /* type */
  --display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:    "Manrope", "Helvetica Neue", system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* motion */
  --ease:    cubic-bezier(.16, 1, .3, 1);
  --ease-2:  cubic-bezier(.65, 0, .35, 1);

  /* layout */
  --gutter: clamp(20px, 4vw, 56px);
  --max:    1440px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--bone);
}
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bone);
  width: 100%;
  min-width: 0;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ----------- type scale ----------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--terra);
}
.eyebrow.center { justify-content: center; }
.eyebrow.dark   { color: var(--brass-soft); }
.eyebrow.dark::before { background: var(--brass-soft); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--ink);
  text-wrap: balance;
}

.h-display {
  font-size: clamp(56px, 9.5vw, 168px);
  line-height: .92;
  letter-spacing: -.025em;
  font-weight: 300;
}
.h-section {
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 1.0;
  font-weight: 300;
  letter-spacing: -.02em;
}
.h-card {
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.15;
}
.italic { font-style: italic; color: var(--terra); }

p.lead {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
  max-width: 60ch;
}

.num {
  font-family: var(--display);
  font-style: italic;
  color: var(--terra);
  font-weight: 400;
}

/* ----------- top bar ----------- */
.topbar {
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.topbar a { color: var(--paper); display: inline-flex; align-items: center; gap: 8px; }
.topbar a + a { margin-left: 22px; }
.topbar .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--terra); display: inline-block; }
.topbar .right { display: flex; align-items: center; gap: 18px; }
@media (max-width: 720px) {
  .topbar .left { display: none; }
  .topbar-inner { justify-content: center; }
}

/* ----------- nav ----------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, .86);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  border-bottom: 1px solid transparent;
  box-shadow: 0 18px 45px rgba(14, 13, 11, 0);
  transition: border-color .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(250, 247, 241, .94);
  box-shadow: 0 18px 45px rgba(14, 13, 11, .08);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2.4vw, 34px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 210px;
}
.brand-mark {
  min-width: 148px;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--warm-white);
  flex-shrink: 0;
  box-shadow: 0 18px 34px rgba(14, 13, 11, .18);
}

.nav .brand {
  min-width: auto;
}
.nav-brand-mark {
  width: auto;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--warm-white);
  box-shadow: none;
  overflow: visible;
}
.nav-brand-mark:hover { box-shadow: none; }
.brand-logo-img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  display: block;
}
.nav-logo-img {
  border-radius: 0;
}
.footer-logo-img {
  width: 170px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 10px;
}
@media (max-width: 900px) {
  .nav-logo-img { width: 66px; height: 66px; }
}
@media (max-width: 560px) {
  .nav-logo-img { width: 56px; height: 56px; }
}

.brand-text-logo {
  color: currentColor;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-name {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--ink);
}
.brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .28em;
  color: var(--stone);
  text-transform: uppercase;
  margin-top: 4px;
}
.nav-links {
  display: flex;
  gap: clamp(18px, 2vw, 32px);
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav-links a:hover { color: var(--terra); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1px;
  background: var(--terra);
  transition: right .35s var(--ease);
}
.nav-links a:hover::after { right: 0; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--ink);
  color: var(--warm-white);
  position: relative;
  overflow: hidden;
  white-space: normal;
  max-width: 100%;
  min-width: 0;
  text-align: center;
  line-height: 1.2;
  overflow-wrap: anywhere;
  transition:
    transform   .4s var(--ease),
    background  .4s var(--ease),
    color       .4s var(--ease),
    box-shadow  .4s var(--ease);
}
/* Shine sweep on hover */
.btn::before {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left .55s var(--ease);
  pointer-events: none;
}
.btn:hover::before { left: 130%; }
.btn:hover {
  transform: translateY(-3px);
  background: var(--terra);
  box-shadow: 0 16px 44px -8px rgba(200,100,44,.45);
}
.btn:active { transform: translateY(-1px); }
.btn .arrow { transition: transform .4s var(--ease); display: inline-block; flex: 0 0 auto; }
.btn:hover .arrow { transform: translateX(5px); }

/* Ghost */
.btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(14,13,11,.3); }
.btn.ghost:hover { background: var(--ink); color: var(--warm-white); border-color: var(--ink); box-shadow: 0 16px 44px -8px rgba(14,13,11,.25); }

/* Light (used on dark backgrounds) */
.btn.light { background: var(--warm-white); color: var(--ink); }
.btn.light:hover { background: var(--terra); color: var(--warm-white); box-shadow: 0 16px 44px -8px rgba(200,100,44,.4); }
.btn.light::before { background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.25) 50%, transparent 100%); }

/* Terra */
.btn.terra { background: var(--terra); color: var(--warm-white); }
.btn.terra:hover { background: var(--ink); box-shadow: 0 16px 44px -8px rgba(14,13,11,.35); }

/* Ghost-white (on dark sections) */
.btn.ghost-w { background: transparent; color: var(--warm-white); border: 1.5px solid rgba(250,247,241,.35); }
.btn.ghost-w:hover { border-color: var(--terra-soft); color: var(--terra-soft); box-shadow: none; background: transparent; }

.btn.lg { padding: 18px 34px; font-size: 13px; }

.menu-toggle { display: none; }

@media (max-width: 1020px) {
  .nav-links, .nav-cta { display: none; }
  .brand { min-width: 0; }
  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
  }
  .menu-toggle span {
    display: block; width: 18px; height: 1.5px; background: var(--ink); position: relative;
  }
  .menu-toggle span::before, .menu-toggle span::after {
    content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--ink);
  }
  .menu-toggle span::before { top: -6px; }
  .menu-toggle span::after  { top: 6px; }
}

@media (max-width: 560px) {
  .nav-inner { padding-top: 10px; padding-bottom: 10px; }
  .brand { gap: 10px; }
  .nav-brand-mark { width: auto; min-width: 0; min-height: 0; padding: 0; border-radius: 0; }
  .brand-mark:not(.nav-brand-mark) { min-width: 132px; min-height: 48px; padding: 0 16px; border-radius: 13px; }
  .brand-text-logo { font-size: 14px; }
  .brand-name { font-size: 20px; }
  .brand-sub { font-size: 8px; letter-spacing: .2em; }
}

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ink); color: var(--warm-white);
  padding: 80px var(--gutter) 40px;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
  overflow: auto;
}
.drawer.open { transform: translateY(0); }
.drawer-close {
  position: absolute; top: 22px; right: var(--gutter);
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid #3b342b;
  display: grid; place-items: center;
  font-size: 22px; color: var(--warm-white);
}
.drawer ul { list-style: none; display: grid; gap: 8px; }
.drawer li a {
  font-family: var(--display);
  font-size: clamp(38px, 8vw, 64px);
  line-height: 1.1;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #2a2520;
}
.drawer li a:hover { color: var(--terra-soft); }
.drawer-foot { margin-top: 40px; color: var(--stone-soft); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.drawer-foot a { color: var(--brass-soft); }

/* ----------- hero ----------- */
.hero {
  position: relative;
  height: min(100vh, 920px);
  min-height: 640px;
  overflow: hidden;
  background: var(--ink);
  color: var(--warm-white);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: kenburns 22s ease-out forwards;
  filter: saturate(1.05) contrast(1.05);
}
@keyframes kenburns {
  to { transform: scale(1.16) translate(-1.5%, -1%); }
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14,13,11,.82) 0%, rgba(14,13,11,.58) 28%, rgba(14,13,11,.20) 58%, rgba(14,13,11,.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,.52) 0%, rgba(0,0,0,.20) 34%, rgba(14,13,11,.18) 58%, rgba(14,13,11,.9) 100%),
    radial-gradient(ellipse at 75% 30%, rgba(200,100,44,.18), transparent 55%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--gutter) 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero h1 {
  color: var(--warm-white);
  text-shadow: 0 8px 34px rgba(0,0,0,.34);
}
.hero h1 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero h1 .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise .9s var(--ease) forwards;
}
.hero h1 .word:nth-child(2) > span { animation-delay: .12s; }
.hero h1 .word:nth-child(3) > span { animation-delay: .24s; }
.hero h1 .word:nth-child(4) > span { animation-delay: .36s; }
@keyframes rise { to { transform: translateY(0); } }

.hero-meta {
  display: flex;
  gap: 56px;
  margin-top: 36px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.hero-meta .lead {
  color: rgba(250, 247, 241, .85);
  max-width: 46ch;
  font-size: clamp(15px, 1.1vw, 18px);
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-marker {
  position: absolute;
  z-index: 2;
  top: 100px; left: var(--gutter);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, .65);
  display: flex;
  gap: 12px;
  align-items: center;
}
.hero-marker .line { width: 40px; height: 1px; background: rgba(250,247,241,.45); }
.hero-side {
  position: absolute; right: max(var(--gutter), 34px); top: 50%;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: translateY(-50%) rotate(180deg);
  transform-origin: center;
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, .55);
  z-index: 2;
  white-space: nowrap;
}
.hero-thumbs {
  position: absolute; right: var(--gutter); bottom: 60px;
  z-index: 2;
  display: flex; gap: 10px;
}
.hero-thumbs .t {
  width: 64px; height: 80px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(250,247,241,.2);
  filter: saturate(.9) brightness(.85);
  transition: filter .4s var(--ease), transform .4s var(--ease);
  cursor: pointer;
}
.hero-thumbs .t.active, .hero-thumbs .t:hover { filter: none; transform: translateY(-4px); border-color: var(--terra); }
@media (max-width: 720px) {
  .hero-side, .hero-thumbs { display: none; }
  .hero {
    min-height: 640px;
    height: calc(100svh - 104px);
  }
  .hero::after {
    background:
      linear-gradient(90deg, rgba(14,13,11,.88) 0%, rgba(14,13,11,.56) 62%, rgba(14,13,11,.22) 100%),
      linear-gradient(180deg, rgba(0,0,0,.54) 0%, rgba(0,0,0,.16) 34%, rgba(14,13,11,.88) 100%),
      radial-gradient(ellipse at 76% 24%, rgba(200,100,44,.14), transparent 52%);
  }
  .hero-inner {
    padding-top: 58px;
    padding-bottom: 34px;
  }
  .hero .h-display {
    font-size: clamp(48px, 14vw, 72px);
    line-height: .96;
  }
  .hero-meta {
    gap: 18px;
    margin-top: 22px;
  }
  .hero-meta .lead {
    font-size: 14.5px;
    line-height: 1.48;
  }
  .hero-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 10px;
    margin-top: 24px;
  }
  .hero-cta-row .btn {
    justify-content: center;
    padding: 14px 16px;
    font-size: 11px;
    letter-spacing: .12em;
  }
}
@media (max-width: 430px) {
  .hero {
    min-height: 640px;
  }
  .hero-marker {
    top: 104px;
  }
}
@media (max-width: 360px) {
  .hero-cta-row {
    grid-template-columns: 1fr;
    max-width: 270px;
  }
}

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 22px;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, .55);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
}
.scroll-cue .bar { width: 1px; height: 36px; background: linear-gradient(var(--terra), transparent); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }

/* ----------- cinematic scroll bridge ----------- */
.cinematic-scroll {
  min-height: calc(100svh - var(--nav-h, 84px));
  background: var(--ink);
  color: var(--warm-white);
}
.cinematic-pin {
  position: relative;
  min-height: max(600px, calc(100svh - var(--nav-h, 84px)));
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--ink);
  background-image: radial-gradient(ellipse 80% 65% at 78% 52%, rgba(180,88,54,.16) 0%, transparent 68%);
}

/* Two-column inner layout */
.cinematic-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 4.8vw, 72px) var(--gutter) clamp(42px, 5.4vw, 82px);
}

.cinematic-copy {
  position: relative;
  z-index: 1;
}
.cinematic-copy h2 {
  color: var(--warm-white);
  font-size: clamp(42px, 6.2vw, 92px);
  line-height: .96;
  font-weight: 300;
  margin-top: 16px;
}
.cinematic-copy p {
  max-width: 54ch;
  color: rgba(250, 247, 241, .76);
  margin-top: 24px;
  font-size: clamp(15px, 1.2vw, 18px);
}
.cinematic-metrics {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.cinematic-metrics span {
  border: 1px solid rgba(250,247,241,.2);
  background: rgba(250,247,241,.08);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.cinematic-metrics strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--terra-soft);
  letter-spacing: 0;
  margin-right: 5px;
}

/* Right showcase panel — height respects inner padding so it never overflows the pin */
.cinematic-showcase {
  position: relative;
  aspect-ratio: 4/3;
  width: min(100%, 640px);
  min-height: clamp(420px, 32vw, 520px);
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,.85), 0 0 0 1px rgba(255,255,255,.08);
  flex-shrink: 0;
  justify-self: end;
  align-self: center;
}
.cinematic-showcase-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.cinematic-showcase:hover .cinematic-showcase-img { transform: scale(1.0); }
.cinematic-showcase-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 24px 24px;
  background: linear-gradient(to top, rgba(14,13,11,.88) 60%, transparent);
  color: var(--warm-white);
}
.cinematic-showcase-label strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.cinematic-showcase-label span {
  display: block;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-top: 5px;
}
.cinematic-showcase-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--terra);
  color: var(--warm-white);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .cinematic-inner { grid-template-columns: 1fr; gap: 0; }
  .cinematic-showcase { display: none; }
  .cinematic-scroll { min-height: 100svh; }
}
@media (max-width: 720px) {
  .cinematic-pin { min-height: 100svh; }
  .cinematic-copy h2 { font-size: clamp(34px, 10.5vw, 48px); }
  .cinematic-copy p { font-size: 14.5px; }
  .cinematic-inner { padding: 64px var(--gutter); }
}

/* ----------- marquee ----------- */
.marquee {
  background: var(--ink);
  color: var(--warm-white);
  border-top: 1px solid #2a2520;
  border-bottom: 1px solid #2a2520;
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  align-items: center;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terra); display: inline-block; }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ----------- generic section ----------- */
section { position: relative; }
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 160px) var(--gutter);
}
.wrap.tight { padding-top: clamp(60px, 7vw, 100px); padding-bottom: clamp(60px, 7vw, 100px); }
.section-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 70px;
}
.section-head h2 { margin-top: 14px; }
.section-head .lead { opacity: .78; }
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; }
}

/* ----------- about ----------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-img-stack {
  position: relative;
  aspect-ratio: 4/5;
}
.about-img-stack .a {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}
.about-img-stack .b {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 50%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  border: 8px solid var(--bone);
}
.about-img-stack .badge {
  position: absolute;
  top: -30px; left: -30px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--warm-white);
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  line-height: 1.2;
  padding: 14px;
  box-shadow: 0 24px 52px rgba(200,100,44,.32);
}
.about-img-stack .badge.stable { animation: none; transform: rotate(-4deg); }
.about-img-stack .badge strong {
  display: block; font-size: 38px; font-style: normal; font-weight: 300; margin-bottom: 2px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.about-points {
  list-style: none;
  margin-top: 36px;
  display: grid;
  gap: 18px;
}
.about-points li {
  display: flex; gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
}
.about-points li:last-child { border-bottom: 1px solid var(--line); }
.about-points .check {
  flex: 0 0 28px; height: 28px; border-radius: 50%;
  background: var(--terra); color: var(--warm-white);
  display: grid; place-items: center;
  font-size: 13px;
}
.about-sig {
  margin-top: 36px;
  display: flex; gap: 28px; align-items: center;
}
.about-sig svg { width: 130px; }

/* ----------- stats ----------- */
.stats {
  background: var(--ink);
  color: var(--warm-white);
}
.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
@media (max-width: 900px) { .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 36px; } }
.stat .n {
  font-family: var(--display);
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 300;
  line-height: 1;
  color: var(--warm-white);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.stat .n .plus { color: var(--terra); font-style: italic; font-size: .55em; }
.stat .l {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass-soft);
}
.stat .d {
  margin-top: 12px;
  color: rgba(250, 247, 241, .65);
  font-size: 14.5px;
  max-width: 26ch;
}

/* ----------- services ----------- */
.services-carousel {
  position: relative;
  padding-top: 68px;
}
.services-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 2px 18px;
  margin: 0 -2px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.services-grid::-webkit-scrollbar {
  display: none;
}
.services-grid.is-dragging {
  cursor: grabbing;
  user-select: none;
  scroll-snap-type: none;
}
.service {
  background: var(--bone);
  flex: 0 0 clamp(330px, 38vw, 560px);
  width: clamp(330px, 38vw, 560px);
  padding: 0 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: background .4s var(--ease), color .4s var(--ease);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  scroll-snap-align: start;
}
.service-img {
  position: relative;
  width: calc(100% + 64px);
  margin: 0 -32px 10px;
  aspect-ratio: 16 / 11;
  background-color: rgba(184, 163, 132, .16);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(.88) contrast(.98);
  transform: none;
  transition: transform .7s var(--ease), filter .7s var(--ease), opacity .4s var(--ease);
}
.service-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,13,11,0) 52%, rgba(14,13,11,.16));
}
.service .index {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--terra);
  letter-spacing: .05em;
}
.service .icon {
  width: 56px; height: 56px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 4px;
  transition: background .4s var(--ease);
}
.service .icon svg {
  display: block;
  width: 26px;
  height: 26px;
}
.service h3 { transition: color .4s var(--ease); }
.service p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1;
}
.service .more {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  transition: color .4s var(--ease), gap .35s var(--ease);
  font-weight: 600;
}
.service:hover {
  background: var(--ink);
  color: var(--warm-white);
}
.service:hover .service-img {
  filter: saturate(1.02) contrast(1.04);
  transform: none;
  opacity: .86;
}
.service:hover h3 { color: var(--warm-white); }
.service:hover p  { color: rgba(250,247,241,.78); }
.service:hover .more { color: var(--terra-soft); gap: 16px; }
.service:hover .icon { background: var(--terra); border-color: var(--terra); color: var(--warm-white); }
.services-nav {
  position: absolute;
  top: 0;
  z-index: 4;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(14,13,11,.18);
  background: rgba(250,247,241,.82);
  color: var(--ink);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 42px rgba(14,13,11,.10);
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: none;
  transition: background .25s var(--ease), color .25s var(--ease), opacity .25s var(--ease), transform .25s var(--ease);
}
.services-nav svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.services-nav.prev { right: 66px; }
.services-nav.next { right: 0; }
.services-nav:hover {
  background: var(--ink);
  color: var(--warm-white);
  transform: translateY(-2px);
}
.services-nav:disabled {
  opacity: .32;
  cursor: default;
  transform: none;
}
@media (max-width: 900px) {
  .service {
    flex-basis: min(420px, 84vw);
    width: min(420px, 84vw);
    min-height: 520px;
  }
  .services-nav {
    display: none;
  }
}

/* ----------- process ----------- */
.process {
  background: var(--paper);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 70px;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr; } }
.step {
  padding: 60px 40px;
  border-right: 1px solid var(--line);
  position: relative;
}
.step:last-child { border-right: none; }
@media (max-width: 900px) {
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: none; }
}
.step .step-num {
  font-family: var(--display);
  font-size: clamp(96px, 12vw, 180px);
  font-style: italic;
  font-weight: 300;
  line-height: .8;
  color: var(--terra);
  opacity: .9;
  margin-bottom: 28px;
}
.step h3 { font-size: clamp(28px, 2.6vw, 40px); margin-bottom: 14px; }
.step p { color: var(--ink-soft); font-size: 15px; max-width: 30ch; }
.step ul {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 8px;
}
.step ul li {
  font-size: 13px; color: var(--ink-soft); padding-left: 18px; position: relative;
  letter-spacing: .04em;
}
.step ul li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 1px; background: var(--terra);
}

/* ----------- featured project ----------- */
.feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--ink);
  color: var(--warm-white);
  align-items: stretch;
}
@media (max-width: 900px) { .feature { grid-template-columns: 1fr; } }
.feature-img {
  background-size: cover;
  background-position: center;
  min-height: 600px;
  position: relative;
}
.feature-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 60%, rgba(14,13,11,.6));
  pointer-events: none;
}
.feature-text {
  padding: clamp(48px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.feature-text h2 { color: var(--warm-white); font-size: clamp(36px, 4.5vw, 64px); }
.feature-text p { color: rgba(250,247,241,.78); font-size: 16px; max-width: 50ch; }
.feature-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid #2a2520;
}
.feature-meta div span {
  display: block; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--brass-soft);
  margin-bottom: 6px;
}
.feature-meta div strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  color: var(--warm-white);
}

/* ----------- portfolio ----------- */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.filter-row button {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: transparent;
  transition: all .35s var(--ease);
}
.filter-row button.active,
.filter-row button:hover {
  background: var(--ink);
  color: var(--warm-white);
  border-color: var(--ink);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper);
  cursor: pointer;
}
.tile img, .tile .img {
  width: 100%; height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease);
}
.tile:hover .img { transform: scale(1.05); }
.tile::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 22%, rgba(14,13,11,.58) 66%, rgba(14,13,11,.96) 100%),
    linear-gradient(120deg, rgba(200,100,44,0), rgba(200,100,44,.12));
  opacity: .85;
  transition: opacity .4s var(--ease), background .4s var(--ease);
}
.tile:hover::after {
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(14,13,11,.08) 8%, rgba(14,13,11,.54) 54%, rgba(14,13,11,.98) 100%),
    linear-gradient(120deg, rgba(200,100,44,.42), rgba(167,138,83,.08) 50%, rgba(14,13,11,.2));
}
.tile-info {
  position: absolute; left: 24px; right: 24px; bottom: 22px;
  z-index: 2;
  color: var(--warm-white);
  transform: translateY(0);
  opacity: 1;
  transition: all .45s var(--ease);
}
.tile:hover .tile-info { transform: translateY(-4px); }
.tile-info .cat { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--terra-soft); margin-bottom: 4px; }
.tile-info h4 { font-family: var(--display); font-size: 22px; color: var(--warm-white); }
.tile-info p,
.tile-info .more {
  color: rgba(250,247,241,.78);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .45s var(--ease), opacity .45s var(--ease), margin .45s var(--ease);
}
.tile:hover .tile-info p,
.tile:hover .tile-info .more {
  max-height: 90px;
  opacity: 1;
  margin-top: 8px;
}
.tile.size-tall { grid-column: span 4; aspect-ratio: 3/4; }
.tile.size-wide { grid-column: span 8; aspect-ratio: 16/9; }
.tile.size-sq   { grid-column: span 4; aspect-ratio: 1/1; }
.tile.size-mid  { grid-column: span 6; aspect-ratio: 4/3; }
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(6, 1fr); }
  .tile.size-tall, .tile.size-sq { grid-column: span 3; }
  .tile.size-wide, .tile.size-mid { grid-column: span 6; }
}

/* ----------- before / after ----------- */
.ba {
  background: var(--ink);
  color: var(--warm-white);
}
.ba .wrap {
  max-width: 1680px;
  padding-top: clamp(44px, 5vw, 76px);
  padding-bottom: clamp(44px, 5vw, 76px);
}
.ba .section-head {
  margin-bottom: clamp(24px, 3vw, 38px);
}
.ba-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 520px;
  max-height: 700px;
  overflow: hidden;
  user-select: none;
  border-radius: 4px;
  cursor: ew-resize;
  touch-action: none;
  background: #080705;
  isolation: isolate;
}
.ba-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ba-img.after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path .12s linear;
}
.ba-stage.dragging .ba-img.after {
  transition: none;
}
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--ba-pos, 50%); width: 2px;
  background: var(--warm-white);
  transform: translateX(-1px);
  pointer-events: none;
  z-index: 4;
}
.ba-knob {
  position: absolute; top: 50%; left: clamp(28px, var(--ba-pos, 50%), calc(100% - 28px));
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--warm-white);
  color: var(--ink);
  transform: translate(-50%, -50%);
  display: grid; place-items: center;
  font-size: 22px;
  pointer-events: none;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
  z-index: 5;
}
.ba-tag {
  position: absolute; top: 24px;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  background: rgba(14,13,11,.55);
  color: var(--warm-white);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  pointer-events: none;
  z-index: 6;
}
.ba-tag.before { left: 24px; }
.ba-tag.after  { right: 24px; }
.ba-tag.hidden {
  opacity: 0;
  visibility: hidden;
}

/* ----------- why us ----------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; } }
.why-item {
  padding: 50px 40px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
  transition: background .4s var(--ease);
}
.why-item:nth-child(2n) { border-right: none; }
@media (max-width: 700px) { .why-item { border-right: none; } }
.why-item:hover { background: var(--paper); }
.why-item .num {
  font-size: 56px;
  line-height: 1;
}
.why-item h3 { font-size: 28px; margin-bottom: 12px; }
.why-item p { color: var(--ink-soft); font-size: 14.5px; }

/* ----------- testimonials ----------- */
.testimonials { background: var(--paper); }
.testimonial-stage {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .testimonial-stage { grid-template-columns: 1fr; gap: 40px; } }
.t-quote-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 200px;
  color: var(--terra);
  line-height: 0.6;
  margin-bottom: -10px;
}
.t-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.25;
  color: var(--ink);
  text-wrap: balance;
}
.t-meta {
  margin-top: 36px;
  display: flex; align-items: center; gap: 18px;
}
.t-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--bone);
}
.t-name strong {
  display: block; font-family: var(--display); font-size: 20px; font-weight: 500; color: var(--ink); margin-bottom: 2px;
}
.t-name span { font-size: 13px; color: var(--stone); letter-spacing: .04em; }
.t-controls {
  display: flex; gap: 12px; margin-top: 36px;
}
.t-controls button {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: grid; place-items: center;
  transition: all .35s var(--ease);
}
.t-controls button:hover { background: var(--ink); color: var(--warm-white); }

.t-image {
  position: relative;
  aspect-ratio: 4/3;
  min-height: 360px;
  max-height: 520px;
  height: clamp(360px, 42vw, 520px);
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}
.t-rating {
  position: absolute; top: 24px; left: 24px;
  background: rgba(250,247,241,.95);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink);
  display: flex; gap: 6px; align-items: center;
}
.t-rating .stars { color: var(--terra); letter-spacing: 2px; }

/* ----------- video testimonials ----------- */
.testimonial-videos {
  background: linear-gradient(180deg, var(--paper) 0%, var(--bone) 100%);
  padding-top: clamp(70px, 8vw, 118px);
}
.testimonial-video-head {
  align-items: end;
}
.testimonial-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 390px));
  gap: clamp(18px, 2vw, 28px);
  justify-content: center;
  align-items: stretch;
}
.testimonial-video-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(14, 13, 11, .12);
  background: rgba(250, 247, 241, .72);
  box-shadow: 0 28px 70px rgba(14, 13, 11, .08);
  overflow: hidden;
}
.testimonial-video-frame {
  position: relative;
  background: transparent;
  height: clamp(620px, calc(100vh - 170px), 760px);
  min-height: 0;
  overflow: hidden;
}
.testimonial-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  background: transparent;
}
.testimonial-video-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  padding: 8px 13px;
  border: 1px solid rgba(250, 247, 241, .24);
  border-radius: 999px;
  background: rgba(14, 13, 11, .62);
  color: var(--warm-white);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.testimonial-video-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(22px, 2.4vw, 34px);
}
.testimonial-video-copy > span {
  font-family: var(--mono);
  color: var(--terra);
  font-size: 12px;
  letter-spacing: .18em;
}
.testimonial-video-copy h3 {
  font-size: clamp(26px, 2.4vw, 40px);
  line-height: 1.02;
}
.testimonial-video-copy p {
  color: var(--ink-soft);
  max-width: 48ch;
}
@media (max-width: 980px) {
  .testimonial-video-grid {
    grid-template-columns: repeat(2, minmax(260px, 380px));
  }
  .testimonial-video-frame {
    height: clamp(560px, calc(100vh - 150px), 700px);
  }
}
@media (max-width: 560px) {
  .testimonial-videos {
    padding-top: 62px;
  }
  .testimonial-video-card {
    margin-inline: auto;
    width: min(100%, 360px);
  }
  .testimonial-video-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-video-frame {
    height: min(76vh, 640px);
    min-height: 520px;
  }
  .testimonial-video-copy {
    padding: 22px;
  }
}
/* ----------- awards ----------- */
.awards {
  background: var(--ink);
  color: var(--warm-white);
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: center;
}
@media (max-width: 800px) { .awards-grid { grid-template-columns: repeat(2, 1fr); } }
.award {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid #2a2520;
  font-family: var(--display);
  font-style: italic;
  color: var(--brass-soft);
  font-size: 18px;
  line-height: 1.3;
}
.award:last-child { border-right: none; }
.award strong { display: block; font-style: normal; font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--warm-white); margin-bottom: 6px; }

/* ----------- FAQ ----------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 400;
  text-align: left;
  color: var(--ink);
  transition: color .3s var(--ease);
}
.faq-q:hover { color: var(--terra); }
.faq-q .toggle {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  transition: all .35s var(--ease);
}
.faq-item.open .faq-q .toggle { background: var(--terra); border-color: var(--terra); color: var(--warm-white); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), padding .5s var(--ease);
}
.faq-item.open .faq-a {
  max-height: 240px;
  padding: 0 0 28px;
}
.faq-a p {
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 65ch;
}

/* ----------- final cta ----------- */
.cta-banner {
  background-image:
    linear-gradient(115deg, rgba(14,13,11,.85) 0%, rgba(14,13,11,.6) 50%, rgba(200,100,44,.55) 100%),
    var(--cta-bg, none);
  background-size: cover;
  background-position: center;
  color: var(--warm-white);
}
.cta-banner .wrap { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
@media (max-width: 800px) { .cta-banner .wrap { grid-template-columns: 1fr; } }
.cta-banner h2 { color: var(--warm-white); }
.cta-banner p { color: rgba(250,247,241,.78); margin-top: 16px; max-width: 50ch; }

/* ----------- contact ----------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info { display: grid; gap: 28px; margin-top: 36px; }
.info-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.info-item .ico {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink); color: var(--warm-white);
  display: grid; place-items: center;
}
.info-item .ico svg { width: 22px; height: 22px; }
.info-item span {
  display: block; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--stone);
  margin-bottom: 4px;
}
.info-item strong { font-family: var(--display); font-size: 22px; font-weight: 400; color: var(--ink); display: block; }
.info-item small { display: block; color: var(--ink-soft); font-size: 14px; margin-top: 4px; }

.form {
  background: var(--warm-white);
  padding: 48px;
  border-radius: 0;
  border: 1px solid var(--line);
}
@media (max-width: 600px) { .form { padding: 28px; } }
.form h3 { font-size: 32px; margin-bottom: 10px; }
.form p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; gap: 18px; } }
.field { position: relative; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}
.form-group-label {
  display: block;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 18px 0 10px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 0;
  font: inherit;
  font-size: 15px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: border-color .3s var(--ease);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 34px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.25 6 6.25 11 1.25' fill='none' stroke='%238C8275' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 12px 8px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--terra);
}
.field textarea { resize: vertical; min-height: 80px; }
.form-message-field { margin-top: 8px; }
.budget-select {
  position: relative;
  z-index: 2;
}
.budget-select-trigger {
  width: 100%;
  min-height: 49px;
  padding: 14px 32px 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: border-color .3s var(--ease);
}
.budget-select-trigger:focus {
  outline: none;
  border-bottom-color: var(--terra);
}
.budget-select-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.budget-select.open .budget-select-arrow {
  transform: rotate(225deg) translateY(-2px);
  border-color: var(--terra);
}
.budget-options {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  display: grid;
  padding: 8px;
  border: 1px solid var(--line);
  background: var(--warm-white);
  box-shadow: 0 18px 40px rgba(14, 13, 11, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s var(--ease);
}
.budget-select.open .budget-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.budget-options button {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  text-align: left;
  padding: 12px 14px;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.budget-options button:hover,
.budget-options button:focus,
.budget-options button[aria-selected="true"] {
  outline: none;
  background: rgba(200, 100, 44, .1);
  color: var(--terra);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.chip {
  padding: 10px 17px; font-size: 12px;
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent; color: var(--ink);
  transition: all .3s var(--ease);
}
.chip.active, .chip:hover { background: var(--terra); color: var(--warm-white); border-color: var(--terra); }
.form .submit-row { margin-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.form .submit-row small { color: var(--stone); font-size: 12px; line-height: 1.5; max-width: 360px; }
.form-success {
  display: none;
  padding: 16px 20px;
  background: var(--terra);
  color: var(--warm-white);
  border-radius: 4px;
  font-size: 14px;
  margin-top: 16px;
}
.form-success.show { display: block; animation: rise2 .5s var(--ease); }
@keyframes rise2 { from { transform: translateY(8px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ----------- footer ----------- */
footer {
  background: var(--ink);
  color: var(--paper);
  padding-top: 90px;
}
.foot-top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) 60px;
  display: grid;
  grid-template-columns: minmax(250px, 1.15fr) minmax(150px, .55fr) minmax(210px, .78fr) minmax(320px, 1.05fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 900px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) {
  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }
  .foot-brand,
  .foot-cta {
    grid-column: 1 / -1;
  }
}
.foot-brand .brand-name { color: var(--warm-white); font-size: 28px; }
.foot-brand .brand-sub { color: var(--brass-soft); }
.foot-brand .brand-mark {
  color: var(--warm-white);
}
.foot-brand .foot-brand-mark {
  width: 170px;
  height: auto;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 10px;
  box-shadow: none;
  overflow: visible;
}
.foot-brand .brand-text-logo { font-size: 28px; }
.foot-brand p { color: rgba(250,247,241,.7); font-size: 14.5px; margin-top: 18px; max-width: 38ch; }
.foot-brand .socials { margin-top: 26px; display: flex; gap: 10px; }
.foot-brand .socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid #2a2520;
  display: grid; place-items: center;
  transition: all .3s var(--ease);
}
.foot-brand .socials a:hover { background: var(--terra); border-color: var(--terra); }
.foot-brand .socials svg { width: 16px; height: 16px; fill: var(--warm-white); }

.foot-col h4 {
  color: var(--warm-white);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.foot-col ul { list-style: none; display: grid; gap: 14px; }
.foot-col a { color: rgba(250,247,241,.68); font-size: 15px; line-height: 1.35; transition: color .3s var(--ease), transform .3s var(--ease); display: inline-flex; align-items: center; gap: 8px; }
.foot-col a:hover { color: var(--terra-soft); }

@media (max-width: 600px) {
  .foot-col h4 {
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: .18em;
  }
  .foot-col ul {
    gap: 12px;
  }
  .foot-col a {
    font-size: 14px;
    line-height: 1.35;
  }
}

.foot-cta { background: rgba(255,255,255,.035); padding: 34px; border-radius: 4px; border: 1px solid rgba(250,247,241,.06); }
.foot-cta strong { display: block; font-family: var(--display); font-weight: 400; font-size: 22px; color: var(--warm-white); margin-bottom: 10px; }
.foot-cta p { font-size: 13.5px; color: rgba(250,247,241,.7); margin-bottom: 16px; }
.foot-form-status {
  margin: 0 0 14px;
  padding: 10px 12px;
  border: 1px solid rgba(250,247,241,.12);
  background: rgba(255,255,255,.04);
  color: rgba(250,247,241,.78);
  font-size: 13px;
  line-height: 1.45;
}
.foot-form-status.success {
  border-color: rgba(99,180,120,.34);
  color: #bce6c6;
}
.foot-form-status.error {
  border-color: rgba(200,100,44,.42);
  color: var(--terra-soft);
}
.foot-cta .field {
  display: flex;
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: none;
  border: 1px solid rgba(200,100,44,.85);
  border-radius: 999px;
  overflow: hidden;
  background: #0f0d0b;
}
.foot-cta input {
  flex: 1;
  min-width: 0;
  width: 0;
  height: 60px;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--warm-white);
  caret-color: var(--terra-soft);
  padding: 0 20px;
  font: inherit;
  font-size: 15px;
  line-height: 60px;
}
.foot-cta input::placeholder { color: rgba(250,247,241,.48); }
.foot-cta input:focus {
  outline: none;
  background: transparent;
}
.foot-cta .field:focus-within {
  border-color: var(--terra-soft);
  box-shadow: 0 0 0 1px rgba(200,100,44,.28);
}
.foot-cta input::selection {
  background: rgba(200,100,44,.35);
  color: var(--warm-white);
}
.foot-cta input:-webkit-autofill,
.foot-cta input:-webkit-autofill:hover,
.foot-cta input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--warm-white);
  caret-color: var(--terra-soft);
  box-shadow: 0 0 0 1000px #0f0d0b inset;
  border-color: var(--terra-soft);
  transition: background-color 9999s ease-in-out 0s;
}
.foot-cta button {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--terra); color: var(--warm-white);
  display: grid; place-items: center;
  line-height: 1;
  margin: 0;
  transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.foot-cta button:hover {
  background: var(--terra-soft);
  transform: scale(.96);
  box-shadow: 0 0 0 6px rgba(200,100,44,.14);
}

.foot-bottom {
  border-top: 1px solid #2a2520;
  padding: 26px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(250,247,241,.5);
  letter-spacing: .04em;
  flex-wrap: wrap;
  gap: 18px;
}
.foot-bottom a { color: rgba(250,247,241,.6); }
.foot-bottom a:hover { color: var(--terra-soft); }

/* ----------- reveal ----------- */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .40s; }

/* ----------- cursor ----------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--terra);
  transition: width .25s var(--ease), height .25s var(--ease);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(200,100,44,.72);
  transition: width .35s var(--ease), height .35s var(--ease), background .35s var(--ease);
}
.cursor-ring.active { width: 46px; height: 46px; background: rgba(200,100,44,.10); }
.cursor-dot.hidden,
.cursor-ring.hidden { opacity: 0; }
@media (max-width: 1024px) { .cursor-dot, .cursor-ring { display: none; } }

/* selection */
::selection { background: var(--terra); color: var(--warm-white); }
