:root {
  --ink: #15231f;
  --ink-soft: #3a4a45;
  --muted: #5f6f69;
  --paper: #eef2f0;
  --paper-2: #e2e9e5;
  --surface: #f7faf8;
  --line: rgba(21, 35, 31, 0.12);
  --forest: #1e3d36;
  --forest-deep: #132a25;
  --leaf: #3d6b5c;
  --gold: #c9a66b;
  --gold-soft: #e8d5b0;
  --danger: #8b3a2f;
  --ok: #2f6b4f;
  --shadow: 0 18px 40px rgba(19, 42, 37, 0.12);
  --radius: 4px;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --max: 1120px;
  --header-h: 4.5rem;
}

*,
*::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(61, 107, 92, 0.18), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(201, 166, 107, 0.16), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
}

p {
  margin: 0 0 1rem;
}

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

.inline-error {
  margin: 0;
  padding: 0.75rem 1rem;
  background: #f4e4e1;
  color: var(--danger);
  text-align: center;
  font-size: 0.95rem;
}

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

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand__mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.65rem;
  background:
    radial-gradient(circle at 35% 30%, var(--gold-soft), transparent 45%),
    linear-gradient(145deg, var(--leaf), var(--forest-deep));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-deep);
  line-height: 1.1;
}

.brand__tag {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

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

.site-nav a[aria-current="page"] {
  color: var(--forest);
  box-shadow: inset 0 -2px 0 var(--gold);
}

.site-nav .nav-cta {
  padding: 0.55rem 0.95rem;
  background: var(--forest);
  color: #f4f7f5;
  border-radius: var(--radius);
  box-shadow: none;
}

.site-nav .nav-cta:hover {
  background: var(--forest-deep);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0.65rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 0.35rem 0;
  transition: transform 0.25s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 560;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn--primary {
  background: var(--forest);
  color: #f5f8f6;
}

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

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

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

.btn--gold {
  background: var(--gold);
  color: var(--forest-deep);
}

.btn--gold:hover {
  background: #d4b57a;
  color: var(--forest-deep);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: grid;
  align-items: end;
  color: #f4f7f5;
  overflow: hidden;
}

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

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 42, 37, 0.88) 0%, rgba(19, 42, 37, 0.55) 48%, rgba(19, 42, 37, 0.28) 100%),
    linear-gradient(0deg, rgba(19, 42, 37, 0.72), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto 4.5rem;
  max-width: 38rem;
  animation: riseIn 0.9s ease both;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.02;
  margin: 0 0 1rem;
  color: #f7faf8;
  text-wrap: balance;
}

.hero__lead {
  font-size: 1.12rem;
  color: rgba(244, 247, 245, 0.9);
  margin-bottom: 1.6rem;
  max-width: 34rem;
}

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

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

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

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

.reveal {
  animation: fadeUp 0.7s ease both;
}

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

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

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

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

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

.panel {
  background: rgba(247, 250, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

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

.media-frame {
  overflow: hidden;
  border-radius: 0.85rem;
  border: 1px solid var(--line);
  min-height: 280px;
  box-shadow: var(--shadow);
}

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

.offer-grid,
.card-grid,
.blog-grid,
.review-grid {
  display: grid;
  gap: 1.25rem;
}

.offer-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid {
  grid-template-columns: repeat(2, 1fr);
}

.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.offer {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.offer img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.offer__body {
  padding: 1.2rem 1.25rem 1.4rem;
}

.offer__body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.offer__body p {
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.list-check li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
}

.quote {
  margin: 0;
  padding: 1.4rem 1.5rem;
  background: var(--surface);
  border-left: 3px solid var(--gold);
  border-radius: 0 0.75rem 0.75rem 0;
}

.quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--forest-deep);
}

.quote footer {
  color: var(--muted);
  font-size: 0.92rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  overflow: hidden;
}

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

.price-table th {
  background: var(--forest);
  color: #f4f7f5;
  font-weight: 560;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

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

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
}

.page-hero {
  padding: 3.5rem 0 2rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
}

.page-hero p {
  max-width: 42rem;
  color: var(--muted);
}

.prose {
  max-width: 46rem;
}

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

.prose h3 {
  margin-top: 1.5rem;
}

.meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

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

.blog-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}

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

.blog-card p {
  color: var(--muted);
  margin: 0;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-weight: 560;
  margin-bottom: 0.35rem;
}

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

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

.field__error {
  min-height: 1.2rem;
  color: var(--danger);
  font-size: 0.88rem;
  margin-top: 0.25rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
}

.form-status--ok {
  background: #e4f1ea;
  color: var(--ok);
}

.form-status--err {
  background: #f4e4e1;
  color: var(--danger);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

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

.legal th,
.legal td {
  border: 1px solid var(--line);
  padding: 0.7rem 0.8rem;
  text-align: left;
  vertical-align: top;
  background: var(--surface);
}

.legal th {
  background: var(--paper-2);
}

.cta-band {
  margin: 1rem 0 4rem;
  padding: 2rem;
  border-radius: 0.9rem;
  background:
    linear-gradient(135deg, rgba(30, 61, 54, 0.95), rgba(61, 107, 92, 0.92)),
    var(--forest);
  color: #f4f7f5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: #f7faf8;
  margin: 0 0 0.35rem;
}

.cta-band p {
  margin: 0;
  color: rgba(244, 247, 245, 0.88);
  max-width: 36rem;
}

.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 1.5rem;
  background: var(--forest-deep);
  color: rgba(244, 247, 245, 0.86);
}

.site-footer a {
  color: var(--gold-soft);
  text-decoration: none;
}

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

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

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.site-footer__lead {
  color: rgba(244, 247, 245, 0.75);
}

.site-footer__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

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

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

.site-footer__copy {
  width: min(100% - 2.5rem, var(--max));
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  color: rgba(244, 247, 245, 0.6);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  animation: riseIn 0.45s ease both;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner__inner {
  max-width: 920px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  box-shadow: var(--shadow);
  padding: 1.1rem 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner__inner p {
  margin: 0;
  flex: 1 1 18rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

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

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

.portrait {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  overflow: hidden;
}

.portrait img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.portrait__body {
  padding: 1.1rem 1.2rem 1.3rem;
}

.muted {
  color: var(--muted);
}

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

.stat-note {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.15rem;
  border: 1px dashed rgba(61, 107, 92, 0.45);
  border-radius: 0.75rem;
  background: rgba(247, 250, 248, 0.7);
}

.stat-note strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--forest);
}

.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

.error-page h1 {
  font-size: clamp(3rem, 10vw, 5.5rem);
  margin: 0;
}

@media (max-width: 960px) {
  .offer-grid,
  .blog-grid,
  .site-footer__grid,
  .split,
  .contact-grid,
  .review-grid,
  .two-col,
  .portrait-row {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header-h) + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(247, 250, 248, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1.25rem 1rem;
  }

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

  .site-nav a {
    padding: 0.75rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .hero {
    min-height: 78vh;
  }

  .hero__content {
    margin-bottom: 3rem;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
}
