/* ============================================
   DIANIN NICOLA — PARQUETTISTA
   Editorial, restrained. Trust · Professionalism · Luxury.
   No gimmicks: no marquees, no shimmer, no gold gradients,
   no ornaments, no scroll-progress, no parallax.
   ============================================ */

:root {
  /* Palette — warm off-white, espresso, hairline, one quiet accent */
  --bg:          #F5F1EB;     /* warm off-white */
  --bg-alt:      #EEE7DC;     /* subtly warmer alt */
  --surface:     #FBF8F2;     /* card surface */
  --ink:         #2A1F18;     /* espresso */
  --ink-soft:    #6B5E51;     /* muted text */
  --ink-faint:   #97897B;     /* labels, captions */
  --line:        #D9D2C5;     /* hairline */
  --line-soft:   #E5DED1;
  --accent:      #8C3A2E;     /* quiet oxblood, used sparingly */
  --accent-ink:  #5E261D;

  /* Type — humanist, not AI-default */
  --serif: 'Fraunces', 'Iowan Old Style', 'Charter', Georgia, serif;
  --sans:  'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --shadow-soft: 0 1px 2px rgba(42, 31, 24, 0.04), 0 4px 14px rgba(42, 31, 24, 0.05);
  --shadow-card: 0 1px 3px rgba(42, 31, 24, 0.06), 0 8px 28px rgba(42, 31, 24, 0.07);

  --max:      1280px;
  --gutter:   28px;
  --t:        260ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  font-weight: 400;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t);
}

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { list-style: none; padding: 0; margin: 0; }

strong { font-weight: 600; color: var(--ink); }

/* ============================================
   TYPOGRAPHY
   ============================================ */

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ink);
  font-size: clamp(32px, 4.4vw, 54px);
  margin: 0 0 24px;
}

.h-display em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
}

h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin: 0 0 10px;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 18px;
}

/* ============================================
   LAYOUT
   ============================================ */

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

.section {
  padding: 120px 0;
  position: relative;
}

.section + .section { border-top: 1px solid var(--line-soft); }

.section-head {
  max-width: 720px;
  margin: 0 auto 72px;
}

.section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}

.section-head__lead {
  color: var(--ink-soft);
  max-width: 460px;
  margin: 0;
  justify-self: end;
  font-size: 16px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background-color var(--t), color var(--t), border-color var(--t);
  position: relative;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #FBF8F2;
}

.btn--primary:hover {
  background: var(--accent-ink);
}

.btn--block { width: 100%; }

.btn-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 16px 0;
  border-bottom: 1px solid var(--ink);
  transition: opacity var(--t);
}

.btn-link:hover { opacity: 0.6; }

.btn-link span {
  display: inline-block;
  margin-left: 6px;
  transition: transform var(--t);
}

.btn-link:hover span { transform: translateX(3px); }

.btn__loader {
  display: none;
  width: 14px; height: 14px;
  border: 2px solid rgba(251, 248, 242, 0.35);
  border-top-color: #FBF8F2;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn.is-loading .btn__label { opacity: 0.5; }
.btn.is-loading .btn__loader { display: inline-block; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 241, 235, 0.86);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  transition: border-color var(--t), background-color var(--t);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: rgba(245, 241, 235, 0.96);
  border-bottom-color: var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.15;
  color: var(--ink);
}

.logo__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.005em;
}

.logo__sub {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 4px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: color var(--t);
}

.nav__link:hover { color: var(--ink-faint); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 12px 6px;
}

.nav-toggle span {
  width: 22px; height: 1px;
  background: var(--ink);
  transition: transform var(--t), opacity var(--t);
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* ============================================
   HERO — single editorial image + quiet text
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 14, 9, 0.10) 0%, rgba(20, 14, 9, 0.05) 35%, rgba(20, 14, 9, 0.55) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__text {
  max-width: 720px;
  color: #FBF8F2;
}

.hero__meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(251, 248, 242, 0.82);
  margin: 0 0 24px;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0 0 28px;
  color: #FBF8F2;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(251, 248, 242, 0.88);
}

.hero__lead {
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  max-width: 520px;
  color: rgba(251, 248, 242, 0.86);
  margin: 0 0 36px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero .btn-link {
  color: #FBF8F2;
  border-bottom-color: rgba(251, 248, 242, 0.6);
}

/* ============================================
   STATS — quiet row, no animation
   ============================================ */

.stats {
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 56px var(--gutter);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 28px;
  border-right: 1px solid var(--line-soft);
}

.stat:last-child { border-right: none; }

.stat__num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.stat__label {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ============================================
   ABOUT — editorial split
   ============================================ */

.about__grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 96px;
  align-items: start;
}

.about__media {
  margin: 0;
  position: relative;
}

.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about__caption {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  max-width: 360px;
}

.about__text { padding-top: 16px; }
.about__text p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
  max-width: 520px;
}

.about__facts {
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.about__facts dt {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 6px;
}

.about__facts dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}

/* ============================================
   SERVICES — quiet 4-col grid
   ============================================ */

.services { background: var(--bg-alt); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.service {
  padding: 48px 32px 48px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service:last-child { border-right: none; }

.service__num {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink-faint);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.service__title { margin-bottom: 12px; }

.service p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   WORKS — magazine-style grid with mixed sizes
   ============================================ */

.works__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.filter {
  padding: 14px 22px 14px 0;
  margin-right: 28px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  background: transparent;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  transition: color var(--t), border-color var(--t);
}

.filter:hover { color: var(--ink); }

.filter.is-active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.works__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px 24px;
}

.work {
  grid-column: span 2;
  margin: 0;
  cursor: pointer;
}

.work--wide { grid-column: span 3; }

.work.is-hidden { display: none; }

.work img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.work--wide img { aspect-ratio: 16 / 10; }

.work:hover img { transform: scale(1.02); }

.work figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
}

.work__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.work__meta {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
}

/* ============================================
   PROCESS — numbered list, hairline separators
   ============================================ */

.process { background: var(--bg-alt); }

.process__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 96px;
  align-items: start;
}

.process__intro {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  max-width: 380px;
  margin-top: 8px;
}

.process__list {
  display: flex;
  flex-direction: column;
}

.process__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.process__step:last-child { border-bottom: 1px solid var(--line); }

.process__num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink-faint);
  letter-spacing: -0.01em;
}

.process__step h3 {
  margin: 0 0 6px;
}

.process__step p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
}

/* ============================================
   TESTIMONIALS — quiet quotes on whitespace
   ============================================ */

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

.quote {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.quote blockquote {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.003em;
}

.quote blockquote::before {
  content: '“';
  font-family: var(--serif);
  font-size: 48px;
  line-height: 0;
  color: var(--ink-faint);
  margin-right: 4px;
  vertical-align: -0.32em;
}

.quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.quote figcaption span:first-child {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.quote figcaption span:last-child {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
}

/* ============================================
   CONTACT
   ============================================ */

.contact { background: var(--bg-alt); }

.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 96px;
  align-items: start;
}

.contact__lead {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
  max-width: 440px;
  margin: 0 0 40px;
}

.contact__list {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.contact__list dt {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 6px;
}

.contact__list dd {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
}

.contact__list dd a:hover { color: var(--accent); }

/* FORM */

.contact__form {
  background: var(--surface);
  padding: 48px;
  border: 1px solid var(--line);
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
}

.field label span { color: var(--accent); }

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  transition: border-color var(--t);
  width: 100%;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-bottom-color: var(--accent);
}

.field__error {
  display: none;
  font-size: 12.5px;
  color: var(--accent);
  margin-top: 6px;
  letter-spacing: 0.01em;
}

.field.has-error .field__error { display: block; }

.field-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 14px 0 24px;
  cursor: pointer;
  line-height: 1.5;
}

.field-check input {
  margin-top: 3px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-feedback {
  margin-top: 18px;
  padding: 14px 16px;
  font-size: 14px;
  display: none;
  border-left: 2px solid currentColor;
}

.form-feedback.is-success {
  display: block;
  background: rgba(140, 58, 46, 0.04);
  color: var(--accent-ink);
}

.form-feedback.is-error {
  display: block;
  background: rgba(140, 58, 46, 0.04);
  color: var(--accent);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg);
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding: 80px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 64px;
}

.footer__name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 6px;
}

.footer__role {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer__cols h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 18px;
}

.footer__cols ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__cols li,
.footer__cols a {
  font-size: 14px;
  color: var(--ink-soft);
}

.footer__cols a:hover { color: var(--ink); }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--ink-faint);
}

.footer__bottom a:hover { color: var(--ink); }

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 9, 0.94);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  cursor: zoom-out;
}

.lightbox.is-open {
  display: flex;
  animation: fadeIn 220ms ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox__img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  cursor: default;
}

.lightbox__caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(251, 248, 242, 0.85);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin: 0;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  color: #FBF8F2;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: transparent;
  border: 1px solid rgba(251, 248, 242, 0.3);
  border-radius: 50%;
  transition: background-color var(--t), border-color var(--t);
  cursor: pointer;
}

.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(251, 248, 242, 0.1);
  border-color: rgba(251, 248, 242, 0.6);
}

/* ============================================
   REVEAL — single subtle motion
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .about__grid,
  .process__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .about__media img { aspect-ratio: 4 / 3; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service { padding-right: 32px; padding-left: 0; }
  .service:nth-child(2n) { border-right: none; }

  .works__grid { grid-template-columns: repeat(4, 1fr); }
  .work { grid-column: span 2; }
  .work--wide { grid-column: span 4; }
  .work--wide img { aspect-ratio: 16 / 9; }

  .testimonials__grid { grid-template-columns: 1fr; gap: 48px; max-width: 720px; margin: 0 auto; }

  .section-head--split { grid-template-columns: 1fr; gap: 24px; }
  .section-head__lead { justify-self: start; }

  .footer__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --gutter: 22px; }

  .section { padding: 80px 0; }
  .section-head { margin-bottom: 48px; }

  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: var(--bg);
    padding: 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform 340ms ease;
  }

  .nav.is-open { transform: translateY(0); }

  .nav__list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .nav__list li {
    border-bottom: 1px solid var(--line-soft);
  }
  .nav__list li:last-child { border-bottom: none; }

  .nav__link {
    display: block;
    padding: 16px 0;
    font-size: 15px;
  }

  .hero { min-height: auto; padding: 130px 0 64px; }
  .hero { min-height: 88vh; }

  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 32px; padding: 40px var(--gutter); }
  .stat { border-right: none; padding-right: 0; }

  .services__grid { grid-template-columns: 1fr; }
  .service { border-right: none; padding-right: 0; }

  .works__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .work, .work--wide { grid-column: span 2; }
  .work img, .work--wide img { aspect-ratio: 4 / 3; }

  .process__step {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 24px 0;
  }

  .about__facts { grid-template-columns: 1fr; gap: 24px; }
  .contact__list { grid-template-columns: 1fr; }

  .contact__form { padding: 28px 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }

  .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }

  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .hero__actions .btn { width: 100%; }
  .hero__actions .btn-link { text-align: center; }

  .footer__cols { grid-template-columns: 1fr; }
}

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