:root {
  --page: #f6f3ee;
  --milk: #fffdf8;
  --cream: #f2eadf;
  --beige: #e7d9c8;
  --warm: #d3b287;
  --olive: #7e875f;
  --olive-soft: #a9b18b;
  --sage: #eef1e7;
  --graphite: #242520;
  --muted: #6f6a61;
  --line: rgba(36, 37, 32, .12);
  --line-soft: rgba(36, 37, 32, .075);
  --shadow: 0 22px 70px rgba(36, 37, 32, .08);
  --shadow-soft: 0 12px 34px rgba(36, 37, 32, .055);
  --radius: 8px;
  --radius-sm: 4px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #ecefec; }
body {
  margin: 0;
  color: var(--graphite);
  background:
    radial-gradient(circle at 50% 0, rgba(255,255,255,.92), transparent 34rem),
    #ecefec;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.52;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

main,
.site-footer {
  width: min(100%, 1160px);
  margin: 0 auto;
  background: var(--milk);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--milk);
  pointer-events: none;
  animation: loaderOut .42s var(--ease) .12s forwards;
}
.page-loader span {
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid rgba(126,135,95,.25);
  border-top-color: var(--olive);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 50;
  width: min(100%, 1160px);
  min-height: 76px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 62px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255,253,248,.93);
  backdrop-filter: blur(14px);
  transition: box-shadow .35s var(--ease), background .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,253,248,.98);
  box-shadow: 0 10px 34px rgba(36,37,32,.06);
}
.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}
.brand img {
  width: 214px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  padding: 0;
  border: 0;
  filter: contrast(1.05);
}
.brand span { display: none; }
.desktop-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--graphite);
  font-size: 12px;
  font-weight: 620;
}
.desktop-nav a {
  position: relative;
  padding: 9px 0;
  transition: color .25s var(--ease);
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.desktop-nav a:hover { color: var(--olive); }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-phone {
  display: none;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid rgba(194,145,86,.58);
  border-radius: var(--radius-sm);
  color: var(--graphite);
  background: transparent;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--olive);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.icon-button:hover { transform: translateY(-2px); background: white; border-color: rgba(126,135,95,.38); }
.menu-toggle {
  gap: 4px;
  justify-self: end;
  border-color: rgba(194,145,86,.44);
}
.menu-toggle span {
  width: 19px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(.45); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  align-items: center;
  padding: 110px 28px 40px;
  background:
    linear-gradient(180deg, rgba(255,253,248,.98), rgba(249,244,236,.98)),
    var(--milk);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  backdrop-filter: blur(14px);
  transition: opacity .32s var(--ease), transform .32s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu nav {
  display: grid;
  gap: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 7.4vw, 50px);
}
.mobile-menu a {
  transform: translateY(8px);
  opacity: .78;
  transition: opacity .28s var(--ease), transform .28s var(--ease), color .28s var(--ease);
}
.mobile-menu.is-open a {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu a:hover { color: var(--olive); }

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 76px 0 0;
  background:
    linear-gradient(90deg, rgba(255,253,248,.98) 0 43%, rgba(246,239,229,.8) 62%, rgba(226,211,196,.58) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  left: 388px;
  top: 194px;
  z-index: 1;
  width: 215px;
  height: 104px;
  opacity: .36;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 130'%3E%3Cg fill='none' stroke='%23b79a72' stroke-width='2'%3E%3Cpath d='M4 102C78 82 138 41 242 6'/%3E%3Cpath d='M70 75c17-30 26-50 25-67M101 61c22-29 35-49 40-60M132 47c24-24 42-40 65-49M161 34c28-16 52-26 77-29M84 81c-28-6-52-2-73 10M121 64c-30-8-57-8-82 2M158 48c-30-9-58-11-84-5M194 29c-23-8-45-10-66-6'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}
.hero-media {
  position: absolute;
  right: 0;
  top: 76px;
  bottom: 0;
  z-index: 0;
  width: 51.5%;
  overflow: hidden;
  background: var(--cream);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,253,248,.22), transparent 34%);
  pointer-events: none;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  animation: heroBreath 9s var(--ease) infinite alternate;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 47%;
  padding: 44px 0 120px 72px;
}
.eyebrow {
  margin: 0 0 18px;
  color: #c39a67;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}
h1 {
  font-size: clamp(58px, 6.3vw, 80px);
  max-width: 470px;
}
h1 span {
  display: block;
  color: var(--olive);
  font-style: italic;
  font-size: .82em;
}
h2 { font-size: clamp(34px, 4.5vw, 46px); }
h3 { font-size: 24px; }
.hero-lead {
  max-width: 420px;
  margin: 24px 0 0;
  color: var(--graphite);
  font-size: 17px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  border: 1px solid rgba(194,145,86,.55);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.26), transparent);
  transform: translateX(-120%);
  transition: transform .65s var(--ease);
}
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.button:hover::after { transform: translateX(120%); }
.button-primary {
  color: white;
  background: var(--olive);
  border-color: var(--olive);
}
.button-ghost {
  color: var(--graphite);
  background: rgba(255,253,248,.5);
}
.hero-note {
  position: absolute;
  left: 72px;
  bottom: 170px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(480px, 43%);
  border-top: 1px solid rgba(194,145,86,.35);
  border-bottom: 1px solid rgba(194,145,86,.22);
  background: rgba(255,253,248,.18);
}
.hero-note span {
  position: relative;
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 36px 10px 12px;
  color: var(--graphite);
  font-size: 11px;
  text-align: center;
}
.hero-note span + span { border-left: 1px solid rgba(194,145,86,.28); }
.hero-note span::before {
  content: "";
  position: absolute;
  top: 13px;
  width: 22px;
  height: 22px;
  border: 1px solid #c39a67;
  border-radius: 50%;
  opacity: .86;
}

.section {
  position: relative;
  padding: 70px 72px;
  background: var(--milk);
}
.section + .section { border-top: 1px solid rgba(36,37,32,.045); }
.section-head {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}
.section-head p:not(.eyebrow) {
  margin: 14px auto 0;
  max-width: 640px;
  color: var(--muted);
}
.service-grid, .works-grid, .promo-grid, .article-grid, .master-grid {
  display: grid;
  gap: 22px;
  max-width: 100%;
  margin: 0 auto;
}
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(194,145,86,.18);
  border-radius: var(--radius);
  background: rgba(255,253,248,.86);
  box-shadow: 0 10px 30px rgba(36,37,32,.045);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(194,145,86,.38);
}
.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}
.service-grid .card-media,
.master-grid .card-media { aspect-ratio: 4 / 3.35; }
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .85s var(--ease), filter .85s var(--ease);
}
.card:hover .card-media img {
  transform: scale(1.055);
  filter: saturate(1.03) contrast(1.02);
}
.card-body { padding: 24px; }
.card-body p { color: var(--muted); }
.card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 12px;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(194,145,86,.28);
  border-radius: 999px;
  color: #b38554;
  background: transparent;
  font-size: 11px;
  font-weight: 750;
}
.price {
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  white-space: nowrap;
}

.works-section {
  background: linear-gradient(180deg, var(--milk), #f8f3eb);
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 28px;
}
.filter-chip {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(194,145,86,.28);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.filter-chip.is-active, .filter-chip:hover {
  color: white;
  background: var(--olive);
  border-color: var(--olive);
}
.work-card { cursor: zoom-in; }
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(36,37,32,.08);
}
.before-after span {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--graphite);
  background: rgba(255,253,248,.82);
  font-size: 11px;
  font-weight: 760;
}
.ba-side { position: relative; overflow: hidden; }

.promo-band {
  padding-top: 62px;
  padding-bottom: 62px;
  color: white;
  background:
    radial-gradient(circle at 93% 0, rgba(255,255,255,.12), transparent 22rem),
    linear-gradient(90deg, #6f7658, #7f8965);
}
.promo-band .eyebrow { color: #ead7be; }
.promo-band .section-head p { color: rgba(255,255,255,.74); }
.promo-card {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  box-shadow: none;
}
.promo-card .card-body p { color: rgba(255,255,255,.78); }
.promo-card .pill {
  color: #f4e5d1;
  border-color: rgba(255,255,255,.28);
}
.timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.timer b {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  color: white;
  font-weight: 500;
}
.timer span {
  display: block;
  padding: 10px 6px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm);
  text-align: center;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: 10px;
  text-transform: uppercase;
}

.blog-toolbar {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto 28px;
}
.search-input, input, select, textarea {
  width: 100%;
  border: 1px solid rgba(194,145,86,.24);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.86);
  color: var(--graphite);
  outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.search-input, input, select { min-height: 44px; padding: 0 14px; }
textarea { padding: 12px 14px; resize: vertical; }
input:focus, select:focus, textarea:focus, .search-input:focus {
  border-color: rgba(126,135,95,.56);
  background: white;
  box-shadow: 0 0 0 4px rgba(126,135,95,.12);
}
.article-grid time { color: var(--muted); font-size: 13px; }

.about-section {
  display: grid;
  gap: 42px;
  align-items: center;
  background:
    radial-gradient(circle at 100% 40%, rgba(126,135,95,.12), transparent 18rem),
    var(--milk);
}
.about-copy p:not(.eyebrow) {
  color: var(--muted);
  max-width: 540px;
}
.benefits {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.benefits div {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(194,145,86,.18);
  background: transparent;
}
.benefits b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(194,145,86,.5);
  border-radius: 50%;
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
.interior-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.interior-grid img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.interior-grid img:first-child {
  grid-column: 1 / -1;
  min-height: 290px;
}

.review-section { background: #fbf7f0; }
.review-shell {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 14px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}
.review-card {
  min-height: 260px;
  padding: 38px;
  border: 1px solid rgba(194,145,86,.2);
  border-radius: var(--radius);
  background: rgba(255,253,248,.9);
  box-shadow: var(--shadow-soft);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.review-card.is-changing { opacity: .25; transform: translateY(8px); }
.review-person {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}
.review-person img {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(194,145,86,.28);
  border-radius: 50%;
  object-fit: cover;
}
.stars { color: var(--olive); font-weight: 820; }

.booking-section {
  display: grid;
  gap: 28px;
  align-items: center;
  color: white;
  background: var(--olive);
  padding-top: 28px;
  padding-bottom: 28px;
}
.booking-section .eyebrow,
.booking-copy p:not(.eyebrow) { color: rgba(255,255,255,.76); }
.booking-form {
  display: grid;
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.booking-form label {
  display: grid;
  gap: 7px;
  color: rgba(255,255,255,.74);
  font-size: 13px;
  font-weight: 680;
}
.booking-form .button-primary {
  color: var(--graphite);
  background: var(--milk);
  border-color: var(--milk);
}
.form-policy {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 12px;
}
.form-policy a { color: white; text-decoration: underline; text-underline-offset: 3px; }
.form-result { min-height: 22px; color: white; font-weight: 820; }

.contacts-section {
  display: grid;
  gap: 24px;
  align-items: start;
  background: #fbf7f0;
}
.contacts-card {
  padding: 0;
  border-radius: 0;
  color: var(--graphite);
  background: transparent;
  box-shadow: none;
}
.contacts-card .eyebrow, .contacts-card a { color: var(--olive); }
.contacts-card p { color: var(--muted); }
.map-placeholder {
  position: relative;
  min-height: 330px;
  border: 1px solid rgba(194,145,86,.2);
  border-radius: var(--radius);
  overflow: hidden;
  background: #f1eadf;
  color: var(--muted);
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
  display: block;
}
.map-placeholder span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 320px;
  padding: 14px 16px;
  border: 1px solid rgba(194,145,86,.2);
  border-radius: var(--radius-sm);
  background: rgba(255,253,248,.9);
  box-shadow: var(--shadow-soft);
  text-align: left;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.footer-address {
  margin-top: 10px;
  color: var(--olive);
}

.site-footer {
  display: grid;
  gap: 28px;
  padding: 42px 72px 22px;
  color: var(--muted);
  border-top: 1px solid rgba(194,145,86,.16);
}
.site-footer b {
  color: var(--graphite);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}
.site-footer nav { display: grid; gap: 9px; }
.site-footer a:hover { color: var(--olive); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(194,145,86,.14);
  color: rgba(111,106,97,.78);
}

.lightbox {
  width: min(980px, calc(100% - 24px));
  border: 0;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--milk);
  box-shadow: var(--shadow);
}
.lightbox::backdrop { background: rgba(36,37,32,.66); backdrop-filter: blur(8px); }
.lightbox .icon-button { position: absolute; top: 18px; right: 18px; z-index: 2; }
.lightbox img {
  width: 100%;
  max-height: 76svh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: var(--cream);
}
.lightbox p { margin: 12px 4px 2px; color: var(--muted); }

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 36px 18px 72px;
  background: var(--milk);
}
.legal-page header { margin-bottom: 34px; }
.legal-page h1 { color: var(--graphite); font-size: clamp(36px, 8vw, 68px); }
.legal-page h2 { margin-top: 30px; font-size: 28px; }
.legal-page p, .legal-page li { color: var(--muted); }
.legal-back { display: inline-flex; margin-bottom: 24px; color: var(--olive); font-weight: 800; }

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (min-width: 640px) {
  .service-grid, .article-grid, .master-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid, .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-form { grid-template-columns: repeat(2, 1fr); }
  .booking-form label:nth-child(5), .form-policy, .booking-form button, .form-result { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  .desktop-nav, .header-phone { display: flex; }
  .menu-toggle { display: none; }
  .hero-actions { margin-top: 112px; }
  .service-grid { grid-template-columns: repeat(4, 1fr); }
  .works-grid, .promo-grid, .article-grid { grid-template-columns: repeat(3, 1fr); }
  .master-grid { grid-template-columns: repeat(4, 1fr); }
  .about-section { grid-template-columns: .95fr 1.05fr; }
  .booking-section { grid-template-columns: .8fr 1.2fr; }
  .contacts-section { grid-template-columns: .8fr 1.2fr; }
  .site-footer { grid-template-columns: 1.2fr 1fr; }
  .footer-bottom { grid-column: 1 / -1; }
}

@media (max-width: 1040px) {
  .site-header { padding: 0 28px; gap: 16px; }
  .desktop-nav { gap: 16px; }
  .brand img { width: 184px; }
  .hero-content { padding-left: 42px; }
  .hero-note { left: 42px; }
  .section, .site-footer { padding-left: 42px; padding-right: 42px; }
}

@media (max-width: 899px) {
  main, .site-footer, .site-header { width: 100%; }
  .site-header {
    min-height: 74px;
    padding: 0 22px;
    grid-template-columns: 1fr auto;
  }
  .brand img { width: 170px; height: 38px; }
  .hero {
    min-height: auto;
    display: grid;
    padding: 94px 22px 0;
    background: linear-gradient(180deg, var(--milk), #f7efe6);
  }
  .hero::before {
    left: 42%;
    top: 250px;
    width: 180px;
    opacity: .24;
  }
  .hero-content {
    width: 100%;
    padding: 0 0 24px;
  }
  h1 { font-size: clamp(48px, 13vw, 72px); max-width: 410px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { gap: 10px; margin-top: 24px; }
  .hero-actions .button { flex: 1 1 180px; }
  .hero-note {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin: 4px 0 22px;
  }
  .hero-media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: calc(100% + 44px);
    height: auto;
    aspect-ratio: 1.08 / 1;
    margin: 0 -22px;
  }
  .section { padding: 58px 22px; }
  .site-footer { padding: 36px 22px 22px; }
  .review-shell { grid-template-columns: 42px 1fr 42px; }
}

@media (max-width: 430px) {
  .site-header { min-height: 68px; padding: 0 18px; }
  .brand img { width: 150px; height: 34px; }
  .hero { padding-top: 86px; }
  .hero-note { grid-template-columns: 1fr; }
  .hero-note span + span { border-left: 0; border-top: 1px solid rgba(194,145,86,.18); }
  .button { width: 100%; }
  .review-shell { grid-template-columns: 38px 1fr 38px; gap: 8px; }
  .review-shell .icon-button { width: 38px; height: 38px; }
  .review-card { padding: 24px; }
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes loaderOut { to { opacity: 0; visibility: hidden; } }
@keyframes heroBreath { to { transform: scale(1.035) translateY(-1%); } }
