section,
header,
footer {
  overflow-x: clip;
  max-width: 100%;
  box-sizing: border-box;
}

.page-main {
  padding-top: var(--header-h);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: flex-end;
  color: #F2F4F1;
  background: linear-gradient(145deg, #2F3B3A, #4A6470, #7D8B69);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 59, 58, 0.44);
  background: linear-gradient(180deg, rgba(47, 59, 58, 0.28) 0%, rgba(47, 59, 58, 0.55) 70%, rgba(47, 59, 58, 0.72) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: 4rem 0 5.5rem;
}

.hero-content .eyebrow {
  color: var(--c-accent-2);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 14ch;
  margin-bottom: 1.35rem;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  max-width: 34rem;
  color: rgba(242, 244, 241, 0.82);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.page-hero {
  position: relative;
  padding: 5.5rem 0 4rem;
  background: linear-gradient(145deg, #2F3B3A, #4A6470 55%, #7D8B69);
  color: #F2F4F1;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 59, 58, 0.4);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .eyebrow {
  color: var(--c-accent-2);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 16ch;
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 36rem;
  color: rgba(242, 244, 241, 0.78);
  line-height: 1.65;
  font-size: 1.05rem;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section-mist {
  background: linear-gradient(180deg, #F2F4F1, #E4E9E4);
}

.section-olive {
  background: linear-gradient(160deg, #7D8B69, #A6B39A);
  color: var(--c-dark);
}

.section-slate {
  background: var(--c-primary);
  color: #F2F4F1;
}

.section-dark {
  background: var(--c-dark);
  color: #F2F4F1;
}

.section-contrast {
  background: var(--c-bg-2);
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.section-head.stack {
  grid-template-columns: 1fr;
  max-width: 42rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-head p {
  color: rgba(42, 48, 46, 0.72);
  line-height: 1.65;
}

.section-slate .section-head p,
.section-dark .section-head p {
  color: rgba(242, 244, 241, 0.7);
}

.section-olive .section-head p {
  color: rgba(42, 48, 46, 0.75);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.stagger.is-in > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.is-in > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.is-in > *:nth-child(3) { transition-delay: 0.19s; }
.stagger.is-in > *:nth-child(4) { transition-delay: 0.26s; }
.stagger.is-in > *:nth-child(5) { transition-delay: 0.33s; }
.stagger.is-in > *:nth-child(6) { transition-delay: 0.4s; }

.stagger.is-in > * {
  opacity: 1;
  transform: translateY(0);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.editorial-copy .eyebrow {
  margin-bottom: 1rem;
}

.editorial-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.editorial-copy p {
  color: rgba(42, 48, 46, 0.78);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.editorial-copy p:last-child {
  margin-bottom: 0;
}

.editorial-figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}

.editorial-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.editorial-figure:hover img {
  transform: scale(1.04);
}

.signature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 70vh;
}

.signature-panel {
  background: linear-gradient(160deg, #7D8B69, #A6B39A);
  padding: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.25rem;
}

.signature-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--c-dark);
}

.signature-panel p {
  max-width: 28rem;
  line-height: 1.65;
  color: rgba(42, 48, 46, 0.8);
}

.signature-visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.signature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.showcase {
  display: grid;
  gap: 1.5rem;
}

.showcase-feature {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-soft);
}

.showcase-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.showcase-feature:hover img {
  transform: scale(1.05);
}

.showcase-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(47, 59, 58, 0.72));
  z-index: 1;
}

.showcase-body {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: #F2F4F1;
  max-width: 36rem;
}

.showcase-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  margin: 0.6rem 0 0.75rem;
}

.showcase-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.5rem;
}

.showcase-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.route-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .route-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(47, 59, 58, 0.12);
  }
}

.route-card-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.route-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.route-card:hover .route-card-media img {
  transform: scale(1.06);
}

.route-card-body {
  padding: 1.4rem 1.4rem 1.6rem;
}

.route-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  margin: 0.55rem 0 0.65rem;
}

.route-card-body p {
  font-size: 0.95rem;
  color: rgba(42, 48, 46, 0.72);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.route-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(74, 100, 112, 0.12);
}

.insight {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.insight-aside {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  align-self: start;
}

.insight-aside .eyebrow {
  margin-bottom: 1rem;
}

.insight-aside h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.insight-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--c-primary);
  border-left: 2px solid var(--c-accent);
  padding-left: 1.15rem;
}

.insight-prose p {
  margin-bottom: 1.15rem;
  line-height: 1.68;
  color: rgba(42, 48, 46, 0.8);
  font-size: 1.02rem;
}

.insight-prose h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2rem 0 0.85rem;
  letter-spacing: -0.015em;
}

.services-hybrid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.25rem;
}

.services-list {
  background: rgba(242, 244, 241, 0.12);
  border: 1px solid rgba(242, 244, 241, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 1.4rem;
  border-bottom: 1px solid rgba(242, 244, 241, 0.1);
  transition: background 0.35s ease;
}

.service-row:last-child {
  border-bottom: 0;
}

.service-row:hover {
  background: rgba(242, 244, 241, 0.08);
}

.service-num {
  font-family: var(--font-meta);
  font-size: 0.85rem;
  color: var(--c-accent-2);
  letter-spacing: 0.08em;
}

.service-row h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.service-row p {
  font-size: 0.88rem;
  color: rgba(242, 244, 241, 0.62);
  line-height: 1.5;
}

.service-tag {
  font-family: var(--font-meta);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-natural);
  white-space: nowrap;
}

.services-compare {
  background: #F2F4F1;
  color: var(--c-text);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
}

.services-compare h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  text-align: left;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid rgba(74, 100, 112, 0.12);
  font-size: 0.9rem;
  vertical-align: top;
}

.compare-table th {
  font-family: var(--font-meta);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-primary);
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--c-accent), var(--c-secondary));
}

.timeline-item {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  margin: 0.35rem auto 0;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 6px rgba(180, 111, 78, 0.15);
  position: relative;
  z-index: 1;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(74, 100, 112, 0.08);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.5rem;
}

.timeline-content .meta {
  margin-bottom: 0.4rem;
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.timeline-content p {
  color: rgba(42, 48, 46, 0.75);
  line-height: 1.6;
  font-size: 0.96rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
}

.testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.4;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}

.testimonial cite {
  font-style: normal;
  font-family: var(--font-meta);
  font-size: 0.82rem;
  color: rgba(42, 48, 46, 0.6);
}

.proof-side {
  display: grid;
  gap: 1.25rem;
}

.case-mini {
  background: var(--c-bg-2);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.case-mini h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0.5rem 0 0.55rem;
}

.case-mini p {
  font-size: 0.92rem;
  color: rgba(42, 48, 46, 0.72);
  line-height: 1.55;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.logo-pill {
  font-family: var(--font-meta);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 100, 112, 0.18);
  color: rgba(42, 48, 46, 0.55);
  background: rgba(255, 255, 255, 0.5);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.stat-item {
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(74, 100, 112, 0.08);
}

.stat-item .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: -0.03em;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stat-item .label {
  font-family: var(--font-meta);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(42, 48, 46, 0.6);
}

.cta-block {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(135deg, #2F3B3A, #4A6470 60%, #7D8B69);
  color: #F2F4F1;
  text-align: center;
}

.cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 16ch;
  margin: 0 auto 1rem;
}

.cta-block p {
  max-width: 34rem;
  margin: 0 auto 2rem;
  color: rgba(242, 244, 241, 0.78);
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.contact-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  margin: 0.75rem 0 1rem;
}

.contact-info p {
  color: rgba(42, 48, 46, 0.75);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.contact-details {
  display: grid;
  gap: 1.1rem;
}

.contact-detail {
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(74, 100, 112, 0.12);
}

.contact-detail span {
  display: block;
  font-family: var(--font-meta);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 0.35rem;
}

.contact-detail a,
.contact-detail strong {
  font-weight: 500;
  font-size: 1.02rem;
}

.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-family: var(--font-meta);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: var(--c-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(74, 100, 112, 0.18);
  background: var(--c-bg);
  border-radius: 14px;
  padding: 0.95rem 1.1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(74, 100, 112, 0.12);
}

.form-card .btn {
  width: 100%;
}

.map-wrap {
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  background: var(--c-dark);
  box-shadow: var(--shadow-soft);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

.js-marquee-wrap {
  overflow: hidden;
  max-width: 100vw;
  padding: 1.75rem 0;
  background: var(--c-dark);
  color: #F2F4F1;
}

.js-mq-row {
  display: flex;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 38px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  opacity: 0.12;
  line-height: 1.2;
}

.js-mq-row span {
  padding-right: 2.5rem;
}

.js-mq-row.fwd {
  animation: mq-fwd 42s linear infinite;
}

.js-mq-row.rev {
  animation: mq-rev 48s linear infinite;
  margin-top: 0.35rem;
}

@keyframes mq-fwd {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes mq-rev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.landscape-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cat-tile {
  position: relative;
  border-radius: var(--radius);
  padding: 1.75rem 1.4rem;
  min-height: 160px;
  background: #fff;
  border: 1px solid rgba(74, 100, 112, 0.08);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .cat-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
  }
}

.cat-tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--c-accent);
}

.cat-tile h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cat-tile p {
  font-size: 0.9rem;
  color: rgba(42, 48, 46, 0.68);
  line-height: 1.55;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(74, 100, 112, 0.1);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.35rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  min-height: 56px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-bg-2);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), background 0.35s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--c-primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 12px;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 12px;
  transition: transform 0.35s var(--ease), opacity 0.25s ease;
}

.faq-item.is-open .faq-icon {
  background: var(--c-accent);
  transform: rotate(0deg);
}

.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after {
  background: #F2F4F1;
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.faq-a-inner {
  padding: 0 1.35rem 1.35rem;
  color: rgba(42, 48, 46, 0.75);
  line-height: 1.65;
  font-size: 0.96rem;
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #F2F4F1, #E4E9E4 40%, #DDE3DE);
  padding: 2rem;
}

.thanks-card {
  width: min(100%, 560px);
  text-align: center;
  background: #fff;
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(2.5rem, 5vw, 3.75rem) 2rem;
  box-shadow: var(--shadow-soft);
}

.thanks-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--c-secondary), var(--c-natural));
  display: grid;
  place-items: center;
  position: relative;
}

.thanks-mark svg {
  width: 28px;
  height: 28px;
  stroke: var(--c-dark);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: draw-check 0.9s var(--ease) 0.2s forwards;
}

@keyframes draw-check {
  to { stroke-dashoffset: 0; }
}

.thanks-card .eyebrow {
  margin-bottom: 0.85rem;
}

.thanks-card h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.thanks-card p {
  color: rgba(42, 48, 46, 0.72);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.legal-page {
  padding: 4rem 0 5rem;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.legal-meta {
  color: rgba(42, 48, 46, 0.55);
  margin-bottom: 2.5rem;
  font-family: var(--font-meta);
  font-size: 0.85rem;
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 2.25rem 0 0.85rem;
  letter-spacing: -0.015em;
}

.legal-content h3 {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 600;
  margin: 1.5rem 0 0.65rem;
}

.legal-content p,
.legal-content li {
  color: rgba(42, 48, 46, 0.8);
  line-height: 1.7;
  margin-bottom: 0.9rem;
  font-size: 0.98rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-content li {
  list-style: disc;
  margin-bottom: 0.45rem;
}

.legal-content ol li {
  list-style: decimal;
}

.inner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .feature-panel:hover {
    transform: translateY(-6px);
  }
}

.feature-panel h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0.65rem 0 0.7rem;
}

.feature-panel p {
  color: rgba(42, 48, 46, 0.72);
  line-height: 1.6;
  font-size: 0.95rem;
}

.value-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(74, 100, 112, 0.14);
}

.value-col {
  padding: 2rem 1.75rem;
  border-right: 1px solid rgba(74, 100, 112, 0.14);
}

.value-col:last-child {
  border-right: 0;
}

.value-col .num {
  font-family: var(--font-meta);
  font-size: 0.8rem;
  color: var(--c-accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  display: block;
}

.value-col h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.value-col p {
  color: rgba(42, 48, 46, 0.72);
  line-height: 1.65;
  font-size: 0.96rem;
}

.icon-line {
  width: 36px;
  height: 36px;
  stroke: var(--c-accent-2);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-line path,
.icon-line circle,
.icon-line polyline,
.icon-line line {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  transition: stroke-dashoffset 1s var(--ease);
}

.reveal.is-in .icon-line path,
.reveal.is-in .icon-line circle,
.reveal.is-in .icon-line polyline,
.reveal.is-in .icon-line line,
.stagger.is-in .icon-line path,
.stagger.is-in .icon-line circle,
.stagger.is-in .icon-line polyline,
.stagger.is-in .icon-line line {
  stroke-dashoffset: 0;
}

@media (max-width: 1024px) {
  .section-head,
  .editorial-grid,
  .signature,
  .insight,
  .services-hybrid,
  .proof-grid,
  .contact-split {
    grid-template-columns: 1fr;
  }

  .insight-aside {
    position: static;
  }

  .showcase-row,
  .landscape-cats,
  .stats-row,
  .inner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-editorial {
    grid-template-columns: 1fr;
  }

  .value-col {
    border-right: 0;
    border-bottom: 1px solid rgba(74, 100, 112, 0.14);
  }

  .value-col:last-child {
    border-bottom: 0;
  }

  .signature-visual {
    min-height: 360px;
  }

  .service-row {
    grid-template-columns: 3.5rem 1fr;
  }

  .service-tag {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .hero-content {
    width: min(100% - 1.5rem, var(--container));
    padding: 3rem 0 4rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .showcase-row,
  .landscape-cats,
  .stats-row,
  .inner-grid {
    grid-template-columns: 1fr;
  }

  .showcase-feature {
    min-height: 380px;
  }

  .timeline::before {
    left: 0.85rem;
  }
}

@media (min-width: 1025px) {
  .hero-media img.js-parallax {
    transform: scale(1.08) translateY(var(--py, 0px));
  }
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
