:root {
  --ink: #0e1c24;
  --ink-soft: #2a3d48;
  --paper: #eef3f1;
  --paper-deep: #dce6e1;
  --jade: #1b6b5a;
  --jade-deep: #134c40;
  --jade-soft: #d5ebe4;
  --brass: #8a6a2f;
  --line: rgba(14, 28, 36, 0.12);
  --shadow: 0 18px 40px rgba(14, 28, 36, 0.08);
  --radius: 4px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --space: clamp(1rem, 2vw, 1.5rem);
  --max: 1120px;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(27, 107, 90, 0.14), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(138, 106, 47, 0.1), transparent 50%),
    linear-gradient(180deg, #f5f8f6 0%, var(--paper) 40%, #e7efeb 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: var(--jade-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
}

.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(--max));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn--primary {
  background: var(--jade);
  color: #f4faf7;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(238, 243, 241, 0.86);
  border-bottom: 1px solid var(--line);
}

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

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

.site-header__toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 0.55rem;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

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

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

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

.site-nav a:hover {
  color: var(--jade);
}

.site-nav__cta {
  background: var(--ink);
  color: #f4faf7 !important;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
}

.site-nav__cta:hover {
  background: var(--jade);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f4faf7;
}

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

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroRise 1.2s ease both;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 28, 36, 0.25) 0%, rgba(14, 28, 36, 0.72) 55%, rgba(14, 28, 36, 0.9) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2 * var(--space), var(--max));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4.5rem);
  max-width: 38rem;
  animation: fadeUp 0.9s ease 0.15s both;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  margin: 0 0 0.75rem;
  color: #f4faf7;
}

.hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  margin-bottom: 0.75rem;
  color: #e8f0ec;
}

.hero__support {
  color: rgba(244, 250, 247, 0.86);
  margin-bottom: 1.75rem;
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.section--tight {
  padding-top: 2rem;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 0.85rem;
}

.section__lead {
  max-width: 40rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 1rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0 0 0.85rem;
  max-width: 18ch;
}

.page-hero p {
  max-width: 40rem;
  color: var(--ink-soft);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.offer-item {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  animation: fadeUp 0.7s ease both;
}

.offer-item:nth-child(2) { animation-delay: 0.08s; }
.offer-item:nth-child(3) { animation-delay: 0.16s; }
.offer-item:nth-child(4) { animation-delay: 0.24s; }

.offer-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.offer-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}

.offer-item p {
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.flagship {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: linear-gradient(135deg, #ffffffcc, #e5f0ebcc);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.flagship img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
}

.flagship__copy h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.evidence {
  display: grid;
  gap: 1.25rem;
}

.evidence__quote {
  margin: 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
}

.evidence__quote:last-child {
  border-bottom: 1px solid var(--line);
}

.evidence__quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

.steps__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.steps__item::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--jade);
  min-width: 2.5rem;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.55);
}

.rate-table th,
.rate-table td {
  text-align: left;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.rate-table th {
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--jade-soft);
}

.prose {
  max-width: 42rem;
}

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

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

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

.detail-layout {
  display: grid;
  gap: 2rem;
}

.detail-layout__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

.detail-meta {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.detail-meta dt {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brass);
}

.detail-meta dd {
  margin: 0.25rem 0 0;
  color: var(--ink-soft);
}

.blog-list {
  display: grid;
  gap: 1.5rem;
}

.blog-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.blog-card h2 {
  margin: 0.25rem 0 0.5rem;
  font-size: 1.35rem;
}

.blog-card__date {
  color: var(--brass);
  font-size: 0.85rem;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.contact-card {
  padding: 1.25rem 0;
}

.form {
  display: grid;
  gap: 1rem;
}

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

.form label {
  font-weight: 600;
  font-size: 0.92rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font: inherit;
  color: var(--ink);
}

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

.form__error {
  color: #8a2e2e;
  font-size: 0.85rem;
  min-height: 1.1em;
}

.form__status {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  display: none;
}

.form__status.is-success {
  display: block;
  background: var(--jade-soft);
  color: var(--jade-deep);
}

.form__status.is-error {
  display: block;
  background: #f7e4e4;
  color: #8a2e2e;
}

.input-invalid {
  border-color: #8a2e2e !important;
}

.story {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.story h3 {
  margin-top: 0;
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  background: #0e1c24;
  color: #d7e4de;
  padding: 3rem 0 1.5rem;
}

.site-footer a {
  color: #d7e4de;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__inner {
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #f4faf7;
  margin-bottom: 0.5rem;
}

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

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

.site-footer__copy {
  width: min(100% - 2 * var(--space), var(--max));
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(215, 228, 222, 0.18);
  font-size: 0.85rem;
  color: rgba(215, 228, 222, 0.7);
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 50;
  background: rgba(14, 28, 36, 0.96);
  color: #e8f0ec;
  padding: 1rem;
  border-top: 1px solid rgba(232, 240, 236, 0.2);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__inner {
  width: min(100% - 1rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__text {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.92rem;
}

.cookie-banner a {
  color: #9fd4c4;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
}

.cookie-banner .btn--ghost {
  border-color: #d7e4de;
  color: #d7e4de;
}

.cookie-banner .btn--ghost:hover {
  background: #d7e4de;
  color: var(--ink);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 1rem 0 1.5rem;
}

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

.legal-table th {
  background: var(--jade-soft);
}

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

.error-page h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin-bottom: 0.5rem;
}

.path-timeline {
  display: grid;
  gap: 0;
  margin-top: 2rem;
}

.path-timeline__item {
  position: relative;
  padding: 1.25rem 0 1.25rem 1.5rem;
  border-left: 2px solid var(--jade);
}

.path-timeline__item h3 {
  margin: 0 0 0.4rem;
}

.path-timeline__item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 1.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 0 4px var(--paper);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroRise {
  from {
    transform: scale(1.06);
    opacity: 0.6;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .offer-grid,
  .flagship,
  .contact-grid,
  .site-footer__inner,
  .blog-card {
    grid-template-columns: 1fr;
  }

  .site-header__toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #f5f8f6;
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--space) 1.25rem;
    display: none;
  }

  .site-nav.is-open {
    display: block;
    animation: fadeUp 0.25s ease;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 78vh;
  }
}
