:root {
  --charcoal: #141210;
  --black: #090806;
  --bronze: #b67438;
  --orange: #c85f2a;
  --walnut: #6d472f;
  --forest: #203d2f;
  --ivory: #fff8ec;
  --cream: #f7efe1;
  --copper: #d58a4a;
  --muted: #6b6257;
  --line: rgba(20, 18, 16, .14);
  --shadow: 0 24px 70px rgba(20, 18, 16, .16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 236, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(109, 71, 47, .14);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: .02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ivory);
  background: radial-gradient(circle at 52% 25%, #ffb15e 0 18%, #c85f2a 35%, #1d1712 78%);
  box-shadow: 0 10px 30px rgba(200, 95, 42, .34);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: .92rem;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--bronze);
  transition: width .24s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffaf0;
  color: var(--charcoal);
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--ivory);
  background: linear-gradient(135deg, var(--charcoal), var(--forest));
  box-shadow: 0 18px 38px rgba(20, 18, 16, .22);
}

.btn-bronze {
  color: var(--black);
  background: linear-gradient(135deg, #f4bc75, var(--bronze));
  box-shadow: 0 18px 38px rgba(182, 116, 56, .28);
}

.btn-ghost {
  color: var(--charcoal);
  border-color: rgba(20, 18, 16, .24);
  background: rgba(255, 248, 236, .74);
}

.btn-small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: .86rem;
}

.hero {
  min-height: 760px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--ivory);
  background: var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(8, 7, 5, .86) 0%, rgba(8, 7, 5, .54) 39%, rgba(8, 7, 5, .12) 100%), url("../img/hero-garden-fire.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroDrift 16s ease-in-out infinite alternate;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(9, 8, 6, .94), transparent);
  z-index: -1;
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.09) translate3d(-16px, -10px, 0); }
}

.hero-inner,
.section-inner,
.page-hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  padding: 150px 0 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--bronze);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.hero h1,
.page-hero h1,
.section-title h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: .96;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 8vw, 7.8rem);
}

.hero p {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: rgba(255, 248, 236, .86);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 236, .2);
  border-radius: 8px;
  background: rgba(255, 248, 236, .18);
}

.trust-strip span {
  padding: 18px;
  background: rgba(12, 10, 8, .48);
  font-weight: 800;
}

section {
  padding: 96px 0;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 38px;
}

.section-title h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-grid,
.seller-grid,
.checkout-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .7fr);
  gap: 34px;
  align-items: stretch;
}

.editorial-panel {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: var(--shadow);
}

.editorial-panel h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.editorial-panel p {
  color: var(--muted);
}

.feature-list,
.legal-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.feature-list li,
.legal-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-list i,
.legal-list i {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: #f4bc75;
}

.image-frame {
  min-height: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.benefits {
  background: #141210;
  color: var(--ivory);
}

.benefits .section-title p {
  color: rgba(255, 248, 236, .72);
}

.benefit-grid,
.trust-grid,
.inspiration-grid,
.product-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card,
.trust-card,
.inspiration-card,
.product-card,
.news-card,
.guide-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.benefit-card:hover,
.trust-card:hover,
.inspiration-card:hover,
.product-card:hover,
.news-card:hover,
.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(182, 116, 56, .38);
}

.benefit-card {
  background: rgba(255, 248, 236, .06);
  border-color: rgba(255, 248, 236, .16);
  padding: 28px;
}

.benefit-card i,
.trust-card i {
  color: var(--bronze);
  font-size: 1.45rem;
}

.benefit-card h3,
.trust-card h3,
.inspiration-card h3,
.product-card h3,
.news-card h3,
.guide-card h3 {
  margin: 14px 0 8px;
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.05;
}

.benefit-card p,
.trust-card p,
.inspiration-card p,
.product-card p,
.news-card p,
.guide-card p {
  margin: 0;
  color: var(--muted);
}

.benefit-card p {
  color: rgba(255, 248, 236, .72);
}

.product-card img,
.news-card img,
.inspiration-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-meta,
.price {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--bronze);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.price {
  margin-top: 16px;
  color: var(--forest);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--charcoal);
  background: #fffaf0;
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.active {
  color: var(--ivory);
  background: var(--charcoal);
}

.guide {
  background: linear-gradient(135deg, #fff8ec 0%, #f1e1c8 100%);
}

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

.guide-card,
.trust-card {
  padding: 26px;
}

.cta-band {
  padding: 90px 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 78% 22%, rgba(213, 138, 74, .44), transparent 32%),
    linear-gradient(135deg, #141210, #203d2f);
}

.cta-card {
  width: min(950px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.cta-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: .96;
}

.cta-card p {
  max-width: 740px;
  margin: 20px auto 30px;
  color: rgba(255, 248, 236, .78);
  font-size: 1.08rem;
}

.page-hero {
  padding: 88px 0 70px;
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(9, 8, 6, .86), rgba(9, 8, 6, .58)),
    url("../img/hero-garden-fire.webp") center/cover;
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 248, 236, .82);
  font-size: 1.08rem;
}

.content-page {
  padding: 70px 0;
}

.prose {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.prose h2,
.prose h3 {
  font-family: var(--serif);
  line-height: 1.05;
}

.prose h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.prose h3 {
  font-size: 1.8rem;
}

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

.notice {
  padding: 22px;
  border: 1px solid rgba(182, 116, 56, .34);
  border-radius: 8px;
  background: #fffaf0;
}

.payment-panel {
  display: grid;
  gap: 14px;
}

.payment-choice {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.payment-choice i {
  margin-right: 10px;
  color: var(--bronze);
}

.site-footer {
  color: rgba(255, 248, 236, .78);
  background: #0f0d0a;
  border-top: 1px solid rgba(255, 248, 236, .12);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-brand {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
}

.footer-disclaimer {
  margin-top: 16px;
  color: rgba(255, 248, 236, .72);
}

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

.footer-info h3,
.footer-links h3 {
  margin: 0 0 12px;
  color: var(--ivory);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.footer-info p {
  margin: 0 0 8px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a:hover {
  color: var(--bronze);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 248, 236, .12);
  font-size: .9rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(9, 8, 6, .7);
}

.modal.open {
  display: flex;
}

.modal-dialog {
  width: min(900px, 100%);
  max-height: 88vh;
  overflow: auto;
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

.modal-media {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.modal-content {
  padding: 30px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(9, 8, 6, .72);
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 22px;
    background: rgba(255, 248, 236, .98);
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .header-actions .btn {
    display: none;
  }

  .section-title,
  .intro-grid,
  .seller-grid,
  .checkout-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .benefit-grid,
  .trust-grid,
  .inspiration-grid,
  .product-grid,
  .news-grid,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 690px;
  }

  .hero-inner {
    padding-top: 118px;
  }

  .trust-strip,
  .benefit-grid,
  .trust-grid,
  .inspiration-grid,
  .product-grid,
  .news-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons,
  .card-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  section {
    padding: 68px 0;
  }
}
