/* ============================================================
   OMG Homes & Co. — Renovation Advisory
   Modern alpine minimalism · Bay Area design sensibility
   ============================================================ */

:root {
  /* palette — OMG Homes & Co. business card: matte black · rose-copper foil · teal aurora gradient */
  --stone:      #141417;   /* page base */
  --stone-2:    #1B1B20;   /* alt section */
  --stone-3:    #23232A;   /* raised card */
  --line:       rgba(234,238,238,.11);  /* neutral hairline */
  --evergreen:  #0F0F12;   /* darkest sections */
  --evergreen-2:#16161A;
  --ink:        #ECE8E1;   /* primary text (light) */
  --ink-soft:   #97969C;   /* muted text */
  --cream:      #F1EDE6;
  --cream-soft: #97938B;

  /* accent (tweakable) — teal aurora (copper kept as a metallic touch) */
  --accent:      #36B3A4;
  --accent-deep: #2A8E83;
  --accent-on:   #0E1413;
  --copper:      #C68A6A;

  /* signature teal aurora gradient */
  --teal-1: #6FD0C8;
  --teal-2: #A8E6CF;
  --peri:   #93B7E2;
  --dusk: linear-gradient(150deg, var(--teal-2) 0%, var(--teal-1) 50%, var(--peri) 100%);
  --pine: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L12 22'/%3E%3Cpath d='M12 6C12 6 8 8 6 12'/%3E%3Cpath d='M12 6C12 6 16 8 18 12'/%3E%3Cpath d='M12 10C12 10 9 11.5 7.5 15'/%3E%3Cpath d='M12 10C12 10 15 11.5 16.5 15'/%3E%3Cpath d='M12 14C12 14 10 15 9 18'/%3E%3Cpath d='M12 14C12 14 14 15 15 18'/%3E%3C/svg%3E");

  /* type */
  --serif: "Spectral", Georgia, serif;
  --sans:  "Hanken Grotesk", system-ui, sans-serif;

  --maxw: 1280px;
  --pad: clamp(1.25rem, 5vw, 4.5rem);

  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--stone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { margin: 0; font-weight: 400; }

::selection { background: var(--accent); color: var(--accent-on); }

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.4rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 1.8rem; height: 1px;
  background: var(--accent);
  opacity: .8;
}
.eyebrow.center { justify-content: center; }

.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}

h2.display { font-size: clamp(2.1rem, 4.4vw, 3.6rem); }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46ch;
  text-wrap: pretty;
}

.section {
  padding-block: clamp(4.5rem, 10vw, 9rem);
}
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- buttons ---------- */
.btn {
  --bg: var(--accent);
  --fg: var(--accent-on);
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 1.05rem 1.9rem;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bg);
  border-radius: 2px;
  cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease),
              transform .4s var(--ease), box-shadow .4s var(--ease);
}
.btn .arr { transition: transform .4s var(--ease); }
.btn:hover { background: var(--accent-deep); border-color: var(--accent-deep);
  transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(35,36,31,.55); }
.btn:hover .arr { transform: translateX(4px); }

.btn.ghost {
  --bg: transparent; --fg: var(--cream);
  border-color: rgba(245,242,237,.5);
}
.btn.ghost:hover { background: rgba(245,242,237,.08); border-color: var(--cream);
  transform: translateY(-2px); box-shadow: none; }

.btn.ink { --bg: var(--evergreen); --fg: var(--cream); }
.btn.ink:hover { background: #15161a; border-color: #15161a; }

.cta-block { display: flex; flex-direction: column; gap: .85rem; }
.cta-row { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.micro {
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: .5rem;
}
.micro::before { content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); display: inline-block; }
.on-dark .micro { color: var(--cream-soft); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(1.1rem,2vw,1.7rem) var(--pad);
  transition: background .45s var(--ease), padding .45s var(--ease),
              box-shadow .45s var(--ease), border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--stone) 88%, transparent);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  padding-block: .85rem;
  border-color: var(--line);
}
.nav::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 230%;
  z-index: -1; pointer-events: none; opacity: 1; transition: opacity .45s var(--ease);
  background: linear-gradient(to bottom, rgba(12,13,17,.74), rgba(12,13,17,0)); }
.nav.scrolled::before { opacity: 0; }
.nav__links a { text-shadow: 0 1px 10px rgba(0,0,0,.5); }
.nav.scrolled .nav__links a { text-shadow: none; }
.nav.scrolled .nav__links .btn { text-shadow: none; }
.nav__logo { height: 54px; transition: height .45s var(--ease), opacity .35s;
  filter: drop-shadow(0 2px 11px rgba(0,0,0,.55)); }
.nav.scrolled .nav__logo { height: 44px; filter: none; }
.nav__logo--light { display: block; }
.nav__logo--dark  { display: none; }

.nav__links { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.4rem); }
.nav__links a {
  font-size: .9rem; font-weight: 500; letter-spacing: .02em; white-space: nowrap;
  color: var(--cream); position: relative; padding-block: .3rem;
  transition: color .35s;
}
.nav.scrolled .nav__links a { color: var(--ink); }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--accent); transition: width .4s var(--ease);
}
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__links .btn { padding: .7rem 1.3rem; font-size: .85rem; }

.nav__burger { display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; position: relative; }
.nav__burger span { position: absolute; left: 10px; height: 2px; width: 24px;
  background: var(--cream); transition: .4s var(--ease); }
.nav.scrolled .nav__burger span { background: var(--ink); }
.nav__burger span:nth-child(1){ top: 17px; } .nav__burger span:nth-child(2){ top: 22px; }
.nav__burger span:nth-child(3){ top: 27px; }

/* mobile sheet */
.mobile-menu {
  position: fixed; inset: 0; z-index: 70; background: var(--evergreen);
  display: flex; flex-direction: column; justify-content: center; gap: 1.4rem;
  padding: var(--pad);
  transform: translateY(-100%); transition: transform .6s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: 2rem; color: var(--cream); }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .close { position: absolute; top: 1.7rem; right: var(--pad);
  background: none; border: 0; color: var(--cream); font-size: 2rem; cursor: pointer; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  overflow: hidden; color: var(--cream); }
.hero__media { position: absolute; inset: -8% 0 -8% 0; z-index: 0; will-change: transform; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(15,16,20,.94) 0%, rgba(15,16,20,.50) 42%, rgba(15,16,20,.20) 74%),
    linear-gradient(to right, rgba(15,16,20,.86) 0%, rgba(15,16,20,.48) 44%, rgba(15,16,20,.06) 78%);
}
.hero__glow { position: absolute; inset: 0 0 auto 0; height: 52%; z-index: 1;
  background: var(--dusk); opacity: .34; mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent);
  mask-image: linear-gradient(to bottom, #000, transparent); pointer-events: none; }
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__content { max-width: 60ch; padding-bottom: clamp(3rem, 7vh, 5.5rem);
  padding-top: 7rem; }
.hero__loc { display: block; font-size: .78rem; letter-spacing: .19em; text-transform: uppercase;
  color: var(--cream); opacity: .92; margin-bottom: 1.7rem; font-weight: 500; }
.hero__loc b { color: var(--cream); font-weight: 700; }
.hero h1 { font-family: var(--serif); font-weight: 360;
  font-size: clamp(2.4rem, 5vw, 4.3rem); line-height: 1.07; letter-spacing: -0.02em;
  text-wrap: balance; max-width: 15ch; }
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 360; }
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.6;
  color: #E9E3D6; max-width: 48ch; margin: 2.9rem 0 2.6rem; text-wrap: pretty; }
.hero__scroll { position: absolute; right: var(--pad); bottom: 2.2rem; z-index: 2;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cream-soft);
  display: flex; align-items: center; gap: .7rem; writing-mode: vertical-rl; }
.hero__scroll::after { content: ""; width: 1px; height: 46px;
  background: linear-gradient(var(--cream-soft), transparent); }

/* ============================================================
   LAUNCH BANNER
   ============================================================ */
.banner { background: var(--dusk); color: #103330; }
.banner__in { display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; padding-block: 1.5rem; flex-wrap: wrap; }
.banner__l { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.tag { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; color: var(--accent-on); background: var(--accent);
  padding: .45rem .8rem; border-radius: 2px; white-space: nowrap; }
.banner__txt { font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 360; letter-spacing: -.01em; }
.banner__txt b { color: #0C3B37; font-weight: 600; font-style: italic; }
.banner__date { font-size: .82rem; letter-spacing: .06em; color: rgba(16,40,38,.72); white-space: nowrap; }

/* ============================================================
   PILLARS
   ============================================================ */
.pillars { background: var(--stone); border-bottom: 1px solid var(--line); }
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  padding-block: clamp(2.5rem, 5vw, 4rem); }
.pillar { padding: .5rem clamp(1rem,3vw,2.6rem); }
.pillar:not(:last-child) { border-right: 1px solid var(--line); }
.pillar__n { font-family: var(--serif); font-size: 1rem; color: var(--accent);
  letter-spacing: .1em; }
.pillar h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
  margin: .7rem 0 .5rem; letter-spacing: -.01em; }
.pillar p { margin: 0; font-size: .98rem; color: var(--ink-soft); line-height: 1.55; }

/* ============================================================
   PAIN POINTS
   ============================================================ */
.pain { background: var(--stone); }
.pain__head { max-width: 60ch; margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.pain__head h2 { max-width: 20ch; margin-bottom: 1.4rem; }
.pain__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); }
.pcard { background: var(--stone); padding: clamp(1.6rem,2.6vw,2.4rem);
  display: flex; flex-direction: column; justify-content: flex-start; min-height: 300px;
  transition: background .5s var(--ease), transform .5s var(--ease); position: relative; }
.pcard::before { content: ""; position: absolute; top: 0; left: 0; height: 2px; width: 0;
  background: var(--accent); transition: width .55s var(--ease); }
.pcard:hover { background: var(--stone-3); transform: translateY(-4px); }
.pcard:hover::before { width: 100%; }
.pcard__pines { display: flex; align-items: flex-end; gap: 6px; margin-bottom: 1.6rem; }
.pine { width: 20px; height: 26px; flex: none; background: var(--accent);
  -webkit-mask: var(--pine) no-repeat center / contain;
          mask: var(--pine) no-repeat center / contain;
  transition: background .5s var(--ease); }
.pcard:hover .pine { background: var(--teal-1); }
.pcard h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
  letter-spacing: -.01em; margin: 0 0 .8rem; }
.pcard p { margin: 0; font-size: .96rem; color: var(--ink-soft); line-height: 1.55; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--stone-2); }
.how__grid { display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.how__head h2 { max-width: 14ch; margin-bottom: 1.4rem; }
.how__head p { color: var(--ink-soft); max-width: 42ch; margin: 0 0 2.6rem; }
.steps { list-style: none; margin: 0; padding: 0; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.3rem;
  padding: 1.4rem 0; border-top: 1px solid var(--line); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step__n { font-family: var(--serif); font-size: 1rem; color: var(--accent);
  padding-top: .2rem; letter-spacing: .08em; }
.step h3 { font-size: 1.12rem; font-weight: 600; font-family: var(--sans);
  margin: 0 0 .3rem; letter-spacing: .005em; }
.step p { margin: 0; font-size: .95rem; color: var(--ink-soft); }
.how__media { position: relative; }
.how__media img { width: 100%; height: 100%; min-height: 420px; object-fit: cover;
  border-radius: 2px; }
.how__cap { position: absolute; left: 1.3rem; bottom: 1.3rem; right: 1.3rem;
  color: var(--cream); font-size: .82rem; letter-spacing: .04em;
  text-shadow: 0 1px 14px rgba(0,0,0,.5); }

/* ============================================================
   FOUNDER (dark)
   ============================================================ */
.founder { background: var(--evergreen); color: var(--cream); }
.founder__grid { display: grid; grid-template-columns: .85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.founder__photo { position: relative; }
.founder__photo img { width: 100%; border-radius: 2px; aspect-ratio: 3/3.6;
  object-fit: cover; object-position: center 30%; }
.founder__photo figcaption { font-size: .8rem; letter-spacing: .05em;
  color: var(--cream-soft); margin-top: .9rem; }
.founder__photo figcaption b { color: var(--accent); font-weight: 600; }
.founder__body h2 { color: var(--cream); max-width: 18ch; margin-bottom: 1.6rem; }
.founder__body p { color: #DAD4C6; max-width: 52ch; margin: 0 0 1.3rem;
  font-size: 1.04rem; line-height: 1.62; }
.founder__body .eyebrow { color: var(--accent); }
.founder__sign { margin-top: 2.2rem; display: flex; flex-direction: column;
  align-items: flex-start; gap: .3rem; }
.founder__sign .name { font-family: var(--serif); font-style: italic; font-size: 2rem;
  color: var(--cream); line-height: 1; white-space: nowrap; }
.founder__sign .role { font-size: .85rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream-soft); }
.creds { margin-top: 2.4rem; }
.creds__label { display: block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem; }
.creds__row { display: flex; align-items: center; gap: clamp(1.3rem, 3vw, 2.4rem);
  flex-wrap: wrap; }
.cred { color: var(--cream); opacity: .9; font-weight: 700; font-size: 1.4rem;
  letter-spacing: .01em; line-height: 1; display: inline-flex; align-items: center; }
.cred--mit { width: 43px; height: 24px; background: var(--cream); opacity: .9;
  -webkit-mask: url("assets/mit-mark.png") no-repeat left center / contain;
          mask: url("assets/mit-mark.png") no-repeat left center / contain; }
.cred--meta { width: 99px; height: 20px; background: var(--cream); opacity: .9;
  -webkit-mask: url("assets/meta-logo.webp") no-repeat left center / contain;
          mask: url("assets/meta-logo.webp") no-repeat left center / contain; }
.cred--uber { font-weight: 700; letter-spacing: -.02em; font-size: 1.35rem;
  font-family: "Helvetica Neue", Arial, var(--sans); }
.cred__sep { width: 1px; height: 20px; background: var(--line); }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--stone); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border-block: 1px solid var(--line); }
.stat { background: var(--stone); padding: clamp(2rem,4vw,3.2rem) clamp(1rem,2.5vw,2rem);
  text-align: center; }
.stat__n { font-family: var(--serif); font-weight: 360; line-height: 1;
  font-size: clamp(3rem, 5.5vw, 5rem); letter-spacing: -.02em; color: var(--ink); }
.stat__n .suf { color: var(--accent); }
.stat__l { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 1rem; line-height: 1.4; }

/* ============================================================
   EXPLORE
   ============================================================ */
.explore { background: var(--stone-2); }
.explore__head { display: flex; justify-content: space-between; align-items: flex-end;
  gap: 2rem; margin-bottom: clamp(2.4rem,4vw,3.4rem); flex-wrap: wrap; }
.explore__head h2 { max-width: 16ch; }
.ex-grid { display: grid; grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto); gap: 1.2rem; }
.ex-card { position: relative; overflow: hidden; border-radius: 2px;
  background: var(--stone-3); border: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(1.5rem,2.4vw,2.1rem); min-height: 280px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.ex-card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -28px rgba(35,36,31,.45); }
.ex-card h3 { font-family: var(--serif); font-size: clamp(1.4rem,2vw,1.9rem);
  font-weight: 400; letter-spacing: -.01em; max-width: 16ch; }
.ex-card p { font-size: .95rem; color: var(--ink-soft); margin: .7rem 0 0; max-width: 40ch; }
.ex-card .go { font-size: .82rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); display: inline-flex; gap: .5rem;
  align-items: center; margin-top: 1.6rem; }
.ex-card .go .arr { transition: transform .4s var(--ease); }
.ex-card:hover .go .arr { transform: translateX(5px); }
/* image cards */
.ex-card.img { color: var(--cream); border: 0; min-height: 280px; justify-content: flex-end; }
.ex-card.img .ex-bg { position: absolute; inset: 0; z-index: 0; }
.ex-card.img .ex-bg img { width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease); }
.ex-card.img:hover .ex-bg img { transform: scale(1.06); }
.ex-card.img .ex-bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,16,20,.88), rgba(15,16,20,.15) 70%); }
.ex-card.img > * { position: relative; z-index: 1; }
.ex-card.img h3 { color: var(--cream); }
.ex-card.img p { color: #E4DECF; }
.ex-card.img .go { color: var(--cream); }

.ex-card.span3 { grid-column: span 3; }
.ex-card.span2 { grid-column: span 2; }

/* ============================================================
   SERVICES & PRICING
   ============================================================ */
.services { background: var(--stone); }
.services__head { max-width: 62ch; margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.services__head h2 { margin-bottom: 1.2rem; }
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; align-items: stretch; }
.svc-side { display: flex; flex-direction: column; gap: 1.2rem; }
.svc-side .svc-card { flex: 1; }
.svc-card { background: var(--stone-3); border: 1px solid var(--line);
  padding: clamp(1.7rem, 2.8vw, 2.6rem); display: flex; flex-direction: column;
  transition: border-color .5s var(--ease), transform .5s var(--ease); }
.svc-card:hover { border-color: rgba(111,208,200,.45); transform: translateY(-3px); }
.svc-phase { font-size: .7rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--teal-1); font-weight: 600; margin-bottom: .9rem; }
.svc-phase--copper { color: var(--copper); }
.svc-card h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -.01em;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin-bottom: .8rem; }
.svc-desc { color: var(--ink-soft); font-size: .98rem; margin: 0 0 1.4rem; }
.svc-list { list-style: none; margin: 0 0 1.6rem; padding: 0; }
.svc-list li { font-size: .92rem; color: var(--ink); opacity: .92;
  padding: .42rem 0 .42rem 1.8rem; position: relative; line-height: 1.45; }
.svc-list li::before { content: ""; position: absolute; left: 0; top: .46rem;
  width: 14px; height: 15px; background: var(--teal-1);
  -webkit-mask: var(--pine) no-repeat center / contain;
          mask: var(--pine) no-repeat center / contain; }
.svc-addon { margin: 0 0 1.6rem; padding: 1.4rem; border: 1px solid var(--line);
  background: rgba(255,255,255,.02); }
.svc-addon h4 { font-family: var(--serif); font-weight: 400; font-size: 1.3rem;
  margin: 0 0 .5rem; color: var(--ink); }
.svc-addon p { font-size: .9rem; color: var(--ink-soft); margin: 0 0 .9rem; }
.svc-brands { font-size: .78rem; letter-spacing: .02em; color: var(--cream-soft);
  line-height: 1.95; margin: 0 0 1rem; }
.svc-addon__price, .svc-price { display: flex; justify-content: space-between;
  align-items: baseline; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-soft); }
.svc-addon__price { font-size: .72rem; padding-top: .9rem; border-top: 1px solid var(--line); }
.svc-addon__price strong { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); text-transform: none; }
.svc-price { font-size: .76rem; padding: 1.2rem 0; border-top: 1px solid var(--line);
  margin-top: auto; margin-bottom: 1.4rem; }
.svc-price strong { font-family: var(--serif); font-size: 2rem; color: var(--ink);
  letter-spacing: -.01em; text-transform: none; }
.svc-card .btn { align-self: flex-start; }

.svc-bundle { position: relative; overflow: hidden; margin-top: 1.2rem;
  background: var(--evergreen); border: 1px solid var(--line);
  padding: clamp(2.2rem, 4vw, 3.4rem); display: flex; flex-direction: column; gap: 1.6rem; }
.svc-bundle::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(85% 130% at 100% 0%, rgba(111,208,200,.18), transparent 55%); }
.svc-bundle > * { position: relative; z-index: 1; }
.svc-bundle__label { font-size: .7rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--copper); font-weight: 600; display: block; margin-bottom: .8rem; }
.svc-bundle__text h3 { font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: .6rem; color: var(--cream); }
.svc-bundle__text > p { color: var(--ink-soft); margin: 0 0 1.2rem; max-width: 50ch; }
.svc-bundle__checks { list-style: none; margin: 0; padding: 0; display: flex;
  flex-wrap: wrap; gap: .55rem 1.6rem; }
.svc-bundle__checks li { font-size: .85rem; color: var(--cream-soft);
  padding-left: 1.5rem; position: relative; }
.svc-bundle__checks li::before { content: ""; position: absolute; left: 0; top: .05rem;
  width: 13px; height: 14px; background: var(--teal-1);
  -webkit-mask: var(--pine) no-repeat center / contain; mask: var(--pine) no-repeat center / contain; }
.svc-bundle__right { display: flex; flex-direction: column; align-items: flex-start; }
.svc-bundle__price { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1; color: var(--cream); }
.svc-bundle__price small { display: block; font-family: var(--sans); font-size: .7rem;
  letter-spacing: .26em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .4rem; }
.svc-bundle__save { font-size: .76rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--copper); margin: .8rem 0 1.4rem; font-weight: 600; }
@media (min-width: 900px) {
  .svc-grid { grid-template-columns: 1.12fr .88fr; }
  .svc-bundle { flex-direction: row; align-items: center; justify-content: space-between; }
  .svc-bundle__right { align-items: flex-end; text-align: right; min-width: 220px; }
}

/* ============================================================
   BRAND BAND (teal dusk · copper mark)
   ============================================================ */
.brand-band { position: relative; background: var(--evergreen); color: var(--cream);
  text-align: center; overflow: hidden; }
.brand-band::before { content: ""; position: absolute; left: 50%; top: 60%;
  transform: translate(-50%,-50%); width: 130%; height: 240%;
  background: var(--dusk); opacity: .28; filter: blur(46px); pointer-events: none; }
.brand-band::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 118%, rgba(111,208,200,.30), transparent 62%);
  pointer-events: none; }
.brand-band__in { position: relative; z-index: 1;
  padding-block: clamp(3.5rem, 7vw, 6rem);
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.brand-band__rule { width: 1px; height: 46px;
  background: linear-gradient(var(--accent), transparent); }
.brand-band img { height: clamp(64px, 8vw, 92px); width: auto; }
.brand-band .script { font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.3rem); color: var(--cream); letter-spacing: .01em; }
.brand-band .tagline { font-size: .76rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--cream-soft); }
.brand-band .tagline b { color: var(--accent); font-weight: 600; }

/* collapsible furnishing add-on */
.svc-addon summary { list-style: none; cursor: pointer; display: flex;
  align-items: flex-start; justify-content: space-between; gap: 1rem; }
.svc-addon summary::-webkit-details-marker { display: none; }
.svc-addon__head { display: flex; flex-direction: column; }
.svc-addon__head .svc-phase { margin-bottom: .35rem; }
.svc-addon__head h4 { margin: 0; }
.svc-addon__toggle { color: var(--copper); font-size: 1.6rem; line-height: 1; font-weight: 300;
  transition: transform .35s var(--ease); }
.svc-addon[open] .svc-addon__toggle { transform: rotate(45deg); }
.svc-addon--link { display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; text-decoration: none; color: inherit; transition: border-color .35s var(--ease); }
.svc-addon--link:hover { border-color: rgba(111,208,200,.5); }
.svc-addon--link .svc-addon__toggle { transition: transform .35s var(--ease); }
.svc-addon--link:hover .svc-addon__toggle { transform: translateX(5px); }
.svc-addon--link p { font-size: .9rem; color: var(--ink-soft); margin: .5rem 0 0; }
.svc-addon__body { padding-top: 1.1rem; }
.svc-addon__body > p:first-child { margin-top: 0; }

/* pine treeline (brand band) */
.brand-band__trees { position: absolute; left: 0; right: 0; bottom: 0; height: 150px; z-index: 0;
  background: url("assets/treeline.png") repeat-x bottom center / auto 100%; opacity: .2;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent); }

/* ============================================================
   FINAL CTA (dark image)
   ============================================================ */
.final { position: relative; color: var(--cream); overflow: hidden; }
.final__media { position: absolute; inset: 0; z-index: 0; }
.final__media img { width: 100%; height: 100%; object-fit: cover; }
.final__media::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,16,20,.94), rgba(15,16,20,.62) 60%, rgba(15,16,20,.42)); }
.final__in { position: relative; z-index: 1; padding-block: clamp(5rem,11vw,9rem); }
.final h2 { color: var(--cream); max-width: 16ch; margin-bottom: 1.4rem; }
.final p { color: #E4DECF; max-width: 46ch; font-size: 1.1rem; margin: 0 0 2.4rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #121317; color: var(--cream-soft); position: relative; overflow: hidden; }
.footer .wrap { position: relative; z-index: 1; }
.footer__mark { position: absolute; right: -8px; bottom: -18px; width: 220px; height: 290px;
  z-index: 0; background: url("assets/pine-cluster.png") no-repeat center / contain;
  opacity: .06; pointer-events: none; }
.footer__social { display: flex; gap: .7rem; margin-top: 1rem; }
.footer__social a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; color: var(--cream-soft);
  transition: color .3s, border-color .3s, background .3s; }
.footer__social a:hover { color: var(--accent); border-color: var(--accent);
  background: rgba(198,138,106,.08); }
.footer__social svg { width: 18px; height: 18px; fill: currentColor; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem;
  padding-block: clamp(3.5rem,6vw,5rem); }
.footer__brand img { height: 46px; margin-bottom: 1.4rem; }
.footer__brand p { max-width: 34ch; font-size: .92rem; line-height: 1.6; color: var(--cream-soft); }
.footer h4 { font-size: .76rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 1.2rem; font-weight: 600; }
.footer__col a { display: block; color: var(--cream); font-size: .96rem; padding: .35rem 0;
  transition: color .3s; }
.footer__col a:hover { color: var(--accent); }
.footer__bar { border-top: 1px solid rgba(245,242,237,.12); padding-block: 1.6rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem; letter-spacing: .03em; }
.footer__credit { text-align: center; font-size: .8rem; color: var(--cream-soft);
  margin: 0; padding: 1.3rem 0 .2rem; border-top: 1px solid rgba(245,242,237,.08); }
.footer__credit a { color: var(--accent); }
.footer__credit a:hover { text-decoration: underline; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .08s; }
.reveal[data-d="2"]{ transition-delay: .16s; }
.reveal[data-d="3"]{ transition-delay: .24s; }
.reveal[data-d="4"]{ transition-delay: .32s; }

/* ============================================================
   SUB-PAGES (FAQ / Partner / Furnishing)
   ============================================================ */
.page-top { padding-top: clamp(116px, 15vh, 166px); }
.page-hero { text-align: center; max-width: 760px; margin: 0 auto clamp(2.6rem,5vw,4rem); }
.page-hero h1 { font-size: clamp(2.3rem, 4.4vw, 3.6rem); }
.page-hero p { color: var(--ink-soft); margin: 1.2rem auto 0; max-width: 58ch;
  font-size: 1.08rem; line-height: 1.7; }

.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q { font-family: var(--serif); font-weight: 400; font-size: clamp(1.15rem,2vw,1.5rem);
  color: var(--ink); padding: 1.5rem 0; display: flex; justify-content: space-between;
  align-items: flex-start; gap: 1.5rem; cursor: pointer; user-select: none; transition: color .3s; }
.faq-q:hover { color: var(--accent); }
.faq-icon { width: 16px; height: 16px; flex: none; margin-top: .5rem; position: relative; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--accent);
  transition: transform .3s var(--ease); }
.faq-icon::before { width: 16px; height: 1.5px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-icon::after { width: 1.5px; height: 16px; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) rotate(90deg); }
.faq-a { font-size: 1rem; line-height: 1.8; color: var(--ink-soft); max-width: 720px;
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height .4s var(--ease), padding .4s var(--ease), opacity .3s; }
.faq-item.open .faq-a { max-height: 480px; padding-bottom: 1.6rem; opacity: 1; }

.savings { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line);
  border-block: 1px solid var(--line); margin: 0 auto clamp(2.6rem,5vw,4rem); }
.savings .stat { background: var(--stone); }
@media (max-width: 560px) { .savings { grid-template-columns: 1fr; } }

.brands-group { margin-bottom: 2.6rem; }
.brands-group__head { display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.brands-group__head h3 { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600; font-family: var(--sans); }
.brands-group__note { font-size: .78rem; color: var(--accent); letter-spacing: .05em;
  text-transform: uppercase; font-weight: 600; }
.brand-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(148px,1fr));
  gap: 1px; background: var(--stone); border: 1px solid var(--stone); }
.brand-cell { background: var(--stone-2); min-height: 92px; padding: 1.1rem; display: flex;
  align-items: center; justify-content: center; text-align: center; color: var(--ink);
  font-family: var(--serif); font-weight: 400; font-size: 1.12rem; letter-spacing: .015em;
  line-height: 1.25; opacity: .9; transition: background .3s, color .3s, opacity .3s; }
.brand-cell:hover { background: var(--stone-3); color: var(--accent); opacity: 1; }

/* refined per-brand wordmark accents on the furnishing page */
.brand-cell--caps { font-family: var(--sans); font-weight: 600; font-size: .9rem;
  letter-spacing: .2em; text-transform: uppercase; }
.brand-cell--display { font-family: var(--sans); font-weight: 700; font-size: 1.3rem; letter-spacing: -.02em; }
.brand-cell--mono { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; letter-spacing: .12em; }
.brand-cell--italic { font-style: italic; }

.closer { text-align: center; }
.closer__inner { max-width: 720px; margin: 0 auto; }
.closer__inner h2 { font-size: clamp(2rem, 3.8vw, 3rem); margin: .4rem 0 0; }
.closer__inner p { color: var(--ink-soft); margin: 1.1rem auto 0; max-width: 50ch;
  font-size: 1.06rem; line-height: 1.7; }
.cta-row.center { justify-content: center; margin-top: clamp(1.8rem, 3vw, 2.4rem); }

.partner-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem;
  margin-bottom: clamp(3rem,5vw,4rem); }
@media (min-width: 760px) { .partner-grid { grid-template-columns: repeat(3,1fr); } }
.partner-card { background: var(--stone-3); border: 1px solid var(--line); padding: 2rem 1.8rem; }
.partner-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; margin-bottom: .6rem; }
.partner-card p { color: var(--ink-soft); font-size: .96rem; line-height: 1.7; }
.partner-feature { display: flex; justify-content: space-between; align-items: center; gap: 1.4rem;
  flex-wrap: wrap; background: var(--stone-3); border: 1px solid var(--line); border-radius: 2px;
  padding: clamp(1.6rem, 3vw, 2.4rem); text-decoration: none;
  transition: border-color .35s var(--ease), transform .45s var(--ease); }
.partner-feature:hover { border-color: rgba(111,208,200,.45); transform: translateY(-3px); }
.partner-feature__l { max-width: 54ch; }
.partner-feature .badge { display: inline-block; font-size: .64rem; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 600; color: var(--accent);
  border: 1px solid rgba(111,208,200,.3); border-radius: 2px; padding: .3rem .6rem; margin-bottom: .9rem; }
.partner-feature h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem,2.4vw,2rem);
  margin-bottom: .5rem; color: var(--ink); }
.partner-feature p { color: var(--ink-soft); margin: 0; font-size: .98rem; line-height: 1.7; }
.partner-feature .visit { font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap; }
.partner-feature .visit .arr { transition: transform .4s var(--ease); }
.partner-feature:hover .visit .arr { transform: translateX(5px); }
.partner-net { display: flex; flex-direction: column; gap: clamp(1rem, 2vw, 1.3rem);
  margin-top: clamp(2rem, 4vw, 3rem); }
.partner-net .partner-feature { margin: 0; }
.partner-tags { display: flex; gap: .55rem; align-items: center; flex-wrap: wrap; margin-bottom: .8rem; }
.partner-tags .badge { margin-bottom: 0; }
.partner-cat { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  color: var(--ink-soft); }

.note-band { border: 1px solid var(--line); background: rgba(255,255,255,.02);
  padding: clamp(1.6rem,3vw,2.4rem); text-align: center; max-width: 720px;
  margin: clamp(2rem,4vw,3rem) auto 0; border-radius: 2px; }
.note-band h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem,2.4vw,1.9rem);
  margin-bottom: .7rem; }
.note-band p { color: var(--ink-soft); margin: 0 auto 1.4rem; max-width: 48ch; }

/* ============================================================
   SERVICES — 3-up equal cards (V2)
   ============================================================ */
.svc-grid--3 { grid-template-columns: 1fr; gap: 1.2rem; }
.svc-grid--3 .svc-card { height: 100%; }
.svc-card--lead { position: relative; border-color: rgba(111,208,200,.38); }
.svc-card--lead::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: var(--dusk); }
@media (min-width: 880px) {
  .svc-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   FURNISHING BAND + LOGO WALL (V2)
   ============================================================ */
.furnish { background: var(--evergreen); position: relative; overflow: hidden; }
.furnish::before { content: ""; position: absolute; left: 50%; top: -10%;
  transform: translateX(-50%); width: 120%; height: 60%;
  background: radial-gradient(60% 100% at 50% 0%, rgba(111,208,200,.13), transparent 70%);
  pointer-events: none; }
.furnish .wrap { position: relative; z-index: 1; }
.furnish__head { display: grid; grid-template-columns: 1fr; gap: 1.4rem;
  align-items: end; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.furnish__head h2 { color: var(--cream); max-width: 18ch; }
.furnish__head .lede { color: #C9C4BA; }
@media (min-width: 900px) {
  .furnish__head { grid-template-columns: 1.1fr .9fr; gap: 3rem; }
}
.furnish .savings { margin-top: 0; margin-bottom: clamp(2.4rem, 4vw, 3.4rem); }
.furnish .savings .stat { background: var(--evergreen-2); }
.furnish__cta { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap;
  margin-top: clamp(2.2rem, 4vw, 3rem); padding-top: clamp(2rem, 3vw, 2.6rem);
  border-top: 1px solid var(--line); }
.furnish__cta p { margin: 0; color: var(--ink-soft); font-size: .98rem; max-width: 40ch; }

.logo-wall__label { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin: 0 0 1.2rem; display: flex;
  align-items: center; gap: .7rem; }
.logo-wall__label::before { content: ""; width: 1.8rem; height: 1px; background: var(--accent); opacity: .8; }
.logo-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(176px, 1fr));
  gap: 1px; background: var(--evergreen); border: 1px solid var(--evergreen); border-radius: 2px;
  overflow: hidden; }
.logo-cell { background: var(--evergreen-2); min-height: 104px; padding: 1.4rem 1rem;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--cream); transition: background .4s var(--ease), color .4s var(--ease); }
.logo-cell:hover { background: var(--stone-3); }
a.logo-cell { text-decoration: none; }
.review { background: var(--stone-3); border: 1px solid var(--line); border-radius: 2px;
  padding: 1.8rem 1.6rem; margin: 0; display: flex; flex-direction: column; gap: .9rem; }
.review__stars { color: var(--accent); letter-spacing: .15em; font-size: .9rem; }
.review p { color: var(--ink); font-family: var(--serif); font-size: 1.12rem; line-height: 1.6;
  font-style: italic; margin: 0; }
.review__by { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-1); font-weight: 600; margin-top: auto; }
.cardgrid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
@media (min-width: 660px) { .cardgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .cardgrid--3 { grid-template-columns: repeat(3, 1fr); } }
.pcard { background: var(--stone-3); border: 1px solid var(--line); border-radius: 2px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.pcard:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(0,0,0,.6); }
.pcard__img, .pcard image-slot { width: 100%; aspect-ratio: 4/3; display: block; }
.pcard__body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.pcard__loc { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-1); font-weight: 600; }
.pcard__body h3 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; letter-spacing: -.01em; }
.pcard__body p { color: var(--ink-soft); font-size: .94rem; line-height: 1.6; }
.pcard__meta { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: auto; padding-top: .8rem; }
.pcard__price { color: var(--accent); font-weight: 600; letter-spacing: .02em; }
.pcard__buy { font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: .4rem; text-decoration: none; white-space: nowrap; }
.pcard__buy:hover { color: var(--accent-deep); }
.logo { line-height: 1.05; display: inline-block; opacity: .82; color: var(--cream);
  transition: opacity .4s var(--ease), color .4s var(--ease); }
.logo-cell:hover .logo { opacity: 1; color: var(--cream); }
.logo small { display: block; font-size: .52em; letter-spacing: .18em; opacity: .7;
  margin-top: .25em; text-transform: uppercase; }
/* logo styles */
.logo--serif { font-family: var(--serif); font-weight: 400; font-size: 1.4rem;
  letter-spacing: .005em; }
.logo--serif-i { font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 1.42rem; }
.logo--caps { font-family: var(--sans); font-weight: 600; font-size: .92rem;
  letter-spacing: .26em; text-transform: uppercase; }
.logo--caps-thin { font-family: var(--sans); font-weight: 400; font-size: .84rem;
  letter-spacing: .34em; text-transform: uppercase; }
.logo--display { font-family: var(--sans); font-weight: 700; font-size: 1.55rem;
  letter-spacing: -.02em; }
.logo--mono { font-family: var(--serif); font-weight: 500; font-size: 1.9rem;
  letter-spacing: .14em; }
.logo--more { font-family: var(--sans); font-weight: 600; font-size: .82rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--accent); opacity: 1; }
.logo-cell .wm { color: var(--cream); opacity: .9; line-height: 1.1; display: inline-block;
  transition: opacity .4s var(--ease); }
.logo-cell:hover .wm { opacity: 1; }
.partner-feature h3 .pf-domain { display: block; }
@media (max-width: 480px) {
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .logo-cell { min-height: 92px; }
}

/* ============================================================
   PORTFOLIO (V2)
   ============================================================ */
.pf-filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
  margin-bottom: clamp(2.4rem, 4vw, 3.4rem); }
.pf-filter { font-family: var(--sans); font-size: .76rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft);
  background: transparent; border: 1px solid var(--line); border-radius: 2px;
  padding: .7rem 1.2rem; cursor: pointer; transition: all .35s var(--ease); }
.pf-filter:hover { color: var(--ink); border-color: rgba(111,208,200,.45); }
.pf-filter.active { color: var(--accent-on); background: var(--accent); border-color: var(--accent); }

/* before/after slider */
.ba { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden;
  border-radius: 2px; border: 1px solid var(--line); cursor: ew-resize; user-select: none;
  background: var(--stone-3); }
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba__img img { width: 100%; height: 100%; object-fit: cover; }
.ba__after { z-index: 1; }
.ba__before { z-index: 2; width: 50%; overflow: hidden; border-right: 2px solid var(--cream); }
.ba__before img { position: absolute; top: 0; left: 0; width: auto; max-width: none; height: 100%; object-fit: cover; }
.ba__tag { position: absolute; top: 1rem; z-index: 4; font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 600; padding: .4rem .8rem; border-radius: 2px;
  color: var(--cream); background: rgba(15,16,20,.62); -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px); }
.ba__tag--before { left: 1rem; }
.ba__tag--after { right: 1rem; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; z-index: 3;
  background: var(--cream); transform: translateX(-1px); pointer-events: none; }
.ba__knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 4;
  width: 46px; height: 46px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center; pointer-events: none;
  box-shadow: 0 6px 22px -6px rgba(0,0,0,.6); }
.ba__knob::before, .ba__knob::after { content: ""; position: absolute; width: 0; height: 0;
  border-block: 5px solid transparent; }
.ba__knob::before { border-right: 7px solid var(--stone); left: 11px; }
.ba__knob::after { border-left: 7px solid var(--stone); right: 11px; }
.ba-caption { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  flex-wrap: wrap; margin-top: 1.1rem; }
.ba-caption h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.3rem,2.2vw,1.8rem); }
.ba-caption span { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }

/* two-up before/after sliders */
.ba-duo { display: grid; grid-template-columns: 1fr; gap: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-top: clamp(1.8rem, 3.5vw, 2.6rem); }
@media (min-width: 780px) { .ba-duo { grid-template-columns: 1fr 1fr; } }
.ba-item { margin: 0; }
.ba-cap { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  flex-wrap: wrap; margin-top: .85rem; }
.ba-cap h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.15rem, 2vw, 1.5rem); }
.ba-cap span { font-size: .74rem; letter-spacing: .04em; color: var(--ink-soft); text-align: right; }

/* project grid */
.pf-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.2rem; }
.pf-card { position: relative; overflow: hidden; border-radius: 2px; border: 1px solid var(--line);
  display: block; min-height: 320px; color: var(--cream); grid-column: span 6;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease); }
.pf-card:hover { transform: translateY(-5px); box-shadow: 0 26px 54px -30px rgba(0,0,0,.7); }
.pf-card.span4 { grid-column: span 4; }
.pf-card.span8 { grid-column: span 8; }
.pf-card__media { position: absolute; inset: 0; z-index: 0; }
.pf-card__media img { width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease); }
.pf-card:hover .pf-card__media img { transform: scale(1.06); }
.pf-card__media::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,13,17,.92) 4%, rgba(12,13,17,.18) 56%, rgba(12,13,17,.42)); }
.pf-card__body { position: relative; z-index: 1; height: 100%; display: flex;
  flex-direction: column; justify-content: flex-end; padding: clamp(1.5rem, 2.4vw, 2.2rem); }
.pf-card__loc { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal-1); font-weight: 600; margin-bottom: .7rem; }
.pf-card__body h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -.01em;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem); color: var(--cream); max-width: 18ch; }
.pf-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.pf-tag { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  color: var(--cream); border: 1px solid rgba(241,237,230,.32); border-radius: 2px;
  padding: .32rem .65rem; }
.pf-card.hide { display: none; }
figure.pf-card { margin: 0; }
.pf-card__status { position: absolute; top: 1rem; right: 1rem; z-index: 2; }
.pf-status { display: inline-flex; align-items: center; gap: .45rem; font-size: .62rem;
  letter-spacing: .2em; text-transform: uppercase; font-weight: 700; padding: .36rem .72rem;
  border-radius: 2px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.pf-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pf-status--done { color: var(--teal-1); background: rgba(15,16,20,.5); border: 1px solid rgba(111,208,200,.4); }
.pf-status--wip { color: #E0B488; background: rgba(15,16,20,.5); border: 1px solid rgba(196,149,106,.45); }
.pf-projhead { display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: .9rem 2rem; padding-bottom: 1.4rem; margin-bottom: 1.9rem;
  border-bottom: 1px solid var(--line); }
.pf-projhead__l { display: flex; flex-direction: column; align-items: flex-start; gap: .7rem; }
.pf-projhead h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.01em;
  font-size: clamp(1.8rem, 3vw, 2.6rem); }
.pf-projhead__loc { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal-1); font-weight: 600; }
.pf-projhead__scope { color: var(--ink-soft); font-size: .96rem; max-width: 36ch;
  text-align: right; line-height: 1.65; }
@media (max-width: 620px) { .pf-projhead__scope { text-align: left; } }
.pf-moreproj { margin-top: clamp(2.8rem, 5vw, 4rem); }
.pf-intro { color: var(--ink-soft); max-width: 62ch; margin-top: .5rem; line-height: 1.6; }
@media (max-width: 860px) {
  .pf-card, .pf-card.span4, .pf-card.span8 { grid-column: span 12; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pain__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .pillars__grid { grid-template-columns: 1fr; gap: 0; }
  .pillar { padding: 1.6rem clamp(1rem,3vw,2rem); }
  .pillar:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--line); }
  .how__grid { grid-template-columns: 1fr; }
  .how__media { order: -1; }
  .how__media img { min-height: 320px; }
}
@media (max-width: 760px) {
  body { font-size: 17px; }
  .nav__links { display: none; }
  .founder__grid { grid-template-columns: 1fr; }
  .founder__photo { max-width: 440px; }
  .nav__burger { display: block; }
  .ex-grid { grid-template-columns: 1fr; }
  .ex-card.span3, .ex-card.span2 { grid-column: span 1; }
  .pain__grid { grid-template-columns: 1fr; }
  .banner__in { justify-content: flex-start; }
  .hero__scroll { display: none; }
  .footer__top { grid-template-columns: 1fr; gap: 2.2rem; }
  .partner-feature { flex-direction: column; align-items: flex-start; gap: 1.05rem; }
  .partner-feature .visit { white-space: normal; }
  .furnish__cta { flex-direction: column; align-items: flex-start; gap: 1.1rem; }
  .pf-projhead__scope { text-align: left; }
  .svc-bundle { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
}
@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
