/* Winsteria — Organic Botanical */
:root {
  --sage: #87ae73;
  --sage-dark: #6b8e5a;
  --blush: #e8d5d0;
  --cream: #faf8f5;
  --earth: #3d3229;
  --font-display: 'Italiana', serif;
  --font-body: 'Lora', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.7; color: var(--earth); background: var(--cream); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background 0.3s, padding 0.3s;
}
.header.scrolled { background: rgba(250,248,245,0.95); backdrop-filter: blur(10px); padding: 0.75rem 3rem; }
.logo { font-family: var(--font-display); font-size: 1.75rem; font-weight: 400; color: var(--sage-dark); }
.nav { display: flex; gap: 2.5rem; }
.nav a { font-size: 0.95rem; color: var(--earth); }
.nav a:hover { color: var(--sage); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--sage); }

.hero-botanical {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 2;
}
.hero-inner { position: relative; height: 100vh; }
.hero-img { position: absolute; inset: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,50,41,0.5) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 4rem 2rem 8rem;
  text-align: center;
}
.hero-overlay h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); color: white; margin-bottom: 0.5rem; }
.hero-overlay p { color: rgba(255,255,255,0.95); margin-bottom: 1.5rem; }
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--sage);
  color: white;
  font-family: var(--font-body);
  transition: background 0.3s;
}
.btn:hover { background: var(--sage-dark); }

.collection { padding: 6rem 2rem; }
.section-intro { text-align: center; margin-bottom: 3rem; }
.label { font-size: 0.8rem; letter-spacing: 0.2em; color: var(--sage); margin-bottom: 0.5rem; display: block; }
.section-intro h2 { font-family: var(--font-display); font-size: 2.5rem; color: var(--earth); }
.flower-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.flower-card {
  text-align: center;
  transition: transform 0.3s;
}
.flower-card:hover { transform: translateY(-5px); }
.flower-img {
  border-radius: 50% 50% 45% 55% / 60% 40% 60% 40%;
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 1;
}
.flower-img img { width: 100%; height: 100%; object-fit: cover; }
.flower-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.25rem; color: var(--earth); }
.flower-card p { font-size: 0.9rem; color: var(--sage-dark); margin-bottom: 0.5rem; }
.flower-card a { color: var(--sage); font-style: italic; }

.about { padding: 5rem 2rem; background: var(--blush); }
.about-flow {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img img { border-radius: 0 80px 80px 0; }
.about-text .label { margin-bottom: 0.5rem; }
.about-text h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; color: var(--earth); }

.testimonials { padding: 5rem 2rem; }
.testimonial-flow {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-flow blockquote {
  padding: 2rem;
  font-style: italic;
  text-align: center;
  border-top: 3px solid var(--sage);
  color: var(--earth);
}

.newsletter { padding: 4rem 2rem; background: var(--sage); color: white; text-align: center; }
.newsletter-wrap h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 1rem; }
.newsletter-form { display: flex; gap: 0.5rem; max-width: 400px; margin: 0 auto; justify-content: center; }
.newsletter-form input { flex: 1; padding: 1rem; border: none; font-size: 1rem; }
.newsletter-form .btn { background: var(--earth); color: var(--cream); }

.contact { padding: 5rem 2rem; }
.contact-flow {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}
.contact-info h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1rem; }
.contact-info a { color: var(--sage); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea { padding: 1rem; border: 1px solid var(--blush); background: var(--cream); font-family: inherit; font-size: 1rem; }

.footer { padding: 2rem 3rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; border-top: 1px solid var(--blush); }
.footer .logo { font-size: 1.25rem; }
.footer a { color: var(--sage); }
.footer p { font-size: 0.9rem; color: var(--earth); opacity: 0.7; }

.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; padding: 1rem 2rem; background: var(--earth); color: var(--cream); z-index: 9999; transform: translateY(100%); transition: transform 0.3s; }
.cookie-banner.visible { transform: translateY(0); }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.cookie-content a { color: var(--sage); }

@media (max-width: 900px) {
  .flower-grid { grid-template-columns: 1fr; }
  .about-flow { grid-template-columns: 1fr; }
  .testimonial-flow { grid-template-columns: 1fr; }
  .contact-flow { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); padding: 1rem; }
}
