﻿:root {
  --bg: #f6f2ea;
  --paper: #fffdf8;
  --ink: #111111;
  --muted: #6e685f;
  --line: #dfd6c8;
  --line-strong: #cab59a;
  --gold: #c9a86c;
  --gold-soft: #e8d9bb;
  --night: #0a0a0a;
  --night-soft: #171717;
  --white-soft: rgba(255, 255, 255, 0.76);
  --sans: Arial, Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --shadow: 0 18px 55px rgba(10, 10, 10, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--serif);
  color: var(--ink);
  background: #f6f2ea;
  overflow-x: hidden;
}

.home-page.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.home-page.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.gold-rule {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 22%, var(--gold) 78%, transparent 100%);
}

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

.container,
.page-intro,
.grid-2,
.grid-3,
.grid-4,
.pillars,
.brand-strip__layout,
.testimonial-shell,
.testimonial-shell__grid,
.logo-grid,
.cta-banner {
  min-width: 0;
}

.page-intro > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.pillars > *,
.brand-strip__layout > *,
.testimonial-shell > *,
.testimonial-shell__grid > *,
.logo-grid > *,
.cta-banner > * {
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #ffffff;
}

.brand__logo {
  width: auto;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand__lockup {
  display: none;
  flex-direction: column;
  gap: 4px;
}

.brand__name {
  font-size: 18px;
  letter-spacing: 4px;
}

.brand__tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #ffffff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  background: #ffffff;
  content: "";
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a,
.nav-dropdown__toggle {
  text-decoration: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-dropdown__toggle:hover,
.nav-dropdown__toggle[aria-expanded="true"],
.nav-dropdown__toggle[data-current="true"] {
  color: #ffffff;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-dropdown__icon {
  width: 10px;
  height: 10px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown__icon {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 18px);
  width: min(640px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 15, 15, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown__item {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nav-dropdown__item:hover,
.nav-dropdown__item[aria-current="page"] {
  background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown__item strong {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
}

.nav-dropdown__item span {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.56);
  text-transform: none;
  letter-spacing: normal;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--night);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.84);
}

.btn--dark {
  background: var(--night);
  color: #ffffff;
}

.btn--light {
  border-color: rgba(17, 17, 17, 0.18);
  color: var(--ink);
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero--dark {
  background: linear-gradient(135deg, #0a0a0a 0%, #151515 60%, #0f0f0f 100%);
  color: #ffffff;
}

.home-page .hero--dark {
  min-height: calc(100vh - 80px);
  background: linear-gradient(135deg, #0a0a0a 0%, #151515 60%, #0f0f0f 100%);
}

.home-page .hero--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.home-page .hero--dark .hero__inner {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.hero--slider {
  isolation: isolate;
  position: relative;
  background: #090909;
}

.hero-slider__stage {
  position: relative;
  min-height: calc(100vh - 80px);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms ease, visibility 700ms ease;
  background-image:
    linear-gradient(180deg, rgba(5, 5, 5, 0.28) 0%, rgba(5, 5, 5, 0.5) 100%),
    var(--hero-slide-image, url("../img/slider/dubai-landscape-slider.jpg"));
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.42) 38%, rgba(0, 0, 0, 0.16) 100%);
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide .hero__inner,
.hero-slide .hero__content {
  position: relative;
  z-index: 1;
}

.hero--slider.is-dragging .hero-slider__stage {
  cursor: grabbing;
}

.hero-slider__controls {
  position: absolute;
  left: 50%;
  bottom: 176px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-slider__dot {
  width: 42px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.hero-slider__dot.is-active {
  width: 56px;
  background: var(--gold);
}

.hero--light {
  background: #f3ede3;
}

.hero__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 88px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 40px;
  align-items: end;
}

.hero__inner--single {
  grid-template-columns: minmax(0, 1fr);
}

.hero__content {
  animation: none;
  position: relative;
  z-index: 1;
}

.hero__kicker,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero__kicker::before,
.section-kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.hero h2,
.page-title {
  margin: 0 0 24px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.hero h1,
.hero h2 {
  animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-page .hero h1,
.home-page .hero h2 {
  line-height: 1.14;
}

.hero__lede,
.page-intro__text,
.prose p,
.feature-card p,
.stat-card p,
.timeline__item p,
.faq details,
.contact-card p,
.article-card p,
.service-card p,
.pillars__item p,
.quote-card p,
.metric-card p,
.form-note {
  font-family: var(--sans);
  color: inherit;
  line-height: 1.8;
  font-size: 14px;
}

.hero__lede {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 34px;
}

.hero__actions,
.stacked-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__aside {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(17, 17, 17, 0.92);
  box-shadow: var(--shadow);
}

.hero__aside h3,
.callout-card h3,
.faq details summary,
.contact-card h3,
.article-card h3,
.service-card h3,
.metric-card h3,
.pillars__item h3,
.feature-card h3,
.compare-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.hero__aside dl {
  margin: 0;
  display: grid;
  gap: 18px;
}

.hero__aside dt,
.eyebrow-label {
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__aside dd {
  margin: 0;
  font-family: var(--sans);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 70px 0;
}

.section--dark {
  background: #111111;
  color: #ffffff;
}

.section--paper {
  background: var(--paper);
  border-top: 1px solid rgba(17, 17, 17, 0.05);
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.page-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.page-intro h2,
.section-title {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.15;
}

.page-intro__text,
.prose p,
.feature-card p,
.stat-card p,
.timeline__item p,
.contact-card p,
.article-card p,
.service-card p,
.pillars__item p,
.quote-card p,
.metric-card p {
  color: var(--muted);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

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

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

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

.feature-card,
.service-card,
.article-card,
.contact-card,
.metric-card,
.quote-card,
.pillars__item,
.callout-card,
.timeline,
.faq,
.form-shell,
.compare-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.service-card,
.feature-card,
.article-card,
.contact-card,
.metric-card,
.pillars__item,
.compare-card,
.callout-card {
  padding: 28px;
}

.service-card--dark,
.callout-card--dark,
.quote-card--dark {
  background: #101010;
  border-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.service-card__eyebrow,
.article-card__meta,
.metric-card__meta,
.compare-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.service-card__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.entity-card__logo {
  height: 92px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.entity-card__logo img {
  width: auto;
  max-width: 100%;
  max-height: 76px;
  object-fit: contain;
}

.service-card ul,
.callout-card ul,
.compare-card ul,
.timeline__list,
.faq details p,
.check-list {
  margin: 18px 0 0;
  padding-left: 18px;
  font-family: var(--sans);
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.section--dark .service-card p,
.section--dark .feature-card p,
.section--dark .service-card ul,
.service-card--dark p,
.service-card--dark ul,
.callout-card--dark p,
.quote-card--dark p,
.quote-card--dark cite {
  color: rgba(255, 255, 255, 0.72);
}

.section--dark .feature-card {
  background: #101010;
  border-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.stat-card {
  padding: 30px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--line);
  border-right: none;
  text-align: center;
}

.stat-card:last-child {
  border-right: 1px solid var(--line);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 44px;
  font-weight: 400;
}

.pillars {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.page-intro--centered {
  text-align: center;
  justify-items: center;
}

.page-intro--centered .page-intro__text {
  max-width: 720px;
}

.brand-strip {
  background: transparent;
}

.brand-strip__intro {
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
}

.brand-strip__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: 42px;
  align-items: start;
}

.brand-strip__intro--left {
  max-width: none;
  margin: 0;
  padding-top: 18px;
  text-align: left;
}

.brand-strip__title {
  margin: 0;
  max-width: 340px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.brand-strip__text {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-left: 1px solid rgba(17, 17, 17, 0.08);
}

.logo-card {
  min-height: 184px;
  padding: 34px 28px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.logo-card img {
  max-width: 96%;
  max-height: 168px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
}

.logo-card__image--reliance {
  max-width: 100% !important;
  max-height: 188px !important;
  mix-blend-mode: multiply;
  opacity: 1;
}

.home-page .stat-card,
.home-page .service-card,
.home-page .feature-card,
.home-page .logo-card,
.home-page .testimonial-card,
.home-page .cta-banner {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.home-page .stat-card:hover,
.home-page .service-card:hover,
.home-page .feature-card:hover,
.home-page .logo-card:hover,
.home-page .testimonial-card:hover,
.home-page .cta-banner:hover {
  transform: translateY(-4px);
}

.home-page .service-card:hover,
.home-page .feature-card:hover,
.home-page .testimonial-card:hover {
  box-shadow: 0 24px 64px rgba(10, 10, 10, 0.12);
}

.home-page .testimonial-card:hover {
  transform: none;
  box-shadow: none;
}

.home-page .logo-card:hover {
  background: rgba(255, 255, 255, 0.96);
}

.pillars__list {
  display: grid;
  gap: 24px;
}

.pillars__item h3,
.metric-card h3,
.contact-card h3 {
  font-size: 24px;
}

.timeline {
  padding: 28px;
}

.timeline__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.timeline__item:first-child {
  padding-top: 0;
  border-top: none;
}

.timeline__step {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 6px;
}

.timeline__item h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 400;
}

.quote-card {
  padding: 34px;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
  padding: 0;
}

.testimonial-shell__intro {
  align-self: start;
  padding-top: 10px;
}

.testimonial-shell__pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 26px;
  padding: 0 18px;
  border: 1px solid rgba(31, 31, 31, 0.1);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
}

.testimonial-shell__intro h2 {
  margin: 0;
  max-width: 320px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.testimonial-shell__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 34px;
}

.testimonial-card {
  margin: 0;
}

.testimonial-card--plain {
  padding: 22px 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.testimonial-card p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.8;
}

.testimonial-card cite {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: #7081a0;
}

.quote-card p {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.6;
}

.quote-card cite {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-style: normal;
  color: var(--gold);
}

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

.faq {
  padding: 10px 28px;
}

.faq details {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.faq details:first-child {
  border-top: none;
}

.faq details summary {
  list-style: none;
  cursor: pointer;
  margin: 0;
}

.faq details summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin: 12px 0 0;
  padding-left: 2px;
}

.cta-banner {
  padding: 42px;
  border-radius: calc(var(--radius) + 6px);
  background: #111111;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.cta-banner p {
  margin: 0;
  font-family: var(--sans);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.cta-banner h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
}

.consultation-hero {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.28) 100%),
    url("../img/slider/dubai-landscape-slider-center.jpg");
  background-position: center;
  background-size: cover;
}

.consultation-hero .hero__inner {
  align-items: center;
}

.consultation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: start;
}

.consultation-layout > * {
  min-width: 0;
}

.consultation-summary {
  display: grid;
  gap: 18px;
}

.consultation-summary--wide {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
}

.consultation-advisor {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 34px;
  align-items: center;
}

.consultation-advisor > * {
  min-width: 0;
}

.consultation-advisor__photo {
  overflow: hidden;
  border: 1px solid rgba(201, 168, 108, 0.28);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.consultation-advisor__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.consultation-advisor__content .hero__lede {
  margin-bottom: 24px;
}

.consultation-advisor__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.fee-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #101010;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.fee-card__label {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
}

.fee-card__price {
  margin: 0;
  font-size: clamp(48px, 6vw, 74px);
  line-height: 1;
  font-weight: 400;
}

.fee-card p,
.fee-card li,
.consultation-note,
.calendly-shell__intro p,
.calendly-fallback {
  font-family: var(--sans);
  line-height: 1.75;
  font-size: 14px;
}

.fee-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.fee-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}

.fee-card li {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.76);
}

.consultation-note {
  margin: 18px 0 0;
  color: var(--muted);
}

.calendly-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.calendly-shell--full {
  width: 100%;
}

.calendly-shell__intro {
  padding: 28px 28px 0;
}

.calendly-shell__intro h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
}

.calendly-shell__intro p {
  margin: 0;
  color: var(--muted);
}

.calendly-inline-widget {
  min-width: 320px;
  height: 760px;
}

.calendly-fallback {
  margin: 0;
  padding: 0 28px 28px;
  color: var(--muted);
}

.calendly-fallback a {
  color: var(--ink);
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}

.form-shell {
  padding: 30px;
}

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

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

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  padding: 14px 16px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
}

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

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

.form-note {
  color: var(--muted);
}

.contact-stack {
  display: grid;
  gap: 24px;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.contact-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
}

.person-card {
  text-align: center;
}

.leadership-layout {
  display: grid;
  gap: 24px;
}

.leadership-chair {
  width: calc((100% - 48px) / 3);
  justify-self: center;
}

.person-card--spacer {
  visibility: hidden;
  pointer-events: none;
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

.person-card__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  margin: 0 auto 18px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(201, 168, 108, 0.28);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.12);
  background: linear-gradient(180deg, #f7f1e5 0%, #ece2cb 100%);
}

.person-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.person-card__role {
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.person-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(17, 17, 17, 0.04);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.person-card .article-card__link {
  display: flex;
  justify-content: center;
  width: max-content;
  margin: 18px auto 0;
}

.office-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.map-card {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(201, 168, 108, 0.08), rgba(201, 168, 108, 0.02)),
    linear-gradient(135deg, #f9f6ef 0%, #efe6d9 100%);
  position: relative;
}

.map-card--full {
  min-height: 620px;
}

.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-card::before,
.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.map-card::before {
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(17, 17, 17, 0.06) 24% 25%, transparent 25% 49%, rgba(17, 17, 17, 0.06) 49% 50%, transparent 50% 74%, rgba(17, 17, 17, 0.06) 74% 75%, transparent 75%),
    linear-gradient(transparent 0 24%, rgba(17, 17, 17, 0.06) 24% 25%, transparent 25% 49%, rgba(17, 17, 17, 0.06) 49% 50%, transparent 50% 74%, rgba(17, 17, 17, 0.06) 74% 75%, transparent 75%);
  opacity: 0.35;
}

.map-card::after {
  background:
    radial-gradient(circle at 70% 38%, rgba(201, 168, 108, 0.9) 0 7px, transparent 8px),
    radial-gradient(circle at 32% 64%, rgba(17, 17, 17, 0.85) 0 4px, transparent 5px);
}

.map-card--embed::before,
.map-card--embed::after {
  display: none;
}

.map-card__label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  max-width: 240px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow);
}

.map-card__label strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
}

.map-card__label p {
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.map-card__label p + p {
  margin-top: 12px;
}

.article-list {
  display: grid;
  gap: 24px;
}

.article-card__meta {
  color: var(--gold);
}

.article-card__link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}

.footer {
  background: linear-gradient(180deg, #111111 0%, #090909 100%);
  color: #ffffff;
  padding: 0 0 24px;
}

.footer__masthead {
  padding: 34px 0 20px;
  border-bottom: 1px solid rgba(201, 168, 108, 0.18);
}

.footer__brandmark {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
}

.footer__brandmark-logo {
  width: auto;
  height: 68px;
  object-fit: contain;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 30px 0 24px;
  border-bottom: 1px solid rgba(201, 168, 108, 0.12);
}

.footer__col {
  min-width: 0;
}

.footer__col:last-child {
  justify-self: end;
  width: min(100%, 220px);
  text-align: left;
}

.footer__title {
  margin: 0 0 16px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.footer__contact-list,
.footer__list {
  display: grid;
  gap: 5px;
}

.footer__col:first-child .footer__contact-list {
  gap: 5px;
}

.footer__col:last-child .footer__list {
  gap: 5px;
  justify-items: start;
}

.footer__contact-list p,
.footer__contact-list a,
.footer__list a,
.footer__legal a,
.footer__bottom p {
  margin: 0;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.74);
}

.footer__col:first-child .footer__contact-list p,
.footer__col:first-child .footer__contact-list a {
  line-height: 1.65;
}

.footer__contact-list a,
.footer__list a,
.footer__legal a {
  text-decoration: none;
}

.footer__contact-list a:hover,
.footer__list a:hover,
.footer__legal a:hover {
  color: var(--gold-soft);
}

.footer__utility {
  padding: 18px 0 10px;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0;
}

.footer__social--contact {
  justify-content: flex-start;
  margin-top: 12px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 108, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.82);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.footer__social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 168, 108, 0.34);
  background: rgba(201, 168, 108, 0.05);
  color: rgba(255, 255, 255, 0.96);
}

.footer__social-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 10px;
}

.footer__legal a {
  white-space: nowrap;
}

.footer__bottom {
  padding-top: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px 32px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(201, 168, 108, 0.12);
}

.footer__disclosure {
  flex: 1 1 720px;
  max-width: 880px;
}

.footer__disclosure p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.55;
}

.footer__disclosure p + p {
  margin-top: 6px;
}

.footer__disclosure a {
  color: rgba(255, 255, 255, 0.9);
}

.footer__disclosure a:hover {
  color: var(--gold);
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.68);
}

.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.muted {
  color: var(--muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 108, 0.4);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.spacer-top {
  margin-top: 30px;
}

.profile-connect-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-color: rgba(201, 168, 108, 0.42);
  background:
    linear-gradient(135deg, rgba(201, 168, 108, 0.18) 0%, rgba(255, 255, 255, 0.05) 46%, rgba(10, 10, 10, 0.32) 100%),
    #101010;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.profile-connect-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--gold);
}

.profile-connect-card h3 {
  max-width: 12ch;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
}

.profile-connect-card p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
}

.profile-connect-card .stacked-actions {
  margin-top: 34px;
}

.profile-connect-card .btn {
  min-width: 160px;
}

.mt-0 {
  margin-top: 0;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: min(680px, calc(100% - 48px));
  z-index: 1200;
  border: 1px solid rgba(198, 152, 77, 0.32);
  border-radius: 20px;
  background: rgba(13, 13, 13, 0.96);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  color: var(--ink-inverse);
  backdrop-filter: blur(16px);
}

.cookie-banner__content,
.cookie-banner__panel {
  width: auto;
  margin: 0;
}

.cookie-banner__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
}

.cookie-banner__copy h3 {
  margin-bottom: 4px;
  color: var(--paper);
  font-size: 21px;
  line-height: 1.05;
}

.cookie-banner__copy p {
  max-width: 920px;
  margin: 0;
  color: rgba(247, 242, 230, 0.82);
  font-size: 13px;
  line-height: 1.45;
}

.cookie-banner__actions,
.cookie-banner__panel-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie-banner__manage,
.cookie-banner__essential {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(198, 152, 77, 0.32);
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.cookie-banner__manage:hover,
.cookie-banner__essential:hover {
  background: rgba(198, 152, 77, 0.1);
  border-color: rgba(198, 152, 77, 0.56);
}

.cookie-banner__accept,
.cookie-banner__save {
  min-height: 40px;
  padding-inline: 16px;
}

.cookie-banner__panel {
  border-top: 1px solid rgba(198, 152, 77, 0.16);
  padding: 18px 0 24px;
}

.cookie-banner__panel[hidden] {
  display: none;
}

.cookie-banner__option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
}

.cookie-banner__option + .cookie-banner__option {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-banner__option strong,
.cookie-banner__status {
  display: block;
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-banner__option span {
  display: block;
  margin-top: 8px;
  color: rgba(247, 242, 230, 0.75);
  font-size: 13px;
  line-height: 1.7;
}

.cookie-banner__status {
  margin-top: 0;
  color: var(--gold);
}

.cookie-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 58px;
  height: 34px;
  cursor: pointer;
}

.cookie-toggle__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-toggle__track {
  position: relative;
  display: block;
  width: 58px;
  height: 34px;
  border: 1px solid rgba(198, 152, 77, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.cookie-toggle__track::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, background-color 180ms ease;
}

.cookie-toggle__input:checked + .cookie-toggle__track {
  border-color: rgba(198, 152, 77, 0.72);
  background: rgba(198, 152, 77, 0.24);
}

.cookie-toggle__input:checked + .cookie-toggle__track::after {
  transform: translateX(24px);
  background: var(--gold);
}

html[data-cookie-consent] .cookie-banner {
  display: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header__inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border-radius: 22px;
    background: rgba(17, 17, 17, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav .btn,
  .nav-dropdown__toggle {
    padding: 12px 6px;
  }

  .site-nav .btn {
    margin-top: 8px;
    width: 100%;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown__toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown__menu {
    position: static;
    right: auto;
    width: 100%;
    margin-top: 8px;
    grid-template-columns: 1fr;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
    transform: none;
    display: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: grid;
  }

  .hero__inner,
  .page-intro,
  .brand-strip__layout,
  .testimonial-shell,
  .pillars,
  .contact-layout,
  .consultation-layout,
  .consultation-summary--wide,
  .consultation-advisor,
  .consultation-advisor__facts,
  .office-grid,
  .section-split,
  .cta-banner,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .metrics-band,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .testimonial-shell__grid,
  .compare-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .leadership-chair {
    width: 100%;
  }

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

  .stat-card {
    border-right: 1px solid var(--line);
  }

  .testimonial-shell {
    gap: 28px;
  }

  .testimonial-shell__intro h2 {
    max-width: none;
  }

  .brand-strip__intro--left {
    text-align: center;
  }

  .footer__brandmark {
    flex-direction: column;
    text-align: center;
  }

  .footer__brandmark-logo {
    height: 62px;
  }

  .footer__col:last-child {
    justify-self: stretch;
    width: auto;
    text-align: left;
  }

  .footer__col:last-child .footer__list {
    justify-items: start;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
  }

  .footer__disclosure {
    max-width: 100%;
  }

  .footer__disclosure p,
  .footer__bottom p {
    text-align: center;
  }

  .footer__legal {
    align-items: center;
    justify-content: center;
  }

  .home-page .hero--dark {
    background-position: center, center, 62% center;
  }

  .home-page .hero__inner {
    padding: 96px 0 72px;
  }

  .home-page .hero--dark,
  .home-page .hero--dark .hero__inner {
    min-height: calc(100vh - 72px);
  }

  .home-page .hero__lede {
    max-width: none;
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.75;
  }

  .home-page .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .home-page .hero__actions .btn,
  .home-page .stacked-actions .btn {
    width: 100%;
  }

  .home-page .metrics-band {
    margin-top: -20px;
  }

  .home-page .page-intro,
  .home-page .pillars,
  .home-page .brand-strip__layout,
  .home-page .testimonial-shell,
  .home-page .cta-banner {
    gap: 22px;
  }

  .home-page .section-kicker,
  .home-page .hero__kicker {
    margin-bottom: 18px;
  }

}

@media (max-width: 640px) {
  .container,
  .site-header__inner,
  .hero__inner {
    width: min(var(--max), calc(100% - 28px));
  }

  .brand {
    gap: 0;
  }

  .brand__logo {
    height: 40px;
  }

  .hero__inner {
    padding: 88px 0 68px;
  }

  .hero h1,
  .hero h2,
  .page-title {
    font-size: 38px;
  }

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

  .metrics-band,
  .grid-4,
  .logo-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-right: 1px solid var(--line);
  }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cta-banner,
  .quote-card,
  .feature-card,
  .service-card,
  .article-card,
  .contact-card,
  .metric-card,
  .pillars__item,
  .timeline,
  .faq,
  .form-shell,
  .fee-card,
  .compare-card {
    padding: 22px;
  }

  .calendly-shell__intro {
    padding: 22px 22px 0;
  }

  .calendly-fallback {
    padding: 0 22px 22px;
  }

  .calendly-inline-widget {
    min-width: 100%;
    height: 700px;
  }

  .home-page .hero__inner {
    padding: 84px 0 60px;
  }

  .home-page .hero--dark,
  .home-page .hero--dark .hero__inner {
    min-height: auto;
  }

  .hero-slider__stage {
    min-height: max(620px, calc(100svh - 72px));
  }

  .home-page .hero--dark {
    background-position: center, center, 66% center;
  }

  .home-page .hero h1,
  .home-page .hero h2 {
    font-size: 34px;
    line-height: 1.16;
  }

  .footer__masthead {
    padding: 30px 0 18px;
  }

  .footer__grid {
    gap: 26px;
    padding: 24px 0 20px;
  }

  .footer__title {
    margin-bottom: 12px;
  }

  .footer__contact-list p,
  .footer__contact-list a,
  .footer__list a,
  .footer__legal a,
  .footer__bottom p {
    font-size: 12px;
    line-height: 1.8;
  }

  .home-page .hero__lede {
    font-size: 14px;
    line-height: 1.8;
  }

  .map-card--full {
    min-height: 460px;
  }

  .home-page .page-intro {
    gap: 16px;
  }

  .home-page .page-intro__text,
  .home-page .service-card p,
  .home-page .testimonial-card p,
  .home-page .brand-strip__title,
  .home-page .page-intro h2 {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .home-page .metrics-band {
    margin-top: 18px;
  }

  .home-page .stat-card {
    padding: 24px 20px;
  }

  .home-page .stat-card strong {
    font-size: 38px;
  }

  .home-page .page-intro h2,
  .home-page .brand-strip__title,
  .home-page .testimonial-shell__intro h2,
  .home-page .cta-banner h2 {
    font-size: 32px;
    line-height: 1.12;
  }

  .home-page .service-card__eyebrow {
    margin-bottom: 12px;
  }

  .home-page .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .logo-card {
    min-height: 132px;
    padding: 22px 18px;
  }

  .home-page .logo-card img {
    max-width: 100%;
    max-height: 132px;
  }

  .home-page .testimonial-shell {
    gap: 20px;
  }

  .home-page .testimonial-card p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.75;
  }

  .home-page .section--dark .feature-card,
  .home-page .service-card,
  .home-page .testimonial-card,
  .home-page .stat-card {
    box-shadow: none;
  }
}

@media (max-width: 980px) {
  .hero-slider__controls {
    top: 28px;
    right: 24px;
    bottom: auto;
    left: auto;
    transform: none;
  }

  .cookie-banner {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    border-radius: 22px;
  }

  .cookie-banner__content,
  .cookie-banner__panel {
    width: auto;
  }

  .cookie-banner__content {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 18px;
  }

  .cookie-banner__copy h3 {
    font-size: 22px;
  }

  .cookie-banner__actions,
  .cookie-banner__panel-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-slider__controls {
    top: 22px;
    right: 14px;
    gap: 8px;
  }

  .hero-slider__dot {
    width: 32px;
  }

  .hero-slider__dot.is-active {
    width: 44px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    border-radius: 18px;
  }

  .cookie-banner__content,
  .cookie-banner__panel {
    width: auto;
  }

  .cookie-banner__content {
    gap: 12px;
    padding: 12px;
  }

  .cookie-banner__copy h3 {
    font-size: 18px;
    line-height: 1.08;
  }

  .cookie-banner__copy p,
  .cookie-banner__option span {
    font-size: 12px;
    line-height: 1.35;
  }

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

  .cookie-banner__panel-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cookie-banner__manage,
  .cookie-banner__essential,
  .cookie-banner__accept,
  .cookie-banner__save {
    width: 100%;
    min-height: 38px;
    padding-inline: 10px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .cookie-banner__option {
    grid-template-columns: 1fr;
  }

  .cookie-toggle {
    margin-top: 4px;
  }
}
