:root {
  --navy: #0d1f3c;
  --navy-mid: #162b52;
  --navy-light: #1e3a6e;
  --gold: #c9993a;
  --gold-light: #e0b55a;
  --gold-pale: #fdf5e6;
  --white: #ffffff;
  --off-white: #f7f8fb;
  --grey-100: #eef0f5;
  --grey-300: #c4c9d4;
  --grey-500: #7a8294;
  --grey-700: #3d4455;
  --text-main: #1a2035;
  --text-muted: #5a6278;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 4px 24px rgba(13,31,60,0.10);
  --shadow-lift: 0 8px 40px rgba(13,31,60,0.16);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1200px;
  --sp-xs: clamp(0.5rem, 1vw, 0.75rem);
  --sp-sm: clamp(0.75rem, 1.5vw, 1rem);
  --sp-md: clamp(1rem, 2vw, 1.5rem);
  --sp-lg: clamp(1.5rem, 3vw, 2.5rem);
  --sp-xl: clamp(2.5rem, 5vw, 4.5rem);
  --sp-2xl: clamp(4rem, 8vw, 8rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

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

address { font-style: normal; }

.container {
  width: min(var(--max-w), 100% - 2 * clamp(1rem, 4vw, 2.5rem));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65em 1.4em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); box-shadow: 0 4px 16px rgba(201,153,58,0.35); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); box-shadow: 0 4px 16px rgba(13,31,60,0.25); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-lg { font-size: 1rem; padding: 0.8em 1.8em; }

.section-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--sp-sm);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 54ch;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-lg);
}
.section-header .section-sub { margin-inline: auto; }


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 31, 60, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  gap: var(--sp-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  border-radius: 4px;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo-text strong {
  font-weight: 700;
  color: var(--gold-light);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  flex-wrap: wrap;
}

.site-nav a:not(.btn) {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.site-nav a:not(.btn):hover { color: var(--gold-light); }
.site-nav a:not(.btn):focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }


.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 20, 48, 0.92) 0%,
    rgba(13, 31, 60, 0.78) 55%,
    rgba(13, 31, 60, 0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--sp-xl);
  max-width: 640px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: var(--sp-md);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 48ch;
  margin-bottom: var(--sp-lg);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: var(--sp-lg);
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.25rem;
}

.badge {
  display: flex;
  flex-direction: column;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.badge-plus {
  color: var(--gold-light);
}

.badge-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.15em;
}

.badge-divider {
  width: 1px;
  height: 2.2rem;
  background: rgba(255,255,255,0.2);
}


.services {
  background: var(--off-white);
  padding-block: var(--sp-2xl);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: var(--sp-md);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.service-card--featured { border-top: 3px solid var(--gold); }

.service-img-wrap { aspect-ratio: 16/9; overflow: hidden; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-img { transform: scale(1.04); }

.service-body {
  padding: var(--sp-md) clamp(1rem, 2.5vw, 1.5rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-icon {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.service-icon svg { width: 100%; height: 100%; }

.service-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.service-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1rem;
}

.service-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  transition: gap 0.2s, color 0.2s;
  margin-top: auto;
}
.service-link:hover { color: var(--gold-light); gap: 0.55em; }
.service-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }


.trust {
  background: var(--white);
  padding-block: var(--sp-2xl);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  align-items: center;
}

@media (min-width: 760px) {
  .trust-inner { grid-template-columns: 1fr 1fr; }
}

.trust-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

.trust-title { margin-bottom: var(--sp-sm); }

.trust-copy p {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-size: 0.98rem;
}

.trust-list {
  list-style: none;
  margin-block: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.3rem;
  height: 1.3rem;
  background: var(--gold-pale);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 0.1em;
}


.testimonials {
  background: var(--navy);
  padding-block: var(--sp-2xl);
}

.testimonials .section-eyebrow { color: var(--gold-light); }
.testimonials .section-title { color: var(--white); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: var(--sp-md);
}

.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.25s;
}
.testi-card:hover { background: rgba(255,255,255,0.09); }

.testi-card--accent {
  background: var(--gold);
  border-color: var(--gold);
}
.testi-card--accent:hover { background: var(--gold-light); border-color: var(--gold-light); }

.testi-stars {
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}
.testi-card--accent .testi-stars { color: var(--white); }

.testi-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  flex: 1;
}
.testi-card--accent .testi-quote { color: var(--white); }

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.testi-card--accent .testi-author { border-top-color: rgba(255,255,255,0.3); }

.testi-avatar {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--navy-light);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-card--accent .testi-avatar { background: rgba(255,255,255,0.25); color: var(--white); }

.testi-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--white);
  line-height: 1.3;
}

.testi-author span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.testi-card--accent .testi-author span { color: rgba(255,255,255,0.75); }


.cta-band {
  background: linear-gradient(120deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border-top: 3px solid var(--gold);
  padding-block: var(--sp-xl);
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-md);
}

@media (min-width: 680px) {
  .cta-band-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

.cta-band-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.cta-band-copy p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  max-width: 44ch;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}


.visit {
  background: var(--off-white);
  padding-block: var(--sp-2xl);
}

.visit-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  align-items: start;
}

@media (min-width: 760px) {
  .visit-inner { grid-template-columns: 1fr 1fr; }
}

.visit-address {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-top: 0.5rem;
  margin-bottom: var(--sp-md);
}

.visit-hours h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: var(--sp-md);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--grey-100);
  padding-bottom: 0.35rem;
}

.hours-row dt { font-weight: 500; }
.hours-row dd { color: var(--text-muted); }
.hours-row--closed dd { color: var(--grey-500); }

.visit-contact {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--gold); }
.contact-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  background: var(--gold-pale);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-icon svg { width: 0.9rem; height: 0.9rem; }

.visit-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}


.site-footer {
  background: var(--navy);
  padding-top: var(--sp-xl);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 640px) {
  .footer-inner { grid-template-columns: 1fr auto auto; align-items: start; }
}

.footer-brand .logo { margin-bottom: 0.75rem; }

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  max-width: 32ch;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-nav a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-contact a,
.footer-contact span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold-light); }

.footer-legal {
  padding-block: 1rem;
}

.footer-legal p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

@media (min-width: 760px) {
  .logo--light .logo-text { font-size: 1rem; }
}



.about-hero {
  position: relative;
  min-height: clamp(420px, 65vh, 680px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 20, 48, 0.93) 0%,
    rgba(13, 31, 60, 0.80) 55%,
    rgba(13, 31, 60, 0.45) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--sp-xl);
  max-width: 620px;
}

.about-hero-headline {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
}

.about-intro {
  background: var(--white);
  padding-block: var(--sp-2xl);
}

.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  align-items: center;
}

@media (min-width: 760px) {
  .about-intro-inner { grid-template-columns: 1fr 1fr; }
}

.about-intro-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

.about-intro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro-copy p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 0.85rem;
}

.about-mission {
  background: var(--off-white);
  padding-block: var(--sp-2xl);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: var(--sp-md);
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.value-card--featured {
  border-top: 3px solid var(--gold);
}

.value-icon {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-network {
  background: var(--navy);
  padding-block: var(--sp-2xl);
}

.about-network-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  align-items: center;
}

@media (min-width: 760px) {
  .about-network-inner { grid-template-columns: 1fr 1fr; }
}

.about-network-copy .section-eyebrow { color: var(--gold-light); }
.about-network-copy .section-title { color: var(--white); }

.about-network-copy p {
  color: rgba(255,255,255,0.75);
  font-size: 0.97rem;
  margin-bottom: 0.85rem;
}

.about-network-copy .trust-list li { color: rgba(255,255,255,0.85); }
.about-network-copy .check { background: rgba(201,153,58,0.2); }

.about-network-visual {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.about-network-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

.network-stat-block {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  flex-wrap: wrap;
}

.network-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.network-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.network-stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3em;
}

.network-stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.15);
}

.about-services {
  background: var(--off-white);
  padding-block: var(--sp-2xl);
}

.about-process {
  background: var(--white);
  padding-block: var(--sp-2xl);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  align-items: center;
}

@media (min-width: 680px) {
  .process-steps {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
  }
}

.process-step {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.process-connector {
  display: none;
}

@media (min-width: 680px) {
  .process-connector {
    display: block;
    width: clamp(1rem, 2vw, 2rem);
    height: 2px;
    background: var(--grey-300);
    margin-top: 2.75rem;
    flex-shrink: 0;
  }
}



.contact-hero {
  position: relative;
  min-height: clamp(420px, 65vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 20, 48, 0.93) 0%,
    rgba(13, 31, 60, 0.80) 55%,
    rgba(13, 31, 60, 0.45) 100%
  );
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--sp-xl);
  max-width: 600px;
}

.contact-hero-headline {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
}

.contact-channels {
  background: var(--off-white);
  padding-block: var(--sp-2xl);
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: var(--sp-md);
}

.channel-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.channel-card--featured {
  border-top: 3px solid var(--gold);
}

.channel-icon {
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
}
.channel-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.channel-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin: 0;
}

.channel-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

.channel-action {
  margin-top: 0.25rem;
  align-self: flex-start;
}

.channel-note {
  font-size: 0.8rem;
  color: var(--grey-500);
  font-weight: 500;
}

.contact-details {
  background: var(--white);
  padding-block: var(--sp-2xl);
}

.contact-details-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  align-items: start;
}

@media (min-width: 760px) {
  .contact-details-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.contact-intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-md);
  max-width: 42ch;
}

.info-block {
  margin-bottom: var(--sp-md);
}

.info-block-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-img-col {
  position: relative;
}

.contact-office-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

.contact-img-badge {
  position: absolute;
  bottom: -1.2rem;
  left: 1.5rem;
  background: var(--navy);
  border: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-lift);
}

.contact-img-badge .badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.contact-img-badge .badge-plus {
  color: var(--gold-light);
}

.contact-img-badge .badge-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.2em;
  white-space: nowrap;
}

.what-to-expect {
  background: var(--navy);
  padding-block: var(--sp-2xl);
}

.what-to-expect .section-eyebrow { color: var(--gold-light); }
.what-to-expect .section-title { color: var(--white); }
.what-to-expect .section-sub { color: rgba(255,255,255,0.65); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: var(--sp-md);
  counter-reset: steps;
}

.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: clamp(1.2rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: background 0.25s;
}
.step-card:hover {
  background: rgba(255,255,255,0.09);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.step-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin: 0;
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
