:root {
  --color-chalk: #f7f5f1;
  --color-ivory: #f3efe6;
  --color-teal: #7eb8b0;
  --color-teal-deep: #4a8f86;
  --color-dune: #d4c4a8;
  --color-navy: #1e3a4c;
  --color-navy-deep: #152a38;
  --color-coral: #e07a5f;
  --color-ink: #24323a;
  --color-muted: #5c6b73;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Source Sans 3", "Segoe UI", sans-serif;
  --radius-card: 18px;
  --shadow-paper: 0 10px 28px rgba(30, 58, 76, 0.08);
  --space: clamp(1rem, 2vw, 1.75rem);
  --max: 1120px;
}

*,
*::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(--color-ink);
  background:
    radial-gradient(ellipse at 10% 0%, rgba(126, 184, 176, 0.18), transparent 45%),
    radial-gradient(ellipse at 90% 10%, rgba(212, 196, 168, 0.35), transparent 40%),
    linear-gradient(180deg, var(--color-chalk) 0%, #efe9df 100%);
  min-height: 100vh;
}

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

a {
  color: var(--color-teal-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

a:hover {
  color: var(--color-navy);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-navy);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }

p { margin: 0 0 1em; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn--navy {
  background: var(--color-navy);
  color: #fff;
}

.btn--navy:hover { color: #fff; background: var(--color-navy-deep); }

.btn--teal {
  background: var(--color-teal-deep);
  color: #fff;
}

.btn--teal:hover { color: #fff; background: #3d7a72; }

.btn--ghost {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
  letter-spacing: 0.06em;
}

.btn--ghost:hover { color: var(--color-navy); background: rgba(30, 58, 76, 0.05); }

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(247, 245, 241, 0.78);
  border-bottom: 1px solid rgba(30, 58, 76, 0.08);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__wordmark {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.site-header__wordmark em {
  font-style: italic;
  color: var(--color-teal-deep);
}

.site-header__toggle {
  display: none;
  background: none;
  border: 0;
  width: 2.4rem;
  height: 2rem;
  padding: 0;
  cursor: pointer;
}

.site-header__toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--color-navy);
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--color-navy);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.site-nav a:not(.site-nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2em;
  width: 0;
  height: 1px;
  background: var(--color-coral);
  transition: width 0.3s ease;
}

.site-nav a:not(.site-nav__cta):hover::after {
  width: 100%;
}

.site-nav__cta {
  background: var(--color-navy);
  color: #fff !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  text-decoration: none;
}

.site-nav__cta:hover {
  background: var(--color-navy-deep);
}

@media (max-width: 900px) {
  .site-header__toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(247, 245, 241, 0.98);
    border-bottom: 1px solid rgba(30, 58, 76, 0.1);
    padding: 1rem 1.25rem 1.5rem;
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
  }
}

.section {
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1rem, 4vw, 2rem);
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section--ivory {
  background: rgba(243, 239, 230, 0.65);
}

.section--offset {
  padding-left: clamp(1rem, 8vw, 6rem);
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-coral);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 38rem;
}

.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 42, 56, 0.82) 0%, rgba(21, 42, 56, 0.45) 55%, rgba(21, 42, 56, 0.25) 100%),
    linear-gradient(0deg, rgba(21, 42, 56, 0.75) 0%, transparent 55%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: clamp(5rem, 14vw, 8rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 7vw, 4.5rem);
}

.hero__content h1 {
  color: #fff;
  max-width: 14ch;
}

.hero__content p {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero--editorial .hero__content {
  display: grid;
  gap: 1rem;
  max-width: 32rem;
}

.band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.band--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.band__image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-paper);
  border: 1px solid rgba(30, 58, 76, 0.12);
}

.band__image--offset {
  transform: translateY(1.5rem);
}

@media (max-width: 800px) {
  .band,
  .band--reverse {
    grid-template-columns: 1fr;
  }
  .band__image--offset { transform: none; }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.35rem;
}

.card {
  background: var(--color-ivory);
  border: 1px solid rgba(30, 58, 76, 0.18);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-paper);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(30, 58, 76, 0.12);
}

.card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  border-top: 1px solid rgba(30, 58, 76, 0.15);
}

.card__body h3 {
  margin-bottom: 0.4rem;
}

.card__body h3 a {
  color: inherit;
  text-decoration: none;
}

.card__meta {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.quote-block {
  background: var(--color-ivory);
  border-left: 3px solid var(--color-coral);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-paper);
}

.quote-block p {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-navy);
}

.quote-block cite {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.story {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--color-ivory);
  border-radius: var(--radius-card);
  border: 1px solid rgba(30, 58, 76, 0.15);
}

.prose {
  max-width: 42rem;
}

.prose ul, .prose ol {
  padding-left: 1.2rem;
}

.prose li { margin-bottom: 0.45rem; }

.page-hero {
  padding: clamp(3.5rem, 9vw, 5.5rem) clamp(1rem, 4vw, 2rem) 2rem;
}

.page-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.page-hero--split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero--split img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-paper);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 800px) {
  .page-hero--split { grid-template-columns: 1fr; }
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}

.form__row {
  display: grid;
  gap: 0.35rem;
}

.form label {
  font-weight: 600;
  color: var(--color-navy);
  font-size: 0.95rem;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(30, 58, 76, 0.25);
  background: #fff;
  color: var(--color-ink);
}

.form textarea { min-height: 140px; resize: vertical; }

.form__error {
  color: #a33a2a;
  font-size: 0.88rem;
  margin: 0;
}

.form-status {
  margin: 0.5rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
}

.form-status--success {
  background: rgba(126, 184, 176, 0.25);
  color: var(--color-navy);
}

.form-status--error {
  background: rgba(224, 122, 95, 0.2);
  color: #8a3424;
}

.contact-aside {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-card);
  padding: 1.75rem;
}

.contact-aside h2 { color: #fff; }
.contact-aside a { color: var(--color-teal); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

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

.site-footer {
  background: var(--color-navy-deep);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 3rem;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem) 1.5rem;
}

.site-footer a { color: var(--color-teal); text-decoration: none; }
.site-footer a:hover { color: #fff; }

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 2rem;
}

.site-footer__wordmark {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #fff;
  margin: 0 0 0.75rem;
}

.site-footer__wordmark em {
  font-style: italic;
  color: var(--color-teal);
}

.site-footer__heading {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li { margin-bottom: 0.4rem; }

.site-footer__address {
  white-space: pre-line;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.newsletter-form input {
  flex: 1 1 160px;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
}

.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.55); }

.site-footer__copy {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__cols { grid-template-columns: 1fr 1fr; }
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 520px;
  margin: 0 auto;
}

.cookie-banner__inner {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(126, 184, 176, 0.35);
}

.cookie-banner__title {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.cookie-banner__text { font-size: 0.95rem; }
.cookie-banner__text a { color: var(--color-teal); }
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-ivory);
  border-radius: var(--radius-card);
  overflow: hidden;
}

th, td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(30, 58, 76, 0.12);
  vertical-align: top;
}

th {
  background: rgba(30, 58, 76, 0.06);
  font-weight: 600;
  color: var(--color-navy);
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.steps li {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 4rem;
  background: var(--color-ivory);
  border-radius: var(--radius-card);
  border: 1px solid rgba(30, 58, 76, 0.14);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.fee-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(30, 58, 76, 0.15);
}

@media (max-width: 700px) {
  .fee-row { grid-template-columns: 1fr; }
}

.legal h2 { margin-top: 2rem; }

.error-page {
  text-align: center;
  padding: 6rem 1.5rem;
}

.error-page h1 {
  font-size: clamp(3rem, 8vw, 5rem);
}
