:root {
  --ink: #242424;
  --muted: #66615b;
  --line: #e7e1da;
  --paper: #fffdf9;
  --soft: #f7f2ea;
  --sage: #627c66;
  --sage-dark: #3f5d47;
  --rose: #d88c91;
  --gold: #b7833b;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(47, 38, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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, 56px);
  background: rgba(255, 253, 249, 0.9);
  border-bottom: 1px solid rgba(231, 225, 218, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--sage-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  padding: clamp(24px, 4vw, 48px) clamp(18px, 4vw, 56px) clamp(38px, 6vw, 82px);
}

.hero-gallery {
  min-width: 0;
}

.main-photo {
  overflow: hidden;
  aspect-ratio: 1 / 0.92;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.main-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(8px, 1.8vw, 18px);
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.thumb {
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb.active {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(98, 124, 102, 0.18);
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.product-title {
  display: block;
  max-width: 680px;
}

.title-brand {
  display: inline;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.45;
}

.title-product {
  display: inline;
  max-width: 620px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
  line-height: 1.25;
}

.intro {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.buy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 22px 0;
}

.price {
  color: var(--gold);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  color: var(--white);
  background: var(--sage-dark);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  background: var(--sage);
  transform: translateY(-1px);
}

.button-light {
  color: var(--sage-dark);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
}

.trust-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 24px;
  max-width: 680px;
  font-size: 0.98rem;
}

.trust-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}

.trust-list li::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  border-radius: 50%;
  content: "";
}

.detail-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 clamp(18px, 4vw, 56px);
  border-block: 1px solid var(--line);
}

.detail-strip div {
  padding: 24px clamp(12px, 2vw, 28px);
  border-right: 1px solid var(--line);
}

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

.detail-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.detail-strip strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
}

.content-section {
  padding: clamp(56px, 8vw, 110px) clamp(18px, 4vw, 56px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article {
  min-height: 190px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-grid p,
.section-copy,
.quality-list span,
.media-band p,
.faq-list p,
.contact-band p,
.site-footer span {
  color: var(--muted);
}

.media-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding: clamp(42px, 6vw, 84px) clamp(18px, 4vw, 56px);
  background: var(--soft);
}

.media-band > img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.use-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.use-tags span {
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--sage-dark);
  font-weight: 750;
  font-size: 0.9rem;
}

.quality-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.quality-list div {
  display: grid;
  gap: 5px;
  padding: 22px;
  background: var(--white);
}

.image-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  padding: 0 clamp(18px, 4vw, 56px) clamp(56px, 8vw, 110px);
}

.image-mosaic img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 6vw, 80px);
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: clamp(18px, 4vw, 56px);
  padding: clamp(28px, 5vw, 58px);
  color: var(--white);
  background: linear-gradient(135deg, var(--sage-dark), #26382e 62%, #634c32);
  border-radius: 8px;
}

.contact-band .eyebrow,
.contact-band p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-band h2 {
  max-width: 820px;
  margin-bottom: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer a {
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration: none;
}

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

  .hero {
    align-items: start;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.88rem;
  }

  .hero {
    padding-top: 20px;
  }

  h1 {
    font-size: 1rem;
  }

  .title-brand {
    font-size: 1.25rem;
  }

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

  .detail-strip,
  .feature-grid,
  .image-mosaic {
    grid-template-columns: 1fr;
  }

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

  .detail-strip div:last-child {
    border-bottom: 0;
  }

  .contact-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
