@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;500;600;700&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;1,9..144,300&display=swap');

:root {
  --bg: #F5F1E8;
  --surface: #FBF8F1;
  --surface-alt: #EDE6D6;
  --ink: #1C1B17;
  --ink-soft: #6F685B;
  --line: #E2DBC8;
  --accent: #B07A4C;
  --accent-hover: #94633A;
  --accent-soft: #EBDDC9;

  --shadow-1: 0 1px 2px rgba(28, 27, 23, 0.04);
  --shadow-2: 0 8px 24px rgba(28, 27, 23, 0.06);
  --shadow-nav: 0 1px 0 rgba(28, 27, 23, 0.06);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --section-y: 96px;
  --content-max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Assistant', system-ui, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
}

h1 { font-size: 64px; }
h2 { font-size: 44px; }
h3 { font-size: 28px; font-weight: 600; letter-spacing: 0; }
h4 { font-size: 22px; font-weight: 600; }

p { max-width: 62ch; }

.lead {
  font-weight: 300;
  font-size: 21px;
  line-height: 1.55;
}

.eyebrow {
  font-family: 'Assistant', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 16px;
}

.eyebrow-latin {
  text-transform: uppercase;
}

.wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  letter-spacing: 0.04em;
}

.wordmark-italic {
  font-style: italic;
}

.numeral {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.numeral-large {
  font-size: 56px;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: var(--section-y) 0;
}

.section-band {
  background-color: var(--surface-alt);
}

.section-surface {
  background-color: var(--surface);
}

.section-header {
  margin-bottom: 56px;
}

.section-header h2 {
  margin-top: 8px;
}

.divider {
  height: 1px;
  background: var(--line);
  border: none;
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Assistant', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 4px;
  transition: background-color 200ms ease-out, color 200ms ease-out, border-color 200ms ease-out;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}

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

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--bg);
}

.btn-ghost {
  position: relative;
  padding: 14px 0;
  color: var(--ink);
  font-family: 'Assistant', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  background: none;
  border: none;
  display: inline-block;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 8px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 220ms var(--ease);
}

.btn-ghost:hover::after {
  width: 100%;
}

.btn-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-nav);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 32px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.nav-brand {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 200ms ease-out;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 220ms var(--ease);
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 100%; }

.nav-cta { padding: 10px 22px; font-size: 14px; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 220ms ease, opacity 220ms ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 120px 32px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 241, 232, 0.32);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-content h1 {
  margin-bottom: 24px;
  text-shadow: 0 1px 1px rgba(255,255,255,0.4);
}

.hero-content .lead {
  margin-bottom: 40px;
  color: var(--ink);
}

.hero-content .btn-row {
  justify-content: center;
}

/* Slim hero (no AI image) */
.hero-slim {
  background: var(--surface-alt);
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 32px 80px;
}

.hero-slim .eyebrow { margin-bottom: 20px; }
.hero-slim h1 { margin-bottom: 18px; }
.hero-slim .lead { color: var(--ink-soft); max-width: 60ch; margin: 0 auto; }

/* Brand intro band */
.intro-band {
  background: var(--surface-alt);
}
.intro-band h2 {
  font-family: 'Assistant', sans-serif;
  margin-bottom: 28px;
  max-width: 18ch;
}
.intro-band h2 .latin {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.intro-band .lead { color: var(--ink-soft); margin-bottom: 16px; }

/* Value props */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.value-item .numeral-large { margin-bottom: 24px; }
.value-item h3 { margin-bottom: 14px; }
.value-item p { color: var(--ink-soft); }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.card-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface-alt);
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease-out;
}
.card:hover .card-image img { transform: scale(1.025); }
.card-body { padding: 24px 28px 30px; }
.card .eyebrow { margin-bottom: 8px; }
.card h3 { margin-bottom: 10px; position: relative; display: inline-block; }
.card h3::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 220ms var(--ease);
}
.card:hover h3::after { width: 100%; }
.card p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* Style philosophy split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-image {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease-out;
}
.split-image:hover img { transform: scale(1.025); }
.split-text .eyebrow { margin-bottom: 16px; }
.split-text h2 { margin-bottom: 28px; }
.split-text p {
  font-weight: 300;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 16px;
  max-width: 60ch;
}

/* Process strip */
.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.process-step .numeral-large { margin-bottom: 18px; }
.process-step h4 { margin-bottom: 8px; }
.process-step p { color: var(--ink-soft); font-size: 15px; }

/* Asymmetric two-column */
.asym {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.asym-text .eyebrow { margin-bottom: 14px; }
.asym-text h3 { margin-bottom: 24px; }
.asym-text p { color: var(--ink-soft); margin-bottom: 14px; }
.asym-images { display: grid; gap: 20px; }
.asym-images img { border-radius: 6px; aspect-ratio: 4/5; object-fit: cover; }

/* Visual identity strip (about) */
.visual-strip {
  width: 100%;
  height: 70vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.visual-caption {
  text-align: center;
  padding: 28px 32px;
  background: var(--surface);
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
}

/* Pillars */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.pillar .eyebrow { font-family: 'Fraunces', serif; font-weight: 300; font-size: 36px; letter-spacing: 0.04em; color: var(--accent); margin-bottom: 18px; }
.pillar h3 { margin-bottom: 12px; }
.pillar p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; }

/* CTA band */
.cta-band {
  text-align: center;
  background: var(--surface-alt);
}
.cta-band h2 { margin-bottom: 30px; max-width: 24ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; }

.cta-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  background: var(--surface-alt);
  padding: 64px;
  border-radius: 6px;
}
.cta-split h3 { font-size: 30px; max-width: 20ch; }
.cta-split .btn-row { justify-content: flex-end; }

/* Services category overview (4 cards no image) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.service-item {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.service-item .numeral { font-size: 44px; margin-bottom: 16px; display: block; }
.service-item h3 { margin-bottom: 10px; font-size: 22px; }
.service-item p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* Looks gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 6px;
  background: var(--surface-alt);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease-out;
}
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-row: span 2; }

/* Quality promise */
.quality-promise { text-align: center; }
.quality-promise .eyebrow { margin-bottom: 18px; }
.quality-promise h2 { font-size: 36px; max-width: 24ch; margin: 0 auto 22px; }
.quality-promise .lead { color: var(--ink-soft); max-width: 56ch; margin: 0 auto; }

/* Contact two-column */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 22px; }
.contact-info-block { margin-bottom: 28px; }
.contact-info-block .eyebrow { margin-bottom: 8px; }
.contact-info-block p { color: var(--ink-soft); }
.contact-info-block a { color: var(--ink); border-bottom: 1px solid transparent; transition: border-color 200ms; }
.contact-info-block a:hover { border-color: var(--accent); }
.social-row { display: flex; gap: 20px; margin-top: 12px; }
.social-row a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: border-color 200ms, color 200ms;
}
.social-row a:hover { color: var(--accent); border-color: var(--accent); }

/* Form */
.form { display: grid; gap: 32px; }
.form-field { display: flex; flex-direction: column; gap: 8px; position: relative; }
.form-field label {
  font-family: 'Assistant', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: none;
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: 'Assistant', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  outline: none;
  border-radius: 0;
  width: 100%;
  resize: none;
  transition: border-color 200ms ease-out, border-bottom-width 200ms ease-out;
  direction: rtl;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 9px;
}
.form-field textarea { min-height: 120px; padding-top: 8px; }
.form-actions { margin-top: 8px; }
.form-message {
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 15px;
  display: none;
}
.form-message.success {
  display: block;
  background: var(--accent-soft);
  color: var(--ink);
  border: 1px solid var(--accent);
}
.form-message.error {
  display: block;
  background: var(--surface-alt);
  color: var(--ink);
  border: 1px solid var(--line);
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 340px;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  border-block: 1px solid var(--line);
}
.map-placeholder p {
  font-family: 'Assistant', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}

/* FAQ teaser */
.faq-teaser ul { list-style: none; display: grid; gap: 16px; }
.faq-teaser li {
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 200ms;
}
.faq-teaser li:hover { border-color: var(--accent); }
.faq-teaser li a { font-weight: 600; font-size: 17px; }
.faq-teaser li .arrow {
  font-family: 'Fraunces', serif;
  color: var(--accent);
  font-size: 22px;
  transition: transform 220ms var(--ease);
}
.faq-teaser li:hover .arrow { transform: translateX(-6px); }

/* Funnel / Multi-step */
.progress {
  height: 1px;
  background: var(--line);
  margin: 0 0 56px;
  position: relative;
  overflow: hidden;
}
.progress-bar {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: var(--accent);
  transition: width 360ms var(--ease);
}
.funnel-page,
.quote-confirm {
  display: none;
}
.funnel-page.active,
.quote-confirm.active {
  display: block;
}
.step-header { display: flex; align-items: baseline; gap: 24px; margin-bottom: 36px; }
.step-header .numeral { font-size: 56px; }
.step-header h2 { font-size: 36px; }
.step-help { color: var(--ink-soft); margin-bottom: 32px; max-width: 56ch; }

/* Chips */
.chip-group { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.chip {
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: 'Assistant', sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 200ms, border-color 200ms, color 200ms;
}
.chip:hover { border-color: var(--accent); }
.chip.selected {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.confirm-block { text-align: center; padding: 60px 0; }
.confirm-block h2 { margin-bottom: 18px; }
.confirm-block p { color: var(--ink-soft); margin: 0 auto 32px; }

/* Quote builder */
.quote-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.quote-section:last-of-type { border-bottom: none; }
.quote-section .eyebrow { margin-bottom: 12px; }
.quote-section h3 { margin-bottom: 24px; font-size: 26px; }

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

.toggle-group { display: flex; flex-wrap: wrap; gap: 16px; }
.toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 200ms, background-color 200ms;
}
.toggle.selected {
  background: var(--accent-soft);
  border-color: var(--accent);
}
.toggle input { display: none; }

/* Privacy long-form */
.prose {
  max-width: 62ch;
  margin: 0 auto;
}
.prose h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 56px;
  margin-bottom: 18px;
  letter-spacing: 0;
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 16px; color: var(--ink-soft); }

/* Accordion */
.accordion { max-width: 760px; margin: 0 auto; }
.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-item:first-child { border-top: 1px solid var(--line); }
.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  text-align: right;
  font-family: 'Assistant', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
  background: none;
  border: none;
  direction: rtl;
}
.accordion-caret {
  color: var(--accent);
  font-size: 24px;
  font-family: 'Fraunces', serif;
  transition: transform 220ms ease;
}
.accordion-item.open .accordion-caret { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease, padding 220ms ease;
}
.accordion-item.open .accordion-body {
  max-height: 480px;
  padding: 0 0 28px;
}
.accordion-body p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  max-width: 62ch;
}

/* Footer */
.footer {
  background: var(--surface-alt);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
.footer-brand .wordmark {
  font-size: 32px;
  display: block;
  margin-bottom: 16px;
}
.footer-brand p { color: var(--ink-soft); font-size: 15px; }
.footer-col h4 {
  font-family: 'Assistant', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  margin-bottom: 22px;
  text-transform: none;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a {
  font-size: 15px;
  color: var(--ink);
  transition: color 200ms;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-legal {
  font-size: 14px;
  color: var(--ink-soft);
}
.footer-signature {
  font-size: 0.75rem;
  color: var(--ink-soft);
  opacity: 0.6;
  text-align: center;
  letter-spacing: 0.04em;
}
.footer-signature a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  h1 { font-size: 52px; }
  h2 { font-size: 38px; }
  .nav-links { gap: 24px; }
  .value-grid, .pillar-grid, .card-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .split, .asym, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-strip { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .cta-split { grid-template-columns: 1fr; padding: 40px; }
  .cta-split .btn-row { justify-content: flex-start; }
}

@media (max-width: 720px) {
  :root { --section-y: 64px; }
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  h3 { font-size: 22px; }
  .container { padding: 0 22px; }
  .nav-inner { padding: 0 22px; height: 64px; }
  .nav-links {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    background: var(--bg);
    padding: 24px 22px 32px;
    gap: 20px;
    transform: translateY(-120%);
    transition: transform 280ms var(--ease);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { background-attachment: scroll; min-height: 80vh; padding: 80px 22px; }
  .hero-content .btn-row { flex-direction: column; align-items: stretch; }
  .hero-content .btn { width: 100%; }
  .visual-strip { background-attachment: scroll; height: 50vh; }
  .value-grid, .pillar-grid, .card-grid, .service-grid, .gallery { grid-template-columns: 1fr; }
  .process-strip { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .size-grid { grid-template-columns: 1fr; }
  .step-header { flex-direction: column; gap: 4px; }
  .step-header .numeral { font-size: 40px; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { transform: none; }
  .hero, .visual-strip { background-attachment: scroll; }
}
