*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --olive: #4b5332;
  --olive-dark: #3d4428;
  --lime: #a3b168;
  --lime-hover: #b5c973;
  --paper: #f7f5f0;
  --cream: #f0ece4;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --border: #e0dbd0;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 24px 60px rgba(26, 26, 26, 0.1);
  --shadow-soft: 0 8px 32px rgba(75, 83, 50, 0.08);
  --layout-gutter: 48px;
  --container: min(1200px, calc(100% - var(--layout-gutter)));
  --container-inline: max(24px, calc((100vw - var(--container)) / 2));
  --hero-copy: min(720px, calc(var(--container) * 0.6));
  --hero-fade-end: calc(var(--container-inline) + var(--hero-copy) + 180px);
  --panel-overscan: 4%;
  --hero-bg-x: 58%;
  --hero-bg-y: 32%;
  --header-h: 80px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ── Animations ── */
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

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

.reveal.is-visible .feature,
.reveal.is-visible .stage {
  animation: heroIn 0.6s var(--ease-out) calc(var(--i, 0) * 0.08s + 0.15s) both;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__content > * { animation: none !important; opacity: 1 !important; transform: none !important; }
  .service-card:hover,
  .stage:hover .stage__icon,
  .btn:hover { transform: none; }
}

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.1;
}

.logo__tag {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
}

.nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}

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

.nav a:hover::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header__phone {
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.mobile-nav[hidden] {
  display: none !important;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s var(--ease-out), box-shadow 0.25s;
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--olive);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(75, 83, 50, 0.25);
}

.btn--primary:hover {
  background: var(--olive-dark);
  box-shadow: 0 6px 24px rgba(75, 83, 50, 0.35);
}

.btn--lime {
  background: var(--lime);
  color: var(--olive-dark);
}

.btn--lime:hover {
  background: var(--lime-hover);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: var(--white);
  border-color: var(--olive);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 0.95rem;
}

.btn--full {
  width: 100%;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: clamp(560px, 78vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.93) 0%,
    rgba(255, 255, 255, 0.91) calc(var(--hero-fade-end) * 0.22),
    rgba(247, 245, 240, 0.88) calc(var(--hero-fade-end) * 0.42),
    rgba(247, 245, 240, 0.8) calc(var(--hero-fade-end) * 0.54),
    rgba(247, 245, 240, 0.66) calc(var(--hero-fade-end) * 0.64),
    rgba(247, 245, 240, 0.48) calc(var(--hero-fade-end) * 0.74),
    rgba(247, 245, 240, 0.28) calc(var(--hero-fade-end) * 0.86),
    rgba(247, 245, 240, 0.1) calc(var(--hero-fade-end) * 0.94),
    transparent var(--hero-fade-end)
  );
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #2a3020;
  background-image: url("images/assets/hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 35%;
  background-attachment: scroll;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 35%;
}

@media (min-width: 900px) {
  .hero__media {
    background-position: var(--hero-bg-x) var(--hero-bg-y);
  }

  .hero__media img {
    object-position: var(--hero-bg-x) var(--hero-bg-y);
  }
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.028;
  pointer-events: none;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.hero .hero__content {
  position: relative;
  z-index: 3;
  width: var(--container);
  margin-inline: auto;
  padding: 0;
}

.hero__content > * {
  max-width: var(--hero-copy);
  opacity: 0;
  animation: heroIn 0.85s var(--ease-out) forwards;
}

.hero__title {
  animation-delay: 0.1s !important;
  margin: 0 0 24px;
  font-family: var(--font-body);
  font-size: clamp(2.33rem, 3.53vw, 3.3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--text);
}

.hero__subtitle {
  animation-delay: 0.22s !important;
  margin: 0 0 32px;
  max-width: var(--hero-copy);
  font-size: clamp(1.5rem, 2.18vw, 1.71rem);
  color: var(--text);
  line-height: 1.45;
}

.hero__actions {
  animation-delay: 0.4s !important;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero__actions .btn--lg {
  padding: 18px 36px;
  font-size: 1.43rem;
}

.hero__note {
  animation-delay: 0.52s !important;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 1.28rem;
  color: #505050;
}

.hero__note svg {
  width: 22px;
  height: 22px;
  color: var(--lime);
  flex-shrink: 0;
}

/* ── Features ── */
.features {
  background: var(--cream);
  border-block: 1px solid var(--border);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 36px 20px;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}

.feature:hover {
  background: rgba(240, 236, 228, 0.65);
}

.feature:last-child {
  border-right: 0;
}

.feature__icon {
  width: clamp(76px, 8vw, 96px);
  height: clamp(76px, 8vw, 96px);
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(75, 83, 50, 0.1));
  transition: transform 0.35s var(--ease-out), filter 0.35s;
}

.feature:hover .feature__icon {
  transform: scale(1.06) translateY(-3px);
  filter: drop-shadow(0 8px 20px rgba(75, 83, 50, 0.16));
}

.feature__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.35;
}

.feature__text strong {
  display: block;
  font-weight: 600;
  color: var(--text);
}

.feature__text span {
  color: var(--text-muted);
}

/* ── Sections ── */
.section {
  padding-block: clamp(56px, 7vw, 96px);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.section-title {
  position: relative;
  margin: 0;
  padding-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
}

.section-title__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
  transform-origin: left;
}

.reveal.is-visible .section-title__line {
  animation: lineGrow 0.6s var(--ease-out) 0.2s both;
}

.section-title--center {
  text-align: center;
  margin-bottom: 56px;
}

.section-title--center .section-title__line {
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center;
}

.reveal.is-visible .section-title--center .section-title__line {
  animation: lineGrow 0.6s var(--ease-out) 0.2s both;
}

.link-arrow {
  border: 0;
  background: none;
  color: var(--olive);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  padding: 0;
  transition: letter-spacing 0.2s;
}

.link-arrow::after {
  content: "›";
  margin-left: 0.45em;
  transition: transform 0.2s;
  display: inline-block;
}

.link-arrow:hover {
  letter-spacing: 0.02em;
}

.link-arrow:hover::after {
  transform: translateX(3px);
}

/* ── Services (bento grid) ── */
.services {
  background: var(--paper);
}

.services__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto auto;
  gap: 20px;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

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

.service-card--featured {
  grid-column: 1;
  grid-row: 1 / 4;
}

.service-card--featured .service-card__img {
  flex: 1;
  aspect-ratio: unset;
  min-height: 280px;
}

.service-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.service-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.service-card:nth-child(4) { grid-column: 2; grid-row: 2; }
.service-card:nth-child(5) { grid-column: 3; grid-row: 2; }
.service-card:nth-child(6) {
  grid-column: 2 / 4;
  grid-row: 3;
  display: grid;
  grid-template-columns: min(38%, 260px) 1fr;
  grid-template-rows: 1fr;
}

.service-card:nth-child(6) .service-card__img {
  aspect-ratio: auto;
  min-height: 100%;
}

.service-card:nth-child(6) .service-card__title {
  display: flex;
  align-items: center;
  padding: 20px 24px;
}

.service-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.service-card:hover .service-card__img img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 22px 24px 28px;
}

.service-card__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  background: rgba(163, 177, 104, 0.2);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--olive);
}

.service-card__title {
  margin: 0;
  padding: 16px 18px 20px;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 600;
  line-height: 1.4;
  overflow-wrap: break-word;
  hyphens: auto;
}

.service-card:not(.service-card--featured) .service-card__title {
  flex: 1;
}

.service-card--featured .service-card__title {
  padding: 0;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.service-card__desc {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Promo ── */
.promo__banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(300px, 28vw, 380px);
  padding: clamp(40px, 5vw, 64px);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.promo__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--olive-dark) 0%,
    var(--olive-dark) 36%,
    rgba(61, 68, 40, 0.97) 44%,
    rgba(61, 68, 40, 0.82) 52%,
    rgba(61, 68, 40, 0.52) 60%,
    rgba(61, 68, 40, 0.22) 68%,
    transparent 76%
  );
}

.promo__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.promo__image img {
  position: absolute;
  inset: calc(var(--panel-overscan) * -1);
  width: calc(100% + var(--panel-overscan) * 2);
  height: calc(100% + var(--panel-overscan) * 2);
  max-width: none;
  object-fit: cover;
  object-position: 72% center;
}

.promo__deco {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(163, 177, 104, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.promo__content {
  position: relative;
  z-index: 3;
  max-width: min(48%, 520px);
}

.promo__label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
}

.promo__title {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
}

.promo__title span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55em;
  font-weight: 400;
  opacity: 0.88;
  margin-top: 8px;
  letter-spacing: 0.01em;
}

/* ── Stages ── */
.stages {
  background: var(--white);
}

.stages__track {
  --stage-icon-size: clamp(88px, 9vw, 112px);
  --stage-rail-y: calc(1.15rem + var(--stage-icon-size) / 2);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 0 8px;
  transition: transform 0.3s var(--ease-out);
}

.stage:not(:last-child)::after {
  content: "";
  position: absolute;
  top: var(--stage-rail-y);
  left: calc(50% + var(--stage-icon-size) / 2 + 14px);
  width: calc(100% + 20px - var(--stage-icon-size) - 28px);
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    rgba(163, 177, 104, 0.58) 0%,
    rgba(163, 177, 104, 0.34) 78%,
    rgba(163, 177, 104, 0.14) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.stage:not(:last-child)::before {
  content: "";
  position: absolute;
  top: var(--stage-rail-y);
  left: calc(100% + 10px);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px var(--white);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.stage:hover {
  transform: translateY(-4px);
}

.stage__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  padding: 5px 11px;
  border: 1px solid rgba(163, 177, 104, 0.42);
  border-radius: 999px;
  background: rgba(247, 245, 240, 0.92);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--olive);
  letter-spacing: 0.14em;
}

.stage__icon {
  position: relative;
  z-index: 3;
  width: var(--stage-icon-size);
  height: var(--stage-icon-size);
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(75, 83, 50, 0.1));
  transition: transform 0.35s var(--ease-out), filter 0.35s;
}

.stage:hover .stage__icon {
  transform: scale(1.06) translateY(-3px);
  filter: drop-shadow(0 8px 20px rgba(75, 83, 50, 0.16));
}

.stage__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}

.stage__desc {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Trust ── */
.trust {
  background: var(--paper);
}

.trust__card {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  padding: clamp(32px, 4vw, 52px);
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(224, 219, 208, 0.6);
}

.trust__title {
  position: relative;
  margin: 0 0 28px;
  padding-top: 12px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
}

.trust-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px dotted var(--border);
  transition: padding-left 0.25s;
}

.trust-list li:hover {
  padding-left: 4px;
}

.trust-list li:last-child {
  border-bottom: 0;
}

.trust-list__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(36px, 3.2vw, 42px);
  height: clamp(36px, 3.2vw, 42px);
  margin-top: 1px;
  color: var(--olive);
}

.trust-list__mark svg {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(75, 83, 50, 0.1));
}

.trust-list strong {
  display: block;
  font-size: 0.96rem;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.35;
}

.trust-list span {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.trust-photo {
  margin: 0;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 100%;
  min-height: 360px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease-out);
}

.trust-photo:hover {
  transform: scale(1.015);
}

.trust-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-photo figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.25;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.contact-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
}

.contact-list a:hover {
  color: var(--olive);
}

.contact-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(75, 83, 50, 0.12);
}

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

.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
}

.contact-form__consent input {
  width: auto;
  margin-top: 3px;
}

/* ── Blog ── */
.blog {
  background: var(--white);
}

.blog__head {
  margin-bottom: 40px;
}

.blog__lead {
  margin: 8px 0 0;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

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

.blog-card--accent {
  background: var(--cream);
  border: 1px solid var(--border);
}

.blog-card__link {
  display: block;
  padding-bottom: 24px;
}

.blog-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.blog-card:hover .blog-card__img img {
  transform: scale(1.05);
}

.blog-card__date {
  display: block;
  padding: 0 22px;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
}

.blog-card__title {
  margin: 0 0 8px;
  padding: 0 22px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.2s;
}

.blog-card:hover .blog-card__title {
  color: var(--olive);
}

.blog-card__excerpt {
  margin: 0;
  padding: 0 22px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Footer ── */
.footer {
  background: #f5f3ee;
  border-top: 1px solid var(--border);
  padding-top: 56px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 40px;
}

.footer__brand .logo__name {
  display: block;
  margin-bottom: 4px;
}

.footer__brand p {
  margin: 16px 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.55;
}

.footer__col h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.footer__col a,
.footer__col p {
  display: block;
  margin: 0 0 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer__col a:hover {
  color: var(--olive);
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  margin: 0;
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease-out);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer__social a:hover {
  background: var(--olive);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer__policy {
  border: 0;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.footer__policy:hover {
  color: var(--olive);
  text-decoration: underline;
}

/* ── Modals ── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 18, 0.6);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal__card {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: clamp(28px, 4vw, 40px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s var(--ease-out);
}

.modal.is-open .modal__card {
  transform: translateY(0) scale(1);
}

.modal__card--gallery {
  width: min(1120px, calc(100vw - 40px));
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
  transition: background 0.2s, transform 0.2s;
}

.modal__close:hover {
  background: var(--border);
  transform: rotate(90deg);
}

.modal__card h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  padding-right: 40px;
}

.modal__lead {
  margin: 0 0 24px;
  color: var(--text-muted);
}

.booking-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-form label span {
  font-size: 0.85rem;
  font-weight: 500;
}

.booking-form__full {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 14px 16px;
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--paper);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(75, 83, 50, 0.12);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform 0.3s var(--ease-out);
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.services-modal-list {
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

.services-modal-list strong {
  color: var(--text);
}

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 300;
  padding: 14px 28px;
  background: var(--olive);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .nav { display: none; }
  .header__phone { display: none; }
  .burger { display: flex; }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .service-card--featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .service-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    display: flex;
    flex-direction: column;
  }

  .service-card:nth-child(6) .service-card__img {
    aspect-ratio: 4 / 3;
    min-height: auto;
  }

  .service-card:nth-child(6) .service-card__title {
    display: block;
    padding: 16px 18px 20px;
  }

  .trust__card {
    grid-template-columns: 1fr 1fr;
  }

  .trust__col--photo {
    grid-column: 1 / -1;
    order: -1;
  }

  .trust-photo {
    min-height: 280px;
    max-height: 360px;
  }

  .stages__track {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 36px;
  }

  .stage:nth-child(3)::before,
  .stage:nth-child(3)::after,
  .stage:nth-child(5)::before,
  .stage:nth-child(5)::after {
    display: none;
  }

  .blog__grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .feature:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .feature:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .promo__banner {
    min-height: clamp(320px, 52vw, 400px);
    align-items: flex-end;
    padding-bottom: clamp(32px, 6vw, 48px);
  }

  .promo__content {
    max-width: 100%;
  }

  .promo__banner::after {
    background: linear-gradient(
      180deg,
      rgba(61, 68, 40, 0.15) 0%,
      rgba(61, 68, 40, 0.45) 32%,
      rgba(61, 68, 40, 0.88) 56%,
      var(--olive-dark) 78%
    );
  }

  .promo__image img {
    object-position: center 35%;
    inset: -6%;
    width: 112%;
    height: 112%;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-form__grid {
    grid-template-columns: 1fr;
  }

  .blog__grid {
    grid-template-columns: 1fr;
  }

  .blog-card:last-child {
    max-width: none;
  }
}

@media (max-width: 899px) {
  .hero {
    align-items: flex-end;
    padding-bottom: clamp(36px, 8vw, 52px);
  }

  .hero::after {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.48) 28%,
      rgba(247, 245, 240, 0.84) 48%,
      rgba(247, 245, 240, 0.94) 68%
    );
  }

  .hero__content > * {
    max-width: none;
  }

  .hero__media {
    background-position: center 35%;
  }

  .hero__media img {
    object-position: center 35%;
  }
}

@media (max-width: 640px) {
  :root {
    --layout-gutter: 32px;
    --container: min(100%, calc(100% - var(--layout-gutter)));
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .feature,
  .feature:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .stages__track {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stage::before,
  .stage::after {
    display: none !important;
  }

  .trust__card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero__actions .btn {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1920px) {
  :root {
    --hero-bg-x: 64%;
    --hero-bg-y: 32%;
  }
}
