
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #eef4f6;
  --bg-alt: #e6eef1;
  --surface: #fbfdfe;
  --surface-soft: #f6fafb;
  --surface-strong: #e7eff2;
  --line: rgba(18, 43, 59, 0.10);
  --line-soft: rgba(18, 43, 59, 0.06);
  --ink: #22343d;
  --ink-soft: #566b76;
  --ink-muted: #7b8f99;
  --brand: #143749;
  --brand-soft: #2b5369;
  --accent: #8ea4b0;
  --aqua: #62cadc;
  --shadow: 0 24px 54px rgba(20, 55, 73, 0.08);
  --shadow-soft: 0 16px 34px rgba(20, 55, 73, 0.05);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section { padding: 108px 0; }
.section-tight { padding: 82px 0; }
.section-soft { background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(230,238,241,0.80)); }
.section-divider {
  border-top: 1px solid var(--line-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: var(--ink-muted);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(142, 164, 176, 0.65);
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--brand);
  letter-spacing: -0.035em;
}
h1, h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
}
h1 {
  font-size: clamp(3.5rem, 6.4vw, 6.35rem);
  line-height: 0.92;
}
h2 {
  font-size: clamp(2.6rem, 4.7vw, 4.8rem);
  line-height: 0.96;
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.62rem);
  line-height: 1.15;
  font-weight: 700;
}
h4 {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}
p {
  margin: 0;
  color: var(--ink-soft);
}
.lead {
  font-size: 1.06rem;
  max-width: 63ch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(238, 244, 246, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header-shell {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.brand-copy strong {
  font-size: 1rem;
  line-height: 1.08;
  color: var(--brand);
}
.brand-copy span {
  font-size: 0.82rem;
  color: var(--ink-muted);
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--brand);
  border-radius: 999px;
  padding: 10px 15px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-nav a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 600;
  transition: color 160ms ease;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--brand);
}
.nav-cta {
  background: var(--brand);
  color: #fff !important;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 14px 28px rgba(24, 56, 74, 0.16);
}
.nav-cta:hover {
  background: #133040;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.btn:hover,
button.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 26px rgba(24, 56, 74, 0.16);
}
.btn-primary:hover {
  background: #143140;
}
.btn-secondary {
  background: rgba(251,253,254,0.82);
  color: var(--brand);
  border-color: rgba(24,56,74,0.14);
}
.btn-secondary:hover {
  background: #fff;
  border-color: rgba(24,56,74,0.22);
}
.btn-quiet {
  color: var(--brand);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-quiet::after {
  content: "→";
  transition: transform 160ms ease;
}
.btn-quiet:hover::after {
  transform: translateX(2px);
}


.hero-home {
  padding: 0 0 84px;
}
.hero-home .container {
  width: min(calc(var(--container) + 36px), calc(100% - 32px));
}
.hero-home-shell {
  position: relative;
  min-height: clamp(620px, 78vh, 820px);
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  border: 1px solid rgba(24,56,74,0.08);
  box-shadow: var(--shadow);
  background: var(--surface);
}
.hero-home-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-home-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(238,244,246,0.97) 0%, rgba(238,244,246,0.90) 22%, rgba(238,244,246,0.72) 38%, rgba(238,244,246,0.34) 56%, rgba(238,244,246,0.10) 78%, rgba(238,244,246,0.0) 100%),
    linear-gradient(180deg, rgba(251,253,254,0.12), rgba(251,253,254,0.26));
}
.hero-home-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: clamp(42px, 6vw, 74px) clamp(26px, 4vw, 46px) 170px;
}
.hero-home-content h1 {
  max-width: 7ch;
}
.hero-home-content .lead {
  margin-top: 24px;
  max-width: 38ch;
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-home-note {
  position: absolute;
  left: clamp(22px, 4vw, 46px);
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  max-width: min(760px, calc(100% - 44px));
  padding: 18px 24px;
  border-radius: 999px;
  background: rgba(251,253,254,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(24,56,74,0.08);
  box-shadow: var(--shadow-soft);
}
.hero-home-note p {
  color: var(--ink-soft);
  font-weight: 500;
}
.hero-home-note-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--aqua);
}

.trust-strip-wrap {
  margin-top: -18px;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(250,253,254,0.88);
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.trust-item {
  padding: 22px 24px;
  border-right: 1px solid var(--line-soft);
}
.trust-item:last-child { border-right: 0; }
.trust-item strong {
  display: block;
  color: var(--brand);
  margin-bottom: 4px;
  font-size: 0.94rem;
}
.trust-item span {
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.section-intro {
  max-width: 810px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-intro .lead,
.section-intro p {
  margin: 16px auto 0;
}

.editorial-stack {
  display: grid;
  gap: 30px;
}
.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: 34px;
  align-items: stretch;
}
.feature-row.reverse {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
}
.feature-row.reverse .editorial-copy { order: 2; }
.feature-row.reverse .editorial-photo { order: 1; }

.editorial-copy,
.content-panel,
.contact-card,
.info-card,
.quote-panel,
.quote-sidebar,
.scope-card,
.testimonial-card,
.result-card,
.note-card,
.stat-card,
.service-tile,
.steps-card,
.faq-card,
.contact-form-card,
.footer-card {
  background: var(--surface);
  border: 1px solid rgba(24,56,74,0.08);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
}
.editorial-copy,
.content-panel,
.quote-panel,
.contact-form-card,
.contact-card,
.scope-card,
.footer-card {
  padding: 34px;
}
.editorial-copy .lead,
.content-panel .lead {
  margin-top: 16px;
}
.service-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.service-list li,
.standard-list li,
.scope-column li,
.contact-list li,
.about-list li,
.feature-points li {
  position: relative;
  padding-left: 20px;
}
.service-list li::before,
.standard-list li::before,
.scope-column li::before,
.contact-list li::before,
.about-list li::before,
.feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(98,202,220,0.78);
}
.editorial-photo img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.service-collection {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.service-tile {
  flex: 1 1 280px;
  max-width: 360px;
  min-width: 260px;
  padding: 28px;
}
.service-tile p {
  margin-top: 10px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--brand);
  font-weight: 700;
}
.service-link::after {
  content: "→";
}

.standards-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 34px;
  align-items: center;
}
.standard-list,
.contact-list,
.about-list,
.scope-column ul,
.feature-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.photo-mosaic {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}
.photo-mosaic .gallery-card:first-child {
  grid-row: 1 / span 2;
}
.gallery-card img {
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}

.results-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: 34px;
  align-items: stretch;
}
.result-showcase {
  display: grid;
  gap: 18px;
}
.result-photo img {
  min-height: 520px;
  height: 100%;
  object-fit: cover;
}
.result-tiles {
  display: grid;
  gap: 18px;
}
.result-card {
  padding: 28px;
}
.result-card p {
  margin-top: 10px;
}
.result-card strong {
  display: block;
  color: var(--brand);
  margin-top: 16px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.testimonial-card {
  position: relative;
  padding: 30px;
}
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: rgba(142,164,176,0.28);
  line-height: 1;
}
.testimonial-card footer {
  margin-top: 18px;
  color: var(--ink-muted);
  font-size: 0.9rem;
}


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

.compact-proof-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: start;
}

.results-carousel {
  background: var(--surface);
  border: 1px solid rgba(24,56,74,0.08);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.carousel-header h3 {
  margin-top: 8px;
}

.carousel-header p {
  margin-top: 10px;
  max-width: 42ch;
}

.carousel-controls {
  display: inline-flex;
  gap: 10px;
  flex-shrink: 0;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--brand);
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--surface-strong);
}

.carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.carousel-track {
  position: relative;
  min-height: 580px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
  margin: 0;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 22px;
}

.carousel-slide figcaption {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(20,55,73,0.18);
  padding: 0;
}

.carousel-dot.is-active {
  width: 28px;
  background: var(--brand);
}

.audience-shell {
  padding: 40px;
  background: linear-gradient(180deg, rgba(251,253,254,0.96), rgba(232,240,243,0.96));
  border: 1px solid rgba(24,56,74,0.08);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-xl);
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}
.tag {
  border: 1px solid rgba(24,56,74,0.10);
  background: rgba(255,255,255,0.7);
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.cta-shell {
  padding: 46px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(24,56,74,0.96), rgba(32,62,77,0.94));
  color: rgba(255,255,255,0.9);
  box-shadow: 0 28px 56px rgba(24,56,74,0.18);
}
.cta-shell h2,
.cta-shell .eyebrow,
.cta-shell p {
  color: rgba(255,255,255,0.94);
}
.cta-shell .eyebrow::before {
  background: rgba(255,255,255,0.46);
}
.cta-shell p {
  margin-top: 16px;
  max-width: 56ch;
}
.cta-shell .hero-actions {
  margin-top: 26px;
}
.cta-shell .btn-primary {
  background: #fff;
  color: var(--brand);
}
.cta-shell .btn-secondary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  color: #fff;
}

.footer {
  padding: 32px 0 46px;
}
.footer-shell {
  border-top: 1px solid var(--line-soft);
  padding-top: 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.8fr 0.8fr;
  gap: 28px;
}
.footer-brand {
  display: flex;
  gap: 16px;
}
.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex: 0 0 auto;
}
.footer-brand p {
  margin-top: 6px;
  max-width: 34ch;
}
.footer h4 {
  margin-bottom: 10px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.footer a {
  color: var(--ink-soft);
}
.footer a:hover { color: var(--brand); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.footer-credit {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.76rem;
  letter-spacing: 0.01em;
}
.footer-credit a {
  color: inherit;
  text-decoration: none;
}
.footer-credit a:hover {
  color: var(--brand);
}

.page-hero {
  padding: 58px 0 42px;
}
.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}
.page-hero-copy .lead {
  margin-top: 18px;
}
.page-hero-photo img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}
.page-hero-center {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.page-hero-center .lead {
  margin: 18px auto 0;
}

.quote-layout,
.contact-layout,
.about-layout,
.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 30px;
  align-items: start;
}
.quote-panel h2,
.contact-form-card h2 {
  margin-top: 8px;
}
.quote-panel .lead,
.contact-form-card .lead {
  margin-top: 14px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.field, .field-wide {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-wide { grid-column: 1 / -1; }
label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--brand);
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(24,56,74,0.12);
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  border-radius: 16px;
  padding: 14px 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(105,200,216,0.65);
  box-shadow: 0 0 0 4px rgba(105,200,216,0.12);
}
textarea {
  min-height: 148px;
  resize: vertical;
}
.label-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}
.hint {
  color: var(--ink-muted);
  font-size: 0.78rem;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(24,56,74,0.1);
  background: rgba(255,255,255,0.76);
  color: var(--ink-soft);
}
.check-item input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--brand);
}
.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.status-message {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.quote-sidebar-stack,
.info-stack,
.about-stack,
.steps-grid,
.faq-grid,
.note-grid,
.stats-grid {
  display: grid;
  gap: 18px;
}
.quote-sidebar,
.info-card,
.note-card,
.stat-card,
.steps-card,
.faq-card {
  padding: 26px;
}
.quote-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--brand);
  line-height: 1;
  margin: 8px 0 10px;
}
.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.steps-card strong,
.stat-card strong {
  display: inline-block;
  color: var(--accent);
  margin-bottom: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.contact-grid {
  display: grid;
  gap: 18px;
}
.contact-item {
  display: grid;
  gap: 4px;
}
.contact-item span {
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 700;
}
.contact-item a,
.contact-item strong {
  color: var(--brand);
  font-size: 1.1rem;
}
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 18px;
}
.inline-links a {
  color: var(--brand);
  font-weight: 700;
}
.inline-links a:hover {
  text-decoration: underline;
}

.scope-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.scope-jump a {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(24,56,74,0.08);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}
.scope-jump a:hover {
  color: var(--brand);
  border-color: rgba(24,56,74,0.15);
}
.scope-stack {
  display: grid;
  gap: 28px;
}
.scope-card {
  scroll-margin-top: 110px;
}
.scope-head .lead {
  margin-top: 14px;
}
.scope-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.scope-column {
  padding: 24px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line-soft);
}
.scope-column h3 {
  font-size: 1.12rem;
}
.scope-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  color: var(--ink-muted);
}

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

@media (max-width: 1100px) {
  .hero-grid,
  .page-hero-shell,
  .feature-row,
  .feature-row.reverse,
  .standards-grid,
  .results-grid,
  .quote-layout,
  .contact-layout,
  .about-layout,
  .services-layout,
  .compact-proof-shell {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .editorial-copy,
  .feature-row.reverse .editorial-photo {
    order: initial;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-card-main {
    inset: 0 120px 42px 0;
  }

  .footer-top,
  .testimonial-grid,
  .steps-grid,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-grid .result-photo img,
  .editorial-photo img,
  .page-hero-photo img {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .site-header {
    backdrop-filter: blur(10px);
  }

  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    background: rgba(251,253,254,0.97);
    border: 1px solid rgba(24,56,74,0.08);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .site-nav.open { display: flex; }
  .site-nav .nav-cta {
    text-align: center;
  }

  .section { padding: 82px 0; }
  .section-tight { padding: 66px 0; }

  h1 { font-size: clamp(2.8rem, 10vw, 4rem); }
  h2 { font-size: clamp(2.2rem, 9vw, 3.2rem); }

  .hero {
    padding: 36px 0 58px;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .hero-card-main,
  .hero-stack,
  .floating-note {
    position: static;
    width: auto;
    inset: auto;
  }

  .hero-card-main img {
    min-height: 320px;
  }

  .hero-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card-side img {
    aspect-ratio: 4 / 4.2;
  }

  .trust-strip,
  .footer-top,
  .testimonial-grid,
  .steps-grid,
  .scope-columns,
  .form-grid,
  .check-grid,
  .service-overview-grid {
    grid-template-columns: 1fr;
  }
  .service-overview-grid { grid-template-columns: 1fr; }
  .carousel-header { flex-direction: column; align-items: stretch; }
  .carousel-controls { justify-content: flex-end; }
  .carousel-track, .carousel-slide img { height: 460px; min-height: 460px; }


  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .trust-item:last-child {
    border-bottom: 0;
  }

  .service-tile {
    min-width: 100%;
    max-width: none;
  }

  .photo-mosaic {
    grid-template-columns: 1fr;
  }

  .photo-mosaic .gallery-card:first-child {
    grid-row: auto;
  }

  .editorial-copy,
  .content-panel,
  .quote-panel,
  .contact-form-card,
  .contact-card,
  .scope-card,
  .cta-shell,
  .audience-shell {
    padding: 26px;
  }

  .label-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-copy span {
    display: none;
  }
}


@media (max-width: 980px) {
  .hero-home {
    padding-bottom: 72px;
  }
  .hero-home-shell {
    min-height: 700px;
    border-radius: 0 0 26px 26px;
  }
  .hero-home-wash {
    background: linear-gradient(180deg, rgba(238,244,246,0.94) 0%, rgba(238,244,246,0.90) 30%, rgba(238,244,246,0.66) 58%, rgba(238,244,246,0.18) 100%);
  }
  .hero-home-content {
    max-width: 100%;
    padding: 36px 24px 168px;
  }
  .hero-home-content h1 {
    max-width: 8ch;
  }
  .hero-home-note {
    left: 18px;
    right: 18px;
    max-width: none;
    border-radius: 26px;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-home {
    padding-bottom: 60px;
  }
  .hero-home-shell {
    min-height: 680px;
  }
  .hero-home-content {
    padding: 30px 18px 176px;
  }
  .hero-home-content h1 {
    max-width: 6.5ch;
    font-size: clamp(3.15rem, 17vw, 4.65rem);
  }
  .hero-home-content .lead {
    max-width: 28ch;
    font-size: 1.02rem;
  }
  .hero-home-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    gap: 12px;
    padding: 16px 18px;
  }
  .hero-home-note p {
    font-size: 0.96rem;
    line-height: 1.5;
  }
}


html { scroll-padding-top: 92px; }
body { overflow-x: hidden; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
img { height: auto; }
input, select, textarea, button { -webkit-appearance: none; appearance: none; }
a, button, input, select, textarea { touch-action: manipulation; }
main { display: block; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink-muted);
  font-size: 0.84rem;
}
.breadcrumb a:hover { color: var(--brand); }
.site-nav a { min-height: 44px; display: inline-flex; align-items: center; }
.hero-actions .btn { min-height: 52px; }
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.result-photo img, .editorial-photo img, .page-hero-photo img, .gallery-card img {
  border-radius: inherit;
}
@media (max-width: 760px) {
  .header-shell { gap: 12px; }
  .brand { gap: 10px; }
  .brand img { width: 52px; height: 52px; }
  .brand-copy strong { font-size: 0.95rem; }
  .site-nav a { width: 100%; justify-content: center; padding: 12px 14px; }
  .site-nav { max-height: calc(100vh - 100px); overflow: auto; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .faq-grid { grid-template-columns: 1fr; }
  .page-hero-shell, .quote-layout, .contact-layout, .standards-grid, .results-grid { grid-template-columns: 1fr; }
  .page-hero-copy, .page-hero-photo, .quote-panel, .quote-sidebar, .contact-form-card, .info-stack { width: 100%; }
}
@media (max-width: 640px) {
  .container { width: min(var(--container), calc(100% - 20px)); }
  .hero-home-shell { min-height: 620px; }
  .hero-home-content { padding-bottom: 170px; }
  .hero-home-note { border-radius: 22px; }
  .results-carousel { padding: 18px; }
  .carousel-track, .carousel-slide img { height: 360px; min-height: 360px; }
  .carousel-slide figcaption { font-size: 0.92rem; }
  .editorial-copy, .content-panel, .quote-panel, .contact-form-card, .contact-card, .scope-card, .cta-shell, .audience-shell, .footer-card { padding: 22px; }
  .field input, .field select, .field textarea, .field-wide input, .field-wide select, .field-wide textarea { min-height: 52px; }
  .footer-bottom { gap: 6px; }
  .footer-credit { font-size: 0.72rem; line-height: 1.45; }
}
