:root {
  --ink: #12201f;
  --deep: #0b3d3a;
  --deep-2: #165e59;
  --mist: #e7efe9;
  --paper: #f6f1e8;
  --cream: #fbf7f0;
  --amber: #e8a54b;
  --amber-deep: #c9842d;
  --coral: #d4684a;
  --line: rgba(18, 32, 31, 0.12);
  --shadow: 0 18px 50px rgba(11, 61, 58, 0.14);
  --radius: 4px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --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(ellipse 80% 50% at 10% -10%, rgba(232, 165, 75, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(22, 94, 89, 0.12), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 40%, #efe8dc 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

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

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

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

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

p {
  margin: 0 0 1rem;
}

ul {
  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% - 2rem, var(--max));
  margin-inline: auto;
}

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

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

.btn--primary {
  background: var(--deep);
  color: var(--paper);
  border-color: var(--deep);
}

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

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(18, 32, 31, 0.28);
}

.btn--ghost:hover {
  border-color: var(--deep);
  color: var(--deep);
}

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(251, 247, 240, 0.86);
  border-bottom: 1px solid var(--line);
}

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

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.site-header__mark {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 0.35rem;
  background:
    linear-gradient(135deg, var(--deep) 55%, var(--amber) 55%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.site-header__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.site-header__toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: var(--radius);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

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

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

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

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

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

.site-nav__cta:hover {
  background: var(--deep-2);
  color: #fff !important;
}

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1rem 1.25rem;
    display: none;
  }

  .site-nav.is-open {
    display: block;
    animation: dropIn 0.28s ease;
  }

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

  .site-nav__cta {
    text-align: center;
  }
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

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

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

/* Hero home — layered full-bleed */
.hero-home {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
}

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

.hero-home__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.hero-home__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(11, 61, 58, 0.92) 0%, rgba(11, 61, 58, 0.72) 42%, rgba(18, 32, 31, 0.35) 100%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 12px,
      rgba(243, 237, 226, 0.03) 12px,
      rgba(243, 237, 226, 0.03) 13px
    );
}

.hero-home__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 4.5rem 0 3.5rem;
  animation: rise 0.8s ease both;
}

.hero-home__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero-home__brand span {
  color: var(--amber);
}

.hero-home__lead {
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(246, 241, 232, 0.92);
  margin-bottom: 1.75rem;
}

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

.hero-home__accent {
  position: absolute;
  right: 8%;
  top: 18%;
  width: min(28vw, 220px);
  aspect-ratio: 1;
  border: 1px solid rgba(232, 165, 75, 0.45);
  border-radius: 50%;
  z-index: 1;
  animation: drift 7s ease-in-out infinite;
  pointer-events: none;
}

.hero-home__accent::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(243, 237, 226, 0.35);
  border-radius: 50%;
}

/* Page heroes (inner) */
.page-hero {
  position: relative;
  padding: 4rem 0 2.5rem;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(11, 61, 58, 0.08), transparent 55%),
    radial-gradient(circle at 90% 20%, rgba(232, 165, 75, 0.2), transparent 40%);
  pointer-events: none;
}

.page-hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep-2);
  margin-bottom: 0.75rem;
}

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

.page-hero p {
  max-width: 40rem;
  font-size: 1.08rem;
  color: rgba(18, 32, 31, 0.82);
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section--tight {
  padding: 2.5rem 0;
}

.section__head {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 2rem;
  max-width: 40rem;
}

.section__head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}

.section__head p {
  margin: 0;
  color: rgba(18, 32, 31, 0.78);
}

.panel {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(246, 241, 232, 0.9)),
    var(--cream);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

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

.split__media {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.split__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(11, 61, 58, 0.45));
}

/* Offer list */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.offer-card {
  display: grid;
  grid-template-rows: auto 1fr;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  color: inherit;
}

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

.offer-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offer-card:hover .offer-card__img img {
  transform: scale(1.05);
}

.offer-card__body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.offer-card__body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.offer-card__body p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(18, 32, 31, 0.78);
}

.flagship-band {
  background: var(--deep);
  color: var(--paper);
  border-radius: calc(var(--radius) + 8px);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.flagship-band::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -60px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 165, 75, 0.35), transparent 70%);
}

.flagship-band h2,
.flagship-band p {
  position: relative;
}

.flagship-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.flagship-band p {
  color: rgba(246, 241, 232, 0.9);
}

.flagship-band__meta {
  position: relative;
  align-self: end;
  display: grid;
  gap: 0.75rem;
}

.flagship-band__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--amber);
}

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

/* Evidence / quotes */
.quote-stack {
  display: grid;
  gap: 1.25rem;
}

.quote {
  border-left: 3px solid var(--amber);
  padding: 0.25rem 0 0.25rem 1.15rem;
}

.quote p {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.quote footer {
  font-size: 0.9rem;
  color: rgba(18, 32, 31, 0.7);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

/* Pricing */
.rate-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
}

.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);
  background: rgba(11, 61, 58, 0.08);
}

.factor-note {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(232, 165, 75, 0.14);
  border: 1px solid rgba(232, 165, 75, 0.35);
  border-radius: var(--radius);
}

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

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--deep);
  color: var(--paper);
  font-weight: 700;
  font-family: var(--font-display);
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.step p {
  margin: 0;
  color: rgba(18, 32, 31, 0.78);
}

/* Blog */
.post-list {
  display: grid;
  gap: 1.5rem;
}

.post-teaser {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  text-decoration: none;
  color: inherit;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-teaser:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
}

.post-teaser__img {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 140px;
}

.post-teaser__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 140px;
}

.post-teaser h2 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
}

.post-teaser time {
  font-size: 0.85rem;
  color: rgba(18, 32, 31, 0.6);
}

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

.prose {
  max-width: 42rem;
}

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

.article-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: calc(var(--radius) + 6px);
  margin: 1.5rem 0;
}

/* Forms */
.form {
  display: grid;
  gap: 1rem;
}

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

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

.form__row input,
.form__row select,
.form__row textarea {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(18, 32, 31, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
}

.form__row input:focus,
.form__row select:focus,
.form__row textarea:focus {
  outline: 2px solid var(--deep-2);
  outline-offset: 1px;
}

.form__error {
  color: var(--coral);
  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: rgba(22, 94, 89, 0.12);
  border: 1px solid rgba(22, 94, 89, 0.35);
  color: var(--deep);
}

.form__status.is-error {
  display: block;
  background: rgba(212, 104, 74, 0.12);
  border: 1px solid rgba(212, 104, 74, 0.4);
  color: #8f3a28;
}

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

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

.contact-card address {
  font-style: normal;
}

/* Legal */
.legal {
  max-width: 46rem;
}

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

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

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

.cookie-table th {
  background: rgba(11, 61, 58, 0.08);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 640px;
  margin-inline: auto;
}

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

.cookie-banner__inner {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid rgba(232, 165, 75, 0.35);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.15rem 1.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 1rem;
  animation: rise 0.4s ease;
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner__text a {
  color: var(--amber);
}

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

.cookie-banner .btn--ghost {
  color: var(--paper);
  border-color: rgba(246, 241, 232, 0.35);
}

.cookie-banner .btn--ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  background:
    linear-gradient(180deg, transparent, rgba(11, 61, 58, 0.06)),
    var(--deep);
  color: var(--paper);
  padding: 3rem 0 2rem;
}

.site-footer a {
  color: rgba(246, 241, 232, 0.88);
}

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

.site-footer__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0 0 0.35rem;
}

.site-footer__tag {
  margin: 0 0 2rem;
  color: rgba(246, 241, 232, 0.75);
  max-width: 28rem;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.site-footer__heading {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: var(--amber);
  font-family: var(--font-body);
  font-weight: 600;
}

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

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

.site-footer__copy {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(246, 241, 232, 0.15);
  font-size: 0.85rem;
  color: rgba(246, 241, 232, 0.55);
}

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

/* 404 */
.not-found {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1rem;
}

.not-found h1 {
  font-size: clamp(3rem, 10vw, 5rem);
  margin: 0 0 0.5rem;
  color: var(--deep);
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.detail-list li {
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.detail-list strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.2rem;
}

.cta-band {
  margin: 2rem 0 0;
  padding: 2rem;
  background:
    linear-gradient(120deg, rgba(11, 61, 58, 0.95), rgba(22, 94, 89, 0.9)),
    var(--deep);
  color: var(--paper);
  border-radius: calc(var(--radius) + 6px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-band h2 {
  margin: 0 0 0.35rem;
  font-size: 1.6rem;
}

.cta-band p {
  margin: 0;
  color: rgba(246, 241, 232, 0.88);
}
