:root {
  --bg: #f7f1e6;
  --bg-soft: #fffaf3;
  --surface: rgba(255, 252, 247, 0.88);
  --text: #1c1a17;
  --muted: #60574d;
  --line: rgba(28, 26, 23, 0.12);
  --accent: #bf6b2f;
  --accent-dark: #7c4521;
  --olive: #687563;
  --shadow: 0 24px 60px rgba(45, 28, 12, 0.12);
  --radius: 28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(214, 154, 29, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(184, 74, 61, 0.1), transparent 28%),
    linear-gradient(180deg, #f7f1e6 0%, #f3ebdf 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  border-radius: 22px;
}

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

p,
li {
  color: var(--muted);
}

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

.site-nav,
.site-footer,
.hero,
.section,
.page-header,
.copy-block,
.faq-list article,
.product-hero,
.product-card,
.gallery-card,
.cta-panel {
  backdrop-filter: blur(16px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-nav,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
}

.site-nav {
  position: sticky;
  top: 12px;
  z-index: 20;
  margin-bottom: 24px;
}

.nav-links,
.button-row,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a,
.footer-links a {
  font-weight: 600;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font: inherit;
}

.brand img {
  border-radius: 0;
}

.hero,
.product-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  padding: 32px;
}

.hero {
  align-items: center;
}

.eyebrow,
.product-tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(191, 107, 47, 0.12);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-family: "Fraunces", serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text,
.page-header p,
.copy-block p,
.product-detail p {
  font-size: 1.05rem;
}

.hero-points,
.feature-bullets,
.number-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  min-height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: 260px;
  padding: 16px;
  background: rgba(28, 26, 23, 0.82);
  color: #f9f3ea;
  border-radius: 24px;
}

.hero-card p {
  margin: 0;
  color: inherit;
}

.hero-card-label {
  margin-bottom: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section,
.page-header,
.copy-block,
.faq-list article,
.cta-panel {
  margin-top: 24px;
  padding: 28px;
}

.section-heading {
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
}

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

.button-secondary {
  border: 1px solid var(--line);
}

.text-link {
  color: var(--accent-dark);
  font-weight: 700;
}

.product-grid,
.gallery-grid,
.feature-list,
.faq-list {
  display: grid;
  gap: 20px;
}

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

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

.product-card {
  overflow: hidden;
}

.product-image-link img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px 22px 0 0;
}

.product-card-body {
  padding: 22px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  font-weight: 700;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.feature-list article {
  padding: 20px;
  border-radius: 24px;
  background: var(--bg-soft);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.content-page,
.product-detail {
  max-width: 1200px;
  margin: 0 auto;
}

.page-header,
.copy-block,
.faq-list article {
  max-width: 860px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  margin: 10px 0 18px;
  color: var(--muted);
}

.product-price {
  margin: 10px 0;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text);
}

.product-hero-copy {
  align-self: center;
}

.gallery-card {
  padding: 16px;
}

.gallery-card figcaption {
  margin-top: 12px;
  color: var(--muted);
}

.site-footer {
  margin-top: 24px;
}

.footer-title {
  margin: 0 0 6px;
  color: var(--text);
  font-weight: 800;
}

@media (max-width: 960px) {
  .hero,
  .product-hero,
  .feature-split,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .gallery-grid,
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav,
  .site-footer {
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 14px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .product-grid,
  .gallery-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.7rem;
  }

  .hero,
  .section,
  .page-header,
  .copy-block,
  .faq-list article,
  .cta-panel,
  .product-hero {
    padding: 20px;
  }

  .hero-card {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .button-row,
  .footer-links {
    width: 100%;
    flex-wrap: wrap;
  }
}
