:root {
  --navy: #1f2a44;
  --deep-blue: #3e4a6b;
  --gold: #b89b4c;
  --light-neutral: #f2f2f2;
  --mid-neutral: #d9d4cd;
  --soft-blue-grey: #aeb8c4;
  --white: #ffffff;
  --ink: #24314d;
  --ink-soft: #586175;
  --line: rgba(31, 42, 68, 0.12);
  --line-strong: rgba(31, 42, 68, 0.2);
  --shadow-sm: 0 16px 36px rgba(31, 42, 68, 0.08);
  --shadow-lg: 0 30px 70px rgba(31, 42, 68, 0.16);
  --radius-sm: 20px;
  --radius-md: 28px;
  --radius-lg: 32px;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  z-index: 100;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header--scrolled {
  border-color: rgba(31, 42, 68, 0.08);
  box-shadow: 0 14px 40px rgba(31, 42, 68, 0.08);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__logo {
  width: clamp(118px, 11vw, 150px);
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  align-items: center;
}

.nav__link,
.header__phone,
.mobile-nav__link,
.footer__links a,
.contact-strip__item {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.nav__link:hover,
.footer__links a:hover {
  color: var(--gold);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header__phone {
  font-size: 14px;
  font-weight: 500;
  color: var(--deep-blue);
}

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

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
}

.menu-btn span + span {
  margin-top: 6px;
}

.mobile-nav {
  border-top: 1px solid rgba(31, 42, 68, 0.08);
  background: rgba(255, 255, 255, 0.97);
}

.mobile-nav__inner {
  display: grid;
  gap: 10px;
  padding: 14px 0 22px;
}

.mobile-nav__link {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  font-weight: 500;
}

.mobile-nav__link:hover,
.contact-strip__item:hover {
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(184, 155, 76, 0.26);
}

.btn--gold:hover {
  background: #c6ab5d;
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-strong);
}

.btn--outline:hover {
  background: rgba(31, 42, 68, 0.04);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--compact {
  min-height: 44px;
  padding: 10px 20px;
}

.btn--full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: clamp(720px, 85vh, 820px);
  overflow: hidden;
  background: var(--navy);
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 36%;
}

.hero__overlay {
  background: linear-gradient(90deg, rgba(31, 42, 68, 0.94) 0%, rgba(31, 42, 68, 0.86) 34%, rgba(31, 42, 68, 0.54) 64%, rgba(31, 42, 68, 0.18) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding: 132px 0 92px;
}

.hero__content {
  max-width: 520px;
  color: var(--white);
}

.eyebrow,
.section-label {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep-blue);
}

.eyebrow--light,
.section-label--light {
  color: rgba(255, 255, 255, 0.72);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--navy);
}

h1 {
  margin-top: 18px;
  font-size: clamp(44px, 6vw, 68px);
  color: var(--white);
}

h2 {
  font-size: clamp(34px, 4.8vw, 52px);
}

h3 {
  font-size: clamp(24px, 2.4vw, 32px);
}

p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.hero__lead {
  margin-top: 20px;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__actions--center {
  justify-content: center;
}

.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero__signals li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 14px;
  line-height: 1.4;
}

.section {
  padding: clamp(78px, 9vw, 122px) 0;
}

.section--neutral {
  background: var(--light-neutral);
}

.section--soft-blue {
  background: linear-gradient(180deg, rgba(174, 184, 196, 0.16) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.section__intro {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 48px;
}

.section__intro--center {
  margin-inline: auto;
  text-align: center;
}

.section__sub {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-soft);
}

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

.pillar-card,
.detail-card,
.treatment-card,
.step-card,
.care-block,
.statement-block {
  border-radius: var(--radius-md);
}

.pillar-card {
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.pillar-card__index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.pillar-card h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.statement-block {
  margin-top: 32px;
  padding: clamp(30px, 4vw, 44px);
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
  box-shadow: var(--shadow-lg);
}

.statement-block__copy {
  max-width: 760px;
}

.statement-block h3,
.statement-block p,
.cta-panel h2,
.cta-panel__lead,
.cta-panel__note,
.philosophy-panel__overlay h2,
.philosophy-panel__overlay p {
  color: var(--white);
}

.statement-block h3 {
  margin: 10px 0 18px;
}

.statement-block p {
  color: rgba(255, 255, 255, 0.82);
}

.statement-block__note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.66);
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
}

.split-grid > .media-card,
.split-grid > .content-panel {
  grid-column: span 6;
}

.media-card {
  position: relative;
  margin: 0;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.media-card--large {
  min-height: 620px;
}

.media-card--journey {
  min-height: 420px;
}

.media-card--journey img {
  object-position: center top;
}

.media-card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-panel {
  display: grid;
  gap: 18px;
  align-content: start;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.closing-line {
  font-weight: 600;
  color: var(--navy);
}

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

.detail-card {
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-sm);
}

.detail-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.detail-card p + p {
  margin-top: 10px;
}

.treatment-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.treatment-card img {
  height: 240px;
}

.treatment-card__body {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.treatment-card h3 {
  font-size: 28px;
}

.treatment-card__examples {
  color: var(--deep-blue);
  font-size: 14px;
  font-weight: 600;
}

.section-note {
  max-width: 780px;
  margin: 34px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 18px;
  color: var(--ink-soft);
}

.philosophy-panel {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy);
  box-shadow: var(--shadow-lg);
}

.philosophy-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 42, 68, 0.16) 0%, rgba(31, 42, 68, 0.6) 55%, rgba(31, 42, 68, 0.9) 100%);
}

.philosophy-panel__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-panel__overlay {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: inherit;
  max-width: 760px;
  padding: clamp(32px, 5vw, 56px);
}

.philosophy-panel__overlay h2 {
  margin: 12px 0 18px;
}

.philosophy-panel__lead {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.philosophy-panel__overlay p + p {
  margin-top: 12px;
}

.journey-layout {
  display: grid;
  gap: 28px;
}

.journey-layout + .care-block {
  margin-top: 28px;
}

.step-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-grid::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 3%;
  right: 3%;
  height: 1px;
  background: rgba(31, 42, 68, 0.12);
}

.step-card {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.step-card__number {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border: 1px solid rgba(184, 155, 76, 0.26);
  border-radius: 50%;
  background: rgba(184, 155, 76, 0.14);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.care-block {
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.care-block__copy {
  max-width: 780px;
}

.care-block h3 {
  margin: 10px 0 16px;
}

.cta-section {
  background: var(--navy);
}

.cta-panel {
  padding: clamp(42px, 6vw, 76px) clamp(22px, 5vw, 64px);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(62, 74, 107, 0.98) 0%, rgba(31, 42, 68, 1) 100%);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.cta-panel h2 {
  margin: 12px 0 18px;
}

.cta-panel__lead {
  max-width: 700px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.cta-panel__note {
  max-width: 660px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.7);
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.contact-strip__item {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.contact-strip__item:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.site-footer {
  background: #172033;
  color: rgba(255, 255, 255, 0.78);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 24px;
  padding: 32px 0 46px;
}

.footer__brand {
  display: grid;
  gap: 14px;
}

.footer__logo {
  width: min(160px, 100%);
  height: auto;
}

.footer__copy,
.footer__meta p,
.footer__legal {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

.footer__links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.footer__legal {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1100px) {
  .pillar-grid,
  .treatment-grid,
  .detail-grid,
  .contact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .split-grid > .media-card,
  .split-grid > .content-panel {
    grid-column: auto;
  }

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

@media (max-width: 960px) {
  .nav,
  .header__phone,
  .header__actions .btn--compact {
    display: none;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .media-card,
  .media-card--large {
    min-height: 460px;
  }

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

  .step-grid::before {
    display: none;
  }

  .mobile-nav[hidden] {
    display: none;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 86px;
  }

  .container {
    width: min(100% - 32px, 1200px);
  }

  .header__inner {
    min-height: 78px;
  }

  .hero__inner {
    padding: 112px 0 72px;
  }

  .hero__signals {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pillar-grid,
  .treatment-grid,
  .detail-grid,
  .step-grid,
  .contact-strip,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .section__sub,
  .hero__lead,
  .cta-panel__lead,
  .section-note {
    font-size: 17px;
  }

  .media-card,
  .media-card--large,
  .media-card--journey,
  .philosophy-panel {
    min-height: 380px;
  }

  .philosophy-panel__overlay {
    min-height: 380px;
  }

  .cta-panel {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-strip__item {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
