:root {
  --color-limestone: #F3EBDD;
  --color-teal: #2F6F6D;
  --color-teal-deep: #245856;
  --color-clay: #B8573B;
  --color-clay-deep: #9a4630;
  --color-ink: #1F2430;
  --color-sage: #D7E1D4;
  --color-paper: #F8F3EA;
  --color-hairline: rgba(31, 36, 48, 0.12);
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Outfit", "Helvetica Neue", sans-serif;
  --radius-card: 14px;
  --radius-pill: 999px;
  --shadow-soft: 0 8px 24px rgba(31, 36, 48, 0.08), 0 1px 0 rgba(31, 36, 48, 0.04);
  --shadow-lift: 0 12px 28px rgba(31, 36, 48, 0.14);
  --space: clamp(1rem, 2vw, 1.5rem);
  --content: 72rem;
  --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.0625rem;
  line-height: 1.65;
  color: var(--color-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(215, 225, 212, 0.7), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(47, 111, 109, 0.08), transparent 50%),
    linear-gradient(180deg, var(--color-limestone) 0%, var(--color-paper) 40%, var(--color-limestone) 100%);
  min-height: 100vh;
}

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

a {
  color: var(--color-teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

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

.wrap {
  width: min(100% - 2 * var(--space), var(--content));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--primary {
  background: var(--color-teal);
  color: #fff;
  box-shadow: 0 2px 0 rgba(31, 36, 48, 0.12);
}

.btn--primary:hover {
  background: var(--color-teal-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

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

.btn--accent:hover {
  background: var(--color-clay-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn--ghost {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-hairline);
}

.btn--ghost:hover {
  background: var(--color-sage);
  color: var(--color-ink);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  background: transparent;
}

.site-header.is-solid {
  background: rgba(243, 235, 221, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--color-hairline);
}

.site-header__inner {
  width: min(100% - 2 * var(--space), var(--content));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__brand {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-header__list {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__list a {
  color: var(--color-ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.85;
}

.site-header__list a:hover {
  opacity: 1;
  color: var(--color-teal);
}

.site-header__cta {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  white-space: nowrap;
}

.site-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.site-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ink);
}

@media (max-width: 900px) {
  .site-header__toggle {
    display: flex;
  }

  .site-header__nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem var(--space) 1.5rem;
    background: var(--color-limestone);
    border-bottom: 1px solid var(--color-hairline);
    display: none;
  }

  .site-header__nav.is-open {
    display: flex;
  }

  .site-header__list {
    flex-direction: column;
    gap: 0.75rem;
  }

  .site-header__cta {
    align-self: flex-start;
  }
}

/* Hero & sections */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  margin-bottom: 4rem;
}

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

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

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 36, 48, 0.72) 0%, rgba(31, 36, 48, 0.35) 55%, rgba(31, 36, 48, 0.15) 100%),
    linear-gradient(0deg, rgba(31, 36, 48, 0.45), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2 * var(--space), var(--content));
  margin: 0 auto 4rem;
  color: #fff;
  max-width: 36rem;
  justify-self: start;
  margin-left: max(var(--space), calc((100% - var(--content)) / 2));
}

.hero__brand {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 0.75rem;
  color: #fff;
}

.hero__lead {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.hero--split {
  min-height: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 4rem;
  margin-bottom: 3rem;
}

.hero--split .hero__content {
  margin: 0;
  color: var(--color-ink);
  max-width: none;
  justify-self: stretch;
  margin-left: 0;
}

.hero--split .hero__brand {
  color: var(--color-ink);
}

.hero--split .hero__media {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 28rem;
}

.hero--split .hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 28rem;
}

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

  .hero--split .hero__media,
  .hero--split .hero__media img {
    min-height: 18rem;
  }
}

.section {
  padding: 3.5rem 0;
}

.section--sage {
  background: color-mix(in srgb, var(--color-sage) 55%, transparent);
}

.section__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.5rem;
}

.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  max-width: 20ch;
}

.section__intro {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: rgba(31, 36, 48, 0.85);
}

.asymmetric {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

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

.bleed-band {
  position: relative;
  min-height: 22rem;
  margin: 3rem 0;
  overflow: hidden;
}

.bleed-band img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
}

.bleed-band__caption {
  position: absolute;
  bottom: 1.5rem;
  left: max(var(--space), calc((100% - var(--content)) / 2));
  background: rgba(243, 235, 221, 0.92);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-card);
  max-width: 28rem;
  box-shadow: var(--shadow-soft);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--color-paper);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__body h3 {
  font-size: 1.25rem;
}

.card__body p {
  flex: 1;
}

.card__meta {
  font-size: 0.9rem;
  color: rgba(31, 36, 48, 0.7);
  margin-top: 0.5rem;
}

/* Page chrome */
.page-hero {
  padding: 3rem 0 2rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 18ch;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 1.5rem 0;
}

.prose th,
.prose td {
  border: 1px solid var(--color-hairline);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: var(--color-sage);
  font-weight: 600;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

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

.detail-aside {
  background: var(--color-paper);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.detail-aside dl {
  margin: 0;
}

.detail-aside dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-teal);
  margin-top: 1rem;
}

.detail-aside dd {
  margin: 0.25rem 0 0;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.25rem;
}

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

.quote-block {
  background: var(--color-paper);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.quote-block blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.45;
}

.quote-block cite {
  font-style: normal;
  font-size: 0.92rem;
  color: rgba(31, 36, 48, 0.75);
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-hairline);
}

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

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

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-hairline);
  border-radius: 10px;
  background: #fff;
  color: var(--color-ink);
}

.form textarea {
  min-height: 9rem;
  resize: vertical;
}

.form .field-error {
  color: var(--color-clay);
  font-size: 0.85rem;
  font-weight: 400;
}

.form-status {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
}

.form-status.is-success {
  background: var(--color-sage);
  color: var(--color-ink);
}

.form-status.is-error {
  background: #f3d6ce;
  color: var(--color-clay-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
}

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

.contact-card {
  background: var(--color-paper);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  background: var(--color-ink);
  color: rgba(243, 235, 221, 0.85);
  padding: 3.5rem 0 0;
}

.site-footer a {
  color: rgba(243, 235, 221, 0.75);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-sage);
}

.site-footer__grid {
  width: min(100% - 2 * var(--space), var(--content));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
}

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

@media (max-width: 500px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.site-footer__heading {
  font-family: var(--font-serif);
  color: var(--color-limestone);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

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

.site-footer__links li {
  margin-bottom: 0.45rem;
}

.site-footer__contact {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.site-footer__band {
  border-top: 1px solid rgba(243, 235, 221, 0.12);
  width: min(100% - 2 * var(--space), var(--content));
  margin-inline: auto;
  padding: 1.75rem 0 2rem;
  display: grid;
  gap: 1rem;
}

.newsletter__label {
  display: block;
  font-family: var(--font-serif);
  color: var(--color-limestone);
  margin-bottom: 0.5rem;
}

.newsletter__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.newsletter input {
  flex: 1;
  min-width: 12rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(243, 235, 221, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
}

.site-footer__social {
  display: flex;
  gap: 1.25rem;
}

.site-footer__legal {
  font-size: 0.85rem;
  opacity: 0.65;
  margin: 0;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 50;
  max-width: 36rem;
}

.cookie-banner__inner {
  background: var(--color-paper);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lift);
  padding: 1.25rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.parallax-shape {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 225, 212, 0.55), transparent 70%);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.rate-table th,
.rate-table td {
  text-align: left;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--color-hairline);
}

.rate-table th {
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding: 0.75rem 0 0.75rem 1.75rem;
  border-bottom: 1px solid var(--color-hairline);
  position: relative;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 2px;
  background: var(--color-teal);
}

.error-page {
  min-height: 60vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 3rem var(--space);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.flag-list {
  display: grid;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}

.flag-list li {
  background: var(--color-paper);
  border: 1px solid var(--color-hairline);
  border-radius: 10px;
  padding: 0.85rem 1rem;
}
