:root {
  --ink: #14202d;
  --muted: #627184;
  --line: #dce2e8;
  --paper: #f7f8fa;
  --surface: #ffffff;
  --soft-blue: #eef3f7;
  --navy: #071827;
  --navy-2: #0d253b;
  --navy-3: #14324c;
  --gold: #d3a45c;
  --gold-light: #f2d58f;
  --gold-dark: #95662f;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(6, 21, 36, 0.18);
  --heading-font: "Cormorant Garamond", "Playfair Display", "Iowan Old Style",
    "Palatino Linotype", Palatino, Georgia, serif;
  --body-font: Avenir, "Avenir Next", Inter, ui-sans-serif, system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body-font);
  line-height: 1.6;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(211, 164, 92, 0.26);
  background: rgba(5, 17, 30, 0.93);
  backdrop-filter: blur(18px);
  color: var(--white);
}

.nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  color: var(--white);
  font-weight: 760;
  letter-spacing: 0;
}

.brand > span:last-child {
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(242, 213, 143, 0.42);
  border-radius: 8px;
  background: rgba(9, 29, 48, 0.96);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 640;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 680;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-items: center;
  gap: 5px;
  border: 1px solid rgba(242, 213, 143, 0.42);
  border-radius: 8px;
  padding: 11px;
  background: rgba(9, 29, 48, 0.96);
  color: var(--gold-light);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.nav-links a:not(.button):hover {
  color: var(--gold-light);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 780;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button.primary {
  border-color: rgba(242, 213, 143, 0.25);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #091725;
  box-shadow: 0 14px 30px rgba(211, 164, 92, 0.26);
}

.button.primary:hover {
  background: linear-gradient(135deg, #f6dfa3, #c89545);
}

.button.ghost {
  border-color: rgba(242, 213, 143, 0.48);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.button.ghost:hover {
  border-color: rgba(242, 213, 143, 0.75);
  background: rgba(255, 255, 255, 0.11);
}

.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(
      ellipse at 82% 44%,
      rgba(20, 50, 76, 0.5) 0%,
      rgba(7, 24, 39, 0) 48%
    ),
    linear-gradient(
      120deg,
      #051522 0%,
      #071827 54%,
      #0d253b 100%
    ),
    var(--navy);
}

.hero::after {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: 82px;
  background: linear-gradient(
    180deg,
    rgba(247, 248, 250, 0) 0%,
    rgba(247, 248, 250, 0.22) 45%,
    var(--paper) 100%
  );
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-areas:
    "content visual"
    "metrics visual";
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  column-gap: 54px;
  row-gap: 32px;
  min-height: 760px;
  align-content: center;
  align-items: start;
  padding: 54px 0;
}

.hero-content {
  grid-area: content;
  max-width: 650px;
  align-self: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold-light);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--gold);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-family: var(--heading-font);
  font-size: 5.15rem;
  font-weight: 540;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 640px;
  font-family: var(--body-font);
  font-size: clamp(3.4rem, 5vw, 4.4rem);
  font-weight: 620;
  line-height: 1;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.hero .eyebrow {
  color: var(--gold-light);
  font-size: 1.08rem;
  font-weight: 780;
  letter-spacing: 0.025em;
  text-shadow: 0 0 24px rgba(242, 213, 143, 0.18);
  text-transform: none;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
}

.hero-quote {
  max-width: 600px;
  margin: 0 0 28px;
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 18px;
}

.hero-quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--heading-font);
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
  grid-area: visual;
  align-self: center;
  justify-self: end;
  width: min(380px, 100%);
}

.hero-visual::before {
  position: absolute;
  inset: 28px -28px -28px 28px;
  border: 1px solid rgba(242, 213, 143, 0.42);
  border-radius: 8px;
  content: "";
}

.hero-portrait {
  position: relative;
  width: 100%;
  border: 1px solid rgba(242, 213, 143, 0.42);
  border-radius: 8px;
  background: rgba(7, 24, 39, 0.5);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  max-height: min(620px, 72svh);
  object-fit: contain;
  object-position: center;
}

.metrics {
  display: grid;
  grid-area: metrics;
  max-width: 700px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 213, 143, 0.25);
  border-radius: 8px;
  background: rgba(242, 213, 143, 0.25);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.metric {
  min-height: 108px;
  padding: 22px;
  background: rgba(8, 28, 46, 0.82);
}

.metric strong {
  display: block;
  color: var(--gold-light);
  font-size: 1.75rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  font-weight: 650;
}

.metric:nth-child(3) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.metric:nth-child(3) strong {
  order: 1;
}

.metric:nth-child(3) span {
  order: 2;
  margin-top: 8px;
  margin-bottom: 0;
}

section:not(.hero) {
  padding: 92px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  justify-items: center;
  margin-bottom: 42px;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.contact-band h2 {
  margin-bottom: 0;
  font-family: var(--heading-font);
  font-weight: 540;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading h2 {
  font-size: 2.85rem;
}

.section-heading p {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: var(--muted);
  font-size: 1.06rem;
}

.services {
  background:
    linear-gradient(180deg, var(--paper), var(--surface) 42%, var(--paper));
}

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

.card {
  min-height: 248px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(20, 32, 45, 0.06);
}

.service-card {
  display: block;
  padding: 26px;
  border-top: 4px solid var(--gold);
}

.reveal-ready > * {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 620ms ease,
    filter 620ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter, transform;
}

.reveal-ready > *:nth-child(2) {
  transition-delay: 90ms;
}

.reveal-ready > *:nth-child(3) {
  transition-delay: 180ms;
}

.reveal-ready > *:nth-child(4) {
  transition-delay: 270ms;
}

.reveal-ready > *:nth-child(5) {
  transition-delay: 360ms;
}

.reveal-ready > *:nth-child(6) {
  transition-delay: 450ms;
}

.reveal-ready.is-visible > * {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready > * {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 1.22rem;
  font-weight: 650;
  line-height: 1.22;
}

.service-card p,
.condition-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.conditions {
  background: var(--soft-blue);
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 18px;
}

.condition-card {
  min-height: 190px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 24px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(20, 32, 45, 0.06);
}

.condition-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 1.24rem;
  font-weight: 650;
  line-height: 1.2;
}

.about {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.about-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.about-copy {
  width: min(100%, 1080px);
  margin: 0 auto;
  text-align: center;
}

.about-copy .eyebrow {
  color: var(--gold-dark);
}

.about-copy h2 {
  max-width: 920px;
  margin: 0 auto 30px;
  color: var(--navy);
  font-size: 2.85rem;
}

.about-text {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  text-align: left;
}

.about-text p {
  max-width: none;
  margin: 0;
  line-height: 1.72;
}

.lead {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.18rem;
}

.about .lead {
  color: var(--ink) !important;
  font-size: 1.2rem;
}

.about-body {
  border-left: 2px solid var(--gold);
  padding-left: clamp(20px, 3vw, 34px);
  color: var(--muted);
  font-size: 1.03rem;
}

.about-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.about .button.ghost {
  border-color: rgba(149, 102, 47, 0.42);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #091725;
  box-shadow: 0 12px 30px rgba(211, 164, 92, 0.2);
}

.about .button.ghost:hover {
  border-color: rgba(149, 102, 47, 0.6);
  background: linear-gradient(135deg, #f6dfa3, #c89545);
  color: #091725;
}

section.about {
  padding-bottom: 48px;
}

section.services {
  padding-top: 48px;
}

.service-card {
  border-right-color: rgba(211, 164, 92, 0.38);
  border-bottom-color: rgba(211, 164, 92, 0.38);
  border-left-color: rgba(211, 164, 92, 0.38);
  background: linear-gradient(180deg, #fffdf8 0%, var(--surface) 42%);
}

.custom-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.custom-section-inner {
  max-width: 920px;
}

.custom-section h2 {
  max-width: 18ch;
  margin: 0 0 22px;
  font-family: var(--heading-font);
  font-size: 3.45rem;
  font-weight: 540;
  line-height: 1.04;
}

.custom-section-copy {
  max-width: 78ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  white-space: pre-line;
}

.content-page-header,
.article-header {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(242, 213, 143, 0.22);
  padding: 84px 0 76px;
  background:
    linear-gradient(90deg, rgba(7, 24, 39, 0.98), rgba(13, 37, 59, 0.96)),
    var(--navy);
  color: var(--white);
}

.content-page-header::after,
.article-header::after {
  position: absolute;
  right: max(30px, calc((100vw - 1140px) / 2));
  bottom: -42px;
  width: 230px;
  height: 190px;
  background: url("brand/logo-symbol.webp") center / contain no-repeat;
  content: "";
  opacity: 0.12;
  pointer-events: none;
}

.content-page-header .container,
.article-header .container {
  position: relative;
  z-index: 1;
}

.content-page-header h1,
.article-header h1,
.not-found h1 {
  max-width: 20ch;
  margin-bottom: 20px;
  font-size: 4.1rem;
  line-height: 1.02;
}

.content-page-header > .container > p:last-child,
.article-excerpt {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.16rem;
}

.content-list-section {
  min-height: 420px;
  background: var(--paper);
}

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

.content-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  padding: 26px;
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(20, 32, 45, 0.06);
}

.content-card-type {
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.content-card h2,
.content-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 1.62rem;
  font-weight: 650;
  line-height: 1.14;
}

.content-card p:not(.content-card-type) {
  margin-bottom: 24px;
  color: var(--muted);
}

.content-card-link {
  margin-top: auto;
  color: var(--gold-dark);
  font-weight: 800;
}

.content-card-link:hover,
.content-card h2 a:hover,
.content-card h3 a:hover {
  color: var(--navy-3);
}

.empty-content {
  max-width: 720px;
}

.empty-content h2 {
  margin-bottom: 12px;
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 600;
}

.empty-content p {
  color: var(--muted);
}

.article-container,
.article-section-inner {
  max-width: 840px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 700;
}

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

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 680;
}

.article-body {
  background: var(--surface);
}

.article-body .article-section {
  border-bottom: 1px solid var(--line);
  padding: 54px 0;
}

.article-section h2 {
  max-width: 24ch;
  margin: 0 0 20px;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.08;
}

.article-section-inner > p:not(.eyebrow),
.article-section-inner > ul,
.article-section-inner > blockquote {
  max-width: 74ch;
}

.article-section-inner > p:not(.eyebrow) {
  color: #3e4d5b;
  font-size: 1.06rem;
}

.article-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.article-list li {
  position: relative;
  border-left: 3px solid var(--gold);
  padding: 12px 0 12px 18px;
  color: #3e4d5b;
}

.article-section--highlight {
  border-color: rgba(242, 213, 143, 0.2) !important;
  background: var(--navy-2);
  color: var(--white);
}

.article-section--highlight h2 {
  color: var(--white);
}

.article-section--highlight .article-section-inner > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.article-section--quote blockquote {
  margin: 0;
  border-left: 4px solid var(--gold);
  padding-left: 28px;
}

.article-section--quote blockquote p {
  margin-bottom: 12px;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 1.8rem;
  line-height: 1.3;
}

.article-section--quote cite {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 740;
}

.medical-note {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: var(--soft-blue);
}

.medical-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.medical-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.related-content {
  background: var(--paper);
}

.not-found {
  display: grid;
  min-height: 62svh;
  align-items: center;
  padding: 80px 0;
  background: var(--soft-blue);
}

.not-found p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.button.secondary-link {
  border-color: var(--navy-2);
  background: transparent;
  color: var(--navy);
}

.contact {
  padding-bottom: 64px;
  background: var(--paper);
}

.contact-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 40px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(242, 213, 143, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(7, 24, 39, 0.98), rgba(13, 37, 59, 0.96)),
    var(--navy);
  color: var(--white);
  padding: 44px;
  box-shadow: var(--shadow);
}

.contact-band::after {
  position: absolute;
  right: -18px;
  bottom: -28px;
  width: 210px;
  height: 150px;
  background: url("brand/logo-symbol.webp") center / contain no-repeat;
  content: "";
  opacity: 0.12;
  pointer-events: none;
}

.contact-band > * {
  position: relative;
  z-index: 1;
}

.contact-band h2 {
  margin-bottom: 14px;
  font-size: 3.15rem;
}

.contact-band p {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-info {
  display: grid;
  gap: 12px;
}

.contact-info a,
.contact-info address {
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-style: normal;
  font-weight: 700;
}

.contact-map {
  display: grid;
  grid-column: 1 / -1;
  gap: 18px;
  margin-top: 4px;
}

.contact-map-frame {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(242, 213, 143, 0.32);
  border-radius: 6px;
  aspect-ratio: 16 / 5;
  background: #102d45;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.contact-map-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 28px;
  text-align: center;
}

.contact-map-placeholder[hidden] {
  display: none;
}

.contact-map-placeholder strong {
  color: var(--gold-light);
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 600;
}

.contact-map-placeholder p {
  margin: 4px 0 18px;
}

.contact-map-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-map-details address {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-style: normal;
  font-weight: 700;
}

.contact-map-details .button {
  flex: 0 0 auto;
}

.contact-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--gold-light);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

footer {
  border-top: 1px solid rgba(242, 213, 143, 0.18);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  padding: 28px 0 34px;
}

.privacy-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  width: min(560px, calc(100% - 44px));
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(242, 213, 143, 0.32);
  border-radius: 8px;
  padding: 18px;
  background: rgba(5, 17, 30, 0.96);
  color: var(--white);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.privacy-banner[hidden] {
  display: none;
}

.privacy-banner strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-light);
}

.privacy-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-details {
  display: grid;
  justify-items: center;
  gap: 7px;
  text-align: center;
}

.footer-details a {
  color: var(--gold-light);
  font-weight: 700;
}

.footer-details a:hover {
  color: var(--white);
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-instagram svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-instagram .instagram-dot {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 980px) {
  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
  }

  .brand {
    align-items: center;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    grid-column: 1 / -1;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    width: 100%;
    border-top: 1px solid rgba(242, 213, 143, 0.18);
    padding-top: 8px;
  }

  .nav.menu-ready .nav-links {
    display: none;
  }

  .nav.menu-ready .nav-links.is-open {
    display: flex;
  }

  .nav-links a:not(.button) {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 4px;
  }

  .nav-links .button {
    width: 100%;
    margin-top: 10px;
  }

  .hero {
    min-height: auto;
    background:
      radial-gradient(
        ellipse at 50% 82%,
        rgba(20, 50, 76, 0.42) 0%,
        rgba(7, 24, 39, 0) 48%
      ),
      linear-gradient(
        180deg,
        #051522 0%,
        #071827 58%,
        #0d253b 100%
      ),
      var(--navy);
  }

  .hero-inner {
    grid-template-areas:
      "visual"
      "content"
      "metrics";
    grid-template-columns: 1fr;
    row-gap: 40px;
    min-height: auto;
    align-items: start;
    padding: 58px 0 82px;
  }

  .hero-visual {
    width: min(460px, 100%);
    justify-self: center;
  }

  .hero-portrait {
    height: min(72vw, 560px);
    max-height: none;
    object-fit: cover;
    object-position: center 18%;
  }

  h1 {
    font-size: 4rem;
  }

  .hero h1 {
    font-size: 3.65rem;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-band h2,
  .custom-section h2,
  .article-section h2 {
    font-size: 2.75rem;
  }

  .section-heading,
  .about-grid,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .about-text {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 760px;
    margin: 0 auto;
  }

  .service-grid,
  .content-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (min-width: 641px) and (max-width: 980px) {
  .hero-content,
  .metrics {
    width: min(460px, 100%);
    justify-self: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero .eyebrow {
    justify-content: center;
  }

  .hero h1,
  .hero-copy,
  .hero-quote {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-quote {
    border-right: 2px solid var(--gold);
    padding-right: 18px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .button {
    width: 100%;
  }

  h1 {
    max-width: 10ch;
    font-size: 3.08rem;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: 3.08rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-inner {
    grid-template-areas:
      "visual"
      "content"
      "metrics";
    row-gap: 32px;
    min-height: auto;
    padding: 42px 0 72px;
  }

  .hero-visual {
    width: min(100%, 360px);
    justify-self: center;
  }

  .hero-visual::before {
    inset: 14px -10px -14px 10px;
  }

  .hero-portrait {
    height: min(112vw, 460px);
    max-height: none;
    object-fit: cover;
    object-position: center 18%;
  }

  .metrics,
  .service-grid,
  .content-card-grid {
    grid-template-columns: 1fr;
  }

  .metric,
  .service-card,
  .condition-card {
    min-height: auto;
  }

  section:not(.hero) {
    padding: 70px 0;
  }

  .section-heading {
    gap: 18px;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-band h2,
  .custom-section h2,
  .article-section h2 {
    font-size: 2.22rem;
  }

  .about-copy h2 {
    margin-bottom: 24px;
    line-height: 1.1;
  }

  .about-text {
    gap: 20px;
  }

  .about .lead {
    font-size: 1.08rem;
    line-height: 1.65;
  }

  .about-body {
    padding-left: 18px;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  section.about {
    padding-bottom: 38px;
  }

  section.services {
    padding-top: 38px;
  }

  .content-page-header h1,
  .article-header h1,
  .not-found h1 {
    max-width: 14ch;
    font-size: 3rem;
  }

  .content-page-header,
  .article-header {
    padding: 62px 0 56px;
  }

  .content-page-header::after,
  .article-header::after {
    right: -45px;
    width: 180px;
  }

  .contact-band {
    padding: 28px;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 280px;
  }

  .contact-map-frame {
    aspect-ratio: 4 / 3;
  }

  .contact-map-details {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-map-details .button {
    width: 100%;
  }

  .privacy-banner {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }

  .footer-details {
    justify-items: center;
    text-align: center;
  }
}
