:root {
  --background: #fffdf9;
  --surface: #fffaf5;
  --surface-strong: #f7efe7;
  --text: #201713;
  --muted: #6f6258;
  --line: #e7ddd3;
  --accent: #1f1612;
  --accent-soft: #b58664;
  --success: #2d6c4a;
  --shadow: 0 18px 45px rgba(44, 30, 17, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(225, 204, 190, 0.25), transparent 22%),
    linear-gradient(180deg, #fffdf9 0%, #fffaf7 100%);
  color: var(--text);
}

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

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

button,
select {
  font: inherit;
}

.announcement-bar {
  padding: 0.8rem 1rem;
  background: #f3e5d8;
  text-align: center;
  font-size: 0.9rem;
  color: #5d4838;
}

.site-header,
.section,
.site-footer {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.site-header {
  max-width: calc(var(--container) + 2.5rem);
  margin: 0 auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 251, 247, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 221, 211, 0.8);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
}

.logo-mark {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1c140f 0%, #90664c 100%);
  color: white;
}

.logo-text {
  letter-spacing: 0.03em;
}

.desktop-nav {
  display: none;
  gap: 1.4rem;
  color: var(--muted);
}

.header-cart {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  font-weight: 700;
}

.section {
  max-width: calc(var(--container) + 2.5rem);
  margin: 0 auto;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.hero {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 800;
  color: #8b6b56;
  margin-bottom: 1rem;
}

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

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  max-width: 12ch;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.25rem, 6vw, 4.4rem);
}

h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-subheadline {
  font-size: 1.08rem;
  max-width: 58ch;
  margin-top: 1.4rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.micro-proof {
  margin: 0;
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, #1f1612 0%, #6b4b37 100%);
  box-shadow: 0 12px 30px rgba(50, 31, 16, 0.18);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}

.button-secondary {
  color: var(--accent);
  background: #fff;
  border: 1px solid var(--line);
}

.button-full {
  width: 100%;
}

.stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #fff8f2;
  border: 1px solid #ecd8c6;
  color: #6f4b35;
  margin-top: 1.2rem;
}

.stock-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #ef6f41;
  box-shadow: 0 0 0 0 rgba(239, 111, 65, 0.5);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 111, 65, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(239, 111, 65, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 111, 65, 0); }
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 320px;
  background: linear-gradient(180deg, #f8efe8 0%, #f2e5da 100%);
  box-shadow: var(--shadow);
}

.hero-lifestyle {
  min-height: 420px;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.shape-one {
  width: 12rem;
  height: 12rem;
  top: -2rem;
  right: -1rem;
}

.shape-two {
  width: 9rem;
  height: 9rem;
  bottom: -1rem;
  left: -1rem;
}

.lifestyle-figure {
  position: absolute;
  inset: 0;
}

.figure-shadow {
  position: absolute;
  width: 68%;
  height: 3rem;
  left: 16%;
  bottom: 1.5rem;
  border-radius: 50%;
  background: rgba(111, 89, 69, 0.12);
  filter: blur(12px);
}

.figure-body {
  position: absolute;
  width: 15rem;
  height: 22rem;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  border-radius: 9rem 9rem 3rem 3rem;
  background: linear-gradient(180deg, #f6d8c6 0%, #ebbea4 100%);
}

.figure-product {
  position: absolute;
  width: 11rem;
  height: 5.5rem;
  left: 50%;
  bottom: 8.3rem;
  transform: translateX(-50%);
  border-radius: 3rem;
  background: linear-gradient(180deg, #7c5544 0%, #52352a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.product-flatlay {
  position: absolute;
  inset: 0;
  padding: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.flatlay-card {
  width: 30%;
  height: 70%;
  border-radius: 2.2rem 2.2rem 5rem 5rem;
  box-shadow: 0 10px 25px rgba(70, 45, 24, 0.12);
}

.flatlay-card.sand {
  background: linear-gradient(180deg, #e7c3aa 0%, #c78e6f 100%);
}

.flatlay-card.clay {
  background: linear-gradient(180deg, #d7a687 0%, #b7744f 100%);
}

.flatlay-card.espresso {
  background: linear-gradient(180deg, #8c6552 0%, #5a3c30 100%);
}

.social-proof-bar {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  padding: 1rem 1.25rem;
  background: #201713;
  color: #f7efe7;
  text-align: center;
  font-weight: 700;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.section-heading.narrow {
  max-width: 36rem;
}

.variant-grid,
.benefit-grid,
.comparison-grid,
.testimonial-grid {
  display: grid;
  gap: 1.2rem;
}

.variant-card,
.benefit-card,
.testimonial-card,
.comparison-card,
.guarantee-card,
.purchase-card,
.final-cta-card,
.policy-card,
.contact-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.variant-card {
  padding: 1rem;
}

.variant-art {
  min-height: 260px;
  border-radius: 1.4rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.variant-art span {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: white;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.variant-high-rise {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.28), transparent 30%),
    linear-gradient(180deg, #d4a487 0%, #8c5f49 100%);
}

.variant-low-rise {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.28), transparent 28%),
    linear-gradient(180deg, #ccb7a9 0%, #8a6958 100%);
}

.variant-mid-rise {
  background:
    radial-gradient(circle at 80% 15%, rgba(255,255,255,0.28), transparent 30%),
    linear-gradient(180deg, #e3cfbd 0%, #a67f67 100%);
}

.benefit-card,
.testimonial-card,
.comparison-card {
  padding: 1.5rem;
}

.icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface-strong);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #7b5845;
}

.comparison-card-positive {
  background: linear-gradient(180deg, #fffdf9 0%, #f7efe7 100%);
}

.comparison-card-negative {
  background: linear-gradient(180deg, #fff 0%, #f4efea 100%);
}

.comparison-label {
  margin-top: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8b6b56;
  font-weight: 800;
}

.comparison-card ul,
.offer-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text);
  line-height: 1.9;
}

.rating {
  color: #b07b52;
  letter-spacing: 0.15em;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.guarantee-card,
.final-cta-card {
  padding: 2rem;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(213, 180, 154, 0.18), transparent 30%),
    #fff;
}

.offer {
  display: grid;
  gap: 1.5rem;
}

.purchase-card {
  padding: 1.5rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.price-caption,
.checkout-note,
.sticky-label {
  margin: 0;
  font-size: 0.9rem;
}

.price-row h3 {
  margin-top: 0.2rem;
  font-size: 2.2rem;
}

.price-meta {
  text-align: right;
}

.strike {
  display: block;
  color: #9a8575;
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.save-badge {
  display: inline-block;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: #efe2d2;
  color: #6d4a36;
  font-weight: 800;
}

.purchase-form {
  display: grid;
  gap: 0.85rem;
}

.purchase-form label {
  font-weight: 700;
  color: var(--text);
}

.purchase-form select {
  min-height: 3.2rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  padding: 0 1rem;
  background: white;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  padding: 1.25rem 1.4rem;
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin-bottom: 0;
}

.site-footer {
  padding-top: 2rem;
  padding-bottom: 7rem;
  background: #1d1511;
  color: rgba(255, 247, 240, 0.86);
}

.footer-top {
  max-width: calc(var(--container) + 2.5rem);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 247, 240, 0.72);
}

.footer-links {
  display: grid;
  gap: 0.8rem;
}

.footer-bottom {
  max-width: calc(var(--container) + 2.5rem);
  margin: 2rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 247, 240, 0.12);
}

.sticky-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  background: rgba(255, 251, 247, 0.96);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(231, 221, 211, 0.9);
  box-shadow: 0 -12px 30px rgba(38, 25, 15, 0.08);
  transition: transform 220ms ease;
}

.sticky-mobile-cta strong {
  display: block;
  font-size: 1.1rem;
}

.sticky-mobile-cta .button {
  min-width: 9.5rem;
}

.policy-hero {
  padding-top: 5rem;
  padding-bottom: 2rem;
  text-align: center;
}

.policy-card,
.contact-card {
  max-width: 860px;
  margin: 0 auto 4rem;
  padding: 2rem;
}

.policy-card h2,
.contact-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.policy-card h3,
.contact-card h3 {
  margin-top: 2rem;
}

.contact-card a {
  color: #6b4b37;
  font-weight: 700;
}

@media (min-width: 720px) {
  .social-proof-bar {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .comparison-grid,
  .offer,
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .desktop-nav {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero-visual {
    grid-template-columns: 1.05fr 0.85fr;
    align-items: end;
  }

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

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

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

  .sticky-mobile-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 3rem;
  }
}
