/* Hero */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 8rem 3rem 4rem; gap: 4rem;
  background: var(--warm-white); position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; right: -5%; top: 5%;
  width: 55vw; height: 55vw; max-width: 650px; max-height: 650px;
  background: radial-gradient(circle, #dceede 0%, transparent 70%);
  border-radius: 50%; animation: float 8s ease-in-out infinite;
}
.hero-text { position: relative; z-index: 2; }
.hero-tag { display: inline-block; background: var(--light-sage); color: var(--forest); font-size: 0.78rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5vw, 4.2rem); line-height: 1.1; color: var(--forest); margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--earth); }
.hero p { font-size: 1.05rem; color: #555; line-height: 1.8; max-width: 420px; margin-bottom: 2.5rem; font-weight: 300; }
.hero-btns { display: flex; gap: 1rem; }
.hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; }

/* Carousel */
.hero-carousel { position: relative; width: min(480px, 100%); aspect-ratio: 4/3; border-radius: 24px; overflow: hidden; box-shadow: 0 30px 80px rgba(44,74,46,0.18); }
.hero-carousel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.8s ease; }
.hero-carousel img.active { opacity: 1; }
.carousel-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 3; }
.carousel-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.3s; }
.carousel-dots span.active { background: white; }

/* About */
.about { padding: 6rem 3rem; background: var(--forest); color: white; }
.about-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about h2 { font-family: 'Playfair Display', serif; font-size: 2.6rem; line-height: 1.2; margin-bottom: 1.5rem; }
.about h2 span { color: var(--gold); font-style: italic; }
.about p { font-size: 1rem; line-height: 1.85; opacity: 0.82; font-weight: 300; margin-bottom: 1rem; }
.feats { display: flex; flex-direction: column; gap: 1.2rem; }
.feat { display: flex; gap: 1rem; align-items: flex-start; }
.feat-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.feat h4 { font-size: 0.95rem; font-weight: 500; margin-bottom: 0.3rem; }
.feat p { font-size: 0.85rem; opacity: 0.65; line-height: 1.5; }

/* Products Page */
.products-header { padding: 9rem 3rem 2rem; background: var(--cream); }
.products-header h1 { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--forest); }
.products-header p { font-size: 1rem; color: #666; margin-top: 0.4rem; font-weight: 300; }
.products-grid { padding: 2rem 3rem 4rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.8rem; }

/* Contact Page */
.contact-wrap { padding: 9rem 3rem 5rem; max-width: 680px; margin: 0 auto; }
.contact-wrap h1 { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--forest); margin-bottom: 0.5rem; }
.contact-wrap > p { color: #666; font-weight: 300; margin-bottom: 3rem; line-height: 1.7; }
.ccards { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2.5rem; }
.ccard { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 1.4rem; display: flex; gap: 1.1rem; align-items: center; transition: all 0.2s; cursor: pointer; text-decoration: none; color: inherit; }
.ccard:hover { border-color: var(--sage); background: var(--light-sage); transform: translateX(4px); }
.ccard-icon { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; flex-shrink: 0; }
.ccard h3 { font-size: 0.93rem; font-weight: 500; margin-bottom: 0.18rem; }
.ccard p { font-size: 0.82rem; color: #888; font-weight: 300; }
.hours-box { background: var(--forest); color: white; border-radius: 16px; padding: 1.8rem; }
.hours-box h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; margin-bottom: 1.1rem; }
.hrow { display: flex; justify-content: space-between; padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.88rem; }
.hrow:last-child { border-bottom: none; }
.hrow span:last-child { opacity: 0.72; }

/* Footer */
footer { background: var(--charcoal); color: white; padding: 2.5rem 3rem; text-align: center; }
.flogo { font-family: 'Playfair Display', serif; font-size: 1.7rem; margin-bottom: 0.4rem; }
.flogo span { color: var(--gold); }
footer p { font-size: 0.82rem; opacity: 0.45; font-weight: 300; }

/* Responsive */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; text-align: center; }
  .hero::before { display: none; }
  .hero-btns { justify-content: center; flex-wrap: wrap; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about, .products-header, .contact-wrap, footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .products-grid { padding: 1.5rem; }
}
