:root {
  --bg: #f4ede2;
  --bg-2: #e5d8c7;
  --ink: #15191f;
  --muted: #5a626c;
  --line: rgba(21, 25, 31, 0.11);
  --accent: #c38a49;
  --accent-2: #8a9a88;
  --accent-deep: #11161c;
  --panel: rgba(15, 20, 26, 0.7);
  --panel-strong: #0f141a;
  --shadow: 0 30px 90px rgba(10, 14, 18, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(195, 138, 73, 0.14), transparent 24%),
    radial-gradient(circle at 86% 8%, rgba(138, 154, 136, 0.14), transparent 24%),
    linear-gradient(180deg, #faf5ed 0%, var(--bg) 44%, #e6dacb 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.7; }
ul { margin: 0; padding-left: 18px; }
li + li { margin-top: 10px; }

.page-haze {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.page-haze span {
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.62;
}
.page-haze span:nth-child(1) { width: 440px; height: 440px; left: -150px; top: 92px; background: rgba(195, 138, 73, 0.12); }
.page-haze span:nth-child(2) { width: 320px; height: 320px; right: -100px; top: 220px; background: rgba(17, 22, 28, 0.16); }
.page-haze span:nth-child(3) { width: 280px; height: 280px; left: 35%; bottom: -110px; background: rgba(138, 154, 136, 0.18); }

.site-header,
.section,
.site-footer,
.hero-inner,
.intro-grid,
.band,
.gallery-grid,
.timeline,
.faq-grid,
.closing-inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: rgba(250, 244, 235, 0.78);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(250, 244, 235, 0.96);
  box-shadow: 0 16px 42px rgba(16, 20, 27, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}
.brand-copy { display: grid; }
.brand strong {
  font-size: clamp(1.08rem, 1.1vw + 0.82rem, 1.26rem);
  letter-spacing: 0.01em;
  line-height: 1;
}
.brand small { font-size: 0.74rem; color: var(--muted); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(20, 24, 32, 0.1);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.94);
  box-shadow: 0 14px 40px rgba(32, 26, 18, 0.1);
}
.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}
.site-nav a:hover { color: var(--ink); }
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(145deg, #151b22, #2a3440);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.96);
  box-shadow: var(--shadow);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
}
.menu-toggle span + span { margin-top: 6px; }

.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 100svh;
  overflow: clip;
}
.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img {
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.94) contrast(1.02);
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 11, 14, 0.8) 0%, rgba(8, 11, 14, 0.5) 36%, rgba(8, 11, 14, 0.1) 70%, rgba(8, 11, 14, 0.24) 100%),
    linear-gradient(180deg, rgba(8, 11, 14, 0.08) 0%, rgba(8, 11, 14, 0.5) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(280px, 0.56fr);
  gap: 28px;
  align-items: start;
  padding: 30px 0 42px;
}
.hero-copy {
  align-self: start;
  color: #fffdf8;
  padding-right: 24px;
}
.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 247, 236, 0.82);
}
.hero h1,
.section h2,
.closing-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.045em;
  line-height: 0.94;
}
.hero h1 {
  max-width: 10.8ch;
  font-size: clamp(3.3rem, 5.3vw, 4.7rem);
  text-shadow: 0 6px 30px rgba(8, 11, 14, 0.34);
}
.hero-text {
  max-width: 50ch;
  margin: 16px 0 0;
  font-size: 1.02rem;
  color: rgba(255, 247, 238, 0.94);
  text-shadow: 0 3px 22px rgba(8, 11, 14, 0.28);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(145deg, #d8ae66, #b97d3f);
  color: #1b150e;
}
.button-secondary {
  border: 1px solid rgba(255, 245, 233, 0.26);
  color: #fff8f0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}
.closing-actions .button-secondary {
  border-color: rgba(255, 248, 239, 0.48);
  color: #fff8ef;
  background: transparent;
}

.hero-aside {
  align-self: start;
  padding: 22px 22px 18px;
  color: #fff8ef;
  background: linear-gradient(180deg, rgba(12, 17, 25, 0.62), rgba(12, 17, 25, 0.38));
  border: 1px solid rgba(255, 245, 233, 0.14);
  border-left: 3px solid rgba(195, 138, 73, 0.72);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(9, 10, 12, 0.18);
  max-width: 390px;
  justify-self: end;
}
.aside-label {
  margin: 0 0 14px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 248, 240, 0.84);
}
.hero-aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-aside li {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1rem;
  color: rgba(255, 250, 244, 0.96);
}
.hero-aside li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.18); }

.service-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 52px;
  overflow: hidden;
  border-top: 1px solid rgba(21, 26, 34, 0.12);
  border-bottom: 1px solid rgba(21, 26, 34, 0.12);
  background: linear-gradient(180deg, #161b22, #25303a);
}
.service-strip-track {
  display: flex;
  width: max-content;
  height: 100%;
  will-change: transform;
  animation: service-strip-scroll 46s linear infinite;
}
.service-strip-group {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #f5e6d2;
  font-size: 0.74rem;
  font-weight: 800;
}
.service-strip-group span { flex: 0 0 auto; }
.service-strip-group span:nth-child(even) { color: rgba(245, 230, 210, 0.46); }
.service-strip:hover .service-strip-track { animation-play-state: paused; }

.section { padding-top: clamp(82px, 10vw, 124px); }
.gallery.section { padding-top: clamp(58px, 7.2vw, 88px); }
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: end;
  margin-bottom: 28px;
}
.section-head h2 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
}
.section-head .eyebrow { color: var(--accent); }

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}
.intro-copy { padding-right: 24px; }
.intro-copy h2 {
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  max-width: 12ch;
}
.intro-copy p {
  max-width: 58ch;
  color: var(--muted);
}
.intro-points {
  margin-top: 22px;
  padding-left: 20px;
  color: var(--ink);
}
.intro-visual {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 245, 0.92);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.intro-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(220px, 280px);
  gap: 20px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.service-index {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: rgba(195, 138, 73, 0.12);
  color: var(--accent);
}
.service-row h3,
.timeline-step h3,
.faq summary {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.02em;
}
.service-row h3 { font-size: 1.7rem; }
.service-row p,
.service-note,
.timeline-step p,
.faq p,
.closing-copy p {
  color: var(--muted);
  margin: 0;
}
.service-note {
  font-size: 0.98rem;
  line-height: 1.55;
}

.band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding-top: clamp(86px, 10vw, 120px);
  padding-bottom: clamp(86px, 10vw, 120px);
  background: linear-gradient(135deg, #10151b 0%, #181f27 58%, #2d3944 100%);
  color: #fff8ef;
}
.band-copy {
  width: min(calc(100% - 32px), var(--max));
  margin-left: auto;
  padding: 0 4px 0 0;
}
.band-copy h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  max-width: 12ch;
}
.band-copy p {
  max-width: 56ch;
  color: rgba(255, 244, 232, 0.84);
}
.band-copy .eyebrow { color: rgba(255, 223, 197, 0.82); }
.band-copy ul {
  margin-top: 20px;
  padding-left: 18px;
  color: rgba(255, 244, 232, 0.9);
}
.band-visual {
  width: min(calc(100% - 32px), var(--max));
  margin-right: auto;
  margin-left: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 90px rgba(9, 6, 4, 0.34);
}
.band-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: minmax(220px, 1fr) minmax(220px, 1fr) minmax(240px, auto);
  grid-template-areas:
    "feature feature feature feature feature feature support1 support1 support1 support1 support1 support1"
    "feature feature feature feature feature feature support2 support2 support2 support2 support2 support2"
    "wide wide wide wide wide wide wide wide wide wide wide wide";
  gap: 18px;
  align-items: start;
}
.gallery-grid figure {
  margin: 0;
  align-self: start;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 249, 243, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-width: 0;
  min-height: 0;
}
.gallery-card {
  position: relative;
  height: 100%;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
  transform-origin: center center;
}
.gallery-feature { grid-area: feature; }
.gallery-support-one { grid-area: support1; }
.gallery-support-two { grid-area: support2; }
.gallery-wide { grid-area: wide; }
.gallery-feature img { aspect-ratio: 4 / 5.5; }
.gallery-support-one img,
.gallery-support-two img { aspect-ratio: 16 / 10; }
.gallery-wide img { aspect-ratio: 16 / 6.8; }
.gallery-card:hover img { transform: scale(1.04); }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
}
.timeline-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(195, 138, 73, 0.42), transparent);
}
.timeline-step {
  position: relative;
  padding-top: 34px;
}
.timeline-step span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--accent-deep);
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.timeline-step h3 { font-size: 1.7rem; }

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: start;
}
.faq-copy h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.9rem);
  max-width: 12ch;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq details {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 249, 243, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.18rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p { margin-top: 10px; }

.closing {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(84px, 10vw, 124px) 0;
  position: relative;
  overflow: clip;
  background: linear-gradient(135deg, #11161c 0%, #0d1117 100%);
}
.closing-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  gap: 28px;
  align-items: center;
}
.closing-copy,
.closing-actions {
  color: #fff8ef;
}
.closing-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.3rem, 4.7vw, 4.2rem);
}
.closing-copy p {
  max-width: 54ch;
  color: rgba(255, 243, 232, 0.86);
}
.closing-actions {
  display: grid;
  gap: 14px;
  justify-items: stretch;
  margin-top: 22px;
}
.closing-actions .button {
  width: 100%;
}
.closing-meta {
  margin-top: 6px;
  display: grid;
  gap: 6px;
  color: rgba(255, 243, 232, 0.72);
}
.closing-meta strong { color: #fff8ef; }
.closing-visual {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(9, 6, 4, 0.34);
}
.closing-visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.closing-stack {
  display: grid;
  gap: 18px;
}

.closing-services {
  width: min(calc(100% - 32px), var(--max));
  margin: 18px auto 0;
  padding: 0 2px;
}

.closing-services-label {
  margin: 0 0 10px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 239, 223, 0.7);
  font-weight: 800;
}

.closing-services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.closing-services-grid span {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 248, 238, 0.06);
  color: #fff8ef;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.2;
  box-shadow: 0 18px 50px rgba(9, 6, 4, 0.12);
}

.closing-bottom {
  width: min(calc(100% - 32px), var(--max));
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.closing-info {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 248, 238, 0.08), rgba(255, 248, 238, 0.03));
  color: #fff8ef;
  box-shadow: 0 18px 50px rgba(9, 6, 4, 0.16);
}

.closing-info span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 239, 223, 0.68);
  font-weight: 800;
}

.closing-info a,
.closing-info strong {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff8ef;
}

.closing-info a {
  word-break: break-word;
}

.quote-form {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(250, 246, 239, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(8, 10, 14, 0.2);
}

.quote-label {
  margin: 0 0 18px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(21, 25, 31, 0.14);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  padding: 14px 16px;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(90, 98, 108, 0.76);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(195, 138, 73, 0.55);
  box-shadow: 0 0 0 4px rgba(195, 138, 73, 0.12);
}

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

.field-full {
  margin-top: 14px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 36px;
  color: var(--muted);
}
.site-footer strong {
  display: block;
  color: var(--ink);
  margin-bottom: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 720ms ease, transform 720ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1081px) {
  .hero-inner {
    padding-top: 26px;
    padding-bottom: 38px;
  }
  .hero-copy {
    max-width: 720px;
    padding-top: 4px;
  }
  .hero h1 {
    max-width: 10.7ch;
    line-height: 0.92;
  }
  .hero-text {
    max-width: 48ch;
    margin-top: 16px;
    font-size: 1rem;
  }
  .hero-actions {
    margin-top: 20px;
  }
  .hero-aside {
    margin-top: 6px;
  }
  .gallery-feature img { aspect-ratio: 4 / 4.8; }
  .gallery-support-one img,
  .gallery-support-two img { aspect-ratio: 16 / 9.25; }
  .gallery-wide img { aspect-ratio: 16 / 5.3; }
}

@media (max-width: 1080px) {
  .site-nav {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    display: grid;
    gap: 0;
    padding: 12px;
    min-width: min(320px, calc(100vw - 32px));
    border-radius: 24px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .site-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-nav a {
    padding: 14px 14px;
    border-radius: 14px;
  }
  .nav-cta {
    text-align: center;
    margin-top: 6px;
  }
  .menu-toggle { display: inline-block; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 106px;
    padding-bottom: 132px;
  }
  .hero-copy { padding-right: 0; }
  .hero-aside {
    max-width: 440px;
    padding-top: 8px;
  }
  .intro-grid,
  .band,
  .faq-grid,
  .closing-inner {
    grid-template-columns: 1fr;
  }
  .band-copy,
  .band-visual {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
  }
  .gallery-feature,
  .gallery-support-one,
  .gallery-support-two,
  .gallery-wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .timeline-track { top: 52px; }
  .service-row {
    grid-template-columns: 72px minmax(0, 1fr);
  }
  .service-note { grid-column: 2 / -1; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 720px) {
  .site-header { padding: 14px 0; }
  .brand { gap: 10px; }
  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }
  .brand strong { font-size: 1.02rem; }
  .brand small { font-size: 0.7rem; }
  .hero {
    min-height: auto;
    padding-top: 24px;
  }
  .hero-inner {
    min-height: auto;
    padding-top: 74px;
    padding-bottom: 24px;
  }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(9, 14, 20, 0.04) 0%, rgba(9, 14, 20, 0.76) 76%),
      linear-gradient(90deg, rgba(9, 14, 20, 0.76), rgba(9, 14, 20, 0.32));
  }
  .hero h1 { font-size: clamp(2.8rem, 10vw, 4.2rem); max-width: 9.1ch; }
  .hero-text { font-size: 1rem; }
  .service-strip { height: 50px; }
  .service-strip-group {
    gap: 12px;
    font-size: 0.7rem;
    padding: 0 18px;
  }
  .section { padding-top: 72px; }
  .section-head {
    grid-template-columns: 1fr;
    margin-bottom: 22px;
  }
  .section-head h2 { font-size: clamp(2rem, 8.2vw, 3.2rem); }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: none;
  }
  .gallery-card {
    aspect-ratio: 16 / 10;
  }
  .gallery-card img {
    aspect-ratio: auto;
  }
  .service-row {
    grid-template-columns: 1fr;
  }
  .service-note {
    grid-column: auto;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .timeline-track {
    display: none;
  }
  .timeline-step {
    padding-top: 0;
    padding-left: 16px;
    border-left: 1px solid rgba(195, 138, 73, 0.3);
  }
  .timeline-step + .timeline-step {
    margin-top: 14px;
  }
  .closing {
    padding: 72px 0;
  }
  .closing-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .closing-bottom {
    grid-template-columns: 1fr;
  }
  .closing-visual {
    order: 2;
  }
  .closing-copy {
    order: 1;
  }
  .closing-services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .closing-services-grid span {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.86rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .button {
    width: 100%;
  }
}

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

@keyframes service-strip-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
