:root {
  color-scheme: light;
  --ink: #25211f;
  --muted: #6d625c;
  --line: #ded3cb;
  --paper: #fffaf6;
  --panel: #ffffff;
  --rose: #b45f65;
  --rose-dark: #803b42;
  --gold: #c99d4d;
  --sage: #67786a;
  --charcoal: #32353a;
  --shadow: 0 18px 45px rgba(56, 42, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(255, 250, 246, 0.92);
  border-bottom: 1px solid rgba(222, 211, 203, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--charcoal);
  border-radius: 50%;
  font-size: 0.8rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.price-row a:hover {
  color: var(--rose-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(52px, 8vw, 92px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 58px);
  background:
    linear-gradient(120deg, rgba(180, 95, 101, 0.09), transparent 42%),
    linear-gradient(180deg, #fffaf6 0%, #f6eee6 100%);
}

.hero-copy {
  max-width: 680px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: 0;
  max-width: 950px;
}

h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.6vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.25;
}

.hero-copy > p:not(.eyebrow),
.section-heading p,
.contact-section p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--charcoal);
}

.button.secondary {
  color: var(--charcoal);
  background: transparent;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual img {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow);
  background: #f5e9de;
}

.hero-visual figcaption {
  position: absolute;
  right: clamp(12px, 3vw, 28px);
  bottom: clamp(12px, 3vw, 28px);
  display: grid;
  gap: 2px;
  max-width: min(330px, calc(100% - 24px));
  padding: 16px 18px;
  color: #fff;
  background: rgba(37, 33, 31, 0.82);
  border-radius: 6px;
}

.hero-visual span,
.trust-strip span,
.site-footer span {
  color: inherit;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-strip div {
  min-height: 112px;
  padding: 24px clamp(18px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  padding: clamp(62px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}

.catalog-grid,
.policy-grid,
.detail-grid {
  display: grid;
  gap: 18px;
}

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

.product-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(80, 58, 45, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f3e8df;
}

.product-info {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.product-info p,
.policy-grid p,
.detail-grid p,
.steps p {
  margin: 0;
  color: var(--muted);
}

.badge {
  width: fit-content;
  padding: 4px 9px;
  color: #fff;
  background: var(--sage);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
  font-weight: 800;
}

.price-row a {
  color: var(--rose-dark);
  text-decoration: none;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  background: #2f3434;
  color: #fff;
}

.split-section .eyebrow,
.split-section p {
  color: #eaded2;
}

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

.detail-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 250, 246, 0.22);
  border-radius: 8px;
}

.process-section {
  background: #fff;
}

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

.steps li {
  display: grid;
  gap: 9px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf6;
}

.steps span {
  color: var(--gold);
  font-weight: 900;
}

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

.policy-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px) clamp(54px, 8vw, 92px);
  padding: clamp(28px, 5vw, 50px);
  color: #fff;
  background: linear-gradient(135deg, var(--rose-dark), var(--charcoal));
  border-radius: 8px;
}

.contact-section .eyebrow,
.contact-section p {
  color: #ffe9e4;
}

address {
  display: grid;
  gap: 8px;
  font-style: normal;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
}

address a {
  color: #fff;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fff;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .detail-grid,
  .steps,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-visual figcaption {
    position: static;
    max-width: none;
    border-radius: 0 0 6px 6px;
  }

  .catalog-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
