:root {
  --bg: #f3f0ea;
  --bg-deep: #e7e2d8;
  --surface: #faf8f4;
  --ink: #1a1c19;
  --ink-soft: #4a4f48;
  --muted: #6e746c;
  --line: rgba(26, 28, 25, 0.12);
  --accent: #2f3d34;
  --accent-hover: #243029;
  --accent-soft: #d8e0d9;
  --highlight: #c4a574;
  --error: #8b3a2f;
  --success: #2f5d45;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --space: clamp(1rem, 2vw, 1.5rem);
  --wide: 1120px;
  --radius: 2px;
  --header-h: 4.25rem;
  --shadow: 0 18px 40px rgba(26, 28, 25, 0.08);
  --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);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(196, 165, 116, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(47, 61, 52, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #ebe6dc 100%);
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

p {
  margin: 0 0 1em;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(243, 240, 234, 0.88);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0.85rem var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}

.brand__mark {
  width: 0.65rem;
  height: 2.4rem;
  background: linear-gradient(180deg, var(--highlight), var(--accent));
  border-radius: 999px;
}

.brand__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 650;
}

.brand__text em {
  font-style: normal;
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.92em;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.45rem 0.7rem;
  font: inherit;
  cursor: pointer;
  color: var(--ink);
}

.nav-toggle__bars {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor, 0 -5px 0 currentColor;
  margin-top: 0.15rem;
}

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

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

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

.nav-cta {
  background: var(--accent);
  color: #f7f4ef !important;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--accent-hover);
}

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

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

.btn--primary {
  background: var(--accent);
  color: #f7f4ef;
}

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

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

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

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

.wrap {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 var(--space);
}

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

.section--tight {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 38rem;
}

.split {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

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

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

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

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s var(--ease) forwards;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 24, 20, 0.25) 0%, rgba(20, 24, 20, 0.72) 70%, rgba(20, 24, 20, 0.88) 100%),
    linear-gradient(90deg, rgba(20, 24, 20, 0.55) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--wide);
  margin: 0 auto;
  padding: clamp(5rem, 12vh, 8rem) var(--space) clamp(2.5rem, 6vh, 4rem);
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  max-width: 12ch;
  animation: rise 0.9s var(--ease) both;
}

.hero__line {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  max-width: 28rem;
  color: rgba(247, 244, 239, 0.9);
  margin-bottom: 1.75rem;
  animation: rise 0.9s var(--ease) 0.12s both;
}

.hero .btn-row {
  animation: rise 0.9s var(--ease) 0.22s both;
}

.hero .btn--primary {
  background: #f7f4ef;
  color: var(--accent);
}

.hero .btn--primary:hover {
  background: #fff;
}

.hero .btn--ghost {
  border-color: rgba(247, 244, 239, 0.45);
  color: #f7f4ef;
}

.page-hero {
  padding: clamp(3rem, 8vw, 5rem) 0 2rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 16ch;
}

.page-hero--media {
  position: relative;
  min-height: 42vh;
  display: grid;
  align-items: end;
  color: #f7f4ef;
  overflow: hidden;
}

.page-hero--media .page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero--media .page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--media .page-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 24, 20, 0.2), rgba(20, 24, 20, 0.78));
}

.page-hero--media .wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
  padding-top: 6rem;
}

.page-hero--media h1 {
  color: #f7f4ef;
}

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

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

.offer {
  display: grid;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.offer img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  filter: saturate(0.92);
}

.offer h3 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

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

.offer__meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.35;
  margin: 0 0 1rem;
}

.quote-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

.steps li {
  position: relative;
  padding-left: 3.2rem;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.price-block {
  display: grid;
  gap: 1.5rem;
}

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

.price-item {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

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

.price-item h3 {
  margin-bottom: 0.35rem;
  font-size: 1.3rem;
}

.price-item .amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
}

.article-list {
  display: grid;
  gap: 2rem;
}

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

.article-teaser img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  margin-bottom: 1rem;
}

.article-teaser h2 {
  font-size: 1.4rem;
}

.article-teaser h2 a {
  text-decoration: none;
  color: inherit;
}

.prose {
  max-width: 42rem;
}

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

.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

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

th {
  font-weight: 600;
}

.field {
  margin-bottom: 1.1rem;
}

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

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

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

.field--error input,
.field--error select,
.field--error textarea {
  border-color: var(--error);
}

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

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

.form-status--success {
  background: rgba(47, 93, 69, 0.12);
  color: var(--success);
}

.form-status--error {
  background: rgba(139, 58, 47, 0.12);
  color: var(--error);
}

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

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.site-footer {
  margin-top: 2rem;
  background: var(--accent);
  color: rgba(247, 244, 239, 0.88);
  padding: 3rem 0 2rem;
}

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

.site-footer__grid {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 var(--space);
  display: grid;
  gap: 1.75rem;
}

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

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: #f7f4ef;
}

.site-footer__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

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

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

.site-footer__copy {
  max-width: var(--wide);
  margin: 2rem auto 0;
  padding: 1.25rem var(--space) 0;
  border-top: 1px solid rgba(247, 244, 239, 0.15);
  font-size: 0.9rem;
  opacity: 0.7;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 1rem;
}

.cookie-banner__inner {
  max-width: 880px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.25rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

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

.detail-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

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

.checklist li {
  padding: 0.55rem 0 0.55rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--highlight);
  border-radius: 1px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

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

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
  }

  .nav-toggle__label {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(243, 240, 234, 0.98);
    padding: 1.5rem var(--space);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s ease;
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

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

  .site-nav a {
    font-size: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
