/* Ąžuolo gama — static site styles */

:root {
  --moss: #1e2923;        /* matinė žalia (fasadai) */
  --moss-2: #2a3830;
  --ink: #141816;
  --oak: #b9804b;         /* ąžuolas */
  --oak-light: #d9a877;
  --stone: #ecece7;       /* šviesus fonas */
  --stone-2: #dfe0d8;
  --paper: #f6f6f2;
  --muted: #5c635f;
  --line: rgba(20, 24, 22, .14);
  --line-light: rgba(236, 236, 231, .16);
  --white: #ffffff;
  --error: #b3412e;

  --font-display: 'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

  --max-width: 1280px;
  --pad: clamp(20px, 4vw, 48px);
  --ease: cubic-bezier(.2, .7, .1, 1);
  --header-h: 76px;
  --section-y: clamp(80px, 11vw, 150px);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--stone);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
picture { display: contents; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
h1, h2, h3, p, figure, blockquote, fieldset { margin: 0; }
fieldset { border: 0; padding: 0; min-width: 0; }

:focus-visible {
  outline: 2px solid var(--oak);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--oak); color: var(--white); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- Shared type ---------- */
.kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--oak);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.kicker--light { color: var(--oak-light); }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5.6vw, 80px);
  line-height: .96;
  letter-spacing: -.035em;
}
.section-title--light { color: var(--stone); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink);
  --fg: var(--white);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  background: var(--bg);
  color: var(--fg);
  overflow: hidden;
  isolation: isolate;
  transition: color .4s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--fill, var(--white));
  transform: translateY(101%);
  border-radius: inherit;
  transition: transform .45s var(--ease);
}
.btn:hover::after { transform: translateY(0); }
.btn:hover { color: var(--fill-fg, var(--ink)); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 18px 28px; font-size: 16px; }
.btn--block { width: 100%; }
.btn__arrow { transition: transform .4s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn__icon { width: 17px; height: 17px; }

.btn--oak { --bg: var(--oak); --fg: var(--ink); --fill: var(--stone); --fill-fg: var(--ink); }
.btn--dark { --bg: var(--moss); --fg: var(--stone); --fill: var(--oak); --fill-fg: var(--ink); }
.btn--ghost {
  --bg: transparent; --fg: var(--stone); --fill: var(--stone); --fill-fg: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(236, 236, 231, .32);
}
.btn--outline {
  --bg: transparent; --fg: var(--ink); --fill: var(--ink); --fill-fg: var(--stone);
  box-shadow: inset 0 0 0 1px var(--ink);
}

/* ---------- Progress ---------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  background: var(--oak);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 100;
  pointer-events: none;
}

/* ---------- Top bar ---------- */
.topbar {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 9px 16px;
  background: var(--ink);
  color: rgba(236, 236, 231, .72);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.topbar a { color: var(--oak-light); }
.topbar a:hover { color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--moss);
  color: var(--stone);
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(30, 41, 35, .9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-light), 0 10px 30px -20px rgba(0, 0, 0, .6);
}
.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -.02em;
  flex: none;
}
.site-header__logo img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  padding: 2px;
  transition: transform .8s var(--ease);
}
.site-header__logo:hover img { transform: rotate(-20deg) scale(1.05); }

.site-header__nav { margin-left: auto; }
.site-header__nav ul { display: flex; gap: 2px; }
.site-header__nav ul a {
  position: relative;
  display: block;
  padding: 8px 11px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(236, 236, 231, .74);
  transition: color .25s;
}
.site-header__nav ul a::after {
  content: "";
  position: absolute;
  left: 11px; right: 11px; bottom: 2px;
  height: 1px;
  background: var(--oak-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.site-header__nav ul a:hover,
.site-header__nav ul a.is-active { color: var(--white); }
.site-header__nav ul a:hover::after,
.site-header__nav ul a.is-active::after { transform: scaleX(1); transform-origin: left; }
.site-header__nav-cta { display: none; }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: color .25s;
}
.site-header__phone svg { width: 16px; height: 16px; color: var(--oak-light); }
.site-header__phone:hover { color: var(--oak-light); }
.site-header__cta { padding: 12px 20px; }
.site-header__fb {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--line-light);
  transition: background .3s, color .3s;
  flex: none;
}
.site-header__fb svg { width: 18px; height: 18px; }
.site-header__fb:hover { background: var(--stone); color: var(--moss); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--line-light);
  position: relative;
  flex: none;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.5px;
  margin-left: -9px;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .2s;
}
.menu-toggle span { top: 50%; }
.menu-toggle span::before,
.menu-toggle span::after { content: ""; left: 0; margin-left: 0; }
.menu-toggle span::before { transform: translateY(-6px); }
.menu-toggle span::after { transform: translateY(6px); }
.site-header.is-open .menu-toggle span { background: transparent; }
.site-header.is-open .menu-toggle span::before { transform: rotate(45deg); background: var(--stone); }
.site-header.is-open .menu-toggle span::after { transform: rotate(-45deg); background: var(--stone); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(calc(100svh - var(--header-h) - 34px), 900px);
  background: var(--moss);
  color: var(--stone);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: clamp(48px, 7vh, 88px) 0 clamp(56px, 9vh, 100px);
}

.hero__rings {
  position: absolute;
  width: min(1200px, 130vw);
  aspect-ratio: 1;
  right: -22%;
  top: 50%;
  translate: 0 -50%;
  pointer-events: none;
  color: var(--oak);
  opacity: .45;
}
.hero__rings path {
  fill: none;
  stroke: currentColor;
  vector-effect: non-scaling-stroke;
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.3fr .85fr;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: var(--oak-light);
  max-width: 440px;
  margin-bottom: 26px;
  padding-left: 16px;
  border-left: 1px solid var(--oak);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 11.5vw, 172px);
  line-height: .84;
  letter-spacing: -.055em;
  margin: 0 0 30px -.04em;
}
.hero__word { display: block; overflow: hidden; padding-bottom: .06em; }
.js:not(.is-split) .hero__title { visibility: hidden; }
.hero__word--oak {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--oak-light);
  padding-left: .55em;
  transition: color .6s var(--ease);
}
.hero__title:hover .hero__word--oak { color: var(--oak); }

.js .hero__title .char {
  display: inline-block;
  transform: translateY(105%) rotate(6deg);
  transition: transform .9s var(--ease);
  transition-delay: calc(var(--i) * 35ms + 60ms);
}
.js.is-loaded .hero__title .char { transform: none; }

.hero__line {
  font-size: clamp(17px, 1.5vw, 20px);
  max-width: 540px;
  color: rgba(236, 236, 231, .8);
}
.hero__line--strong {
  color: var(--stone);
  font-weight: 600;
  margin-top: 4px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 28px;
  font-size: 14px;
  color: rgba(236, 236, 231, .7);
}
.hero__trust li { display: flex; align-items: center; }
.hero__trust li + li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--oak);
  margin-right: 14px;
}
.hero__trust a { display: inline-flex; gap: 8px; align-items: center; color: var(--stone); font-weight: 600; }
.hero__trust a:hover { color: var(--oak-light); }
.hero__stars { color: var(--oak-light); letter-spacing: 2px; }

.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px 18px 18px;
  overflow: hidden;
  background: var(--moss-2);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6);
  will-change: transform;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 50%;
}
.js .hero__media { clip-path: inset(100% 0 0 0 round 999px 999px 18px 18px); transition: clip-path 1.2s var(--ease) .2s; }
.js.is-loaded .hero__media { clip-path: inset(0 0 0 0 round 999px 999px 18px 18px); }
.js .hero__media img { transform: scale(1.2); transition: transform 2s var(--ease) .2s; }
.js.is-loaded .hero__media img { transform: scale(1.04); }

/* ---------- Reveal ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- About ---------- */
.about { padding: var(--section-y) 0; }
.about__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about__head { position: sticky; top: calc(var(--header-h) + 40px); }
.about__logo {
  margin-top: 40px;
  width: clamp(120px, 13vw, 170px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 0 0 1px var(--line), 0 0 0 14px var(--stone), 0 0 0 15px var(--line);
}
.about__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  transition: transform 1.2s var(--ease);
}
.about__logo:hover img { transform: rotate(-12deg) scale(1.04); }

.about__lead {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.2;
  letter-spacing: -.02em;
}
.about__text {
  margin-top: 32px;
  font-size: clamp(17px, 1.3vw, 19px);
  color: var(--muted);
  max-width: 620px;
}

.points {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.points__item {
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--line);
}
.points__item:nth-child(even) { padding-left: 28px; padding-right: 0; border-left: 1px solid var(--line); }
.points__item svg { width: 28px; height: 28px; color: var(--oak); margin-bottom: 16px; }
.points__item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.points__item p { font-size: 15px; color: var(--muted); line-height: 1.5; }

/* ---------- Services ---------- */
.services {
  position: relative;
  background: var(--ink);
  color: var(--stone);
  overflow: hidden;
  padding: var(--section-y) 0;
}
.services__bg {
  position: absolute;
  inset: -10% 0;
  opacity: .22;
}
.services__bg img { width: 100%; height: 100%; object-fit: cover; }
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 24, 22, .5), rgba(20, 24, 22, .92) 70%);
}
.services__inner { position: relative; z-index: 2; }
.services__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  flex-wrap: wrap;
}
.services__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5.4vw, 78px);
  line-height: .98;
  letter-spacing: -.04em;
  max-width: 14ch;
}

.cards {
  margin-top: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card__link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  background: var(--moss-2);
  isolation: isolate;
}
.card__media { position: absolute; inset: 0; z-index: -1; }
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 24, 22, 0) 40%, rgba(20, 24, 22, .88));
  transition: opacity .5s;
}
.card__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.05;
  letter-spacing: -.025em;
}
.card__cta {
  display: inline-flex;
  align-self: flex-start;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--oak-light);
}
.card__cta span { transition: transform .4s var(--ease); }
.card__link:hover .card__media img { transform: scale(1.07); }
.card__link:hover .card__cta span { transform: translateX(4px); }
.card__link:hover { box-shadow: inset 0 0 0 1px rgba(185, 128, 75, .6); }

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(56px, 7vw, 96px);
  position: relative;
}
.process::before,
.process::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line-light);
}
.process::after {
  background: var(--oak);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.8s var(--ease);
}
.process.is-in::after { transform: scaleX(1); }
.process__step { position: relative; padding-top: 34px; padding-right: 16px; }
.process__dot {
  position: absolute;
  top: 0; left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line-light);
  transition: background .4s, box-shadow .4s;
  transition-delay: calc(var(--i) * 400ms + 200ms);
  z-index: 1;
}
.process.is-in .process__dot { background: var(--oak); box-shadow: 0 0 0 6px rgba(185, 128, 75, .18); }
.process__label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(19px, 2vw, 26px);
  letter-spacing: -.02em;
  opacity: .35;
  transition: opacity .6s;
  transition-delay: calc(var(--i) * 400ms + 200ms);
}
.process.is-in .process__label { opacity: 1; }

/* ---------- Projects ---------- */
.projects { padding: var(--section-y) 0; }
.projects__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.projects__text { color: var(--muted); max-width: 560px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery__item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: var(--stone-2);
  cursor: zoom-in;
}
.gallery:not(.is-expanded) .is-extra { display: none; }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.gallery__item::after {
  content: "+";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 300;
  background: var(--stone);
  color: var(--ink);
  transform: scale(0) rotate(-90deg);
  transition: transform .45s var(--ease);
}
.gallery__item:hover img,
.gallery__item:focus-visible img { transform: scale(1.05); }
.gallery__item:hover::after,
.gallery__item:focus-visible::after { transform: scale(1) rotate(0); }
.js .gallery__item { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .gallery__item.is-in { opacity: 1; transform: none; }

.gallery__more { display: flex; justify-content: center; margin-top: 28px; }

.cta-band {
  margin-top: clamp(64px, 8vw, 110px);
  padding: clamp(32px, 5vw, 56px);
  border-radius: 24px;
  background: var(--moss);
  color: var(--stone);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(185, 128, 75, .35), 0 0 0 40px var(--moss), 0 0 0 41px rgba(185, 128, 75, .25), 0 0 0 80px var(--moss), 0 0 0 81px rgba(185, 128, 75, .15);
  pointer-events: none;
}
.cta-band__title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.02;
  letter-spacing: -.035em;
  max-width: 16ch;
}
.cta-band__actions { position: relative; display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(14, 17, 15, .95);
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0; } }
.lightbox__stage {
  grid-column: 2;
  height: 100svh;
  padding: 64px 0 96px;
  display: grid;
  place-items: center;
  touch-action: pan-y;
}
.lightbox__stage img {
  max-height: calc(100svh - 160px);
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
  animation: zoomIn .4s var(--ease);
}
@keyframes zoomIn { from { opacity: 0; transform: scale(.97); } }
.lightbox__nav,
.lightbox__close {
  color: var(--stone);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px var(--line-light);
  transition: background .25s, color .25s;
  justify-self: center;
}
.lightbox__nav:hover,
.lightbox__close:hover { background: var(--stone); color: var(--ink); }
.lightbox__close { position: absolute; top: 16px; right: 16px; }
.lightbox__foot {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(236, 236, 231, .7);
  white-space: nowrap;
}
body.is-locked { overflow: hidden; }

/* ---------- Testimonials ---------- */
.testimonials {
  position: relative;
  background: var(--moss);
  color: var(--stone);
  padding: var(--section-y) 0;
  overflow: hidden;
}
.testimonials__bg { position: absolute; inset: 0; opacity: .08; }
.testimonials__bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.testimonials__inner {
  position: relative;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.testimonials__head { position: sticky; top: calc(var(--header-h) + 40px); }
.testimonials__subheading {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--oak-light);
}
.testimonials__score {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px var(--line-light);
  font-weight: 600;
  font-size: 15px;
}
.testimonials__score span { color: var(--oak-light); letter-spacing: 2px; }
.testimonials__grid { display: grid; gap: 20px; }
.testimonial-card {
  position: relative;
  padding: clamp(28px, 3.5vw, 44px);
  border-radius: 20px;
  background: rgba(236, 236, 231, .05);
  box-shadow: inset 0 0 0 1px var(--line-light);
  transition: background .4s, box-shadow .4s;
}
.testimonial-card:nth-child(2) { margin-left: clamp(0px, 6vw, 80px); }
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 6px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 140px;
  line-height: 1;
  color: var(--oak);
  opacity: .35;
}
.testimonial-card:hover { background: rgba(236, 236, 231, .09); box-shadow: inset 0 0 0 1px rgba(185, 128, 75, .5); }
.testimonial-card__stars { color: var(--oak-light); letter-spacing: 4px; font-size: 16px; }
.testimonial-card__quote {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.22;
  letter-spacing: -.015em;
}
.testimonial-card__who { margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.testimonial-card__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px var(--oak); }
.testimonial-card__name { font-weight: 600; font-size: 15px; }

/* ---------- Contact ---------- */
.contact { padding: var(--section-y) 0; }
.contact__card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  border-radius: 24px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: inset 0 0 0 1px var(--line), 0 30px 60px -45px rgba(20, 24, 22, .4);
}
.contact__image { min-height: 100%; overflow: hidden; }
.contact__image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; transition: transform 1.2s var(--ease); }
.contact__card:hover .contact__image img { transform: scale(1.04); }
.contact__body { padding: clamp(32px, 5vw, 72px); align-self: center; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.contact__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -.04em;
  margin-bottom: 32px;
}
.contact__list li { padding: 16px 0; border-top: 1px solid var(--line); }
.contact__list li:last-child { border-bottom: 1px solid var(--line); }
.contact__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact__row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.contact__detail {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(21px, 2.1vw, 28px);
  letter-spacing: -.02em;
  line-height: 1.2;
  background: linear-gradient(var(--oak), var(--oak)) 0 100% / 0 2px no-repeat;
  transition: background-size .5s var(--ease);
  word-break: break-word;
}
.contact__detail { display: inline-block; padding: 7px 0; background-position: 0 calc(100% - 4px); }
.contact__detail--sm { font-size: clamp(18px, 1.6vw, 21px); }
.contact__detail:hover { background-size: 100% 2px; }

.copy {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--muted);
  transition: background .25s, color .25s;
}
.copy svg { width: 16px; height: 16px; }
.copy:hover { background: var(--ink); color: var(--stone); }
.copy__done {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translate(-50%, 6px);
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--stone);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s var(--ease);
}
.copy.is-done .copy__done { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(236, 236, 231, .72);
  padding: clamp(64px, 8vw, 100px) 0 0;
  font-size: 15px;
}
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; }
.footer__brand { display: flex; align-items: center; gap: 18px; }
.footer__logo { width: 84px; height: 84px; border-radius: 50%; overflow: hidden; background: var(--white); flex: none; }
.footer__logo img { width: 100%; height: 100%; object-fit: cover; }
.footer__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -.03em;
  color: var(--stone);
}
.footer__heading {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--oak-light);
  margin-bottom: 16px;
}
.footer__line { margin-bottom: 6px; }
.footer__line--strong { color: var(--stone); font-weight: 600; }
.footer__line a { transition: color .25s; }
.footer__line a:hover { color: var(--oak-light); }
.footer__bottom {
  margin-top: clamp(48px, 6vw, 80px);
  padding: 22px 0;
  width: calc(100% - 2 * var(--pad));
  max-width: calc(var(--max-width) - 2 * var(--pad));
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.footer__top:hover { color: var(--oak-light); }
.footer__credit { transition: color .25s; }
.footer__credit strong { color: var(--stone); font-weight: 400; }
.footer__credit:hover,
.footer__credit:hover strong { color: var(--oak-light); }

/* ---------- Mobile action bar ---------- */
.action-bar {
  position: fixed;
  left: 10px; right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1.4fr;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(20, 24, 22, .92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px -10px rgba(0, 0, 0, .5);
  transform: translateY(140%);
  transition: transform .5s var(--ease);
}
.action-bar.is-visible { transform: none; }
.action-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
}
.action-bar svg { width: 17px; height: 17px; }
.action-bar__call { color: var(--stone); box-shadow: inset 0 0 0 1px var(--line-light); }
.action-bar__quote { background: var(--oak); color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .site-header__phone span { display: none; }
  .site-header__phone { width: 40px; height: 40px; padding: 0; justify-content: center; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line-light); }
}

@media (max-width: 1080px) {
  .site-header__nav {
    position: fixed;
    inset: var(--nav-top, var(--header-h)) 0 0 0;
    background: var(--moss);
    margin: 0;
    padding: 16px var(--pad) 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--ease), visibility 0s .35s;
    overflow-y: auto;
  }
  .site-header.is-open .site-header__nav { opacity: 1; visibility: visible; transition: opacity .35s var(--ease); }
  .site-header.is-open { background: var(--moss); -webkit-backdrop-filter: none; backdrop-filter: none; }
  .site-header__nav ul { flex-direction: column; gap: 0; }
  .site-header__nav li {
    border-bottom: 1px solid var(--line-light);
    transform: translateY(16px);
    opacity: 0;
    transition: transform .5s var(--ease), opacity .5s;
  }
  .site-header.is-open .site-header__nav li { transform: none; opacity: 1; }
  .site-header.is-open .site-header__nav li:nth-child(2) { transition-delay: .03s; }
  .site-header.is-open .site-header__nav li:nth-child(3) { transition-delay: .06s; }
  .site-header.is-open .site-header__nav li:nth-child(4) { transition-delay: .09s; }
  .site-header.is-open .site-header__nav li:nth-child(5) { transition-delay: .12s; }
  .site-header.is-open .site-header__nav li:nth-child(6) { transition-delay: .15s; }
  .site-header__nav ul a {
    padding: 16px 0;
    font-family: var(--font-display);
    font-size: clamp(28px, 7vw, 42px);
    font-weight: 700;
    letter-spacing: -.03em;
    color: var(--stone);
  }
  .site-header__nav ul a::after { display: none; }
  .site-header__nav ul a.is-active { color: var(--oak-light); }
  .site-header__nav-cta { display: flex; margin-top: 28px; width: 100%; padding: 18px; font-size: 16px; }
  .site-header__actions { margin-left: auto; }
  .menu-toggle { display: block; }

  .hero__inner { grid-template-columns: 1fr .75fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .card__link { aspect-ratio: 4 / 3; }
}

@media (max-width: 820px) {
  :root { --header-h: 66px; }
  body { font-size: 16px; }

  .topbar { font-size: 12px; gap: 10px; }
  .site-header__logo span { display: none; }
  .site-header__logo img { width: 40px; height: 40px; }
  .site-header__cta { display: none; }

  .hero { min-height: 0; padding-top: 36px; padding-bottom: 48px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__rings { width: 160vw; right: -80vw; top: 30%; opacity: .3; }
  .hero__title { font-size: clamp(64px, 21vw, 120px); margin-bottom: 24px; }
  .hero__media { aspect-ratio: 5 / 4; border-radius: 999px 999px 16px 16px; width: 100%; max-width: 560px; justify-self: center; }
  .copy { width: 44px; height: 44px; }
  .js .hero__media { clip-path: inset(100% 0 0 0 round 999px 999px 16px 16px); }
  .js.is-loaded .hero__media { clip-path: inset(0 0 0 0 round 999px 999px 16px 16px); }
  .hero__actions .btn { flex: 1 1 auto; }
  .hero__trust { font-size: 13px; gap: 6px 16px; }
  .hero__trust li + li::before { display: none; }
  .hero__trust li + li { color: rgba(236, 236, 231, .6); }

  .about__grid,
  .testimonials__inner,
  .contact__card,
  .projects__head { grid-template-columns: 1fr; }
  .contact__image { aspect-ratio: 16 / 10; min-height: 0; }
  .contact__actions .btn { flex: 1 1 auto; }
  .about__head,
  .testimonials__head { position: static; }
  .about__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0 24px; }
  .about__head .kicker { width: 100%; }
  .about__logo { margin-top: 0; width: 84px; box-shadow: 0 0 0 1px var(--line), 0 0 0 8px var(--stone), 0 0 0 9px var(--line); }
  .points { grid-template-columns: 1fr; }
  .points__item,
  .points__item:nth-child(even) { padding: 22px 0 22px 48px; border-left: 0; position: relative; }
  .points__item svg { position: absolute; left: 0; top: 22px; margin: 0; width: 26px; height: 26px; }

  .services__head .btn { display: none; }
  .cards { gap: 10px; }
  .card__link { aspect-ratio: 4 / 5; border-radius: 14px; }
  .card__body { padding: 14px; gap: 4px; }
  .card__title { font-size: 19px; }
  .card__cta { font-size: 13px; }

  .process { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .process::before, .process::after { display: none; }
  .process__step { padding-top: 30px; }
  .process__step::before { content: ""; position: absolute; top: 7px; left: 0; right: 0; height: 1px; background: var(--line-light); }

  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery__item { border-radius: 10px; }
  .gallery__item::after { display: none; }
  .gallery__more .btn { width: 100%; }
  .cta-band { border-radius: 18px; }
  .cta-band__actions, .cta-band__actions .btn { width: 100%; }

  .testimonial-card:nth-child(2) { margin-left: 0; }


  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; padding-bottom: 96px; }

  .lightbox { grid-template-columns: 1fr; }
  .lightbox__stage { grid-column: 1; grid-row: 1; padding: 64px 12px 150px; }
  .lightbox__stage img { max-height: calc(100svh - 214px); }
  .lightbox__nav { position: absolute; bottom: 84px; grid-row: 1; }
  .lightbox__nav--prev { left: 16px; }
  .lightbox__nav--next { right: 16px; }
  .lightbox__foot { bottom: 18px; flex-direction: column; gap: 10px; }

  .action-bar { display: grid; }
}

@media (max-width: 420px) {
  .topbar { flex-direction: column; align-items: center; gap: 2px; padding: 7px 12px; }
  .site-header__phone { display: none; }
}

/* short landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: 0; }
  .lightbox__stage { padding: 12px 0 64px; }
  .lightbox__stage img { max-height: calc(100svh - 76px); }
  .lightbox__foot { bottom: 12px; }
  .lightbox__close { top: 10px; right: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }
}
