:root {
  --ink: #0f2e2a;
  --ink-soft: #2a4a45;
  --mist: #e7efec;
  --paper: #f7faf8;
  --surface: rgba(255, 255, 255, 0.72);
  --accent: #c9a227;
  --accent-deep: #9a7a12;
  --teal: #1f6b5f;
  --teal-soft: #7ba39a;
  --line: rgba(15, 46, 42, 0.14);
  --danger: #8b2e2e;
  --success: #1f5c45;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --shadow: 0 18px 50px rgba(15, 46, 42, 0.12);
  --radius: 4px;
  --header-h: 4.25rem;
  --max: 1120px;
}

*,
*::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(201, 162, 39, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(31, 107, 95, 0.16), transparent 50%),
    linear-gradient(165deg, var(--mist) 0%, var(--paper) 45%, #dfe8e4 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(15, 46, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 46, 42, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

main,
.site-header,
.site-footer,
.cookie-banner {
  position: relative;
  z-index: 1;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  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;
}

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

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

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

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

.btn--primary:hover {
  background: var(--accent);
  color: var(--ink);
  transform: translateY(-2px);
}

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

.btn--ghost:hover {
  background: var(--ink);
  color: #f7faf8;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(247, 250, 248, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 250, 248, 0.92);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

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

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

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

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

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

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

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

  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(247, 250, 248, 0.98);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .site-header__nav.is-open {
    max-height: 420px;
  }

  .site-header__nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.4rem;
    gap: 0.85rem;
  }
}

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

.home-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(15, 46, 42, 0.88) 0%, rgba(15, 46, 42, 0.45) 48%, rgba(15, 46, 42, 0.72) 100%),
    url("https://images.unsplash.com/photo-1581092160562-40aa08e78837?w=1600&h=1000&fit=crop") center / cover no-repeat;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

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

.home-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.25rem 3.5rem;
  width: 100%;
}

.home-hero__brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  margin: 0 0 0.6rem;
  letter-spacing: -0.03em;
  line-height: 0.95;
  animation: rise 0.9s ease both;
}

.home-hero h1 {
  color: #f7faf8;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 500;
  max-width: 18ch;
  margin: 0 0 1rem;
  animation: rise 0.9s ease 0.12s both;
}

.home-hero__lead {
  max-width: 38ch;
  font-size: 1.1rem;
  color: rgba(247, 250, 248, 0.88);
  margin-bottom: 1.75rem;
  animation: rise 0.9s ease 0.22s both;
}

.home-hero__actions {
  animation: rise 0.9s ease 0.32s both;
}

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

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

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

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

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

.section__header {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section--band {
  background:
    linear-gradient(135deg, rgba(31, 107, 95, 0.08), rgba(201, 162, 39, 0.08)),
    rgba(255, 255, 255, 0.45);
  border-block: 1px solid var(--line);
}

.section--band .section {
  padding-block: 4rem;
}

.offer-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.offer-feature__media {
  position: relative;
}

.offer-feature__media::after {
  content: "";
  position: absolute;
  inset: 12% -8% -8% 18%;
  background: linear-gradient(140deg, var(--teal), var(--accent));
  opacity: 0.25;
  z-index: -1;
}

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

.offer-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.offer-list__item {
  padding: 0;
  border: none;
  background: transparent;
}

.offer-list__item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 1rem;
  filter: saturate(0.9);
}

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

.offer-list__item a {
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
}

.offer-list__item a:hover {
  color: var(--teal);
}

.quote-strip {
  display: grid;
  gap: 1.5rem;
}

.quote-strip blockquote {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.35;
}

.quote-strip cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem 2rem;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
}

.page-hero__lead {
  max-width: 42rem;
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.prose {
  max-width: 42rem;
}

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

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

.service-grid__item {
  display: grid;
  gap: 1rem;
}

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

.service-grid__item h2 {
  margin: 0;
  font-size: 1.45rem;
}

.service-grid__meta {
  font-weight: 600;
  color: var(--teal);
}

.service-detail {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.service-detail__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

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

.service-detail__price {
  font-size: 1.1rem;
  margin: 1.25rem 0 1.5rem;
}

.service-detail__price span {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-right: 0.4rem;
}

.service-detail__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin: 3rem 0;
  padding: 2rem 0;
  border-block: 1px solid var(--line);
}

.service-detail__lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.steps li {
  counter-increment: step;
  padding-left: 3rem;
  position: relative;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--ink);
  color: #f7faf8;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2.5rem;
}

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

.rate-table th {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

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

.review-list__item {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.review-list__item blockquote {
  margin: 0;
  font-size: 1.15rem;
  font-family: var(--font-display);
  line-height: 1.4;
}

.review-list__meta {
  margin-top: 0.85rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.story {
  margin-top: 3rem;
  padding: 2rem 0 0;
}

.story h3 {
  margin-bottom: 0.5rem;
}

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

.blog-list__item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.blog-list__item img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
}

.blog-list__item h2 {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.4rem;
}

.blog-list__item h2 a {
  color: var(--ink);
  text-decoration: none;
}

.blog-list__item h2 a:hover {
  color: var(--teal);
}

.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.article__title {
  margin: 0.35rem 0 0.75rem;
}

.article__lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
}

.article__figure {
  margin: 2rem 0;
}

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

.article__back {
  margin-top: 2.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 3rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem 4rem;
}

.form {
  display: grid;
  gap: 1.1rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 500;
}

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

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

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

.form__error {
  color: var(--danger);
  font-size: 0.85rem;
  min-height: 1.1em;
}

.form-status {
  min-height: 1.4em;
  font-weight: 500;
}

.form-status--success {
  color: var(--success);
}

.form-status--error {
  color: var(--danger);
}

.contact-aside {
  padding: 1.5rem 0;
}

.contact-aside dl {
  margin: 0;
}

.contact-aside dt {
  font-weight: 600;
  margin-top: 1rem;
}

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

.method-steps {
  display: grid;
  gap: 2rem;
}

.method-steps__item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.25rem;
  align-items: start;
}

.method-steps__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent-deep);
  line-height: 1;
}

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4.5rem;
}

.legal h1 {
  margin-bottom: 1rem;
}

.legal h2 {
  margin-top: 2rem;
}

.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.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

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

.site-footer {
  margin-top: 2rem;
  background: var(--ink);
  color: rgba(247, 250, 248, 0.86);
  padding: 3.5rem 1.25rem 2rem;
}

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

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

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

.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #f7faf8;
  margin: 0 0 0.75rem;
}

.site-footer__heading {
  font-size: 1rem;
  color: #f7faf8;
  margin: 0 0 0.75rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.site-footer__copy {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 250, 248, 0.15);
  font-size: 0.9rem;
  color: rgba(247, 250, 248, 0.65);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(15, 46, 42, 0.96);
  color: #f7faf8;
  padding: 1rem 1.25rem;
  border-top: 2px solid var(--accent);
}

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

.cookie-banner__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cookie-banner a {
  color: var(--accent);
}

.cookie-banner .btn--ghost {
  border-color: rgba(247, 250, 248, 0.5);
  color: #f7faf8;
}

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

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .offer-feature,
  .service-detail__hero,
  .service-detail__grid,
  .service-detail__lists,
  .contact-layout,
  .site-footer__inner,
  .blog-list__item {
    grid-template-columns: 1fr;
  }

  .offer-list,
  .service-grid {
    grid-template-columns: 1fr;
  }

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