:root {
  --bg: #f5f1e8;
  --bg-soft: #ece4d6;
  --surface: rgba(255, 252, 247, 0.86);
  --surface-strong: #fffaf2;
  --text: #221b12;
  --muted: #6f6456;
  --line: rgba(88, 67, 39, 0.14);
  --line-strong: rgba(88, 67, 39, 0.24);
  --accent: #d3b280;
  --accent-strong: #b98e54;
  --accent-soft: #ebdbc2;
  --shadow-soft: 0 14px 32px rgba(45, 30, 10, 0.09);
  --shadow-medium: 0 24px 58px rgba(45, 30, 10, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(56% 42% at 0% 0%, rgba(206, 171, 115, 0.2), transparent 72%),
    radial-gradient(44% 36% at 100% 8%, rgba(196, 158, 102, 0.18), transparent 70%),
    linear-gradient(180deg, #f8f4ec 0%, #efe6d8 100%);
}

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

button {
  touch-action: manipulation;
}

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

p {
  margin: 0;
  line-height: 1.65;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

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

.section {
  padding: 48px 0 84px;
}

.slab {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #7b5d33;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 40;
  width: min(var(--container), calc(100% - 24px));
  margin: 12px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 250, 242, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 28px rgba(51, 35, 14, 0.1);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 12px;
  color: #5a4b37;
  font-weight: 700;
  transition: 0.24s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #2f2418;
  background: rgba(189, 148, 88, 0.18);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: #2f2418;
}

.btn,
.ghost,
.btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.24s ease;
}

.btn {
  padding: 14px 24px;
  color: #3f2f1a;
  line-height: 1;
  text-align: center;
  background: linear-gradient(180deg, #ebdbbf 0%, #d8ba8f 100%);
  border: 1px solid rgba(125, 92, 48, 0.24);
  box-shadow: 0 14px 30px rgba(106, 76, 36, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(106, 76, 36, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.ghost {
  padding: 13px 22px;
  color: #5a4525;
  line-height: 1;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(245, 232, 205, 0.9));
  border: 1px solid rgba(125, 92, 48, 0.24);
}

.ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 92, 48, 0.34);
  box-shadow: 0 12px 24px rgba(106, 76, 36, 0.14);
}

.btn-small {
  margin-top: auto;
  padding: 11px 18px;
  color: #3f2f1a;
  background: linear-gradient(180deg, #ebdbbf 0%, #d8ba8f 100%);
  border: 1px solid rgba(125, 92, 48, 0.22);
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge,
.price-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.badge {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(95, 72, 41, 0.14);
  color: #5a4b36;
}

.badge-muted {
  background: rgba(90, 70, 45, 0.09);
}

.price-chip {
  color: #3f2f1a;
  background: linear-gradient(180deg, #ecdcc2 0%, #d9ba8f 100%);
  border: 1px solid rgba(125, 92, 48, 0.24);
}

/* Home */
.home-hero {
  position: relative;
  padding-top: 64px;
  padding-bottom: 26px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1.06fr);
  gap: 60px;
  align-items: center;
}

.home-hero-copy h1 {
  margin-bottom: 18px;
  max-width: 10ch;
  font-size: clamp(44px, 5.8vw, 76px);
  line-height: 0.98;
}

.home-lead {
  max-width: 35ch;
  font-size: clamp(17px, 1.9vw, 20px);
}

.hero-actions {
  margin-top: 30px;
}

.hero-actions .btn,
.hero-actions .ghost {
  min-width: 196px;
  min-height: 56px;
}

.hero-signals {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #5b4d3b;
  font-size: 0.92rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(95, 72, 41, 0.12);
}

.hero-stage {
  position: relative;
  min-height: 620px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(188, 147, 86, 0.2);
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.84), rgba(245, 235, 216, 0.74));
  box-shadow: var(--shadow-medium);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 28px;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.98), rgba(241, 229, 205, 0.84));
  border: 1px solid rgba(99, 73, 40, 0.08);
}

.hero-stage-main {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 16px 24px 120px;
  overflow: hidden;
}

.hero-stage-main img {
  width: min(100%, 470px);
  max-height: 420px;
  object-fit: contain;
  object-position: center;
}

.hero-floating-card {
  position: absolute;
  z-index: 2;
  width: 176px;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(95, 72, 41, 0.12);
  background: linear-gradient(180deg, rgba(249, 242, 230, 0.84), rgba(242, 228, 202, 0.82));
  box-shadow: 0 20px 36px rgba(51, 35, 14, 0.12);
  animation: floatCard 7s ease-in-out infinite;
}

.hero-floating-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(0.95) contrast(1.04);
}

.hero-floating-card-left {
  left: 18px;
  bottom: 18px;
}

.hero-floating-card-right {
  right: 18px;
  bottom: 34px;
  animation-delay: 0.7s;
}

.home-proof-section {
  padding-top: 0;
  padding-bottom: 34px;
}

.home-proof {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border: 1px solid rgba(125, 92, 48, 0.14);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.88), rgba(244, 233, 210, 0.76));
}

.home-proof article {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(125, 92, 48, 0.1);
  background: rgba(255, 255, 255, 0.54);
  transition: 0.24s ease;
}

.home-proof article:hover {
  transform: translateY(-3px);
  border-color: rgba(125, 92, 48, 0.22);
  box-shadow: 0 12px 24px rgba(84, 63, 35, 0.12);
}

.home-proof strong {
  display: block;
  margin-bottom: 6px;
  color: #3f2f1a;
}

.home-value-section {
  padding-top: 12px;
}

.home-value {
  padding: 36px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: start;
  border: 1px solid rgba(125, 92, 48, 0.15);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.88), rgba(244, 233, 210, 0.76));
}

.home-value-copy h2 {
  margin-bottom: 14px;
  max-width: 13ch;
  font-size: clamp(30px, 4vw, 42px);
}

.home-value-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.home-value-list article {
  min-height: 100%;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(125, 92, 48, 0.1);
  background: rgba(255, 255, 255, 0.56);
  transition: 0.24s ease;
}

.home-value-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(125, 92, 48, 0.22);
  box-shadow: 0 12px 26px rgba(84, 63, 35, 0.12);
}

.home-value-list strong {
  display: block;
  margin-bottom: 8px;
  color: #3f2f1a;
}

.home-catalog-link-section {
  padding-top: 6px;
}

.home-catalog-link {
  position: relative;
  overflow: hidden;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(125, 92, 48, 0.15);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.88), rgba(244, 233, 210, 0.76));
}

.home-catalog-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-120%);
  animation: sheen 5.4s ease-in-out infinite;
}

.home-catalog-link > * {
  position: relative;
  z-index: 1;
}

.home-catalog-link h2 {
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.08;
}

.home-catalog-link .btn {
  white-space: nowrap;
}

/* Catalog */
.catalog-page {
  padding-bottom: 12px;
}

.catalog-hero {
  padding-top: 58px;
  padding-bottom: 24px;
}

.catalog-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.catalog-hero-copy h1 {
  margin-bottom: 16px;
  max-width: 14ch;
  font-size: clamp(40px, 5.6vw, 68px);
}

.catalog-hero-visual {
  min-height: 470px;
  padding: 24px;
  border: 1px solid rgba(188, 147, 86, 0.2);
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.82), rgba(245, 235, 216, 0.7));
}

.catalog-collage {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.catalog-collage-item {
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(95, 72, 41, 0.12);
  background: linear-gradient(180deg, #fffdf9 0%, #f6ecdd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.catalog-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-collage-item.domik {
  grid-row: 1 / span 2;
  min-height: 410px;
}

.catalog-collage-item.round,
.catalog-collage-item.straight {
  min-height: 198px;
}

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

.product-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 252, 247, 0.86);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 92, 48, 0.22);
  box-shadow: var(--shadow-medium);
}

.refined-card-domik {
  border: 1px solid rgba(185, 142, 84, 0.36);
  box-shadow: 0 22px 48px rgba(117, 82, 38, 0.18);
}

.refined-card-domik::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.badge-toy {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(54, 37, 16, 0.25));
}

.product-media {
  width: 100%;
  height: 280px;
  margin-bottom: 16px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(95, 72, 41, 0.1);
  background: linear-gradient(180deg, #fffdf9 0%, #f6ecdd 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.product-card .descr {
  margin: 0 0 14px;
  min-height: 4.8em;
}

.product-meta,
.meta {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Payment and delivery */
.delivery-page {
  padding-bottom: 12px;
}

.delivery-hero {
  padding-top: 58px;
  padding-bottom: 24px;
}

.delivery-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 22px;
  align-items: stretch;
}

.delivery-hero-copy,
.delivery-hero-side,
.delivery-card,
.delivery-note {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 252, 247, 0.86);
  box-shadow: var(--shadow-soft);
}

.delivery-hero-copy,
.delivery-hero-side,
.delivery-card {
  padding: 28px;
}

.delivery-hero-copy h1 {
  margin-bottom: 14px;
  max-width: 14ch;
  font-size: clamp(38px, 5.2vw, 64px);
}

.delivery-hero-side h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 34px);
}

.delivery-quick,
.delivery-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.delivery-quick li,
.delivery-list li {
  position: relative;
  padding-left: 18px;
  color: #5f5344;
  line-height: 1.6;
}

.delivery-quick li::before,
.delivery-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #b98e54;
  transform: translateY(-50%);
}

.delivery-info-grid {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.delivery-card h2 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.delivery-card p {
  margin-bottom: 12px;
}

.delivery-note {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(125, 92, 48, 0.15);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.88), rgba(244, 233, 210, 0.76));
}

.delivery-note h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 40px);
}

.delivery-note p {
  max-width: 55ch;
}

/* Contact */
.contact-section,
.product-page {
  padding: 44px 0 84px;
}

.contact-page-root {
  background:
    radial-gradient(62% 48% at 0% 18%, rgba(205, 173, 121, 0.14), transparent 72%),
    radial-gradient(50% 40% at 100% 0%, rgba(196, 158, 102, 0.12), transparent 74%),
    linear-gradient(180deg, #f8f3ea 0%, #eee2cf 100%);
}

.contact-page-body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.contact-page-body > main {
  flex: 1;
}

.contact-page-body .site-footer {
  margin-top: auto;
  background: transparent;
}

.contact-container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
}

.contact-text,
.contact-form,
.product-gallery .slab,
.product-section .slab,
.product-summary {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 252, 247, 0.86);
  box-shadow: var(--shadow-soft);
}

.contact-text,
.contact-form,
.product-gallery .slab,
.product-section .slab {
  padding: 26px;
}

.contact-info {
  margin-top: 20px;
  display: grid;
  gap: 8px;
}

.contact-info a {
  font-weight: 700;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.contact-link-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(95, 72, 41, 0.16);
  background: rgba(255, 255, 255, 0.7);
  color: #4f412f;
  font-weight: 700;
  transition: 0.22s ease;
}

.contact-link-chip:hover {
  border-color: rgba(125, 92, 48, 0.34);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.contact-link-chip img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

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

.contact-form label {
  display: block;
  color: #3a2f22;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
#engrave-text {
  width: 100%;
  display: block;
  margin-top: 8px;
  padding: 13px 15px;
  font-size: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(95, 72, 41, 0.2);
  background: rgba(255, 255, 255, 0.92);
  color: #2d2419;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(185, 142, 84, 0.64);
  box-shadow: 0 0 0 3px rgba(185, 142, 84, 0.16);
}

.form-note,
.small-note {
  font-size: 0.92rem;
  color: #7f7466;
}

/* Product page */
.product-wrap {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.product-gallery .media {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  border: 1px solid rgba(95, 72, 41, 0.1);
  background: linear-gradient(180deg, #fffdf9 0%, #f6ecdd 100%);
  padding: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery .media img {
  max-height: 100%;
  object-fit: contain;
}

.product-gallery .thumbs {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 10px;
}

.product-gallery .thumb {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  background: #fff;
  cursor: pointer;
  transition: 0.22s ease;
}

.product-gallery .thumb:hover,
.product-gallery .thumb.is-active {
  border-color: rgba(185, 142, 84, 0.48);
  box-shadow: 0 6px 16px rgba(106, 76, 36, 0.14);
}

.product-gallery .thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.product-summary {
  padding: 26px;
}

.product-summary h1 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 48px);
}

.product-summary .lead {
  margin-bottom: 16px;
}

.product-summary .actions {
  margin-bottom: 12px;
}

.product-summary .product-section {
  margin-top: 14px;
}

.features {
  margin: 18px 0;
  padding-left: 1.15em;
}

.features li {
  margin: 8px 0;
  color: #4d4336;
}

.specs {
  width: 100%;
  border-collapse: collapse;
}

.specs th,
.specs td {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.specs th {
  width: 34%;
  color: #6a5f52;
  font-weight: 700;
}

.kicker {
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #7b5d33;
}

.configurator {
  margin: 20px 0 8px;
  display: grid;
  gap: 14px;
}

.cfg-group {
  display: grid;
  gap: 8px;
}

.cfg-label {
  font-weight: 800;
  color: #3a2f22;
}

.swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.swatch {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(95, 72, 41, 0.28);
  cursor: pointer;
}

.swatch[data-value="natural"] {
  background: #efe3ce;
}

.swatch[data-value="blue"] {
  background: #7ba8bd;
}

.swatch[data-value="light-red"] {
  background: #df8d88;
}

.swatch[data-value="green"] {
  background: #97aa7c;
}

.swatch.is-active {
  outline: 2px solid rgba(80, 60, 34, 0.28);
  outline-offset: 1px;
}

.swatches.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.cfg-note {
  margin-top: 4px;
  color: #8a7c69;
  font-size: 0.9rem;
}

.cfg-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cfg-summary .small {
  flex-basis: 100%;
}

.cfg-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cfg-choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(95, 72, 41, 0.22);
  background: rgba(255, 255, 255, 0.8);
  color: #4b3d2a;
  font-size: 0.94rem;
}

.cfg-choice input {
  margin: 0;
}

.action-note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #7f7466;
}

/* Reviews */
.reviews-page {
  padding-bottom: 12px;
}

.reviews-hero {
  padding-top: 58px;
  padding-bottom: 24px;
}

.reviews-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 22px;
}

.reviews-hero-copy,
.reviews-hero-side,
.review-card,
.reviews-note {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 252, 247, 0.86);
  box-shadow: var(--shadow-soft);
}

.reviews-hero-copy,
.reviews-hero-side,
.review-card {
  padding: 28px;
}

.reviews-hero-copy h1 {
  margin-bottom: 14px;
  max-width: 14ch;
  font-size: clamp(38px, 5.2vw, 64px);
}

.reviews-hero-side h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.reviews-metrics {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.reviews-metrics li {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(95, 72, 41, 0.12);
  background: rgba(255, 255, 255, 0.6);
  color: #5a4b37;
}

.reviews-grid {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-stars {
  letter-spacing: 0.16em;
  color: #b78949;
  font-weight: 800;
}

.review-author {
  margin-top: auto;
  font-weight: 800;
  color: #3f2f1a;
}

.review-meta {
  font-size: 0.9rem;
  color: #8a7d69;
}

.reviews-note {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(125, 92, 48, 0.15);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.88), rgba(244, 233, 210, 0.76));
}

.reviews-note h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 40px);
}

.reviews-note p {
  max-width: 55ch;
}

.site-footer {
  padding: 30px 20px 54px;
  text-align: center;
  color: #726758;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

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

@keyframes sheen {
  0% {
    transform: translateX(-120%);
  }
  52%,
  100% {
    transform: translateX(120%);
  }
}

.home-hero-copy > .eyebrow { animation: riseIn 0.5s ease both; }
.home-hero-copy > h1 { animation: riseIn 0.6s 0.07s ease both; }
.home-hero-copy > .home-lead { animation: riseIn 0.68s 0.14s ease both; }
.home-hero-copy > .hero-actions { animation: riseIn 0.74s 0.21s ease both; }
.home-hero-copy > .hero-signals { animation: riseIn 0.8s 0.28s ease both; }
.hero-stage { animation: riseIn 0.82s 0.16s ease both; }

@media (max-width: 1100px) {
  .home-hero-grid,
  .catalog-hero-grid,
  .delivery-hero-grid,
  .reviews-hero-grid,
  .home-value,
  .product-wrap,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .home-value-list,
  .catalog-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-stage {
    min-height: 540px;
    padding: 22px;
  }

  .hero-stage-main {
    min-height: 420px;
    padding-bottom: 116px;
  }

  .hero-stage-main img {
    width: min(100%, 390px);
    max-height: 340px;
  }

  .hero-floating-card {
    width: 154px;
  }

  .home-value-list,
  .delivery-info-grid,
  .reviews-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 20px);
    padding: 13px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    background: rgba(255, 250, 242, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.open {
    display: flex;
  }

  .container {
    width: calc(100% - 24px);
  }

  .section {
    padding: 30px 0 64px;
  }

  .home-hero {
    padding-top: 36px;
  }

  .home-hero-copy h1,
  .catalog-hero-copy h1 {
    font-size: clamp(34px, 11vw, 52px);
    max-width: 11ch;
  }

  .home-lead {
    font-size: 1rem;
    max-width: 33ch;
  }

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

  .hero-actions .btn,
  .hero-actions .ghost {
    width: 100%;
    min-width: 0;
  }

  .hero-stage,
  .catalog-hero-visual,
  .delivery-hero-copy,
  .delivery-hero-side,
  .delivery-card,
  .delivery-note,
  .reviews-hero-copy,
  .reviews-hero-side,
  .review-card,
  .reviews-note,
  .home-value,
  .home-catalog-link,
  .contact-text,
  .contact-form,
  .product-summary,
  .product-gallery .slab,
  .product-section .slab {
    padding: 20px;
  }

  .hero-stage {
    min-height: 470px;
  }

  .hero-stage::before {
    inset: 14px;
  }

  .hero-stage-main {
    min-height: 320px;
    padding: 0 0 132px;
  }

  .hero-stage-main img {
    width: min(100%, 300px);
    max-height: 232px;
  }

  .hero-floating-card {
    width: 130px;
    padding: 10px;
  }

  .hero-floating-card img {
    height: 100px;
  }

  .hero-floating-card-left {
    left: 10px;
    bottom: 10px;
  }

  .hero-floating-card-right {
    right: 10px;
    bottom: 18px;
  }

  .catalog-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .catalog-collage-item.domik {
    min-height: 280px;
    grid-row: auto;
  }

  .catalog-collage-item.round,
  .catalog-collage-item.straight {
    min-height: 170px;
  }

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

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

@media (max-width: 560px) {
  .hero-stage {
    min-height: 430px;
  }

  .hero-stage-main {
    min-height: 250px;
    padding-bottom: 138px;
  }

  .hero-stage-main img {
    width: min(100%, 260px);
    max-height: 200px;
  }

  .home-catalog-link {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
