/* ============================================================
   ADV-Reniwood — redesign
   Design system: warm charcoal + paper, copper accent.
   Display: Bricolage Grotesque · Body: Hanken Grotesque
   ============================================================ */

:root {
  /* color — neutral, architectural (not "AI beige") */
  --ink:        #1c1916;
  --ink-2:      #25201a;
  --ink-soft:   #2f291f;
  --paper:      #ffffff;
  --paper-2:    #f3f3f1;
  --cream:      #eceae6;
  --text:       #2a2620;
  --muted:      #6d685e;
  --muted-2:    #8a8478;
  --on-dark:    #f1ece2;
  --on-dark-mut:#aaa195;
  --line:       rgba(28, 25, 20, 0.12);
  --line-2:     rgba(28, 25, 20, 0.06);
  --line-dark:  rgba(241, 236, 226, 0.15);
  --line-dark-2:rgba(241, 236, 226, 0.08);

  /* accent — warm tan, harmonises with the logo's tan (overridden by theme) */
  --accent:      #c1893f;
  --accent-deep: #9c6b29;
  --accent-soft: rgba(193, 137, 63, 0.13);
  --accent-on:   #ffffff;

  /* type */
  --font-display: "Bricolage Grotesque", "Hanken Grotesque", system-ui, sans-serif;
  --font-body: "Hanken Grotesque", system-ui, -apple-system, sans-serif;

  /* spacing / shape */
  --radius: 3px;
  --radius-lg: 5px;
  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 76px);
  --shadow: 0 1px 2px rgba(23,20,14,.06), 0 12px 36px -16px rgba(23,20,14,.22);
  --shadow-lg: 0 30px 80px -40px rgba(23,20,14,.5);

  --hero-overlay: 0.34;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

/* ---------- layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(64px, 9vw, 140px); }
.section--tight { padding-block: clamp(48px, 6vw, 96px); }
.bg-paper { background: var(--paper); }
.bg-paper2 { background: var(--paper-2); }
.bg-ink { background: var(--ink); color: var(--on-dark); }

/* ---------- typography ---------- */
.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: var(--on-dark); }

.h-display { font-size: clamp(2.6rem, 6.5vw, 5.4rem); line-height: 0.98; }
.h1 { font-size: clamp(2.1rem, 4.6vw, 3.7rem); }
.h2 { font-size: clamp(1.8rem, 3.4vw, 2.9rem); }
.h3 { font-size: clamp(1.25rem, 1.8vw, 1.55rem); letter-spacing: -0.01em; }

.lead {
  font-size: clamp(1.08rem, 1.5vw, 1.33rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 60ch;
  text-wrap: pretty;
}
.bg-ink .lead { color: var(--on-dark-mut); }
p { text-wrap: pretty; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: var(--accent-on); }
.btn--primary:hover { background: var(--accent-deep); }
.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.bg-ink .btn--ghost { border-color: var(--line-dark); color: var(--on-dark); }
.bg-ink .btn--ghost:hover { background: var(--on-dark); color: var(--ink); border-color: var(--on-dark); }
.btn--lg { padding: 17px 32px; font-size: 15.5px; }

.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: gap .2s, border-color .2s, color .2s;
}
.link-arrow svg { transition: transform .25s; }
.link-arrow:hover { color: var(--accent); }
.link-arrow:hover svg { transform: translateX(4px); }
.bg-ink .link-arrow { color: var(--on-dark); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background .35s, box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -22px rgba(23,20,14,.5);
}
.brand { display: flex; align-items: center; gap: 13px; color: var(--on-dark); transition: color .35s; }
.site-header.scrolled .brand { color: var(--ink); }
.brand__logo { height: 30px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: var(--radius);
  color: var(--on-dark);
  transition: color .3s, opacity .2s;
  opacity: .92;
  white-space: nowrap;
}
.site-header.scrolled .nav a { color: var(--ink); }
.nav a::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 4px;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s cubic-bezier(.2,.7,.3,1);
  opacity: .7;
}
.nav a:hover { opacity: 1; }
.nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 14.5px; white-space: nowrap;
  color: var(--on-dark); transition: color .35s, opacity .2s; opacity: .92;
}
.site-header.scrolled .header-phone { color: var(--ink); }
.header-phone:hover { opacity: 1; color: var(--accent); }
.header-phone svg { width: 16px; height: 16px; }

.header-cta {
  background: var(--accent); color: var(--accent-on);
  padding: 12px 22px; border-radius: var(--radius);
  font-weight: 600; font-size: 14.5px;
  transition: background .25s, transform .2s;
}
.header-cta:hover { background: var(--accent-deep); }

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  position: relative;
  color: var(--on-dark);
}
.site-header.scrolled .burger { color: var(--ink); border-color: var(--line); background: transparent; }
.burger span {
  position: absolute; left: 12px; right: 12px; height: 1.8px;
  background: currentColor; transition: transform .3s, opacity .2s;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 55;
  background: var(--ink);
  color: var(--on-dark);
  display: flex; flex-direction: column;
  padding: 110px var(--gutter) 48px;
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.7,0,.2,1);
  visibility: hidden;
}
.drawer.open { transform: translateY(0); visibility: visible; }
.drawer a.drawer-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark-2);
  color: var(--on-dark);
}
.drawer a.drawer-link:hover { color: var(--accent); }
.drawer__foot { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px 28px; color: var(--on-dark-mut); font-size: 15px; padding-top: 32px; }
.drawer__foot a:hover { color: var(--accent); }

@media (max-width: 1040px) {
  .nav, .header-phone { display: none; }
  .burger { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--on-dark);
  overflow: hidden;
  background: var(--ink);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero__img {
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}
.hero__preload { position: absolute; width: 0; height: 0; overflow: hidden; opacity: 0; pointer-events: none; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(12,10,7,calc(var(--hero-overlay) + 0.32)) 0%, rgba(12,10,7,calc(var(--hero-overlay) - 0.06)) 42%, rgba(12,10,7,calc(var(--hero-overlay) - 0.18)) 100%),
    linear-gradient(to right, rgba(12,10,7,0.42) 0%, rgba(12,10,7,0) 60%);
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--gutter) clamp(56px, 8vh, 104px);
}
.hero__eyebrow {
  color: #fff;
  opacity: .92;
}
.hero__eyebrow::before { background: var(--accent); }
.hero h1 {
  color: #fff;
  max-width: 16ch;
  margin-bottom: 26px;
  text-shadow: 0 2px 40px rgba(0,0,0,.3);
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: rgba(255,255,255,.86);
  max-width: 52ch;
  margin: 0 0 36px;
  line-height: 1.55;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__meta {
  margin-top: clamp(38px, 6vh, 64px);
  display: flex; flex-wrap: wrap; gap: 14px 30px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: 14px;
  color: rgba(255,255,255,.82);
  font-weight: 500;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 10px; }
.hero__meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.hero__dots {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(56px, 8vh, 104px);
  display: flex; gap: 10px; z-index: 3;
}
.hero__dots button {
  width: 34px; height: 4px; border: none; padding: 0;
  background: rgba(255,255,255,.32);
  border-radius: 2px; transition: background .3s;
}
.hero__dots button.active { background: #fff; }
@media (max-width: 720px){ .hero__dots { display: none; } }

/* entrance */
.reveal-up { opacity: 0; transform: translateY(26px); }
.hero[data-ready="1"] .reveal-up {
  animation: revealUp .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero[data-ready="1"] .reveal-up:nth-child(1) { animation-delay: .05s; }
.hero[data-ready="1"] .reveal-up:nth-child(2) { animation-delay: .16s; }
.hero[data-ready="1"] .reveal-up:nth-child(3) { animation-delay: .27s; }
.hero[data-ready="1"] .reveal-up:nth-child(4) { animation-delay: .38s; }
.hero[data-ready="1"] .reveal-up:nth-child(5) { animation-delay: .5s; }
@keyframes revealUp { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero__media img { animation: none; }
}

/* ============================================================
   INTRO / USP
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
@media (max-width: 880px){ .intro-grid { grid-template-columns: 1fr; gap: 40px; } }
.intro-copy p { color: var(--muted); font-size: 1.08rem; margin: 0 0 18px; }

.usp-list { display: grid; gap: 0; margin-top: 8px; }
.usp {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.usp:last-child { border-bottom: 1px solid var(--line); }
.usp__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: .04em;
  padding-top: 4px;
}
.usp h3 { margin: 0 0 6px; font-size: 1.22rem; }
.usp p { margin: 0; color: var(--muted); font-size: 1rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 28px 56px; flex-wrap: wrap; margin-bottom: clamp(36px, 4vw, 60px);
}
.services-head > div:first-child { max-width: 30ch; }
.services-head .lead { margin: 0; max-width: 46ch; }
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
}
@media (max-width: 860px){ .services { grid-template-columns: 1fr; } }
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
}
.service-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.service-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(12,10,7,.9) 0%, rgba(12,10,7,.45) 45%, rgba(12,10,7,.12) 100%);
  transition: background .5s;
}
.service-card:hover img { transform: scale(1.06); }
.service-card__body { padding: 30px; width: 100%; }
.service-card__idx { font-size: 13px; font-weight: 600; letter-spacing: .18em; color: rgba(255,255,255,.7); text-transform: uppercase; }
.service-card h3 { color: #fff; font-size: 1.6rem; margin: 10px 0 10px; }
.service-card p { color: rgba(255,255,255,.82); font-size: .98rem; margin: 0 0 18px; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s, opacity .4s, margin .5s; }
.service-card:hover p, .service-card:focus-within p { max-height: 120px; opacity: 1; }
.service-card .link-arrow { color: #fff; }
.service-card .link-arrow:hover { color: var(--accent); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-head { text-align: center; margin-bottom: 40px; }
.gallery-head .lead { margin-inline: auto; }
.filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: clamp(30px, 4vw, 50px);
}
.filter {
  padding: 11px 22px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 14px; font-weight: 600; color: var(--muted);
  transition: all .25s;
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.grid-masonry {
  columns: 3;
  column-gap: clamp(14px, 1.6vw, 22px);
}
@media (max-width: 900px){ .grid-masonry { columns: 2; } }
@media (max-width: 560px){ .grid-masonry { columns: 1; } }
.tile {
  break-inside: avoid;
  margin-bottom: clamp(14px, 1.6vw, 22px);
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: block;
  background: var(--cream);
  animation: tileIn .5s ease both;
}
@keyframes tileIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.tile img { width: 100%; height: auto; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.tile:hover img { transform: scale(1.05); }
.tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,10,7,.82) 0%, rgba(12,10,7,0) 55%);
  opacity: 0; transition: opacity .4s;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; color: #fff;
}
.tile:hover .tile__overlay { opacity: 1; }
.tile__cat { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 7px; }
.tile__cat { color: #fff; }
.tile__tag {
  position: absolute; top: 16px; left: 16px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(250,246,239,.92); color: var(--ink);
  padding: 6px 12px; border-radius: 100px;
  opacity: 0; transform: translateY(-6px); transition: all .35s;
}
.tile:hover .tile__tag { opacity: 1; transform: none; }
.tile h3 { color: #fff; font-size: 1.2rem; transform: translateY(10px); transition: transform .4s; }
.tile:hover h3 { transform: none; }
.tile__loc { color: rgba(255,255,255,.78); font-size: 13.5px; margin-top: 3px; transform: translateY(10px); transition: transform .45s; }
.tile:hover .tile__loc { transform: none; }

/* portfolio grid (alternate layout) */
.grid-portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 46px) clamp(16px, 1.8vw, 28px);
}
@media (max-width: 900px){ .grid-portfolio { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px){ .grid-portfolio { grid-template-columns: 1fr; } }
.pcard {
  display: flex; flex-direction: column; text-align: left;
  background: none; border: none; padding: 0; cursor: pointer;
  animation: tileIn .5s ease both;
}
.pcard__media {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3; background: var(--cream);
}
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .85s cubic-bezier(.2,.7,.2,1); }
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard__num {
  position: absolute; top: 13px; left: 13px;
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  color: #fff; letter-spacing: .04em;
  background: rgba(18,18,16,.4); backdrop-filter: blur(4px);
  padding: 5px 11px; border-radius: 100px;
}
.pcard__view {
  position: absolute; right: 13px; bottom: 13px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(8px) scale(.85);
  transition: opacity .35s, transform .35s cubic-bezier(.2,.7,.2,1);
}
.pcard:hover .pcard__view { opacity: 1; transform: none; }
.pcard__cap {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  margin-top: 17px; padding-top: 16px;
  border-top: 1px solid var(--line);
  transition: border-color .3s;
}
.pcard:hover .pcard__cap { border-color: var(--accent); }
.pcard__title { font-family: var(--font-display); font-weight: 600; font-size: 1.16rem; color: var(--ink); letter-spacing: -.01em; transition: color .25s; }
.pcard:hover .pcard__title { color: var(--accent); }
.pcard__loc { color: var(--muted); font-size: 13.5px; margin-top: 4px; }
.pcard__cat { flex: none; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); font-weight: 700; padding-top: 3px; white-space: nowrap; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(10,8,5,.94);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(20px, 5vw, 70px);
  opacity: 0; visibility: hidden; transition: opacity .35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__img { max-width: 100%; max-height: 82vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); object-fit: contain; }
.lightbox__cap { position: absolute; bottom: clamp(20px,4vw,46px); left: 0; right: 0; text-align: center; color: #fff; }
.lightbox__cap .c { color: var(--accent); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; }
.lightbox__cap .t { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-top: 6px; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: background .25s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.24); }
.lightbox__close { top: clamp(18px,3vw,34px); right: clamp(18px,3vw,34px); }
.lightbox__nav.prev { left: clamp(10px,2vw,28px); top: 50%; transform: translateY(-50%); }
.lightbox__nav.next { right: clamp(10px,2vw,28px); top: 50%; transform: translateY(-50%); }
@media (max-width: 600px){ .lightbox__nav { display: none; } }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-head { display:flex; align-items:flex-end; justify-content:space-between; flex-wrap:wrap; gap:24px; margin-bottom: clamp(36px,4vw,56px); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 880px){ .reviews-grid { grid-template-columns: 1fr; } }
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s;
}
.bg-paper2 .review { background: #fff; }
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { display: flex; gap: 3px; color: var(--accent); margin-bottom: 18px; }
.review__quote { font-size: 1.08rem; line-height: 1.6; color: var(--text); margin: 0 0 26px; flex: 1; }
.review__author { display: flex; align-items: center; gap: 14px; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
}
.review__name { font-weight: 600; font-size: 15px; }
.review__role { font-size: 13px; color: var(--muted); }
.reviews-cta { display: inline-flex; align-items: center; gap: 10px; }

.placeholder-note {
  margin-top: 28px;
  font-size: 13.5px;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  background: var(--accent-soft);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
}
@media (max-width: 880px){ .about-grid { grid-template-columns: 1fr; } }
.about-figure { position: relative; }
.about-figure img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 4/5; box-shadow: var(--shadow); }
.about-badge {
  position: absolute; bottom: -22px; right: -10px;
  background: var(--ink); color: var(--on-dark);
  padding: 22px 26px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 240px;
}
.about-badge .k { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: #fff; }
.about-badge .v { font-size: 13.5px; color: var(--on-dark-mut); margin-top: 4px; }
.about-copy p { color: var(--muted); margin: 0 0 18px; font-size: 1.06rem; }
.about-sign { margin-top: 26px; display: flex; align-items: center; gap: 16px; }
.about-sign__name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.about-sign__role { font-size: 14px; color: var(--muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 920px){ .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-info h2 { margin-bottom: 24px; }
.contact-list { display: grid; gap: 4px; margin: 30px 0 0; }
.contact-item {
  display: grid; grid-template-columns: auto 1fr; gap: 18px;
  padding: 20px 0; border-top: 1px solid var(--line-dark);
  align-items: center;
}
.contact-item:last-child { border-bottom: 1px solid var(--line-dark); }
.contact-item__icon {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.contact-item .lbl { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-mut); }
.contact-item .val { font-size: 1.08rem; font-weight: 600; color: var(--on-dark); margin-top: 2px; }
.contact-item .val:hover { color: var(--accent); }

.contact-socials { display: flex; gap: 12px; margin-top: 30px; }
.contact-socials a {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--on-dark); transition: all .25s;
}
.contact-socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.form-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  color: var(--text);
  box-shadow: var(--shadow-lg);
}
.form-card h3, .form-success h3 { color: var(--ink); }
.form-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form-card .sub { color: var(--muted); font-size: 14.5px; margin: 0 0 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.field label .req { color: var(--accent); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font-family: inherit; font-size: 15px; color: var(--text);
  background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px){ .field-row { grid-template-columns: 1fr; } }
.form-card .btn--primary { width: 100%; justify-content: center; margin-top: 6px; }
.form-success {
  text-align: center; padding: 30px 10px;
}
.form-success__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--muted); }

/* ============================================================
   STATEMENT BAND (dark)
   ============================================================ */
.statement { text-align: center; }
.statement .wrap { max-width: 1020px; }
.statement__rule { width: 46px; height: 2px; background: var(--accent); margin: 0 auto 32px; }
.statement__quote {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.55rem, 3.3vw, 2.7rem); line-height: 1.18;
  color: #fff; letter-spacing: -0.015em; text-wrap: balance;
}
.statement__quote .hl { color: var(--accent); }
.statement__by { margin-top: 28px; color: var(--on-dark-mut); font-size: 15px; font-weight: 500; letter-spacing: .02em; }
.statement__pillars {
  margin-top: clamp(40px, 5vw, 66px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark-2);
}
.statement__pillar { padding: 30px 24px; border-right: 1px solid var(--line-dark-2); }
.statement__pillar:last-child { border-right: none; }
.statement__pillar .t { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: #fff; }
.statement__pillar .d { font-size: 14px; color: var(--on-dark-mut); margin-top: 6px; }
@media (max-width: 680px){
  .statement__pillars { grid-template-columns: 1fr; }
  .statement__pillar { border-right: none; border-bottom: 1px solid var(--line-dark-2); }
  .statement__pillar:last-child { border-bottom: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--on-dark); padding-top: clamp(56px, 7vw, 96px); }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-dark-2);
}
@media (max-width: 760px){ .footer__top { grid-template-columns: 1fr; gap: 38px; } }
.footer__brand .brand__logo { height: 34px; }
.footer__brand p { color: var(--on-dark-mut); max-width: 38ch; margin: 22px 0 0; font-size: 15px; }
.footer__col h4 { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-mut); margin: 0 0 18px; font-weight: 600; }
.footer__col a, .footer__col span { display: block; color: var(--on-dark); padding: 7px 0; font-size: 15px; opacity: .9; }
.footer__col a:hover { color: var(--accent); opacity: 1; }
.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px; padding: 26px 0 34px; font-size: 13.5px; color: var(--on-dark-mut);
}
.footer__bottom a:hover { color: var(--accent); }

/* ---------- scroll reveal ---------- */
.sr { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.sr.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .sr { opacity: 1 !important; transform: none !important; } }

/* ---------- logo wordmark (real SVG) ---------- */
.brand-logo { height: 26px; width: auto; display: block; }
@media (max-width: 480px){ .brand-logo { height: 22px; } }
.footer__brand .brand-logo { height: 34px; }

/* ---------- tweaks-panel polish ---------- */
[data-tweaks-root] { z-index: 80; }
