:root {
  --bg: #f5efe2;
  --bg-soft: #fbf7ef;
  --surface: rgba(255, 252, 247, 0.82);
  --surface-strong: #fffaf0;
  --ink: #241612;
  --muted: #6d5a50;
  --line: rgba(76, 49, 37, 0.12);
  --accent: #8f3d20;
  --accent-strong: #6f2710;
  --accent-soft: #e4bf83;
  --dark: #2a1a15;
  --success: #255b3f;
  --shadow: 0 22px 60px rgba(53, 31, 21, 0.12);
  --radius: 28px;
  --radius-small: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(228, 191, 131, 0.34), transparent 30%),
    radial-gradient(circle at right 20%, rgba(143, 61, 32, 0.08), transparent 28%),
    linear-gradient(180deg, #f6f1e6 0%, #efe3d1 100%);
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(245, 239, 226, 0.78);
  border-bottom: 1px solid rgba(76, 49, 37, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #c77a3e 100%);
  color: #fff9f0;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong,
.hero h1,
.section-heading h2,
.cta-panel h2,
.site-footer h2,
.modal-dialog h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.brand-copy strong {
  font-size: 1.5rem;
}

.brand-copy span {
  font-size: 0.82rem;
  color: var(--muted);
}

.top-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  font-weight: 700;
}

.button {
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--accent) 0%, #b15a2d 100%);
  color: #fff7ed;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 12px 24px rgba(143, 61, 32, 0.24);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(143, 61, 32, 0.3);
}

.button-small {
  padding: 11px 18px;
  font-size: 0.92rem;
}

.button-secondary,
.button-ghost {
  background: rgba(255, 250, 240, 0.72);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(76, 49, 37, 0.12);
}

.button-light {
  background: #fff7ed;
  color: var(--accent-strong);
}

.button-block {
  width: 100%;
}

.hero {
  padding: 56px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.showcase-panel,
.quote-card,
.cta-panel,
.product-card,
.review-card,
.benefit-grid article {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 44px;
  border-radius: calc(var(--radius) + 8px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.92;
}

.hero-text,
.section-heading p,
.product-card p,
.benefit-grid p,
.review-card p,
.quote-card p,
.cta-panel p,
.footer-list,
.modal-text {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 640px;
  margin: 20px 0 0;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-metrics {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-metrics li {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid var(--line);
}

.hero-metrics strong,
.price-row strong,
.card-footer strong {
  display: block;
  font-size: 1.28rem;
  margin-bottom: 4px;
}

.hero-metrics span,
.price-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 14px);
  padding: 34px;
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(228, 191, 131, 0.55), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.92) 0%, rgba(243, 229, 209, 0.92) 100%);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(143, 61, 32, 0.08);
}

.samovar-illustration {
  position: relative;
  width: min(100%, 360px);
  height: 360px;
  margin: 10px auto 18px;
}

.samovar-lid,
.samovar-neck,
.samovar-body,
.samovar-base,
.samovar-spout,
.samovar-left-handle,
.samovar-right-handle {
  position: absolute;
  background: linear-gradient(135deg, #7f3d20 0%, #d6a34e 32%, #f9e5ac 54%, #9c4e23 100%);
  border: 1px solid rgba(88, 44, 22, 0.28);
}

.samovar-lid {
  top: 26px;
  left: 118px;
  width: 124px;
  height: 42px;
  border-radius: 50% 50% 36% 36%;
}

.samovar-neck {
  top: 60px;
  left: 142px;
  width: 76px;
  height: 38px;
  border-radius: 20px;
}

.samovar-body {
  top: 86px;
  left: 68px;
  width: 224px;
  height: 188px;
  border-radius: 30% 30% 24% 24% / 18% 18% 16% 16%;
  box-shadow: inset 0 12px 28px rgba(255, 255, 255, 0.32);
}

.samovar-spout {
  top: 156px;
  left: 258px;
  width: 76px;
  height: 22px;
  border-radius: 0 16px 16px 0;
  transform: rotate(-10deg);
}

.samovar-left-handle,
.samovar-right-handle {
  top: 136px;
  width: 52px;
  height: 88px;
  background: transparent;
  border: 10px solid #a3592e;
  border-radius: 40px;
}

.samovar-left-handle {
  left: 34px;
  border-right: 0;
}

.samovar-right-handle {
  right: 34px;
  border-left: 0;
}

.samovar-base {
  top: 274px;
  left: 88px;
  width: 184px;
  height: 46px;
  border-radius: 16px 16px 26px 26px;
}

.samovar-shadow {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 220px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(36, 22, 18, 0.18);
  filter: blur(10px);
}

.hero-note {
  position: relative;
  z-index: 1;
  background: rgba(255, 247, 235, 0.7);
  border: 1px solid rgba(76, 49, 37, 0.1);
  border-radius: 22px;
  padding: 22px;
}

.note-badge,
.product-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(143, 61, 32, 0.09);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-note h2,
.product-card h3,
.benefit-grid h3,
.quote-card span,
.review-card strong,
.site-footer h3,
.form-success h3 {
  margin: 14px 0 10px;
}

.ticker {
  padding: 12px 0;
}

.ticker-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.7);
  border: 1px solid var(--line);
  color: var(--muted);
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 0.96;
}

.product-grid,
.review-grid,
.benefit-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.review-card,
.benefit-grid article {
  border-radius: var(--radius);
  padding: 28px;
}

.product-card ul,
.footer-list {
  padding-left: 18px;
  color: var(--muted);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
}

.section-accent {
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.22) 0%, rgba(240, 226, 204, 0.52) 100%);
}

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

.showcase-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 22px;
}

.showcase-panel,
.quote-card,
.cta-panel {
  border-radius: calc(var(--radius) + 4px);
  padding: 34px;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 18px;
}

.steps-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  color: var(--muted);
}

.steps-list strong {
  color: var(--accent);
  font-size: 1.5rem;
}

.quote-card {
  background: linear-gradient(180deg, rgba(41, 25, 20, 0.96), rgba(73, 41, 29, 0.94));
  color: #f7ebd5;
}

.quote-card p,
.quote-card span {
  color: inherit;
}

.reviews-section {
  background: linear-gradient(180deg, rgba(255, 249, 239, 0.24) 0%, rgba(247, 239, 225, 0.6) 100%);
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-dark {
  padding-top: 0;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: linear-gradient(135deg, #2a1914 0%, #6b331d 100%);
  color: #fff4e4;
}

.cta-panel p {
  color: rgba(255, 244, 228, 0.78);
}

.site-footer {
  padding: 32px 0 26px;
  color: #f3e7d6;
  background: #241612;
}

.footer-grid {
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.footer-list {
  margin: 0;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(243, 231, 214, 0.7);
  font-size: 0.9rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 12, 10, 0.58);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  width: min(560px, calc(100% - 24px));
  margin: 8vh auto 0;
  padding: 28px;
  border-radius: 28px;
  background: #fffaf2;
  box-shadow: 0 28px 70px rgba(21, 10, 8, 0.34);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(36, 22, 18, 0.08);
  cursor: pointer;
  font-size: 1.5rem;
}

.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(76, 49, 37, 0.14);
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(143, 61, 32, 0.55);
  box-shadow: 0 0 0 4px rgba(143, 61, 32, 0.08);
}

.form-success {
  margin-top: 20px;
  border-radius: 18px;
  padding: 18px;
  background: rgba(37, 91, 63, 0.08);
  border: 1px solid rgba(37, 91, 63, 0.18);
}

@media (max-width: 1100px) {
  .hero-grid,
  .showcase-grid,
  .product-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .top-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 20px, 100%);
  }

  .hero,
  .section {
    padding: 64px 0;
  }

  .hero-grid,
  .product-grid,
  .review-grid,
  .benefit-grid,
  .showcase-grid,
  .footer-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .brand-copy span,
  .top-nav {
    display: none;
  }

  .header-inner,
  .header-actions,
  .hero-actions,
  .card-footer,
  .cta-panel,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy,
  .hero-card,
  .showcase-panel,
  .quote-card,
  .cta-panel,
  .product-card,
  .review-card,
  .benefit-grid article,
  .modal-dialog {
    padding: 24px;
  }

  .hero h1,
  .section-heading h2 {
    line-height: 1;
  }

  .samovar-illustration {
    height: 300px;
  }

  .samovar-body {
    left: 48px;
    width: 204px;
  }

  .samovar-lid {
    left: 98px;
  }

  .samovar-neck {
    left: 122px;
  }

  .samovar-base {
    left: 68px;
  }
}
