/* Classes with Cory — conversion-focused / bilingual-ready shell */

:root {
  /* Pulled from circular logo: navy type, gold filigree & accents, cream inner field */
  --ink: #1a2744;
  --ink-soft: #4a5578;
  --bg: #f8f4eb;
  --bg-elevated: #fffefb;
  --line: rgba(26, 39, 68, 0.11);
  --brand: #2d4278;
  --brand-deep: #1e3260;
  --brand-glow: rgba(212, 176, 88, 0.32);
  --gold: #b8923b;
  --gold-light: #d4b058;
  --gold-deep: #8f7028;
  --cta: #c6a03e;
  --cta-hover: #a68230;
  --cta-ink: #141f38;
  --hero-ink: #faf6ee;
  --brand-fill-soft: rgba(45, 66, 120, 0.09);
  --brand-fill-mid: rgba(45, 66, 120, 0.13);
  --brand-border-soft: rgba(45, 66, 120, 0.3);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 22px 55px rgba(26, 39, 68, 0.14);
  --shadow-sm: 0 10px 30px rgba(26, 39, 68, 0.09);
  --font-sans: "Manrope", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  padding-bottom: 5rem;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: var(--brand-deep);
}
a:hover {
  color: var(--brand);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  padding: 0.6rem 1rem;
  background: var(--brand-deep);
  color: var(--hero-ink);
  z-index: 9999;
  border-radius: 8px;
}
.skip-link:focus {
  left: 1rem;
}

.wrap {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(248, 244, 235, 0.88);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}
.site-header .brand {
  order: 1;
}
.site-header .site-header__actions {
  order: 2;
  margin-left: auto;
}
.site-header .nav-toggle {
  order: 3;
}
.site-header .site-nav {
  order: 4;
  flex: 1 1 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover {
  color: var(--brand-deep);
}
.brand__mark {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: contain;
  background: var(--bg-elevated);
  box-shadow: 0 4px 14px rgba(26, 39, 68, 0.15);
}
.brand__wordmark {
  line-height: 1.15;
}
@media (max-width: 380px) {
  .brand__wordmark {
    display: none;
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-elevated);
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
}

.site-nav .nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .nav-list > li > a {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 10px;
}
.site-nav .nav-list > li > a:hover {
  background: var(--brand-fill-soft);
  color: var(--ink);
}
.site-nav a[aria-current="page"] {
  color: var(--brand-deep);
  background: var(--brand-fill-mid);
}

.nav-item--dropdown {
  position: relative;
}
.nav-item--dropdown > a::after {
  content: "▾";
  font-size: 0.55rem;
  margin-left: 0.2rem;
  opacity: 0.55;
}

.submenu {
  position: absolute;
  left: 0;
  top: calc(100% + 2px);
  min-width: 15.5rem;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav-item--dropdown:hover .submenu,
.nav-item--dropdown:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu a {
  display: block;
  padding: 0.45rem 0.65rem;
  font-size: 0.85rem;
  font-weight: 550;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 8px;
}
.submenu a:hover {
  background: var(--bg);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid var(--line);
}
.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: none;
  background: transparent;
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink-soft);
}
.lang-switch__flag {
  font-size: 1.05rem;
  line-height: 1;
}
.lang-switch__btn.is-active {
  background: var(--bg-elevated);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.35rem;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn--primary,
.btn:not(.btn--ghost):not(.btn--outline):not(.btn--header) {
  background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 48%, var(--gold-deep) 100%);
  color: var(--cta-ink);
  box-shadow: 0 14px 34px rgba(143, 112, 40, 0.36);
}
.btn--primary:hover,
.btn:not(.btn--ghost):not(.btn--outline):not(.btn--header):hover {
  transform: translateY(-2px);
  color: var(--cta-ink);
  box-shadow: 0 18px 42px rgba(143, 112, 40, 0.44);
}

.btn--outline {
  background: transparent;
  color: var(--hero-ink);
  border: 2px solid rgba(236, 253, 245, 0.55);
  box-shadow: none;
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--brand-deep);
  border: 2px solid var(--brand-border-soft);
  box-shadow: none;
}
.btn--ghost:hover {
  background: var(--brand-fill-soft);
}

.btn--header {
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
  background: var(--brand-deep);
  color: var(--hero-ink);
  box-shadow: var(--shadow-sm);
}
.btn--header:hover {
  background: var(--brand);
  color: var(--hero-ink);
  transform: translateY(-1px);
}

@media (min-width: 1025px) {
  .site-header__inner {
    flex-wrap: nowrap;
  }
  .site-header .site-nav {
    order: 2;
    flex: 1;
    margin: 0 0.75rem;
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
    border: none !important;
    box-shadow: none !important;
  }
  .site-header .brand {
    order: 1;
  }
  .site-header .site-header__actions {
    order: 3;
    margin-left: 0;
  }
  .site-header .nav-toggle {
    display: none !important;
  }
}

/* Mobile nav */
@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .site-nav.is-open {
    max-height: min(85vh, 560px);
    overflow-y: auto;
    box-shadow: var(--shadow);
  }
  .nav-list {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 0.75rem 1rem 1rem;
  }
  .site-nav .nav-list > li > a {
    width: 100%;
    padding: 0.9rem 0.5rem;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: var(--bg);
    border-radius: 0;
  }
  .nav-item--dropdown > a::after {
    float: right;
  }
}

@media (max-width: 480px) {
  .lang-switch__btn {
    padding: 0.35rem 0.55rem;
  }
  .btn--header span {
    display: none;
  }
  .btn--header::after {
    content: "→";
    font-weight: 700;
  }
}

/* ——— Homepage hero ——— */
.home-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  color: var(--hero-ink);
  background: radial-gradient(ellipse 100% 70% at 85% 0%, var(--brand-glow), transparent),
    radial-gradient(ellipse 78% 56% at 10% 82%, rgba(212, 176, 88, 0.14), transparent),
    linear-gradient(155deg, #141f38 0%, #1e3260 44%, #2d4278 100%);
  overflow: hidden;
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.9;
  pointer-events: none;
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (max-width: 900px) {
  .home-hero__grid {
    grid-template-columns: 1fr;
  }
}

.home-hero__copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(236, 253, 245, 0.92);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.eyebrow--muted {
  color: var(--brand-deep);
  background: var(--brand-fill-soft);
  border: 1px solid rgba(184, 146, 59, 0.35);
}

.home-hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.35rem, 5.5vw, 3.85rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.home-hero__cross {
  margin: -0.35rem 0 1rem;
  max-width: 40rem;
  font-size: clamp(1rem, 2.05vw, 1.14rem);
  line-height: 1.55;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.01em;
  color: rgba(236, 253, 245, 0.8);
  padding-left: 1rem;
  border-left: 3px solid rgba(212, 176, 88, 0.65);
}

.home-hero__lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(236, 253, 245, 0.85);
  max-width: 38rem;
}

.home-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(236, 253, 245, 0.82);
}
.trust-row .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 14px rgba(212, 176, 88, 0.85);
}

.home-hero__visual {
  position: relative;
}

.home-hero__photo-wrap {
  position: relative;
  display: block;
}

.home-hero__visual .home-hero__portrait {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.home-hero__logo-badge {
  position: absolute;
  bottom: clamp(4.5rem, 19%, 8rem);
  right: clamp(-0.45rem, -1.2vw, -1rem);
  width: clamp(5.5rem, 15vw, 8rem);
  height: clamp(5.5rem, 15vw, 8rem);
  border-radius: 50%;
  object-fit: contain;
  background: linear-gradient(145deg, #fffefb 0%, #f0ebe3 100%);
  border: 3px solid rgba(212, 176, 88, 0.72);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.48),
    0 0 0 2px rgba(255, 255, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  z-index: 2;
  pointer-events: none;
}
.home-hero__float {
  position: absolute;
  bottom: -1rem;
  left: -0.5rem;
  right: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 900px) {
  .home-hero__logo-badge {
    bottom: clamp(1rem, 4vw, 1.35rem);
    right: clamp(0.65rem, 3vw, 1rem);
    width: clamp(4.85rem, 26vw, 6.75rem);
    height: clamp(4.85rem, 26vw, 6.75rem);
  }
  .home-hero__float {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 1rem;
  }
}

/* ——— Homepage sections ——— */
.home-section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.section-heading {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}
.section-lead {
  margin: 0 0 2rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

.section-heading + .quote-panel {
  margin-top: 0.35rem;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.tile {
  grid-column: span 4;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 9.5rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.tile h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.tile p {
  margin: 0;
  flex: 1;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.tile .tile-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brand-deep);
}
.tile .tile-link:hover {
  color: var(--cta);
}

.tile--has-thumb {
  overflow: hidden;
}
.tile--has-thumb .tile-thumb {
  margin: -1.35rem -1.25rem 1rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.tile--has-thumb .tile-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .tile {
    grid-column: span 6;
  }
}
@media (max-width: 560px) {
  .tile {
    grid-column: span 12;
  }
}

.tile--accent {
  grid-column: span 8;
  background: linear-gradient(135deg, rgba(45, 66, 120, 0.07), rgba(184, 146, 59, 0.07));
  border-color: rgba(184, 146, 59, 0.38);
}

.quote-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}
.quote-panel blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  line-height: 1.45;
  color: var(--ink);
}
.quote-panel cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.quote-panel__aside {
  border-left: 3px solid var(--brand);
  padding-left: 1.25rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.quote-panel__aside-photo {
  margin: 0 0 1rem;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.quote-panel__aside-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .quote-panel {
    grid-template-columns: 1fr;
  }
  .quote-panel__aside {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 1rem;
  }
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.why-card {
  padding: 1.35rem 1.2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}
.why-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

@media (max-width: 820px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.story-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}
.story-panel h2 {
  font-family: var(--font-display);
  margin-top: 0;
}
.story-panel p {
  color: var(--ink-soft);
}

.story-panel--split {
  display: grid;
  grid-template-columns: minmax(240px, 0.92fr) 1.22fr;
  gap: clamp(1.25rem, 4vw, 2.25rem);
  align-items: start;
}
.story-panel__visual {
  margin: 0;
}
.story-panel__visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .story-panel--split {
    grid-template-columns: 1fr;
  }
}

.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}

.cta-band {
  margin-top: 2rem;
  padding: clamp(2.25rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #121b2e 0%, #1e3260 52%, #2d4278 100%);
  color: var(--hero-ink);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
}
.cta-band h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
}
.cta-band p {
  margin: 0;
  opacity: 0.88;
  max-width: 36rem;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ——— Inner page chrome ——— */
.page-main {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 4rem);
}

.page-hero {
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  background: linear-gradient(180deg, #ebe4d6 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero--compact h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  letter-spacing: -0.02em;
}
.page-hero__tag {
  margin: 0.65rem 0 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.prose-flow .surface {
  margin-top: -1.5rem;
}

.surface {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
}
.surface--prose {
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.surface--prose h2 {
  font-family: var(--font-display);
  margin-top: 2rem;
}
.surface--prose h2:first-child {
  margin-top: 0;
}
.surface--prose p,
.surface--prose li {
  color: var(--ink-soft);
}
.surface--blank {
  min-height: 6rem;
}

.surface--form,
.surface--contactintro,
.surface--formwrap,
.surface--blogcard {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.contact-intro {
  overflow: hidden;
}
.contact-hero-photo {
  margin: clamp(-1.5rem, -3vw, -1rem) clamp(-1.5rem, -3vw, -1rem) 1.25rem;
  padding: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  border-bottom: 1px solid var(--line);
}
.contact-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.surface--blogcard .meta {
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.surface--blogcard h3 {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font-display);
}
.surface--blogcard h3 a {
  text-decoration: none;
  color: var(--ink);
}
.surface--blogcard h3 a:hover {
  color: var(--brand-deep);
}

.checklist {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}
.checklist li {
  margin-bottom: 0.4rem;
}

.figure-modern {
  margin: 1.25rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.contact-card {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  background: rgba(255, 254, 251, 0.85);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.contact-card:hover {
  border-color: var(--brand);
  background: #fff;
}

.micro-trust {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 32rem;
}
.form-field label {
  display: block;
  font-weight: 650;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}
.req {
  color: var(--gold-deep);
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  font: inherit;
  background: rgba(255, 254, 251, 0.92);
}
.form-field textarea {
  min-height: 140px;
  resize: vertical;
}
.form-field--inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 520px) {
  .form-field--inline {
    grid-template-columns: 1fr;
  }
}
.form-help {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  background: var(--bg-elevated);
}
.site-footer__inner {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.footer-mark {
  flex-shrink: 0;
  display: block;
  line-height: 0;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(26, 39, 68, 0.12);
}
.footer-mark img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: contain;
  background: var(--bg);
  display: block;
}
.footer-mark:hover {
  box-shadow: 0 8px 22px rgba(26, 39, 68, 0.16);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.footer-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--ink-soft);
}
.footer-nav a:hover {
  color: var(--brand-deep);
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0.85rem 1rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  color: var(--cta-ink);
  text-decoration: none;
  box-shadow: 0 -10px 35px rgba(26, 39, 68, 0.18);
}
@media (min-width: 769px) {
  .sticky-cta {
    display: none;
  }
}

.layout-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
