:root {
  --ink: #1a2421;
  --ink-soft: #3d4a45;
  --muted: #5f6e68;
  --paper: #f3f6f4;
  --paper-deep: #e4ebe7;
  --surface: #ffffff;
  --forest: #1a3d38;
  --forest-mid: #2a5c54;
  --moss: #3d7a6e;
  --amber: #c4894a;
  --amber-soft: #e8c9a4;
  --line: rgba(26, 61, 56, 0.14);
  --shadow: 0 18px 40px rgba(26, 61, 56, 0.08);
  --radius: 14px;
  --max: 1120px;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::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(196, 137, 74, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(61, 122, 110, 0.14), transparent 50%),
    linear-gradient(180deg, #eef3f0 0%, var(--paper) 40%, #e9f0ec 100%);
  line-height: 1.65;
  min-height: 100vh;
}

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

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

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

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

h1 {
  font-size: clamp(2.25rem, 5vw, 3.6rem);
  margin: 0 0 0.6em;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin: 0 0 0.55em;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 0.4em;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

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

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--forest);
}

.brand__mark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

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

@media (min-width: 900px) {
  .brand__tag {
    display: inline;
  }
}

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

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

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--forest);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  font: inherit;
  cursor: pointer;
  color: var(--forest);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.78rem 1.35rem;
  font: inherit;
  font-weight: 650;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.35s var(--ease), background 0.25s ease, color 0.25s ease,
    border-color 0.25s ease;
}

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

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

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

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

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

.btn--amber {
  background: var(--amber);
  color: #1a1a14;
}

.btn--amber:hover {
  background: #b3783c;
  color: #111;
}

.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}

.hero--home {
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
}

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

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

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(18, 36, 33, 0.82) 0%, rgba(18, 36, 33, 0.45) 48%, rgba(18, 36, 33, 0.2) 100%),
    linear-gradient(0deg, rgba(18, 36, 33, 0.55), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 1;
  color: #f4f8f6;
  max-width: 34rem;
  animation: rise 0.9s var(--ease) both;
}

.hero__content h1 {
  color: #f7faf8;
}

.hero__content p {
  color: rgba(244, 248, 246, 0.88);
  font-size: 1.08rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  line-height: 0.95;
  margin: 0 0 0.35em;
  color: #fff;
  letter-spacing: -0.03em;
}

.hero__kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-soft);
  margin-bottom: 0.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

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

.page-hero p.lede {
  font-size: 1.12rem;
  max-width: 40rem;
}

section {
  padding: 3.25rem 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
  .split--reverse > :first-child {
    order: 2;
  }
}

.frame {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.1s var(--ease);
}

.frame:hover img {
  transform: scale(1.06);
}

.offer-list {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .offer-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.offer {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

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

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

.offer__body {
  padding: 1.25rem 1.3rem 1.45rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer__body p {
  flex: 1;
}

.offer__body .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.band {
  background: var(--forest);
  color: #eef5f2;
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  position: relative;
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -60px;
  top: -80px;
  background: radial-gradient(circle, rgba(196, 137, 74, 0.35), transparent 70%);
  pointer-events: none;
}

.band h2,
.band p {
  color: inherit;
  position: relative;
}

.band p {
  opacity: 0.9;
  max-width: 36rem;
}

.quote-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .quote-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.quote {
  background: var(--surface);
  border-left: 3px solid var(--amber);
  padding: 1.4rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}

.quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.85rem;
}

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

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

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: relative;
  animation: rise 0.7s var(--ease) both;
}

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

.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--amber);
  display: block;
  margin-bottom: 0.4rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

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

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

.price-note {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

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

@media (min-width: 760px) {
  .blog-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease);
}

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

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

.blog-card__body {
  padding: 1.15rem 1.25rem 1.4rem;
}

.blog-card time {
  font-size: 0.8rem;
  color: var(--muted);
}

.article {
  max-width: 44rem;
  margin: 0 auto;
}

.article figure {
  margin: 0 0 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.article figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.6rem 0 0;
}

.prose h2 {
  margin-top: 1.8em;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

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

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--forest);
  font-size: 0.92rem;
}

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

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

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

.is-invalid {
  border-color: #a33 !important;
}

.field-error {
  display: block;
  color: #8b2e2e;
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.form-status {
  margin-top: 0.85rem;
  min-height: 1.4em;
}

.form-status--ok {
  color: var(--forest-mid);
  font-weight: 600;
}

.form-status--err {
  color: #8b2e2e;
  font-weight: 600;
}

.inline-error {
  background: #fdecea;
  color: #7a2a2a;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  margin: 0.5rem 0;
}

.site-footer {
  margin-top: 3rem;
  background: var(--forest);
  color: #dce8e4;
  padding: 3rem 0 2rem;
}

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

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

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer h3 {
  color: #f4f8f6;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

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

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

.footer-meta {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(220, 232, 228, 0.75);
}

.legal {
  max-width: 46rem;
}

.legal h2 {
  margin-top: 1.6em;
}

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

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

.cookie-table th {
  background: var(--paper-deep);
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 80;
  max-width: 640px;
  margin: 0 auto;
  animation: rise 0.5s var(--ease) both;
}

.cookie-banner__inner {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.15rem 1.25rem;
}

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

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.65rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 650;
  color: var(--forest);
}

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

.not-found {
  text-align: center;
  padding: 6rem 0;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
}

.chip {
  font-size: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 880px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(243, 246, 244, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .header-inner {
    position: relative;
  }
}
