:root {
  --cream: #fcf6ea;
  --paper: #fffdf8;
  --forest: #314d20;
  --olive: #708b3a;
  --orange: #d98222;
  --brown: #55351f;
  --gold: #c6a15b;
  --text: #32271f;
  --muted: #6f655b;
  --line: #e7d9c1;
  --white: #fff;
  --shadow: 0 18px 48px rgba(73, 50, 26, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, 92%); margin: 0 auto; }
.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  left: 16px; top: 16px; width: auto; height: auto; padding: 10px 14px;
  background: var(--white); color: var(--forest); z-index: 9999; border-radius: 8px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: .83rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.eyebrow.light { color: #f8d69b; }
h1, h2, h3, h4 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.14;
  color: var(--forest);
}
h1 { font-size: clamp(2.75rem, 5.7vw, 5rem); margin-bottom: 22px; }
h2 { font-size: clamp(2.05rem, 4vw, 3.35rem); margin-bottom: 18px; }
h3 { font-size: 1.7rem; margin-bottom: 12px; }
p { margin-top: 0; }
.lead { font-size: 1.14rem; color: var(--muted); max-width: 720px; }
.section { padding: 92px 0; }
.section-head { max-width: 840px; margin-bottom: 42px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head p:last-child { color: var(--muted); font-size: 1.06rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 14px 24px; border-radius: 999px;
  border: 1.5px solid transparent; font-weight: 800; transition: .2s ease;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 12px 28px rgba(217, 130, 34, .24);
}
.btn-primary:hover { transform: translateY(-2px); background: #c87418; }
.btn-secondary {
  border-color: var(--forest); color: var(--forest); background: transparent;
}
.btn-secondary:hover { background: var(--forest); color: var(--white); }
.btn-text { color: var(--forest); border-color: var(--line); background: var(--paper); }
.btn-text:hover { background: #f6eddc; }
.btn-large { min-height: 58px; padding-inline: 32px; font-size: 1.06rem; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252, 246, 234, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-main { font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; font-weight: 700; color: var(--forest); }
.brand-sub { font-size: .82rem; color: var(--muted); margin-top: 4px; }
.site-menu {
  display: flex; align-items: center; gap: 22px; font-weight: 700; color: var(--brown);
}
.site-menu a:not(.btn):hover { color: var(--orange); }
.menu-toggle {
  display: none; background: var(--paper); color: var(--forest); border: 1px solid var(--line);
  border-radius: 12px; min-width: 48px; min-height: 48px; font-size: 1.3rem;
}

.hero {
  padding: 96px 0 80px;
  background:
    radial-gradient(circle at 12% 10%, rgba(217,130,34,.12), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(112,139,58,.12), transparent 28%);
}
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 52px; align-items: center; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 22px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row span {
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 16px; font-size: .95rem; font-weight: 700; color: var(--brown);
}
.hero-collage { position: relative; min-height: 640px; }
.hero-image {
  overflow: hidden; border-radius: 30px; box-shadow: var(--shadow); border: 1px solid var(--line);
  background: var(--paper);
}
.hero-image-large { width: 86%; margin-left: auto; }
.hero-image-small { width: 62%; position: absolute; left: 0; bottom: 14px; border: 8px solid var(--cream); }
.hero-image img { width: 100%; height: auto; }

.proof-bar { padding: 24px 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.proof-grid div { display: grid; gap: 3px; }
.proof-grid strong { color: var(--forest); font-size: 1.04rem; }
.proof-grid span { color: var(--muted); font-size: .96rem; }

.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.product-card {
  overflow: hidden; background: var(--paper); border: 1px solid var(--line);
  border-radius: 30px; box-shadow: var(--shadow);
}
.product-card > img { width: 100%; aspect-ratio: 1 / .95; object-fit: cover; }
.card-body { padding: 30px; }
.chip {
  display: inline-flex; background: #f7e7ca; color: var(--brown); border-radius: 999px;
  padding: 7px 14px; font-size: .88rem; font-weight: 800; margin-bottom: 16px;
}
.card-body p { color: var(--muted); }
.card-body ul, .local-seo-box ul { padding-left: 20px; margin: 18px 0 26px; color: var(--text); }
.card-body li, .local-seo-box li { margin-bottom: 8px; }
.card-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.value-section { background: var(--paper); border-block: 1px solid var(--line); }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-grid article {
  background: var(--cream); border: 1px solid var(--line); border-radius: 24px; padding: 28px;
}
.icon { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: #f7e7ca; font-size: 1.7rem; margin-bottom: 16px; }
.value-grid p { color: var(--muted); }

.split-section.alt { background: rgba(255,255,255,.48); }
.split-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 50px; align-items: center; }
.split-grid.reverse { grid-template-columns: 1.05fr .95fr; }
.split-grid.reverse .split-media { order: 2; }
.split-media {
  overflow: hidden; border-radius: 30px; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.split-copy > p { color: var(--muted); font-size: 1.06rem; }
.feature-list { display: grid; gap: 14px; margin: 24px 0 30px; }
.feature-list div {
  display: grid; gap: 3px; background: var(--paper); border: 1px solid var(--line);
  border-radius: 18px; padding: 16px 18px;
}
.feature-list strong { color: var(--forest); }
.feature-list span { color: var(--muted); }

.occasion-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.occasion-grid article {
  background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 26px;
}
.occasion-grid p { color: var(--muted); }
.gallery-banner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 34px; }
.gallery-banner img {
  width: 100%; border-radius: 28px; border: 1px solid var(--line); box-shadow: var(--shadow);
}

.faq-section { background: var(--paper); border-block: 1px solid var(--line); }
.faq-list { display: grid; gap: 16px; max-width: 920px; margin: 0 auto; }
details {
  background: var(--cream); border: 1px solid var(--line); border-radius: 20px; padding: 22px 24px;
}
summary {
  cursor: pointer; font-weight: 800; color: var(--forest); list-style: none;
}
summary::-webkit-details-marker { display: none; }
details p { color: var(--muted); margin: 14px 0 0; }

.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; align-items: start; }
.contact-card, .local-seo-box {
  background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: 24px;
}
.contact-card { margin-bottom: 18px; }
.contact-card p { color: var(--muted); font-size: 1.03rem; }
.contact-card a { color: var(--orange); font-weight: 800; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.local-seo-box p { color: var(--muted); }

.cta-section { padding: 24px 0 96px; }
.cta-box {
  display: flex; align-items: center; justify-content: space-between; gap: 34px;
  padding: 52px 44px; border-radius: 34px; background: linear-gradient(135deg, var(--forest), #47682e);
  box-shadow: var(--shadow); color: var(--white);
}
.cta-box h2 { color: var(--white); max-width: 720px; }
.cta-box p { max-width: 760px; color: rgba(255,255,255,.9); }

.site-footer { background: #f6ead6; border-top: 1px solid var(--line); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.3fr .9fr; gap: 28px; }
.footer-grid p { color: var(--muted); margin-bottom: 10px; }
.footer-grid a { color: var(--orange); font-weight: 800; }
.copyright { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .94rem; }

.floating-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 120;
  padding: 14px 18px; border-radius: 999px; background: #25d366; color: #fff; font-weight: 900;
  box-shadow: 0 14px 30px rgba(37,211,102,.35);
}

@media (max-width: 1040px) {
  .site-menu {
    display: none;
    position: absolute; top: 84px; left: 4%; right: 4%;
    flex-direction: column; align-items: stretch; gap: 12px; padding: 18px;
    border: 1px solid var(--line); border-radius: 20px; background: var(--paper); box-shadow: var(--shadow);
  }
  .site-menu.open { display: flex; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero-grid, .split-grid, .split-grid.reverse, .contact-grid { grid-template-columns: 1fr; }
  .split-grid.reverse .split-media { order: initial; }
  .hero-collage { min-height: auto; display: grid; gap: 20px; }
  .hero-image-large, .hero-image-small { width: 100%; position: static; margin: 0; border-width: 1px; }
  .product-grid, .value-grid, .occasion-grid, .gallery-banner, .proof-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 700px) {
  .nav-wrap { min-height: 78px; }
  .brand-main { font-size: 1.18rem; }
  .brand-sub { display: none; }
  .section { padding: 72px 0; }
  .hero { padding: 72px 0 62px; }
  .proof-grid, .product-grid, .value-grid, .occasion-grid, .gallery-banner, .footer-grid { grid-template-columns: 1fr; }
  .card-body, .value-grid article, .occasion-grid article, .contact-card, .local-seo-box { padding: 22px; }
  .cta-box { padding: 34px 24px; }
  .floating-wa { left: 18px; right: 18px; text-align: center; }
}

.testimonials-section {
  background: linear-gradient(180deg, rgba(255,255,255,.60), rgba(252,246,234,.94));
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.stars {
  color: #f4b400;
  letter-spacing: .08em;
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.review-card blockquote {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.65;
}
.reviewer {
  margin: 0;
  color: var(--forest);
  font-weight: 800;
}
.review-insight {
  margin-top: 28px;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: #f7e7ca;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--brown);
}
.review-insight strong {
  color: var(--forest);
}
.contact-intro {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
}
@media (max-width: 1040px) {
  .review-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .review-grid { grid-template-columns: 1fr; }
  .review-card { padding: 22px; }
}



.variants-section {
  background: linear-gradient(180deg, rgba(252,246,234,.96), rgba(255,253,248,.96));
  border-block: 1px solid var(--line);
}
.variant-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.variant-card {
  min-height: 250px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.variant-badge {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #f7e7ca;
  color: var(--orange);
  font-weight: 900;
}
.variant-card h3 { margin-bottom: 12px; }
.variant-card p { color: var(--muted); }
.variant-cta {
  margin-top: 28px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--forest);
  color: var(--white);
  border-radius: 28px;
}
.variant-cta h3 {
  color: var(--white);
  margin-bottom: 8px;
}
.variant-cta p {
  margin-bottom: 0;
  color: rgba(255,255,255,.9);
  max-width: 700px;
}
@media (max-width: 1040px) {
  .variant-grid { grid-template-columns: 1fr 1fr; }
  .variant-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 700px) {
  .variant-grid { grid-template-columns: 1fr; }
  .variant-card { min-height: auto; padding: 22px; }
  .variant-cta { padding: 24px; }
}
