:root {
  --blue: #202e63;
  --blue-deep: #0b1f34;
  --blue-soft: #eef2fb;
  --gold: #c9a84c;
  --gold-soft: #f3ead0;
  --paper: #fffffe;
  --mist: #f3f5f7;
  --line: #dce3ec;
  --text: #101626;
  --muted: #5b6475;
  --shadow: 0 18px 54px rgba(11, 31, 52, 0.13);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", Calibri, Arial, sans-serif;
  background: var(--mist);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: var(--gold);
  color: var(--blue-deep);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: top 0.2s ease;
}

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

.shell {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 254, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(11, 31, 52, 0.08);
  backdrop-filter: blur(14px);
}

.utility-bar {
  background: linear-gradient(90deg, var(--blue) 0%, #253672 58%, var(--blue) 100%);
  color: rgba(255, 255, 254, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 254, 0.1);
}

.utility-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.utility-compact {
  min-height: 42px;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.utility-icons {
  gap: 10px;
}

.utility-links a {
  color: rgba(255, 255, 254, 0.86);
}

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

.utility-icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 254, 0.14);
  background: rgba(255, 255, 254, 0.055);
  color: rgba(255, 255, 254, 0.82);
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.utility-icon:hover {
  background: rgba(255, 255, 254, 0.12);
  color: var(--gold);
  transform: translateY(-1px);
}

.utility-icon svg,
.utility-mail svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
}

.utility-letter {
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.utility-mail {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 254, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 254, 0.045);
  color: rgba(255, 255, 254, 0.7) !important;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.utility-mail:hover {
  color: rgba(255, 255, 254, 0.86) !important;
}

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

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

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  color: var(--blue);
  font-size: 0.98rem;
  line-height: 1.08;
  max-width: 220px;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-links a::after {
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 6px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  content: "";
  transition: transform 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--blue-soft);
  color: var(--blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.btn,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:active,
.button-link:active {
  transform: translateY(1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--blue-deep);
  box-shadow: 0 14px 34px rgba(201, 168, 76, 0.27);
}

.btn-gold:hover {
  background: #d8b95a;
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue);
  color: var(--paper);
  box-shadow: 0 14px 34px rgba(32, 46, 99, 0.16);
}

.btn-blue:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(32, 46, 99, 0.28);
  color: var(--blue);
}

.btn-ghost:hover {
  background: var(--blue-soft);
  transform: translateY(-2px);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--blue);
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease;
}

.menu-lines::before {
  transform: translateY(-7px);
}

.menu-lines::after {
  transform: translateY(5px);
}

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

.home-hero {
  min-height: 680px;
  display: grid;
  align-items: end;
  padding: 96px 0 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
  opacity: 0.68;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(32, 46, 99, 0.98) 0%, rgba(32, 46, 99, 0.84) 42%, rgba(32, 46, 99, 0.36) 100%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 64px;
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.eyebrow::before,
.section-kicker::before {
  flex: 0 0 auto;
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero .eyebrow::before,
.page-hero .eyebrow::before,
.contact-hub-main .eyebrow::before,
.section-head .section-kicker::before,
.split-heading .eyebrow::before {
  display: inline-block;
  flex: 0 0 34px;
  width: 34px;
  min-width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

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

h1 {
  margin: 18px 0 18px;
  max-width: 820px;
  font-size: clamp(3.3rem, 7vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 900;
  text-wrap: balance;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.hero-lead {
  max-width: 680px;
  color: rgba(255, 255, 254, 0.85);
  font-size: 1.18rem;
  font-weight: 700;
}

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

.hero-actions .btn-ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 254, 0.3);
  background: rgba(255, 255, 254, 0.08);
}

.hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 254, 0.15);
}

.signal-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 254, 0.22);
  background: rgba(11, 31, 52, 0.72);
  backdrop-filter: blur(10px);
}

.signal {
  min-height: 122px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 254, 0.14);
}

.signal:last-child {
  border-right: 0;
}

.signal strong {
  display: block;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.signal span {
  display: block;
  color: rgba(255, 255, 254, 0.76);
  font-weight: 700;
}

.section {
  padding: 92px 0;
  background: var(--paper);
}

.section.alt {
  background: var(--mist);
}

.section.blue {
  background: var(--blue);
  color: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.58fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

h2 {
  margin: 10px 0 0;
  max-width: 850px;
  color: var(--blue);
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 900;
  text-wrap: balance;
}

.blue h2 {
  color: var(--paper);
}

.section-head p,
.page-intro {
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 700;
}

.blue .section-head p {
  color: rgba(255, 255, 254, 0.78);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 520px;
  border-radius: 18px 18px 18px 70px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--blue);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 44% 50%;
}

.about-media-wide {
  min-height: 430px;
}

.about-media-wide img {
  min-height: 430px;
  object-position: 18% center;
}

.media-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 254, 0.94);
  color: var(--blue);
  box-shadow: 0 16px 42px rgba(11, 31, 52, 0.18);
}

.media-note strong {
  display: block;
  margin-bottom: 4px;
}

.media-note span {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

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

.principle,
.info-card,
.contact-card,
.step-card,
.cost-card,
.document-card,
.person-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(11, 31, 52, 0.06);
}

.principle {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--mist);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.principle:hover,
.benefit-card:hover,
.person-card:hover,
.step-card:hover,
.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.7);
}

.icon-box {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--gold);
}

.icon-box svg,
.wa-float svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.principle h3,
.benefit-card h3,
.person-card h3,
.service-copy h3,
.contact-card h3,
.step-card h3,
.document-card h3 {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 1.08rem;
  line-height: 1.22;
  font-weight: 900;
}

.principle p,
.benefit-card p,
.person-card p,
.service-copy p,
.contact-card p,
.step-card p,
.document-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

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

.benefit-aside {
  position: sticky;
  top: 126px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--blue-deep);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.benefit-aside h2 {
  color: var(--paper);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.benefit-aside p {
  color: rgba(255, 255, 254, 0.76);
  font-weight: 700;
}

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

.benefit-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 254, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 254, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.benefit-card h3 {
  color: var(--paper);
}

.benefit-card p {
  color: rgba(255, 255, 254, 0.74);
}

.benefit-card .icon-box {
  margin-bottom: 16px;
  background: rgba(255, 255, 254, 0.08);
}

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

.check-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 254, 0.9);
  font-size: 0.94rem;
  font-weight: 800;
}

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

.cta-band {
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--gold-soft);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-band h3 {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 1.25rem;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.page-hero {
  padding: 86px 0 72px;
  min-height: 430px;
  display: grid;
  align-items: end;
}

.page-hero .hero-content {
  padding-bottom: 0;
}

.directory-page-intro {
  padding-top: 108px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper) 74%, var(--mist) 100%);
}

.directory-page-intro .section-head {
  align-items: end;
  margin-bottom: 34px;
}

.directory-title {
  margin: 10px 0 0;
  max-width: 820px;
  color: var(--blue);
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 900;
  text-wrap: balance;
}

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

.person-card {
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.person-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center top;
  background: var(--blue-soft);
}

.person-card.peter img {
  object-position: center 20%;
}

.person-card.narcilo img {
  object-position: center top;
}

.person-body {
  padding: 20px;
}

.role {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.work-grid,
.why-grid,
.contact-methods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  padding: 22px;
}

.affiliation-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 24px;
}

.document-card {
  padding: 28px;
}

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

.document-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-weight: 700;
}

.document-list strong {
  color: var(--blue);
}

.dot-num {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--gold);
  font-weight: 900;
}

.cost-card {
  padding: 28px;
  background: var(--blue);
  color: var(--paper);
}

.cost-card h3 {
  margin: 0 0 10px;
  color: var(--paper);
  font-size: 1.6rem;
}

.cost-card p {
  color: rgba(255, 255, 254, 0.76);
  font-weight: 700;
}

.cost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0;
}

.cost-item {
  padding: 18px;
  border: 1px solid rgba(255, 255, 254, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 254, 0.08);
}

.cost-item strong {
  display: block;
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

.cost-item span {
  color: rgba(255, 255, 254, 0.76);
  font-weight: 800;
}

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

.step-card {
  padding: 22px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.step-card .dot-num {
  margin-bottom: 18px;
}

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

.service-card {
  display: grid;
  grid-template-columns: 1fr 0.98fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(11, 31, 52, 0.06);
}

.service-card.reverse {
  grid-template-columns: 0.98fr 1fr;
}

.service-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 34px;
}

.service-copy h3 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.03em;
}

.feature-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.plain-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
  font-weight: 750;
}

.plain-list li {
  margin: 5px 0;
}

.service-gallery {
  min-height: 560px;
  background: var(--blue);
  display: grid;
  grid-template-rows: 1fr auto;
}

.gallery-main {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.gallery-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.35s ease, transform 0.35s ease;
  cursor: zoom-in;
}

.gallery-main img.is-active {
  opacity: 1;
  transform: scale(1);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 10px;
  background: var(--blue);
}

.gallery-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.76;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.gallery-thumb.is-active,
.gallery-thumb:hover {
  opacity: 1;
  border-color: var(--gold);
}

.gallery-thumb img {
  width: 100%;
  height: 76px;
  object-fit: cover;
}

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

.contact-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
}

.contact-photo {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--blue);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 31, 52, 0.86), rgba(32, 46, 99, 0.18));
  content: "";
}

.contact-photo-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  color: var(--paper);
}

.contact-photo-content h2 {
  color: var(--paper);
}

.contact-panel {
  display: grid;
  gap: 14px;
}

.contact-card {
  padding: 22px;
  min-width: 0;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-card a,
.footer a {
  overflow-wrap: anywhere;
}

.contact-card a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-methods {
  margin-top: 24px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 24px;
}

.form-intro,
.form-card {
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(11, 31, 52, 0.06);
}

.form-intro {
  padding: 30px;
  background: var(--blue);
  color: var(--paper);
}

.form-intro h3 {
  margin: 0 0 10px;
  font-size: 1.8rem;
  line-height: 1.1;
}

.form-intro p {
  color: rgba(255, 255, 254, 0.76);
  font-weight: 700;
}

.form-card {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.18);
}

label.has-error input:not([type="checkbox"]):not([type="file"]),
label.has-error textarea,
label.has-error select {
  border-color: #b54747;
  background: #fffafa;
  box-shadow: 0 0 0 4px rgba(181, 71, 71, 0.12);
}

.file-field.has-error,
.check-field.has-error {
  border-color: #b54747;
  background: #fffafa;
  box-shadow: 0 0 0 4px rgba(181, 71, 71, 0.1);
}

.field-error {
  display: block;
  margin-top: 8px;
  color: #9c2f2f;
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.35;
  text-transform: none;
}

.spam-trap {
  position: absolute !important;
  inset: 0 auto auto 0 !important;
  width: 1px !important;
  height: 1px !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  white-space: nowrap !important;
}

.form-note {
  display: none;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(20, 108, 67, 0.18);
  border-radius: var(--radius);
  background: rgba(20, 108, 67, 0.1);
  color: #146c43;
  font-weight: 800;
}

.map-frame {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(11, 31, 52, 0.06);
}

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

.site-footer {
  background: var(--blue-deep);
  color: var(--paper);
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(170px, 0.6fr) minmax(240px, 0.8fr);
  gap: 34px;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  margin-bottom: 4px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 254, 0.76);
  font-weight: 700;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 254, 0.12);
  color: rgba(255, 255, 254, 0.64);
  font-weight: 700;
}

.romalinks {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
}

.romalinks img {
  width: 82px;
  max-height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 48;
  width: 62px;
  min-width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 254, 0.42);
  border-radius: 999px;
  background: linear-gradient(135deg, #d4ad3d, var(--gold));
  color: var(--blue-deep);
  box-shadow: 0 18px 42px rgba(11, 31, 52, 0.28);
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0;
  text-decoration: none;
  transform: translateZ(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  will-change: transform;
}

.wa-float::before {
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(201, 168, 76, 0.18);
  content: "";
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 24px 50px rgba(11, 31, 52, 0.34);
}

.wa-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(11, 31, 52, 0.88);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: 84vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 254, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 254, 0.1);
  color: var(--paper);
  font-weight: 900;
  cursor: pointer;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .reveal {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

@media (max-width: 1080px) {
  .utility-bar {
    display: none;
  }

  .nav {
    grid-template-columns: auto auto;
  }

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

  .nav-actions {
    justify-self: end;
  }

  .app-desktop {
    display: none;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    justify-content: space-between;
  }

  .signal-bar,
  .about-grid,
  .benefit-layout,
  .benefit-showcase,
  .affiliation-hero-card,
  .enrollment-form-layout,
  .service-card,
  .service-card.reverse,
  .contact-hero-card,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .enrollment-intro {
    position: static;
  }

  .benefit-aside {
    position: static;
  }

  .director-grid,
  .work-grid,
  .why-grid,
  .contact-methods,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, var(--container));
  }

  .nav {
    min-height: 70px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-copy strong {
    max-width: 168px;
    font-size: 0.86rem;
  }

  .brand-copy span {
    display: none;
  }

  .home-hero {
    min-height: 640px;
    padding-top: 64px;
  }

  .hero-bg::after {
    background: linear-gradient(180deg, rgba(32, 46, 99, 0.98), rgba(32, 46, 99, 0.76));
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  .hero-content {
    padding-bottom: 36px;
  }

  .hero-actions,
  .service-actions,
  .cta-band,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .button-link {
    width: 100%;
  }

  .signal-bar,
  .section-head,
  .benefit-grid,
  .director-grid,
  .work-grid,
  .why-grid,
  .process-grid,
  .feature-columns,
  .cost-grid,
  .form-grid,
  .footer-grid,
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .signal {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 254, 0.14);
  }

  .section {
    padding: 64px 0;
  }

  .directory-page-intro {
    padding-top: 58px;
  }

  .directory-title {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .page-hero {
    min-height: 360px;
    padding: 68px 0 56px;
  }

  .about-media,
  .about-media img {
    min-height: 390px;
  }

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

  .service-copy {
    padding: 24px;
  }

  .service-gallery {
    min-height: auto;
  }

  .gallery-main {
    min-height: 310px;
  }

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

  .contact-photo {
    min-height: 360px;
  }

  .contact-photo-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .wa-float {
    right: 18px;
    bottom: 18px;
    min-width: 58px;
    width: 58px;
    height: 58px;
    padding: 0;
  }

  .wa-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (max-width: 430px) {
  .brand-copy strong {
    max-width: 130px;
  }

  .nav-links {
    left: 14px;
    right: 14px;
    top: 82px;
  }

  .hero-lead,
  .section-head p,
  .page-intro {
    font-size: 0.98rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

/* Multipage polish layer */
.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.brand > span:not(.brand-copy) {
  display: grid;
  gap: 1px;
}

.brand > span:not(.brand-copy) strong {
  color: var(--blue);
  font-size: 0.98rem;
  line-height: 1.08;
  max-width: 240px;
}

.brand > span:not(.brand-copy) small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.btn-ghost-light {
  background: rgba(255, 255, 254, 0.08);
  border-color: rgba(255, 255, 254, 0.32);
  color: var(--paper);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 254, 0.16);
  transform: translateY(-2px);
}

.page-hero[style] {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 120px 0 86px;
  background: var(--blue);
  color: var(--paper);
  isolation: isolate;
}

.page-hero[style]::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: var(--hero-position, center);
  opacity: 0.58;
  content: "";
}

.page-hero[style]::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(32, 46, 99, 0.98) 0%, rgba(32, 46, 99, 0.74) 50%, rgba(11, 31, 52, 0.34) 100%);
  content: "";
}

.affiliation-page-hero[style]::before {
  opacity: 0.46;
}

.affiliation-page-hero[style]::after {
  background:
    linear-gradient(90deg, rgba(32, 46, 99, 0.98) 0%, rgba(32, 46, 99, 0.84) 48%, rgba(11, 31, 52, 0.45) 100%),
    linear-gradient(180deg, rgba(32, 46, 99, 0.08), rgba(11, 31, 52, 0.2));
}

.page-hero-inner {
  position: relative;
  max-width: 790px;
}

.page-hero-inner h1 {
  max-width: 850px;
  color: var(--paper);
  font-size: clamp(3rem, 6vw, 5.3rem);
}

.page-hero-inner p {
  max-width: 720px;
  color: rgba(255, 255, 254, 0.86);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 750;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 750;
}

.section-soft {
  background: var(--mist);
}

.cta-section {
  padding-top: 0;
}

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

.compact-benefits .benefit-card,
.section:not(.blue) .benefit-card {
  min-height: 0;
  border-color: var(--line);
  background: var(--paper);
  color: var(--text);
  box-shadow: 0 10px 28px rgba(11, 31, 52, 0.06);
}

.compact-benefits .benefit-card h3,
.section:not(.blue) .benefit-card h3 {
  color: var(--blue);
}

.compact-benefits .benefit-card p,
.section:not(.blue) .benefit-card p {
  color: var(--muted);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--gold);
  font-weight: 900;
}

.requirement-list {
  display: grid;
  gap: 14px;
}

.requirement-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.requirement-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--gold);
  font-weight: 900;
}

.requirement-list h3 {
  margin: 0 0 4px;
}

.cost-card h2 {
  color: var(--paper);
}

.cost-grid > div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 254, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 254, 0.08);
}

.cost-grid > div strong {
  display: block;
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

.cost-grid > div span {
  color: rgba(255, 255, 254, 0.78);
  font-weight: 800;
}

.fee-breakdown {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.fee-breakdown p {
  margin: 0;
}

.affiliation-benefits-section {
  position: relative;
  overflow: hidden;
}

.affiliation-benefits-section::before {
  position: absolute;
  right: -120px;
  top: 80px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12), transparent 64%);
  content: "";
  pointer-events: none;
}

.affiliation-heading h2 {
  max-width: 760px;
}

.benefit-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
}

.benefit-showcase .benefit-card {
  display: grid;
  align-content: start;
}

.benefit-card-featured {
  min-height: 100%;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(32, 46, 99, 0.98), rgba(11, 31, 52, 0.98)),
    var(--blue) !important;
  color: var(--paper) !important;
}

.benefit-card-featured h3 {
  color: var(--paper) !important;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.benefit-card-featured p {
  color: rgba(255, 255, 254, 0.76) !important;
}

.benefit-card-featured ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-card-featured li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 254, 0.88);
  font-weight: 800;
}

.benefit-card-featured li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

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

.benefit-card-cta {
  border-color: rgba(201, 168, 76, 0.45) !important;
  background: var(--gold-soft) !important;
}

.benefit-card-cta span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.benefit-card-cta strong {
  display: block;
  margin: 8px 0 16px;
  color: var(--blue);
  font-size: 1.2rem;
  line-height: 1.2;
}

.benefit-card-cta a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.affiliation-docs-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.86fr);
  gap: 26px;
  align-items: start;
}

.document-card,
.cost-card {
  overflow: hidden;
}

.document-card h2,
.cost-card h2 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1;
}

.document-lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-weight: 750;
}

.requirement-list {
  gap: 12px;
}

.requirement-list article {
  position: relative;
  grid-template-columns: 46px 1fr;
  padding: 16px;
  background: linear-gradient(90deg, var(--paper), var(--mist));
}

.requirement-list article::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--gold);
  opacity: 0;
  content: "";
  transition: opacity 0.2s ease;
}

.requirement-list article:hover::after {
  opacity: 1;
}

.fee-receipt {
  gap: 0;
  margin: 24px 0 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 254, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 254, 0.06);
}

.fee-receipt > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 254, 0.12);
  color: rgba(255, 255, 254, 0.78);
  font-weight: 800;
}

.fee-receipt > div:last-child {
  border-bottom: 0;
}

.fee-receipt strong {
  color: var(--paper);
}

.fee-receipt .fee-total {
  margin-top: 6px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--blue-deep);
}

.fee-receipt .fee-total strong {
  color: var(--blue-deep);
  font-size: 1.35rem;
}

.cost-note {
  margin: 0;
  color: rgba(255, 255, 254, 0.74) !important;
  font-size: 0.95rem;
}

.enrollment-form-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.enrollment-intro {
  position: sticky;
  top: 126px;
}

.enrollment-intro .eyebrow {
  margin-bottom: 14px;
}

.form-checks {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.form-checks li {
  position: relative;
  padding-left: 19px;
  color: rgba(255, 255, 254, 0.88);
  font-weight: 850;
}

.form-checks li::before {
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.enrollment-form {
  padding: 34px;
}

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

.file-field {
  position: relative;
  min-height: 132px;
  margin-bottom: 0;
  padding: 16px;
  border: 1px dashed rgba(32, 46, 99, 0.28);
  border-radius: var(--radius);
  background: var(--mist);
  text-transform: none;
}

.file-field span {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
}

.file-field input[type="file"] {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}

.file-field:focus-within {
  border-color: var(--gold);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.14);
}

.file-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(32, 46, 99, 0.14);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-field small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: none;
}

.form-disclaimer {
  margin: 4px 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.enrollment-cta {
  align-items: center;
  margin-top: 0;
  padding: 32px;
  border: 1px solid rgba(201, 168, 76, 0.32);
  background:
    linear-gradient(135deg, rgba(243, 234, 208, 0.95), rgba(255, 255, 254, 0.92)),
    var(--gold-soft);
  box-shadow: 0 16px 44px rgba(11, 31, 52, 0.08);
}

.enrollment-cta .eyebrow {
  margin-bottom: 8px;
}

.enrollment-cta-copy {
  min-width: 0;
}

.enrollment-cta h2 {
  margin: 0 0 6px;
  max-width: 680px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.enrollment-cta p {
  max-width: 650px;
  font-size: 1rem;
}

.card-actions,
.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.step-card > span:first-child {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--gold);
  font-weight: 900;
}

.service-content {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 34px;
}

.service-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.04;
}

.service-content h3 {
  margin: 0 0 8px;
  color: var(--blue);
}

.service-content p {
  color: var(--muted);
  font-weight: 750;
}

.service-content ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
  font-weight: 800;
}

.service-content li {
  margin: 5px 0;
}

.service-gallery > img.gallery-main {
  position: static;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  cursor: zoom-in;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 10px;
  background: var(--blue);
}

.thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.76;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.thumb.active,
.thumb:hover {
  border-color: var(--gold);
  opacity: 1;
}

.thumb img {
  width: 100%;
  height: 76px;
  object-fit: cover;
}

.contact-page-hero[style]::before {
  background-position: center 42%;
}

.contact-photo > div {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  color: var(--paper);
}

.contact-photo > div h2 {
  color: var(--paper);
}

.contact-photo > div span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(11, 31, 52, 0.06);
}

.contact-hero-card-clean {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.64fr);
}

.contact-panel-featured {
  padding: 34px;
}

.contact-panel-featured h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
}

.contact-panel-featured > p {
  max-width: 640px;
}

.contact-panel-featured .contact-methods {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.office-card {
  display: grid;
  align-content: end;
  min-height: 430px;
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--blue), var(--blue-deep));
  color: var(--paper);
  box-shadow: var(--shadow);
}

.office-card h2 {
  color: var(--paper);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.office-card p {
  color: rgba(255, 255, 254, 0.78);
  font-weight: 750;
}

.office-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.contact-panel .contact-methods {
  grid-template-columns: 1fr;
  margin-top: 2px;
}

.contact-panel.contact-panel-featured .contact-methods {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.contact-methods a {
  display: grid;
  gap: 4px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--blue);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-methods a span {
  color: var(--gold);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.contact-aside {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.contact-aside h2 {
  color: var(--paper);
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.social-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 254, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 254, 0.08);
  color: var(--paper);
  font-weight: 900;
}

.mini-card {
  padding: 16px;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 254, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 254, 0.08);
}

.mini-card p {
  margin: 4px 0 0;
  color: rgba(255, 255, 254, 0.78);
  font-weight: 750;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-success {
  display: none;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(20, 108, 67, 0.18);
  border-radius: var(--radius);
  background: rgba(20, 108, 67, 0.1);
  color: #146c43;
  font-weight: 800;
}

.form-error {
  display: none;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(164, 44, 44, 0.2);
  border-radius: var(--radius);
  background: rgba(164, 44, 44, 0.08);
  color: #8a2424;
  font-weight: 800;
}

.btn:disabled,
.button-link:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.site-footer .footer-grid {
  grid-template-columns: minmax(220px, 1fr) minmax(130px, 0.45fr) minmax(360px, 1.28fr) minmax(130px, 0.45fr);
}

.site-footer .footer-grid > div {
  min-width: 0;
}

.site-footer .footer-grid > div > a:not(.footer-brand) {
  display: block;
  margin: 8px 0;
}

.site-footer a,
.site-footer p {
  overflow-wrap: anywhere;
  word-break: normal;
}

.site-footer a {
  font-size: 0.92rem;
  line-height: 1.5;
}

.site-footer h3 {
  letter-spacing: 0.03em;
}

.footer-brand span {
  color: var(--paper);
  font-weight: 900;
}

.footer-grid-unified {
  grid-template-columns: minmax(240px, 1fr) minmax(130px, 0.45fr) minmax(320px, 1.12fr) minmax(150px, 0.52fr);
  align-items: start;
}

.footer-about p {
  max-width: 310px;
  margin: 10px 0 0 72px;
}

.footer-brand span {
  display: grid;
  gap: 2px;
}

.footer-brand small {
  color: rgba(255, 255, 254, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact-item {
  display: grid !important;
  gap: 2px;
  margin: 0 !important;
  color: rgba(255, 255, 254, 0.82) !important;
}

.footer-contact-item span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-social-icon {
  width: 42px;
  height: 42px;
  display: inline-grid !important;
  place-items: center;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 254, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 254, 0.06);
  color: var(--paper) !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  line-height: 1;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.footer-social-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 168, 76, 0.72);
  background: var(--gold);
  color: var(--blue-deep) !important;
}

.footer-instagram span {
  position: relative;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.footer-instagram span::before {
  position: absolute;
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.footer-instagram span::after {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.footer-app {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin: 0 !important;
  padding: 0 14px;
  border-radius: var(--radius);
  background: rgba(201, 168, 76, 0.14);
  color: var(--gold) !important;
  font-weight: 900 !important;
}

.location-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(32, 46, 99, 0.96), rgba(11, 31, 52, 0.98));
  color: var(--paper);
  box-shadow: var(--shadow);
}

.location-band h2 {
  color: var(--paper);
  margin-bottom: 8px;
}

.location-band p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 254, 0.82);
  font-weight: 750;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.lightbox[data-lightbox] img {
  width: min(100%, 1100px);
}

.contact-hub-section {
  padding-top: 108px;
  background:
    linear-gradient(180deg, var(--paper) 0%, #fffffe 62%, var(--mist) 100%);
}

.contact-hub {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: 30px;
  align-items: stretch;
}

.contact-hub-main {
  display: grid;
  align-content: center;
  min-width: 0;
}

.contact-hub-main h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
}

.contact-hub-main h1 {
  max-width: 760px;
  margin: 10px 0 14px;
  color: var(--blue);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 900;
  text-wrap: balance;
}

.contact-hub-main > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 750;
}

.channel-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.channel-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(11, 31, 52, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.channel-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.72);
  box-shadow: 0 18px 44px rgba(11, 31, 52, 0.11);
}

.channel-featured {
  background: linear-gradient(145deg, var(--blue), var(--blue-deep));
  color: var(--paper);
}

.channel-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--gold);
}

.channel-featured .channel-icon {
  background: rgba(255, 255, 254, 0.08);
}

.channel-icon svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  stroke-width: 1.85;
  fill: none;
}

.channel-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.channel-copy strong {
  color: var(--blue);
  font-size: 1.12rem;
  line-height: 1.18;
  font-weight: 900;
}

.channel-copy small {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 750;
}

.channel-copy em {
  color: var(--blue);
  font-style: normal;
  font-size: clamp(0.9rem, 1.15vw, 1.02rem);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.channel-featured .channel-copy strong,
.channel-featured .channel-copy em {
  color: var(--paper);
}

.channel-featured .channel-copy small {
  color: rgba(255, 255, 254, 0.76);
}

.contact-office-panel {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-deep);
  color: var(--paper);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.contact-office-panel img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
}

.contact-office-panel::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 31, 52, 0.16) 0%, rgba(11, 31, 52, 0.76) 52%, rgba(11, 31, 52, 0.98) 100%),
    linear-gradient(90deg, rgba(32, 46, 99, 0.68), rgba(11, 31, 52, 0.1));
  content: "";
}

.office-panel-content {
  padding: 34px;
}

.office-panel-content h2 {
  max-width: 420px;
  color: var(--paper);
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  line-height: 0.98;
}

.office-panel-content p {
  max-width: 440px;
  color: rgba(255, 255, 254, 0.78);
  font-weight: 750;
}

.office-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.office-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 254, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 254, 0.08);
  color: rgba(255, 255, 254, 0.82);
  font-size: 0.86rem;
  font-weight: 850;
}

.services-page-hero .page-hero-inner {
  max-width: 920px;
}

.services-page-hero .page-hero-inner h1 {
  max-width: 920px;
  font-size: clamp(3rem, 5.35vw, 5.05rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.services-page-hero .page-hero-inner h1 span {
  display: inline-block;
  white-space: nowrap;
}

.reservation-section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  scroll-margin-top: 128px;
}

.reservation-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(243, 245, 247, 0.96) 0%, rgba(255, 255, 254, 0.96) 48%, rgba(243, 245, 247, 0.72) 100%);
  content: "";
}

.reservation-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.reservation-intro {
  position: sticky;
  top: 126px;
  padding: 32px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(32, 46, 99, 0.98), rgba(11, 31, 52, 0.98)),
    var(--blue);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.reservation-intro h2 {
  color: var(--paper);
  font-size: clamp(2rem, 3.6vw, 3.3rem);
}

.reservation-intro p {
  color: rgba(255, 255, 254, 0.78);
  font-weight: 750;
}

.reservation-steps {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.reservation-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px;
  border: 1px solid rgba(255, 255, 254, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 254, 0.07);
}

.reservation-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 900;
}

.reservation-step p {
  margin: 0;
  color: rgba(255, 255, 254, 0.84);
  font-size: 0.94rem;
}

.reservation-form {
  padding: 34px;
}

.reservation-form .form-grid {
  align-items: start;
}

.reservation-form input,
.reservation-form select {
  min-height: 58px;
  padding: 15px 18px;
  font-size: 0.92rem;
  font-weight: 850;
}

.reservation-form input[type="date"],
.reservation-form input[type="time"] {
  cursor: pointer;
  color-scheme: light;
}

.form-section-title,
.full-span {
  grid-column: 1 / -1;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 2px;
  color: var(--blue);
}

.form-section-title span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
}

.form-section-title strong {
  font-size: 1.05rem;
  font-weight: 900;
}

.field-label {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
}

.field-hint {
  margin-top: -1px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.35;
  text-transform: none;
}

.date-field {
  gap: 9px;
}

.date-control {
  position: relative;
  display: block;
  cursor: pointer;
}

.date-control input {
  min-height: 66px;
  padding-right: 168px;
  background: linear-gradient(180deg, #fffffe 0%, #f3f6fb 100%);
  border-color: rgba(32, 46, 99, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 254, 0.72);
}

.date-control input::-webkit-calendar-picker-indicator {
  width: 0;
  height: 0;
  margin: 0;
  cursor: pointer;
  opacity: 0;
}

.date-action {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: inline-grid;
  min-height: 42px;
  place-items: center;
  padding: 0 15px;
  border-radius: 12px;
  background: var(--gold);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: none;
  pointer-events: none;
  box-shadow: 0 10px 18px rgba(201, 168, 76, 0.22);
}

.date-field:focus-within .date-action,
.date-field:hover .date-action {
  background: #dabb54;
}

.time-field input {
  min-height: 60px;
}

.form-fieldset {
  margin: 6px 0 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.form-fieldset legend {
  padding: 0 8px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 0;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(32, 46, 99, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: none;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.check-field:hover,
.check-field:focus-within {
  border-color: rgba(201, 168, 76, 0.72);
  background: #fffffe;
  box-shadow: 0 8px 22px rgba(11, 31, 52, 0.06);
}

.check-field input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--gold);
  box-shadow: none;
}

.check-field span {
  color: var(--muted);
}

.consent-field {
  margin: 2px 0 0;
  border-color: rgba(201, 168, 76, 0.38);
  background: var(--gold-soft);
}

.consent-field span {
  color: var(--blue);
}

.reservation-form .btn {
  width: min(100%, 280px);
}

@media (max-width: 1080px) {
  .compact-benefits,
  .split-heading,
  .benefit-showcase,
  .contact-hero-card,
  .affiliation-hero-card,
  .enrollment-form-layout,
  .contact-form-grid,
  .location-band,
  .reservation-layout,
  .contact-hub {
    grid-template-columns: 1fr;
  }

  .enrollment-intro,
  .reservation-intro {
    position: static;
  }

  .location-actions {
    justify-content: flex-start;
  }

  .contact-panel.contact-panel-featured .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-office-panel {
    min-height: 500px;
  }

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

  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about p {
    margin-left: 0;
  }
}

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

  .page-hero[style] {
    min-height: 480px;
    padding: 92px 0 58px;
  }

  .page-hero-inner h1 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  .services-page-hero .page-hero-inner h1 {
    font-size: clamp(2.2rem, 10.5vw, 3.05rem);
    line-height: 1.08;
  }

  .form-row,
  .feature-columns,
  .cost-grid,
  .benefit-side-grid,
  .upload-grid,
  .process-grid,
  .work-grid,
  .why-grid,
  .contact-methods,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .enrollment-form,
  .reservation-form,
  .document-card,
  .cost-card {
    padding: 24px;
  }

  .date-control input {
    padding-right: 62px;
  }

  .date-action {
    width: 42px;
    min-height: 42px;
    padding: 0;
    font-size: 0;
  }

  .date-action::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-top-width: 5px;
    border-radius: 4px;
    box-sizing: border-box;
  }

  .reservation-intro {
    padding: 24px;
  }

  .contact-photo {
    min-height: 360px;
  }

  .office-card {
    min-height: 320px;
  }

  .contact-hub-section {
    padding-top: 64px;
  }

  .contact-hub-main h2 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .contact-hub-main h1 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .channel-card {
    grid-template-columns: 50px 1fr;
    padding: 16px;
  }

  .channel-icon {
    width: 50px;
    height: 50px;
  }

  .channel-copy em {
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .contact-office-panel {
    min-height: 430px;
  }

  .office-panel-content {
    padding: 24px;
  }

  .thumb img {
    height: 62px;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Public mobile polish */
@media (max-width: 760px) {
  html {
    scroll-padding-top: 86px;
  }

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

  .nav {
    min-height: 72px;
    padding-block: 8px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand-copy strong {
    max-width: 210px;
    font-size: 0.86rem;
    line-height: 1.04;
  }

  .menu-btn {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .home-hero {
    min-height: 590px;
    padding-top: 56px;
  }

  .hero-content {
    padding-bottom: 30px;
  }

  h1 {
    font-size: clamp(2.55rem, 12.6vw, 3.25rem);
    line-height: 0.98;
    letter-spacing: -0.028em;
  }

  .home-hero h1 {
    font-size: clamp(2.85rem, 12.8vw, 3.35rem);
  }

  h2 {
    font-size: clamp(2rem, 9.4vw, 2.75rem);
    line-height: 1.04;
    letter-spacing: -0.026em;
  }

  .hero-lead,
  .page-hero-inner p {
    max-width: 32ch;
    font-size: 1rem;
    line-height: 1.48;
  }

  .eyebrow,
  .section-kicker {
    gap: 9px;
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .eyebrow::before,
  .section-kicker::before {
    width: 28px;
  }

  .hero .eyebrow::before,
  .page-hero .eyebrow::before,
  .contact-hub-main .eyebrow::before,
  .section-head .section-kicker::before,
  .split-heading .eyebrow::before {
    flex-basis: 28px;
    width: 28px;
    min-width: 28px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .btn,
  .button-link {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .signal {
    min-height: auto;
    padding: 20px 24px;
  }

  .signal strong {
    font-size: 1.35rem;
  }

  .signal span {
    font-size: 0.94rem;
    line-height: 1.35;
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    gap: 16px;
    margin-bottom: 28px;
  }

  .page-hero[style] {
    min-height: min(520px, calc(100svh - 72px));
    padding: 78px 0 52px;
  }

  .page-hero-inner h1 {
    font-size: clamp(2.35rem, 10.4vw, 3.05rem);
    line-height: 1.03;
    letter-spacing: -0.027em;
  }

  .services-page-hero .page-hero-inner h1 {
    font-size: clamp(2.05rem, 9.2vw, 2.7rem);
    line-height: 1.1;
    letter-spacing: -0.022em;
  }

  .directory-page-intro {
    padding-top: 46px;
  }

  .directory-title {
    font-size: clamp(2.45rem, 10.6vw, 3.05rem);
    line-height: 1.02;
    letter-spacing: -0.027em;
  }

  .director-grid {
    gap: 16px;
  }

  .person-card img {
    aspect-ratio: 1 / 0.98;
  }

  .person-body {
    padding: 18px;
  }

  .about-media,
  .about-media img {
    min-height: 340px;
  }

  .affiliation-benefits-section {
    padding-top: 58px;
  }

  .affiliation-heading h2 {
    font-size: clamp(1.95rem, 8.8vw, 2.48rem);
    line-height: 1.07;
  }

  .benefit-showcase,
  .compact-benefits {
    gap: 12px;
  }

  .reservation-layout,
  .contact-hub,
  .contact-form-grid {
    gap: 20px;
  }

  .enrollment-form,
  .reservation-form,
  .document-card,
  .cost-card,
  .form-card {
    padding: 22px 18px;
  }

  .date-control input {
    min-height: 60px;
  }

  .contact-hub-main h1,
  .contact-hub-main h2 {
    font-size: clamp(2.05rem, 9.2vw, 2.55rem);
    line-height: 1.06;
    letter-spacing: -0.024em;
  }

  .contact-hub-main > p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .channel-list {
    margin-top: 24px;
  }

  .channel-card {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .channel-icon {
    width: 46px;
    height: 46px;
  }

  .channel-icon svg {
    width: 23px;
    height: 23px;
  }

  .channel-copy strong {
    font-size: 1rem;
  }

  .channel-copy small {
    font-size: 0.93rem;
    line-height: 1.38;
  }

  .channel-copy em {
    font-size: 0.78rem;
    line-height: 1.28;
    overflow-wrap: anywhere;
  }

  .contact-office-panel {
    min-height: 400px;
  }

  .office-panel-content {
    padding: 22px;
  }

  .contact-aside h2,
  .form-card h2 {
    font-size: clamp(1.8rem, 7.8vw, 2.25rem);
    line-height: 1.08;
  }

  .wa-float {
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-width: 2px;
    box-shadow: 0 12px 22px rgba(10, 26, 43, 0.18);
  }

  .wa-float svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 430px) {
  .shell,
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-copy strong {
    max-width: 210px;
  }

  .home-hero {
    min-height: 565px;
  }

  .hero-content {
    padding-bottom: 28px;
  }

  .home-hero h1 {
    font-size: clamp(2.75rem, 12.4vw, 3.15rem);
  }

  .page-hero-inner h1 {
    font-size: clamp(2.25rem, 10vw, 2.85rem);
  }

  .section-head h2,
  .affiliation-heading h2 {
    font-size: clamp(1.9rem, 8.2vw, 2.28rem);
    line-height: 1.08;
  }

  .services-page-hero .page-hero-inner h1 {
    font-size: clamp(2rem, 9vw, 2.42rem);
    line-height: 1.1;
  }
}
