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

:root {
  --elevana-display: "Sora", sans-serif;
  --elevana-body: "Manrope", sans-serif;
  --elevana-teal: #0f4c5c;
  --elevana-teal-dark: #0a3944;
  --elevana-purple: #6d3c82;
  --elevana-purple-soft: #8e66a0;
  --elevana-gold: #d3ab5c;
  --elevana-gold-soft: #eddcb3;
  --elevana-ivory: #fffaf4;
  --elevana-sand: #f1e7db;
  --elevana-sage: #e7eee7;
  --elevana-mist: #f4f7f5;
  --elevana-surface: #ffffff;
  --elevana-ink: #1e2430;
  --elevana-muted: #5f6878;
  --elevana-border: rgba(30, 36, 48, 0.1);
  --elevana-shadow: 0 20px 44px rgba(30, 36, 48, 0.1);
  --elevana-radius: 14px;
}

html {
  scroll-behavior: smooth;
}

body.elevana-page {
  margin: 0;
  color: var(--elevana-ink);
  font-family: var(--elevana-body);
  background:
    radial-gradient(circle at 8% 12%, rgba(211, 171, 92, 0.12), transparent 24rem),
    radial-gradient(circle at 92% 4%, rgba(15, 76, 92, 0.1), transparent 26rem),
    linear-gradient(180deg, #f7f8f4 0%, #fffdf9 46%, #eef5f1 100%);
}

body.elevana-page.nav-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--elevana-gold);
  outline-offset: 3px;
}

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

picture {
  display: block;
}

main {
  overflow: clip;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1200;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--elevana-teal);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-shell {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(30, 36, 48, 0.08);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-sticky {
  box-shadow: 0 18px 40px rgba(30, 36, 48, 0.08);
  border-color: rgba(30, 36, 48, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.site-brand__mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

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

.site-brand__logo--footer {
  height: 92px;
}

.site-brand__text {
  min-width: 0;
}

.site-brand__title {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--elevana-purple);
}

.site-brand__subtitle {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(30, 36, 48, 0.55);
}

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

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav__links a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--elevana-ink);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav__links a:hover,
.site-nav__links a.is-active {
  color: var(--elevana-teal);
  background: var(--elevana-sage);
}

.site-nav__mobile-toggle {
  display: none;
  border: 0;
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(15, 76, 92, 0.1);
  color: var(--elevana-teal);
  font-size: 1.25rem;
}

.button-primary,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Poppins", sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button-primary {
  background: var(--elevana-teal);
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 76, 92, 0.24);
}

.button-primary:hover {
  transform: translateY(-1px);
  background: var(--elevana-gold);
  box-shadow: 0 16px 30px rgba(211, 171, 92, 0.3);
}

.button-secondary {
  background: transparent;
  color: var(--elevana-teal);
  border-color: rgba(15, 76, 92, 0.24);
}

.button-secondary:hover {
  transform: translateY(-1px);
  border-color: var(--elevana-gold);
  color: var(--elevana-purple);
  background: rgba(211, 171, 92, 0.12);
}

.button-ghost {
  padding-inline: 0;
  min-height: auto;
  border-radius: 0;
  color: var(--elevana-purple);
  background: transparent;
}

.button-ghost:hover {
  color: var(--elevana-teal);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(109, 60, 130, 0.08);
  color: var(--elevana-purple);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--elevana-gold);
}

.section-block {
  padding: 96px 0;
}

.section-block--tight {
  padding: 72px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading h1,
.section-heading h2,
.section-heading h3,
.hero-copy h1,
.page-hero__copy h1 {
  margin: 0 0 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--elevana-ink);
}

.section-heading h2,
.page-hero__copy h1 {
  font-size: 3.35rem;
  line-height: 1.04;
}

.hero-copy h1 {
  font-size: 4.25rem;
}

.section-heading p,
.hero-copy p,
.page-hero__copy p,
.body-copy p,
.body-copy li {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--elevana-muted);
}

.hero-section {
  padding: 34px 0 64px;
}

.hero-section--v2 {
  position: relative;
  padding: 70px 0 96px;
  overflow: hidden;
}

.hero-section--v2::before,
.hero-section--v2::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-section--v2::before {
  right: -12vw;
  top: -12rem;
  width: 42rem;
  height: 42rem;
  background: radial-gradient(circle, rgba(15, 76, 92, 0.16), transparent 68%);
}

.hero-section--v2::after {
  left: -18vw;
  bottom: -18rem;
  width: 48rem;
  height: 48rem;
  background: radial-gradient(circle, rgba(211, 171, 92, 0.16), transparent 68%);
}

.hero-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 530px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  background-image:
    linear-gradient(90deg, rgba(10, 57, 68, 0.9) 0%, rgba(10, 57, 68, 0.76) 42%, rgba(10, 57, 68, 0.16) 100%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 28px 58px rgba(15, 76, 92, 0.2);
  padding: 56px;
}

.hero-panel::after {
  content: none;
}

.hero-grid {
  display: block;
  width: min(680px, 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy--v2 {
  max-width: 720px;
}

.hero-copy h1 {
  color: #fff;
  text-wrap: balance;
}

.hero-section--v2 .hero-copy h1 {
  color: var(--elevana-ink);
  font-size: clamp(3.2rem, 6vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-intro {
  margin: 14px 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f3d786;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.hero-section--v2 .hero-intro {
  color: var(--elevana-purple);
}

.hero-section--v2 .hero-copy p {
  max-width: 680px;
  color: var(--elevana-muted);
}

.hero-actions,
.cta-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(10px);
}

.hero-actions .button-secondary:hover {
  border-color: #f3d786;
  background: rgba(243, 215, 134, 0.18);
  color: #fff;
}

.hero-section--v2 .hero-actions .button-secondary {
  border-color: rgba(15, 76, 92, 0.24);
  background: rgba(255, 255, 255, 0.54);
  color: var(--elevana-teal);
  backdrop-filter: blur(14px);
}

.hero-section--v2 .hero-actions .button-secondary:hover {
  border-color: var(--elevana-gold);
  background: rgba(211, 171, 92, 0.14);
  color: var(--elevana-purple);
}

.hero-points,
.check-list,
.policy-list,
.contact-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.check-list li,
.policy-list li,
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--elevana-ink);
}

.hero-points li {
  color: rgba(255, 255, 255, 0.92);
}

.hero-section--v2 .hero-points {
  max-width: 640px;
}

.hero-section--v2 .hero-points li {
  color: var(--elevana-ink);
}

.hero-points li i,
.check-list li i,
.policy-list li i,
.contact-list li i {
  margin-top: 5px;
  color: var(--elevana-gold);
}

.hero-stats,
.feature-grid,
.value-grid,
.service-grid,
.contact-grid,
.metrics-grid,
.policy-summary-grid {
  display: grid;
  gap: 20px;
}

.hero-stats {
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-stats--v2 {
  max-width: 680px;
}

.hero-stats .stat-card {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.hero-stats .stat-card strong {
  color: #f3d786;
}

.hero-stats .stat-card span {
  color: rgba(255, 255, 255, 0.82);
}

.stat-card,
.feature-card,
.value-card,
.service-card,
.contact-card,
.metric-card,
.policy-summary-card,
.surface-card,
.quote-card {
  height: 100%;
  border: 1px solid var(--elevana-border);
  border-radius: var(--elevana-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(30, 36, 48, 0.06);
}

.stat-card,
.feature-card,
.value-card,
.contact-card,
.metric-card,
.policy-summary-card,
.surface-card,
.quote-card {
  padding: 24px;
}

.stat-card strong,
.metric-card strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--elevana-purple);
}

.stat-card span,
.metric-card span {
  display: block;
  margin-top: 10px;
  color: var(--elevana-muted);
  line-height: 1.6;
}

.hero-section--v2 .hero-stats .stat-card {
  border-color: rgba(15, 76, 92, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 244, 0.78));
  box-shadow: 0 18px 44px rgba(15, 76, 92, 0.08);
}

.hero-section--v2 .hero-stats .stat-card strong {
  color: var(--elevana-teal);
}

.hero-section--v2 .hero-stats .stat-card span {
  color: var(--elevana-muted);
}

.hero-showcase {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.hero-showcase__ring {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.hero-showcase__ring--one {
  right: -38px;
  top: 18px;
  width: 220px;
  height: 220px;
  background: rgba(211, 171, 92, 0.26);
}

.hero-showcase__ring--two {
  left: -54px;
  bottom: 48px;
  width: 170px;
  height: 170px;
  border: 34px solid rgba(109, 60, 130, 0.12);
}

.hero-slide-stack {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0 0 48px;
  margin: 0;
  overflow: hidden;
  border-radius: 42px 42px 42px 150px;
  background: var(--elevana-sage);
  box-shadow: 0 34px 72px rgba(15, 76, 92, 0.2);
  opacity: 0;
  transform: translate3d(24px, 18px, 0) scale(0.96) rotate(1deg);
  transition: opacity 0.65s ease, transform 0.65s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  pointer-events: auto;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 57, 68, 0.02) 36%, rgba(10, 57, 68, 0.72) 100%),
    radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.32), transparent 28%);
  pointer-events: none;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  backdrop-filter: blur(16px);
}

.hero-slide figcaption span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--elevana-teal-dark);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.hero-slide figcaption strong {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.hero-slider-controls {
  position: absolute;
  right: 22px;
  bottom: 0;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(30, 36, 48, 0.08);
  box-shadow: 0 18px 34px rgba(30, 36, 48, 0.1);
  backdrop-filter: blur(16px);
}

.hero-slider-controls button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 76, 92, 0.2);
  transition: width 0.2s ease, background-color 0.2s ease;
}

.hero-slider-controls button.is-active {
  width: 34px;
  background: var(--elevana-teal);
}

.hero-media,
.page-hero__media,
.split-media {
  position: relative;
  z-index: 1;
}

.media-frame {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: var(--elevana-surface);
  box-shadow: 0 18px 36px rgba(30, 36, 48, 0.12);
}

.media-frame picture,
.service-card__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.media-frame img,
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame--hero {
  aspect-ratio: 5 / 4;
}

.media-frame--portrait {
  aspect-ratio: 4 / 5;
}

.media-frame--landscape {
  aspect-ratio: 16 / 10;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 52px;
  align-items: center;
}

.split-section--reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.page-home .home-intro {
  padding-top: 62px;
}

.page-home .home-services,
.page-home .home-values {
  position: relative;
  background:
    radial-gradient(circle at 12% 10%, rgba(211, 171, 92, 0.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(15, 76, 92, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(231, 238, 231, 0.36), rgba(255, 250, 244, 0.78));
}

.page-home .home-values {
  background:
    radial-gradient(circle at 82% 8%, rgba(109, 60, 130, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.86), rgba(244, 247, 245, 0.92));
}

.section-block > .container,
.page-hero > .container,
.hero-section > .container {
  position: relative;
}

.page-home .home-services > .container,
.page-home .home-values > .container {
  position: relative;
  z-index: 1;
}

.feature-grid,
.value-grid,
.service-grid,
.contact-grid,
.metrics-grid,
.policy-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card h3,
.value-card h3,
.service-card h3,
.contact-card h3,
.policy-summary-card h3,
.surface-card h3,
.quote-card h3 {
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
  font-size: 1.24rem;
  color: var(--elevana-ink);
}

.value-card {
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--elevana-gold);
  background: linear-gradient(180deg, #fff 0%, rgba(255, 250, 244, 0.92) 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -54px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(15, 76, 92, 0.08);
  pointer-events: none;
}

.value-card h3,
.value-card p {
  position: relative;
  z-index: 1;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(15, 76, 92, 0.1);
}

.metric-card {
  background: linear-gradient(180deg, #fff 0%, var(--elevana-mist) 100%);
}

.feature-card p,
.value-card p,
.service-card p,
.contact-card p,
.policy-summary-card p,
.surface-card p,
.quote-card p,
.surface-card li,
.service-card li {
  color: var(--elevana-muted);
  line-height: 1.75;
}

.feature-card,
.contact-card,
.surface-card,
.policy-summary-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after,
.contact-card::after,
.surface-card::after,
.policy-summary-card::after {
  content: "";
  position: absolute;
  right: -56px;
  top: -62px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: rgba(211, 171, 92, 0.08);
  pointer-events: none;
}

.feature-card > *,
.contact-card > *,
.surface-card > *,
.policy-summary-card > * {
  position: relative;
  z-index: 1;
}

.contact-card,
.surface-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover,
.surface-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 76, 92, 0.16);
  box-shadow: 0 22px 42px rgba(15, 76, 92, 0.1);
}

.surface-card > .eyebrow + h2,
.form-card > .eyebrow + h2 {
  margin-top: 20px;
}

.feature-card__icon,
.value-card__icon,
.contact-card__icon,
.service-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(211, 171, 92, 0.22), rgba(109, 60, 130, 0.12));
  color: var(--elevana-teal);
  font-size: 1.2rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 76, 92, 0.18);
  box-shadow: 0 22px 40px rgba(15, 76, 92, 0.12);
}

.service-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 76, 92, 0.12), rgba(211, 171, 92, 0.18)),
    var(--elevana-mist);
}

.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(10, 57, 68, 0.14));
  pointer-events: none;
  z-index: 2;
}

.service-card__body {
  position: relative;
  z-index: 1;
  padding: 26px;
}

.service-card__meta {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  background: rgba(15, 76, 92, 0.08);
  color: var(--elevana-teal);
}

.flag-strip {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(30, 36, 48, 0.08);
  box-shadow: 0 14px 26px rgba(30, 36, 48, 0.08);
}

.flag-strip img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-card__body ul,
.surface-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.service-band {
  padding: 24px 28px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(15, 76, 92, 0.08), rgba(109, 60, 130, 0.08));
  border: 1px solid rgba(15, 76, 92, 0.08);
}

.page-hero {
  padding: 42px 0 28px;
}

.page-hero__panel {
  padding: 42px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid rgba(30, 36, 48, 0.08);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 32px;
  align-items: center;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: var(--elevana-muted);
  font-size: 0.92rem;
}

.breadcrumb-list li + li::before {
  content: "/";
  margin-right: 10px;
  color: rgba(30, 36, 48, 0.3);
}

.anchor-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 1fr);
  align-items: start;
}

.policy-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
  align-items: start;
}

.anchor-nav {
  position: sticky;
  top: 110px;
  padding: 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--elevana-border);
  box-shadow: 0 18px 40px rgba(30, 36, 48, 0.06);
}

.policy-nav {
  position: sticky;
  top: 120px;
  padding: 24px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 245, 0.9));
  border: 1px solid var(--elevana-border);
  box-shadow: 0 18px 40px rgba(30, 36, 48, 0.06);
}

.policy-nav h3 {
  margin: 0 0 16px;
  font-family: "Poppins", sans-serif;
  font-size: 1.06rem;
}

.policy-nav ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-nav a {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--elevana-muted);
  font-weight: 700;
  line-height: 1.35;
}

.policy-nav a:hover,
.policy-nav a:focus-visible {
  color: var(--elevana-teal);
  background: rgba(15, 76, 92, 0.08);
}

.policy-content {
  display: grid;
  gap: 24px;
}

.anchor-nav h3 {
  margin: 0 0 16px;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
}

.anchor-nav a {
  display: block;
  padding: 10px 0;
  font-weight: 600;
  color: var(--elevana-muted);
}

.anchor-nav a:hover {
  color: var(--elevana-teal);
}

.policy-section {
  scroll-margin-top: 120px;
  padding: 28px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--elevana-border);
  box-shadow: 0 18px 40px rgba(30, 36, 48, 0.06);
}

.policy-section h2 {
  margin: 0 0 14px;
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
}

.policy-section h3 {
  margin: 22px 0 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1.08rem;
}

.policy-section p,
.policy-section li {
  color: var(--elevana-muted);
  line-height: 1.82;
}

.policy-section ul,
.policy-section ol {
  margin: 12px 0 0;
  padding-left: 18px;
}

.contact-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: start;
}

.page-contact .contact-card {
  min-height: 210px;
}

.page-contact #enquiry-form {
  position: relative;
  background:
    radial-gradient(circle at 16% 22%, rgba(211, 171, 92, 0.11), transparent 22rem),
    radial-gradient(circle at 86% 78%, rgba(15, 76, 92, 0.1), transparent 24rem);
}

.page-contact #enquiry-form .split-section {
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  align-items: start;
}

.inquiry-form-card {
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 244, 0.96));
  border-radius: 22px;
  box-shadow: 0 28px 58px rgba(15, 76, 92, 0.12);
}

.inquiry-form-card .mb-3 {
  margin-bottom: 18px !important;
}

.inquiry-form-card .form-label {
  margin-bottom: 9px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--elevana-ink);
}

.inquiry-form-card .form-control,
.inquiry-form-card .form-select {
  min-height: 50px;
  border-radius: 14px;
  border-color: rgba(30, 36, 48, 0.14);
  color: var(--elevana-ink);
  box-shadow: none;
}

.inquiry-form-card textarea.form-control {
  min-height: 170px;
}

.inquiry-form-card .form-control:focus,
.inquiry-form-card .form-select:focus {
  border-color: rgba(15, 76, 92, 0.45);
  box-shadow: 0 0 0 4px rgba(15, 76, 92, 0.08);
}

.form-card {
  padding: 28px;
}

.form-grid {
  display: grid;
  gap: 18px;
}

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

.form-field label {
  display: block;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(30, 36, 48, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: var(--elevana-ink);
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(15, 76, 92, 0.45);
  box-shadow: 0 0 0 4px rgba(15, 76, 92, 0.08);
}

.form-note {
  margin-top: 14px;
  color: var(--elevana-muted);
  font-size: 0.92rem;
}

.status-message {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(15, 76, 92, 0.08);
  color: var(--elevana-teal);
  font-weight: 600;
}

.status-message.is-visible {
  display: block;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--elevana-teal-dark) 0%, var(--elevana-teal) 56%, #5c4f82 100%);
  color: #fff;
  box-shadow: 0 24px 56px rgba(15, 76, 92, 0.24);
}

.cta-banner::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -96px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(243, 215, 134, 0.12);
  pointer-events: none;
}

.cta-banner h2,
.cta-banner h3,
.cta-banner p,
.cta-banner li {
  position: relative;
  z-index: 1;
  color: inherit;
}

.cta-banner .button-primary {
  background: #fff;
  color: var(--elevana-teal-dark);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.cta-banner .button-primary:hover {
  background: #f3d786;
  color: var(--elevana-teal-dark);
}

.cta-banner .button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cta-banner .button-secondary:hover {
  border-color: #f3d786;
  background: rgba(243, 215, 134, 0.16);
  color: #fff;
}

.site-footer {
  padding: 58px 0 28px;
  background: linear-gradient(180deg, #13282f 0%, #0e2027 100%);
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.7fr) minmax(240px, 0.9fr);
  gap: 48px;
  margin-bottom: 42px;
}

.site-footer__brand .site-brand__title {
  color: #fff;
}

.site-footer__brand p {
  margin-top: 18px;
}

.site-footer__flags {
  margin-top: 18px;
  max-width: 156px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.site-footer__flags img {
  width: 100%;
  height: 58px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.inquiry-form-card:hover {
  transform: none;
}

.site-footer__brand .site-brand__subtitle,
.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer h3 {
  margin: 0 0 16px;
  font-family: "Poppins", sans-serif;
  font-size: 1.08rem;
  color: #fff;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.acknowledgement-card {
  display: grid;
  row-gap: 10px;
  padding: 26px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(231, 238, 231, 0.88), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(15, 76, 92, 0.12);
}

.muted-label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--elevana-purple);
}

/* V2.1 production polish: stronger brand scale, richer surfaces, and safer responsive behavior. */
.site-header {
  padding: 12px 0;
  background: transparent;
  border-bottom: 0;
}

.site-header.is-sticky {
  background: transparent;
  box-shadow: none;
}

.site-header__inner {
  min-height: 76px;
  padding: 0 18px;
  border: 1px solid rgba(15, 76, 92, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 48px rgba(15, 76, 92, 0.1);
  backdrop-filter: blur(20px);
}

.site-brand__mark {
  width: 48px;
  height: 48px;
}

.site-brand__title {
  font-family: var(--elevana-body);
  font-size: 1.08rem;
  letter-spacing: 0.12em;
}

.site-brand__subtitle {
  font-family: var(--elevana-body);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(109, 60, 130, 0.58);
}

.site-nav__links a,
.button-primary,
.button-secondary,
.button-ghost,
.eyebrow,
.muted-label,
.service-card__meta {
  font-family: var(--elevana-body);
}

.section-heading h1,
.section-heading h2,
.section-heading h3,
.hero-copy h1,
.page-hero__copy h1 {
  font-family: var(--elevana-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  word-spacing: 0.04em;
}

.hero-section--v2 {
  padding: 64px 0 104px;
  background:
    radial-gradient(circle at 8% 18%, rgba(211, 171, 92, 0.2), transparent 26rem),
    radial-gradient(circle at 88% 12%, rgba(15, 76, 92, 0.15), transparent 29rem),
    linear-gradient(115deg, rgba(255, 250, 244, 0.82), rgba(232, 241, 236, 0.72));
}

.hero-stage {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.98fr);
  gap: clamp(44px, 6vw, 88px);
}

.hero-copy--v2 {
  position: relative;
  padding-left: 22px;
}

.hero-copy--v2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 84px;
  width: 4px;
  height: 176px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--elevana-gold), var(--elevana-purple));
}

.hero-section--v2 .hero-copy h1 {
  max-width: 760px;
  font-size: clamp(4rem, 6.7vw, 6.75rem);
  line-height: 0.9;
  color: #18202d;
}

.hero-section--v2 .hero-intro {
  margin-top: 22px;
  color: var(--elevana-teal);
}

.hero-section--v2 .hero-copy p {
  max-width: 620px;
  font-size: 1.05rem;
}

.hero-section--v2 .hero-points {
  grid-template-columns: 1fr;
  max-width: 620px;
}

.hero-section--v2 .hero-points li {
  padding: 10px 12px;
  border: 1px solid rgba(15, 76, 92, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 10px 26px rgba(15, 76, 92, 0.06);
}

.hero-section--v2 .button-primary {
  min-height: 56px;
  padding-inline: 26px;
  background: linear-gradient(135deg, var(--elevana-teal), #07313a);
  box-shadow: 0 18px 38px rgba(15, 76, 92, 0.28);
}

.hero-section--v2 .hero-actions .button-secondary {
  min-height: 56px;
  padding-inline: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.hero-stats--v2 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 690px;
}

.hero-section--v2 .hero-stats .stat-card {
  border-radius: 24px;
  padding: 24px 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 244, 0.84));
}

.hero-showcase {
  min-height: 650px;
}

.hero-slide {
  inset: 12px 0 54px;
  border-radius: 46px 46px 46px 170px;
  background: linear-gradient(135deg, rgba(15, 76, 92, 0.14), rgba(211, 171, 92, 0.18));
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px 34px 34px 140px;
  pointer-events: none;
}

.hero-slide figcaption {
  max-width: 82%;
  background: rgba(8, 43, 51, 0.72);
  box-shadow: 0 18px 42px rgba(8, 43, 51, 0.22);
}

.page-home .home-intro .split-section {
  gap: clamp(48px, 7vw, 98px);
}

.media-frame {
  border-radius: 30px;
  box-shadow: 0 28px 72px rgba(15, 76, 92, 0.14);
}

.media-frame--portrait {
  border-radius: 34px 34px 120px 34px;
}

.page-home .home-services,
.page-home .home-values {
  border-top: 1px solid rgba(15, 76, 92, 0.08);
  border-bottom: 1px solid rgba(15, 76, 92, 0.08);
}

.section-heading {
  max-width: 840px;
}

.section-heading h2 {
  font-size: clamp(3.2rem, 5.3vw, 5.4rem);
}

.service-grid {
  gap: 28px;
}

.service-card {
  padding: 8px;
  border-radius: 30px;
  border-color: rgba(15, 76, 92, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 244, 0.92));
  box-shadow: 0 22px 58px rgba(15, 76, 92, 0.1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(15, 76, 92, 0.16);
}

.service-card__media {
  border-radius: 24px 24px 12px 12px;
  aspect-ratio: 1.38 / 1;
}

.service-card__media img {
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.06);
}

.service-card__body {
  padding: 26px 22px 22px;
}

.service-card h3 {
  font-size: 1.42rem;
}

.page-services .page-hero {
  padding-top: 54px;
}

.page-hero__panel {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border: 1px solid rgba(15, 76, 92, 0.09);
  border-radius: 42px;
  background:
    radial-gradient(circle at 88% 4%, rgba(211, 171, 92, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(231, 238, 231, 0.72));
  box-shadow: 0 28px 76px rgba(15, 76, 92, 0.11);
}

.page-hero__panel::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(109, 60, 130, 0.08);
  pointer-events: none;
}

.page-hero__copy,
.page-hero__media {
  position: relative;
  z-index: 1;
}

.page-hero__copy h1 {
  font-size: clamp(3.4rem, 5.6vw, 6rem);
  line-height: 0.93;
}

.page-hero__media .surface-card {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 62px rgba(15, 76, 92, 0.12);
}

.cta-banner {
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 0%, rgba(211, 171, 92, 0.28), transparent 18rem),
    linear-gradient(135deg, #06333d, #0f4c5c 52%, #5a4c88);
  box-shadow: 0 30px 78px rgba(10, 57, 68, 0.2);
}

.site-footer {
  margin-top: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(211, 171, 92, 0.13), transparent 18rem),
    linear-gradient(180deg, #082b33, #071f26);
}

@media (max-width: 1199px) {
  .hero-grid,
  .hero-stage,
  .split-section,
  .split-section--reverse,
  .page-hero__grid,
  .contact-layout,
  .anchor-grid,
  .policy-layout,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 520px;
  }

  .hero-copy--v2 {
    padding-left: 0;
  }

  .hero-copy--v2::before {
    display: none;
  }

  .anchor-nav,
  .policy-nav {
    position: static;
  }

  .page-contact #enquiry-form .split-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .site-nav__mobile-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 88px 16px auto;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--elevana-shadow);
    border: 1px solid rgba(30, 36, 48, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav__links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .site-nav__links a {
    width: 100%;
  }

  .hero-stats,
  .feature-grid,
  .value-grid,
  .service-grid,
  .contact-grid,
  .metrics-grid,
  .policy-summary-grid,
  .form-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading h2,
  .page-hero__copy h1 {
    font-size: 3rem;
  }

  .hero-copy h1 {
    font-size: 3.3rem;
  }

  .hero-section--v2 .hero-copy h1 {
    font-size: clamp(3rem, 10vw, 4.8rem);
  }

  .hero-panel,
  .page-hero__panel {
    padding: 32px;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding: 8px 0;
  }

  .site-header__inner {
    min-height: 66px;
    padding: 0 12px;
    border-radius: 22px;
  }

  .site-brand {
    gap: 10px;
  }

  .site-brand__mark {
    width: 42px;
    height: 42px;
  }

  .site-brand__logo,
  .site-brand__logo--footer {
    height: 60px;
  }

  .site-brand__title {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  .site-brand__subtitle {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .site-nav {
    inset: 84px 12px auto;
  }

  .hero-section {
    padding: 20px 0 48px;
  }

  .hero-section--v2 {
    padding: 34px 0 64px;
  }

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

  .page-home .home-intro {
    padding-top: 54px;
  }

  .page-hero {
    padding-top: 36px;
  }

  .hero-panel,
  .page-hero__panel,
  .policy-section,
  .cta-banner,
  .form-card {
    padding: 24px;
  }

  .hero-panel {
    min-height: auto;
    border-radius: 14px;
    background-image:
      linear-gradient(180deg, rgba(10, 57, 68, 0.92) 0%, rgba(10, 57, 68, 0.78) 58%, rgba(10, 57, 68, 0.58) 100%),
      var(--hero-image);
    background-position: center;
  }

  .section-heading h2,
  .page-hero__copy h1 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }

  .hero-section--v2 .hero-copy h1 {
    font-size: clamp(3.1rem, 15vw, 4rem);
    line-height: 0.92;
  }

  .hero-section--v2 .hero-copy p,
  .section-heading p,
  .body-copy p,
  .body-copy li {
    font-size: 0.98rem;
  }

  .hero-section--v2 .hero-points li {
    border-radius: 18px;
  }

  .hero-showcase {
    min-height: 360px;
  }

  .hero-slide {
    inset: 0 0 44px;
    border-radius: 26px 26px 26px 92px;
  }

  .hero-slide::after {
    border-radius: 20px 20px 20px 76px;
  }

  .hero-slide figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .hero-slider-controls {
    right: 10px;
  }

  .hero-stats,
  .feature-grid,
  .value-grid,
  .service-grid,
  .contact-grid,
  .metrics-grid,
  .policy-summary-grid,
  .form-grid--two {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 6px;
    border-radius: 24px;
  }

  .service-card__media {
    border-radius: 18px 18px 10px 10px;
    aspect-ratio: 4 / 3;
  }

  .service-card__body {
    padding: 22px 18px 18px;
  }

  .page-hero__panel {
    border-radius: 26px;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

/* V2.2 readability pass: cleaner type, stronger mobile hierarchy, and denser pages that still scan well. */
body.elevana-page {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-header__inner {
  min-height: 82px;
  padding: 0 24px;
}

.site-brand__mark {
  width: 54px;
  height: 54px;
}

.site-brand__title {
  font-size: 1.16rem;
  letter-spacing: 0.11em;
}

.site-brand__subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.site-nav__links a {
  font-size: 1rem;
}

.section-heading h1,
.section-heading h2,
.section-heading h3,
.hero-copy h1,
.page-hero__copy h1 {
  line-height: 1.03;
  letter-spacing: -0.045em;
  word-spacing: 0;
  text-wrap: balance;
}

.hero-section--v2 .hero-copy h1 {
  max-width: 720px;
  font-size: clamp(3.7rem, 5.5vw, 5.7rem);
  line-height: 0.98;
}

.page-hero__copy h1 {
  max-width: 830px;
  font-size: clamp(3.1rem, 4.7vw, 5rem);
  line-height: 1.02;
}

.section-heading h2 {
  font-size: clamp(2.85rem, 4.3vw, 4.65rem);
  line-height: 1.04;
}

.hero-section--v2 .hero-copy p,
.page-hero__copy p,
.section-heading p,
.body-copy p,
.body-copy li {
  font-size: 1.04rem;
  line-height: 1.75;
}

.page-hero__panel {
  padding: clamp(42px, 5vw, 66px);
  border-radius: 34px;
}

.service-card h3,
.feature-card h3,
.value-card h3,
.contact-card h3,
.policy-summary-card h3,
.surface-card h3,
.quote-card h3 {
  letter-spacing: -0.02em;
}

.service-card__body p,
.service-card__body li,
.surface-card li,
.value-card p,
.contact-card p {
  font-size: 0.98rem;
  line-height: 1.72;
}

.policy-layout {
  grid-template-columns: minmax(230px, 0.28fr) minmax(0, 1fr);
  gap: 34px;
}

.policy-nav,
.policy-section {
  border-radius: 22px;
}

.policy-nav h3,
.anchor-nav h3,
.policy-section h3,
.inquiry-form-card .form-label,
.form-field label {
  font-family: var(--elevana-body);
}

.policy-nav a {
  font-size: 0.95rem;
}

.policy-section {
  padding: 36px;
}

.policy-section h2 {
  font-family: var(--elevana-display);
  font-size: 2rem;
  letter-spacing: -0.035em;
}

.policy-section p,
.policy-section li {
  font-size: 1rem;
  line-height: 1.82;
}

.inquiry-form-card {
  border-radius: 28px;
}

.site-brand__logo--footer {
  height: 100px;
}

@media (max-width: 1199px) {
  .site-header__inner {
    border-radius: 28px;
  }

  .policy-layout,
  .anchor-grid {
    grid-template-columns: 1fr;
  }

  .policy-nav,
  .anchor-nav {
    position: static;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding: 8px 0;
  }

  .site-header__inner {
    min-height: 70px;
    padding: 0 14px;
    border-radius: 22px;
  }

  .site-brand {
    gap: 10px;
  }

  .site-brand__mark {
    width: 44px;
    height: 44px;
  }

  .site-brand__title {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .site-brand__subtitle {
    font-size: 0.64rem;
    letter-spacing: 0.13em;
  }

  .site-nav__mobile-toggle {
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 15px;
    font-size: 1.1rem;
  }

  .hero-section--v2 {
    padding: 30px 0 56px;
  }

  .hero-stage,
  .page-hero__grid,
  .split-section,
  .split-section--reverse {
    gap: 30px;
  }

  .hero-section--v2 .hero-copy h1,
  .page-hero__copy h1 {
    font-size: clamp(2.55rem, 11vw, 3.25rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .section-heading h2 {
    font-size: clamp(2.2rem, 9.5vw, 2.9rem);
    line-height: 1.08;
  }

  .hero-section--v2 .hero-copy p,
  .page-hero__copy p,
  .section-heading p,
  .body-copy p,
  .body-copy li,
  .service-card__body p,
  .service-card__body li,
  .surface-card li,
  .value-card p,
  .contact-card p {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .hero-section--v2 .hero-points {
    gap: 10px;
  }

  .hero-section--v2 .hero-points li {
    padding: 10px 12px;
  }

  .page-hero {
    padding-top: 26px;
  }

  .page-hero__panel {
    padding: 22px;
    border-radius: 24px;
  }

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

  .hero-showcase {
    min-height: 330px;
  }

  .hero-slide figcaption strong {
    font-size: 0.9rem;
  }

  .service-card {
    border-radius: 22px;
  }

  .policy-nav,
  .policy-section,
  .inquiry-form-card {
    border-radius: 20px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .policy-content {
    min-width: 0;
  }

  .policy-section {
    padding: 22px;
  }

  .policy-section h2 {
    font-size: 1.45rem;
  }

  .policy-section h3 {
    font-size: 1rem;
  }

  .policy-section p,
  .policy-section li {
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .site-brand__logo--footer {
    height: 78px;
  }
}
