:root {
  --color-ink: #14221c;
  --color-ink-soft: #3a4a42;
  --color-paper: #f3f6f4;
  --color-paper-deep: #e4ebe7;
  --color-forest: #1b3d32;
  --color-forest-mid: #2a5a48;
  --color-sage: #8fad9c;
  --color-brass: #a67c52;
  --color-brass-deep: #8a6540;
  --color-mist: #d7e3dc;
  --color-error: #8b2e2e;
  --color-success: #1f5c3a;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", "Segoe UI", sans-serif;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2.5rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --radius: 2px;
  --shadow-soft: 0 18px 40px rgba(20, 34, 28, 0.08);
  --max: 70rem;
  --header-h: 4.25rem;
  --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(--color-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(143, 173, 156, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(166, 124, 82, 0.12), transparent 45%),
    linear-gradient(180deg, var(--color-paper) 0%, #eef2ef 100%);
  min-height: 100vh;
}

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

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

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

h1,
h2,
h3,
.h-display {
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-forest);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0 0 var(--space-3);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin: 0 0 var(--space-3);
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 var(--space-2);
}

p {
  margin: 0 0 var(--space-3);
}

ul,
ol {
  margin: 0 0 var(--space-3);
  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;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

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

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

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

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

.btn--ghost:hover {
  background: var(--color-mist);
  color: var(--color-forest);
}

.btn--brass {
  background: var(--color-brass);
  color: #fff;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 246, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27, 61, 50, 0.1);
}

.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: var(--space-3);
}

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

.site-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}

.site-header__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-forest);
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.site-nav__link:hover {
  color: var(--color-forest);
}

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

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--color-paper);
    border-bottom: 1px solid rgba(27, 61, 50, 0.12);
    padding: var(--space-3) var(--space-4);
    display: none;
  }

  .site-nav.is-open {
    display: block;
    animation: drop 0.35s var(--ease);
  }

  .site-nav__list {
    flex-direction: column;
  }
}

@keyframes drop {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  animation: rise 0.8s var(--ease) both;
}

.reveal-delay {
  animation: rise 0.9s var(--ease) 0.15s both;
}

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

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

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fade-in 1.2s var(--ease);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 34, 28, 0.25) 0%, rgba(20, 34, 28, 0.72) 55%, rgba(20, 34, 28, 0.88) 100%),
    linear-gradient(90deg, rgba(27, 61, 50, 0.55) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: var(--space-7) 0 var(--space-6);
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  line-height: 0.95;
  margin: 0 0 var(--space-4);
  color: #f7faf8;
  max-width: 12ch;
  animation: rise 0.9s var(--ease) both;
}

.hero__lead {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  max-width: 34rem;
  margin-bottom: var(--space-3);
  color: #e8f0ec;
  animation: rise 1s var(--ease) 0.12s both;
}

.hero__support {
  max-width: 32rem;
  color: var(--color-mist);
  margin-bottom: var(--space-5);
  animation: rise 1s var(--ease) 0.2s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  animation: rise 1s var(--ease) 0.28s both;
}

/* Sections */
.section {
  padding: var(--space-7) 0;
}

.section--alt {
  background:
    linear-gradient(180deg, rgba(215, 227, 220, 0.45), rgba(243, 246, 244, 0.2));
  border-block: 1px solid rgba(27, 61, 50, 0.08);
}

.section__intro {
  max-width: 38rem;
  margin-bottom: var(--space-5);
}

.section__kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brass-deep);
  margin-bottom: var(--space-2);
}

.split {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .split--reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .split--reverse .split__media {
    order: -1;
  }
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.offer-list {
  display: grid;
  gap: var(--space-4);
}

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

.offer {
  display: grid;
  gap: var(--space-3);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(27, 61, 50, 0.14);
}

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

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

.flagship {
  display: grid;
  gap: var(--space-5);
  align-items: start;
}

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

.flagship__panel {
  background: var(--color-forest);
  color: #e8f0ec;
  padding: var(--space-5);
}

.flagship__panel h2,
.flagship__panel h3 {
  color: #f7faf8;
}

.flagship__panel .btn {
  margin-top: var(--space-3);
}

.quote-block {
  border-left: 3px solid var(--color-brass);
  padding-left: var(--space-4);
  margin: var(--space-5) 0;
}

.quote-block__text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--color-forest);
}

.quote-block__meta {
  color: var(--color-ink-soft);
  font-size: 0.92rem;
}

.page-hero {
  padding: var(--space-6) 0 var(--space-5);
  background:
    linear-gradient(120deg, rgba(27, 61, 50, 0.08), transparent 50%),
    linear-gradient(180deg, var(--color-paper-deep), transparent);
}

.page-hero__title {
  max-width: 18ch;
}

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

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: var(--space-5);
}

.grid-2 {
  display: grid;
  gap: var(--space-4);
}

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

.rate-row {
  display: grid;
  gap: var(--space-2);
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(27, 61, 50, 0.12);
}

@media (min-width: 700px) {
  .rate-row {
    grid-template-columns: 1.4fr 0.6fr;
    align-items: baseline;
  }
}

.rate-row__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-forest);
  font-weight: 650;
}

.review {
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(27, 61, 50, 0.12);
}

.review__service {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-brass-deep);
  margin-bottom: var(--space-2);
}

.review__quote {
  font-size: 1.05rem;
}

.review__name {
  font-weight: 600;
  margin-bottom: 0;
}

.review__role {
  color: var(--color-ink-soft);
  font-size: 0.92rem;
  margin-top: 0;
}

.story {
  margin-top: var(--space-5);
  padding: var(--space-5);
  background: rgba(215, 227, 220, 0.4);
}

.post-list {
  display: grid;
  gap: var(--space-5);
}

.post-teaser {
  display: grid;
  gap: var(--space-3);
}

@media (min-width: 760px) {
  .post-teaser {
    grid-template-columns: 280px 1fr;
    align-items: start;
  }
}

.post-teaser__img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  width: 100%;
}

.post-teaser__date {
  font-size: 0.85rem;
  color: var(--color-ink-soft);
}

.article-hero img {
  width: 100%;
  max-height: 26rem;
  object-fit: cover;
  margin-bottom: var(--space-5);
}

.detail-hero {
  display: grid;
  gap: var(--space-4);
}

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

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

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

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--color-sage);
}

.path-steps {
  counter-reset: path;
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-4);
}

.path-steps li {
  counter-increment: path;
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.45);
  border-left: 3px solid var(--color-forest);
  position: relative;
  animation: rise 0.7s var(--ease) both;
}

.path-steps li:nth-child(2) { animation-delay: 0.08s; }
.path-steps li:nth-child(3) { animation-delay: 0.16s; }
.path-steps li:nth-child(4) { animation-delay: 0.24s; }
.path-steps li:nth-child(5) { animation-delay: 0.32s; }

.path-steps li::before {
  content: counter(path, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-brass);
  display: block;
  margin-bottom: var(--space-2);
}

.form {
  display: grid;
  gap: var(--space-3);
  max-width: 36rem;
}

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

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

.form__field input,
.form__field select,
.form__field textarea {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(27, 61, 50, 0.25);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-ink);
}

.form__field textarea {
  min-height: 9rem;
  resize: vertical;
}

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

.form__error {
  color: var(--color-error);
  font-size: 0.88rem;
  min-height: 1.2em;
}

.form__status {
  padding: var(--space-3);
  border-left: 3px solid var(--color-forest);
  background: rgba(215, 227, 220, 0.5);
  display: none;
}

.form__status.is-visible {
  display: block;
}

.form__status--error {
  border-color: var(--color-error);
  background: rgba(139, 46, 46, 0.08);
}

.contact-aside {
  padding: var(--space-4);
  background: var(--color-forest);
  color: #e8f0ec;
}

.contact-aside a {
  color: #f7faf8;
}

.contact-aside__label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: var(--space-2);
}

.legal {
  max-width: 46rem;
}

.legal h2 {
  margin-top: var(--space-5);
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: var(--space-4) 0;
}

.legal th,
.legal td {
  border: 1px solid rgba(27, 61, 50, 0.18);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.legal th {
  background: rgba(215, 227, 220, 0.5);
}

.not-found {
  min-height: 60vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: var(--space-6) var(--space-3);
}

/* Footer */
.site-footer {
  background: var(--color-forest);
  color: #d7e3dc;
  padding: var(--space-6) 0 var(--space-4);
  margin-top: var(--space-6);
}

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

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

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

.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #f7faf8;
  margin-bottom: var(--space-2);
}

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

.site-footer__address {
  word-break: break-word;
}

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

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

.site-footer__copy {
  width: min(100% - 2rem, var(--max));
  margin: var(--space-5) auto 0;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(215, 227, 220, 0.2);
  font-size: 0.85rem;
  color: rgba(215, 227, 220, 0.75);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: var(--space-3);
  background: rgba(20, 34, 28, 0.96);
  color: #e8f0ec;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
  animation: rise 0.45s var(--ease);
}

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

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

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

.cookie-banner__text a {
  color: #f7faf8;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-2);
}

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

.cookie-banner .btn--ghost:hover {
  background: rgba(215, 227, 220, 0.15);
  color: #fff;
}

.cookie-banner .btn--primary {
  background: var(--color-brass);
}

.cookie-banner .btn--primary:hover {
  background: var(--color-brass-deep);
}
