:root {
  --color-ink: #14201c;
  --color-forest: #1e4d3d;
  --color-moss: #3d6b55;
  --color-mist: #eef1eb;
  --color-paper: #f5f7f4;
  --color-accent: #c17f2a;
  --color-accent-deep: #9a6420;
  --color-muted: #5a6b63;
  --color-line: rgba(20, 32, 28, 0.12);
  --color-surface: rgba(245, 247, 244, 0.88);
  --font-display: "Syne", sans-serif;
  --font-body: "Literata", Georgia, serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --radius: 4px;
  --max: 72rem;
  --header-h: 4.25rem;
  --shadow-soft: 0 18px 40px rgba(20, 32, 28, 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.0625rem;
  line-height: 1.65;
  color: var(--color-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(61, 107, 85, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 5%, rgba(193, 127, 42, 0.14), transparent 50%),
    linear-gradient(180deg, var(--color-mist) 0%, var(--color-paper) 40%, #e4ebe6 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

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

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

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

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

p {
  margin: 0 0 1rem;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  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-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  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: var(--color-mist);
}

.btn--primary:hover {
  background: var(--color-ink);
  color: var(--color-mist);
}

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

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

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(245, 247, 244, 0.82);
  border-bottom: 1px solid var(--color-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(--color-ink);
}

.site-header__mark {
  width: 1.35rem;
  height: 1.35rem;
  background: linear-gradient(145deg, var(--color-forest), var(--color-moss));
  border-radius: 3px;
  box-shadow: inset -4px -4px 0 var(--color-accent);
}

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

.site-header__toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  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(--color-ink);
}

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

.site-header__list a {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-ink);
}

.site-header__list a:hover {
  color: var(--color-accent-deep);
}

.site-header__cta {
  padding: 0.55rem 0.9rem;
  background: var(--color-forest);
  color: var(--color-mist) !important;
  border-radius: var(--radius);
}

.site-header__cta:hover {
  background: var(--color-ink);
  color: var(--color-mist) !important;
}

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

  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(245, 247, 244, 0.97);
    border-bottom: 1px solid var(--color-line);
    padding: 1rem 1.25rem 1.5rem;
    display: none;
  }

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

  .site-header__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
}

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

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

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

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

.reveal--delay {
  animation-delay: 0.15s;
}

.reveal--delay-2 {
  animation-delay: 0.3s;
}

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

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

.hero-home__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-home__wash {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(20, 32, 28, 0.88) 12%, rgba(30, 77, 61, 0.72) 48%, rgba(20, 32, 28, 0.45) 100%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 11px,
      rgba(238, 241, 235, 0.03) 11px,
      rgba(238, 241, 235, 0.03) 12px
    );
}

.hero-home__content {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 4.5rem 0 4rem;
  color: var(--color-mist);
  max-width: 38rem;
}

.hero-home__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
  animation: fadeSlide 0.9s var(--ease) both;
}

.hero-home__lead {
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  line-height: 1.45;
  margin-bottom: 0.75rem;
  animation: riseIn 0.85s var(--ease) 0.12s both;
}

.hero-home__sub {
  color: rgba(238, 241, 235, 0.82);
  margin-bottom: 1.75rem;
  max-width: 32rem;
  animation: riseIn 0.85s var(--ease) 0.22s both;
}

.hero-home__actions {
  animation: riseIn 0.85s var(--ease) 0.32s both;
}

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

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

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

.section--band {
  background:
    linear-gradient(180deg, rgba(30, 77, 61, 0.06), transparent 40%),
    var(--color-surface);
  border-block: 1px solid var(--color-line);
}

.section__eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-deep);
  margin-bottom: 0.65rem;
}

.section__title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  max-width: 18ch;
}

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

.panel-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.offer-tile {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.55);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

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

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

.offer-tile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.offer-tile:hover .offer-tile__image img {
  transform: scale(1.04);
}

.offer-tile__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.offer-tile__body h3 {
  font-size: 1.2rem;
}

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

.offer-tile__body p {
  color: var(--color-muted);
  font-size: 0.98rem;
}

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

.flagship-strip__copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.flagship-strip__media {
  position: relative;
}

.flagship-strip__media::before {
  content: "";
  position: absolute;
  inset: 1.25rem -1rem -1rem 1.25rem;
  background: linear-gradient(135deg, var(--color-forest), var(--color-accent));
  opacity: 0.25;
  z-index: -1;
}

.flagship-strip__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.quote-block {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.2rem;
  font-style: italic;
}

.quote-block cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-muted);
}

.page-hero {
  padding: 3.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero--image {
  min-height: 22rem;
  display: flex;
  align-items: flex-end;
  color: var(--color-mist);
}

.page-hero--image .page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.page-hero--image .page-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(20, 32, 28, 0.9) 20%, rgba(30, 77, 61, 0.55) 100%);
}

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

.page-hero p {
  max-width: 36rem;
  color: inherit;
  opacity: 0.9;
}

.prose {
  max-width: 42rem;
}

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

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

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

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

.prose th {
  background: rgba(30, 77, 61, 0.08);
  font-family: var(--font-display);
  font-size: 0.85rem;
}

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

.rate-item {
  padding: 1.5rem 1.6rem;
  border-left: 3px solid var(--color-accent);
  background: rgba(255, 255, 255, 0.6);
  border-block: 1px solid var(--color-line);
  border-right: 1px solid var(--color-line);
}

.rate-item h3 {
  margin-bottom: 0.35rem;
}

.rate-item__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-forest);
  margin-bottom: 0.5rem;
}

.review-grid {
  display: grid;
  gap: 1.5rem;
}

.review-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--color-line);
}

.review-item p {
  font-size: 1.05rem;
}

.review-item__meta {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-muted);
}

.review-item__service {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--color-accent-deep);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 700;
}

.story-panel {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(30, 77, 61, 0.08), rgba(193, 127, 42, 0.08)),
    rgba(255, 255, 255, 0.5);
  border: 1px solid var(--color-line);
}

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

.blog-card {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 1.5rem;
  align-items: stretch;
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.25s var(--ease);
}

.blog-card:hover {
  opacity: 0.88;
}

.blog-card img {
  width: 100%;
  height: 100%;
  min-height: 9rem;
  object-fit: cover;
}

.blog-card time {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}

.blog-card h2 {
  font-size: 1.35rem;
  margin: 0.35rem 0 0.5rem;
}

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

.post-hero img {
  width: 100%;
  max-height: 26rem;
  object-fit: cover;
  margin: 1.5rem 0 2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.form {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--color-line);
}

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

.form label {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
}

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

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

.form__error {
  color: #8b2e2e;
  font-size: 0.88rem;
  min-height: 1.1em;
}

.form__status {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.form__status--success {
  background: rgba(30, 77, 61, 0.12);
  color: var(--color-forest);
}

.form__status--error {
  background: rgba(139, 46, 46, 0.1);
  color: #8b2e2e;
}

.contact-aside {
  padding: 1.5rem;
  border: 1px solid var(--color-line);
  background:
    radial-gradient(circle at top right, rgba(193, 127, 42, 0.15), transparent 50%),
    rgba(255, 255, 255, 0.55);
}

.contact-aside h2 {
  font-size: 1.35rem;
}

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

.steps li {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 4rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--color-line);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-forest);
  color: var(--color-mist);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
}

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

.detail-aside {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  align-self: start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--color-line);
}

.detail-aside dl {
  margin: 0;
}

.detail-aside dt {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 1rem;
}

.detail-aside dd {
  margin: 0.25rem 0 0;
}

.cta-band {
  padding: 3rem 0;
  text-align: center;
  background:
    linear-gradient(120deg, var(--color-forest), #285c49 55%, var(--color-accent-deep));
  color: var(--color-mist);
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cta-band p {
  max-width: 34rem;
  margin: 0 auto 1.25rem;
  opacity: 0.9;
}

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

.cta-band .btn--primary:hover {
  background: var(--color-mist);
}

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

.error-page h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: -0.05em;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 1.5rem;
  background: var(--color-ink);
  color: rgba(238, 241, 235, 0.86);
}

.site-footer a {
  color: rgba(238, 241, 235, 0.86);
}

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

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

.site-footer__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

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

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

.site-footer__copy {
  width: min(100% - 2rem, var(--max));
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(238, 241, 235, 0.15);
  font-size: 0.88rem;
  color: rgba(238, 241, 235, 0.6);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 60;
  max-width: 36rem;
  margin-inline: auto;
  background: var(--color-ink);
  color: var(--color-mist);
  border: 1px solid rgba(238, 241, 235, 0.2);
  box-shadow: var(--shadow-soft);
  animation: riseIn 0.45s var(--ease);
}

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

.cookie-banner__inner {
  padding: 1.15rem 1.25rem;
  display: grid;
  gap: 1rem;
}

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

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

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

.cookie-banner .btn--ghost {
  border-color: rgba(238, 241, 235, 0.45);
  color: var(--color-mist);
}

.cookie-banner .btn--ghost:hover {
  background: rgba(238, 241, 235, 0.12);
  color: #fff;
}

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

@media (max-width: 860px) {
  .flagship-strip,
  .contact-layout,
  .detail-layout,
  .story-panel,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .blog-card {
    grid-template-columns: 1fr;
  }

  .detail-aside {
    position: static;
  }
}
