:root {
  --cream: #fff8ee;
  --sand: #ead7bd;
  --peach: #f2a875;
  --terracotta: #9d4f36;
  --sage: #74836f;
  --ink: #28211d;
  --muted: #776a60;
  --white: #ffffff;
  --line: rgba(40,33,29,.13);
  --shadow: 0 28px 80px rgba(78,50,35,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Roboto", sans-serif;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 104px 0; }
h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
  line-height: .98;
  margin: 0;
  letter-spacing: -.045em;
}
h1 { font-size: clamp(42px, 6.6vw, 86px); }
h2 { font-size: clamp(34px, 4.4vw, 64px); }
h3 { font-size: 25px; }
p { margin: 0; color: var(--muted); }
.tag, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--terracotta);
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 16px;
}
.tag::before, .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 12px 14px 12px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(255,248,238,.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(60,38,26,.1);
}
.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 950;
  letter-spacing: -.04em;
  color: var(--ink);
}
.nav { display: flex; gap: 18px; margin-left: auto; }
.nav a { font-size: 14px; font-weight: 700; color: rgba(40,33,29,.72); }
.nav a:hover { color: var(--terracotta); }
.phone {
  padding: 11px 16px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}
.burger { display: none; }

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 42px;
  padding: 122px 40px 54px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  right: -220px;
  top: -160px;
  background: rgba(242,168,117,.34);
  filter: blur(5px);
}
.hero-media {
  position: relative;
  min-height: 640px;
  border-radius: 52px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-copy p:not(.eyebrow) {
  margin-top: 24px;
  max-width: 640px;
  font-size: 19px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 18px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform .24s, box-shadow .24s, background .24s;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--terracotta); color: #fff; box-shadow: 0 16px 38px rgba(157,79,54,.22); }
.btn-outline { border-color: var(--line); background: #fff; }
.hero-note {
  position: absolute;
  left: 8vw;
  bottom: 8vh;
  z-index: 2;
  width: min(320px, 82vw);
  padding: 22px;
  border-radius: 28px;
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.hero-note strong { display: block; font-size: 28px; font-family: "Montserrat", sans-serif; }
.hero-note span { color: var(--muted); }

.section-head { max-width: 790px; margin-bottom: 42px; }
.barriers { background: #fff; }
.barrier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.barrier, .product-card, .price-card, .moment {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 20px 55px rgba(90,62,42,.06);
  transition: transform .25s, box-shadow .25s;
}
.barrier:hover, .product-card:hover, .price-card:hover, .moment:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.barrier div {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(116,131,111,.15);
  color: var(--sage);
  font-weight: 900;
  margin-bottom: 22px;
}
.barrier h3 { font-size: 22px; margin-bottom: 10px; }

.comfort { background: linear-gradient(180deg, var(--cream), #f8ecdc); }
.comfort-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
}
.comfort-copy p { margin-top: 24px; font-size: 18px; }
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.facts div {
  padding: 20px;
  border-radius: 26px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.9);
}
.facts b {
  display: block;
  font: 900 40px "Montserrat", sans-serif;
  color: var(--terracotta);
}
.facts span { color: var(--muted); font-size: 14px; }
.photo-stack { position: relative; min-height: 620px; }
.main-photo, .small-photo {
  position: absolute;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: var(--shadow);
}
.main-photo { inset: 0 0 80px 80px; width: calc(100% - 80px); height: calc(100% - 80px); }
.small-photo { left: 0; bottom: 0; width: 44%; height: 260px; border: 10px solid var(--cream); }

.products { background: var(--ink); color: #fff; }
.products p { color: rgba(255,255,255,.7); }
.products .tag { color: var(--peach); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  overflow: hidden;
  padding: 0;
}
.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .5s;
}
.product-card:hover img { transform: scale(1.08); }
.product-card h3, .product-card p { padding-left: 22px; padding-right: 22px; }
.product-card h3 { margin-top: 22px; font-size: 23px; }
.product-card p { padding-bottom: 24px; margin-top: 10px; }

.moments { background: #fff; }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: item;
}
.moment span {
  display: inline-flex;
  color: var(--terracotta);
  font-weight: 900;
  letter-spacing: .1em;
  margin-bottom: 24px;
}
.moment h3 { font-size: 24px; margin-bottom: 12px; }

.prices { background: var(--sand); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.price-card > p {
  color: var(--terracotta);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 12px;
}
.price-card h3 { margin-top: 16px; }
.price-card strong {
  margin-top: auto;
  font: 900 38px "Montserrat", sans-serif;
}
.price-card a { margin-top: 20px; font-weight: 900; color: var(--terracotta); }
.price-card.accent { background: var(--terracotta); color: #fff; transform: translateY(-14px); }
.price-card.accent p, .price-card.accent a { color: #ffe0d3; }

.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; }
.accordion { display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  padding: 22px;
  background: transparent;
  border: 0;
  text-align: left;
  color: var(--ink);
  font: 900 18px "Montserrat", sans-serif;
  cursor: pointer;
}
.faq-item div { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item div p { padding: 0 22px 22px; }
.faq-item.active div { max-height: 160px; }

.contact { background: var(--ink); color: #fff; }
.contact p { color: rgba(255,255,255,.7); }
.contact .tag { color: var(--peach); }
.contact-panel {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 52px;
  align-items: center;
  padding: 42px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
}
.contact-panel h2 { margin-bottom: 18px; }
.lead-form { display: grid; gap: 14px; }
label { display: grid; gap: 8px; color: rgba(255,255,255,.78); font-weight: 800; font-size: 13px; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  font: 500 16px "Roboto", sans-serif;
  outline: none;
}
input:focus, textarea:focus { border-color: var(--peach); }
textarea { min-height: 120px; resize: vertical; }
.form-message { min-height: 24px; font-weight: 900; }

.footer { padding: 34px 0; background: #1b1613; color: #fff; }
.footer p { color: rgba(255,255,255,.65); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; align-items: center; font-size: 14px; }
.footer a:not(.logo) { color: var(--peach); }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .72s ease, transform .72s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  .hero { grid-template-columns: 1fr; padding-left: 20px; padding-right: 20px; }
  .hero-media { min-height: 470px; order: 2; }
  .hero-note { position: relative; left: auto; bottom: auto; margin: -120px 0 0 30px; }
  .comfort-grid, .faq-wrap, .contact-panel { grid-template-columns: 1fr; }
  .barrier-grid, .product-grid, .timeline { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; order: 3; width: 100%; flex-wrap: wrap; }
  .nav.open { display: flex; }
  .burger { display: grid; gap: 5px; margin-left: auto; background: none; border: 0; }
  .burger span { display: block; width: 24px; height: 2px; background: var(--ink); }
  .site-header { flex-wrap: wrap; }
}
@media (max-width: 680px) {
  .section { padding: 76px 0; }
  .hero { padding-top: 150px; }
  .phone { width: 100%; text-align: center; }
  .barrier-grid, .product-grid, .timeline, .price-grid, .facts { grid-template-columns: 1fr; }
  .photo-stack { min-height: 440px; }
  .main-photo { inset: 0; width: 100%; height: 100%; }
  .small-photo { display: none; }
  .contact-panel { padding: 26px; }
}
