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

:root {
  --sage: #7a9e7e;
  --sage-dark: #5b7e5f;
  --sage-light: #e8f0e9;
  --blush: #e8c4c4;
  --blush-light: #f7eded;
  --cream: #fdf9f3;
  --warm-white: #fefcf8;
  --text: #3d3d3d;
  --text-light: #777;
  --brown: #8b7355;
  --brown-light: #c4a882;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--warm-white);
}

a {
  color: var(--sage-dark);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--brown);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.8rem;
}

.amp {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--blush);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  background: var(--sage);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn:hover {
  background: var(--sage-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--sage);
  color: var(--sage-dark);
}

.btn-outline:hover {
  background: var(--sage);
  color: #fff;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 249, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122, 158, 126, 0.15);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.brand:hover {
  color: var(--text);
}

.logo-icon {
  color: var(--sage);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sage-dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 26px;
  height: 18px;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  position: absolute;
  left: 0;
  transition: all 0.3s;
  border-radius: 1px;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

.menu-toggle.active span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { bottom: 50%; transform: rotate(-45deg); }

/* ===== PAGE HERO ===== */
.page-hero-botanical {
  padding: 8rem 0 3rem;
  background: var(--sage-light);
  text-align: center;
}

.page-hero-botanical h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}

.page-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 550px;
  margin: 0 auto;
}

/* ===== HERO (INDEX) ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  min-height: 90vh;
}

.hero-tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 420px;
}

.hero-images {
  position: relative;
  height: 520px;
}

.hero-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

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

.hero-img-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 75%;
  z-index: 1;
}

.hero-img-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 45%;
  z-index: 2;
  border: 4px solid var(--warm-white);
}

/* ===== INTRO ===== */
.intro {
  background: var(--sage-light);
  padding: 3.5rem 2rem;
  text-align: center;
}

.intro-inner {
  max-width: 650px;
  margin: 0 auto;
}

.intro-leaf {
  margin-bottom: 1rem;
  color: var(--sage);
}

.intro p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--sage-dark);
}

/* ===== SHOP / PRODUCTS ===== */
.shop,
.products-full {
  padding: 5rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.4rem;
  color: var(--text);
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.product-section {
  margin-bottom: 4rem;
}

.product-section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--sage-light);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--blush);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.product-text {
  padding: 1.3rem 1.5rem 1.5rem;
}

.product-text h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.product-text p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.price {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--sage-dark);
}

/* ===== WRAPPING SERVICE ===== */
.wrapping {
  padding: 5rem 0;
  background: var(--cream);
}

.wrapping-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.wrapping-main-img {
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.wrapping-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.wrapping-text > p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.wrapping-options {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wrapping-option {
  background: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: 10px;
  border-left: 3px solid var(--sage);
}

.wrapping-option h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.wrapping-option p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  padding: 4rem 0;
  text-align: center;
  background: var(--blush-light);
}

.testimonial blockquote {
  max-width: 600px;
  margin: 0 auto;
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1rem;
}

.testimonial cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 400;
}

/* ===== ECO BANNER ===== */
.eco-banner {
  padding: 4rem 0;
  background: var(--sage-light);
}

.eco-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.eco-inner h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.eco-inner p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* ===== ABOUT ===== */
.about {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.about-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

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

/* ===== ABOUT VALUES ===== */
.about-values {
  padding: 5rem 0;
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.value-item {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  border-left: 3px solid var(--sage);
}

.value-item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.value-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== PRODUCTS NOTE ===== */
.products-note {
  padding: 4rem 0;
  background: var(--blush-light);
}

.note-inner {
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
}

.note-inner h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.note-inner p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* ===== GUIDE ARTICLE ===== */
.guide-article {
  padding: 4rem 0;
}

.guide-body {
  max-width: 750px;
  margin: 0 auto;
}

.guide-body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--text);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.guide-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.guide-wide-img {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
}

.guide-wide-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.guide-img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.guide-img-pair img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
}

.guide-list {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.guide-list li {
  font-size: 0.92rem;
  color: var(--text-light);
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  line-height: 1.7;
  border-bottom: 1px solid var(--sage-light);
}

.guide-list li:last-child {
  border-bottom: none;
}

.guide-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.9rem;
}

.guide-list li strong {
  color: var(--text);
  font-weight: 700;
}

.guide-callout {
  background: var(--sage-light);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
}

.guide-callout h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.guide-callout p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 4rem 0;
  background: var(--sage-light);
}

.newsletter-inner {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.newsletter p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.newsletter-form input {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid #ccc;
  border-radius: 50px;
  width: 260px;
  background: #fff;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input:focus {
  border-color: var(--sage);
}

.newsletter-form .btn {
  padding: 0.8rem 1.8rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--text);
  color: #bbb;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #555;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
}

.footer-logo .amp {
  color: var(--blush);
}

.footer-brand p {
  font-size: 0.82rem;
  color: #888;
  margin-top: 0.8rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ddd;
  margin-bottom: 0.8rem;
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 0.4rem;
}

.footer-col a:hover {
  color: var(--sage);
}

.footer-address {
  font-size: 0.82rem;
  color: #888;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #666;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.6rem;
  }

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

  .page-hero-botanical h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0.8rem 1.5rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(122, 158, 126, 0.2);
  }

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 6rem 1.5rem 2rem;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-images {
    height: 350px;
  }

  .hero-img-1 {
    width: 70%;
    height: 70%;
  }

  .hero-img-2 {
    width: 50%;
    height: 45%;
  }

  .page-hero-botanical {
    padding: 6rem 0 2rem;
  }

  .page-hero-botanical h1 {
    font-size: 2rem;
  }

  .shop,
  .products-full {
    padding: 3rem 0;
  }

  .section-head h2 {
    font-size: 1.8rem;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .wrapping {
    padding: 3rem 0;
  }

  .wrapping-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wrapping-images {
    order: -1;
  }

  .wrapping-text h2 {
    font-size: 1.8rem;
  }

  .about {
    padding: 3rem 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

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

  .guide-body h2 {
    font-size: 1.5rem;
  }

  .guide-wide-img img {
    height: 220px;
  }

  .guide-img-pair {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form input {
    width: 100%;
    max-width: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .page-hero-botanical h1 {
    font-size: 1.6rem;
  }

  .hero-images {
    height: 280px;
  }

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

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

  .testimonial p {
    font-size: 1.1rem;
  }
}

.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }
