/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #1B4332;
  --green-light: #2D6A4F;
  --green-muted: #40916C;
  --cream:       #F1F5E8;
  --cream-dark:  #E8EDDE;
  --white:       #FAFDF5;
  --text:        #1A2E23;
  --text-muted:  #5C7A66;
  --line:        rgba(27, 67, 50, 0.12);
  --line-strong: rgba(27, 67, 50, 0.25);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', -apple-system, sans-serif;

  --fs-xs:   clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --fs-sm:   clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  --fs-base: clamp(0.9rem, 0.85rem + 0.3vw, 1rem);
  --fs-md:   clamp(1rem, 0.9rem + 0.4vw, 1.15rem);
  --fs-lg:   clamp(1.15rem, 1rem + 0.5vw, 1.4rem);
  --fs-xl:   clamp(1.5rem, 1.2rem + 1.5vw, 2.2rem);
  --fs-2xl:  clamp(2rem, 1.4rem + 3vw, 3.5rem);
  --fs-3xl:  clamp(2.5rem, 1.6rem + 4vw, 4.5rem);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* ── Typography ───────────────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-muted);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: var(--fs-2xl);
  line-height: 1.15;
  color: var(--green);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--green);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(27, 67, 50, 0.25);
}

.btn-full { width: 100%; }

/* ── Header ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 253, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(27, 67, 50, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--green);
  letter-spacing: 0.02em;
}

.logo-mark {
  font-size: 0.7rem;
  color: var(--green-muted);
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav a {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.3s ease;
}

.nav a:hover { color: var(--green); }
.nav a:hover::after { width: 100%; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle .line {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--green);
  transition: all 0.3s ease;
}

.menu-toggle.active .line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.menu-toggle.active .line:nth-child(2) {
  opacity: 0;
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(250, 253, 245, 0.98);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 300;
  color: var(--green);
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
}

.mobile-nav-link:hover { opacity: 0.6; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 72px);
}

.hero-text {
  padding-right: 4rem;
  padding-bottom: 4rem;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-muted);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: var(--fs-3xl);
  line-height: 1.05;
  color: var(--green);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: var(--fs-md);
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.hero-image {
  position: relative;
  height: 75vh;
  min-height: 500px;
}

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

.hero-divider {
  width: 100%;
  height: 1px;
  background: var(--line-strong);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem clamp(1.5rem, 4vw, 4rem) 0;
  max-width: 1280px;
  margin: 0 auto;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.meta-dot {
  color: var(--green-muted);
  font-size: 1.2rem;
  line-height: 1;
}

/* ── Products ─────────────────────────────────────── */
.products {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream);
}

.products .container { max-width: 1280px; }

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

.product-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(27, 67, 50, 0.1);
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-info {
  padding: 1.8rem 1.5rem;
  border-top: 1px solid var(--line);
}

.product-info h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── About ────────────────────────────────────────── */
.about {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-image-wrap {
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-content { padding-top: 1rem; }

.about-content p {
  font-size: var(--fs-md);
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Visit ────────────────────────────────────────── */
.visit {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream);
}

.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.visit-info { padding-top: 0.5rem; }

.visit-address {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 400;
  font-style: normal;
  color: var(--green);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.visit-divider {
  width: 100%;
  height: 1px;
  background: var(--line-strong);
  margin: 2rem 0;
}

.visit-hours-label {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-muted);
  margin-bottom: 1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-md);
  color: var(--text);
}

.hours-row span:last-child {
  color: var(--text-muted);
  font-weight: 300;
}

.visit-note {
  margin-top: 1.5rem;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-style: italic;
}

.visit-map {
  overflow: hidden;
  background: var(--cream-dark);
  min-height: 450px;
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: block;
}

/* ── Contact ──────────────────────────────────────── */
.contact {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--green);
  color: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-left .section-label { color: var(--green-muted); }

.contact-left .section-heading {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.contact-left > p {
  font-size: var(--fs-md);
  line-height: 1.8;
  color: rgba(241, 245, 232, 0.7);
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: opacity 0.3s ease;
}

.contact-item:hover { opacity: 0.75; }

.contact-item-label {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-muted);
}

.contact-item-value {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--cream);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-muted);
}

.form-group input,
.form-group textarea {
  background: rgba(250, 253, 245, 0.07);
  border: 1px solid rgba(241, 245, 232, 0.2);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 300;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  border-radius: 0;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(241, 245, 232, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(241, 245, 232, 0.5);
  background: rgba(250, 253, 245, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-success {
  display: none;
  padding: 1rem 1.2rem;
  background: rgba(241, 245, 232, 0.1);
  border-left: 2px solid var(--green-muted);
  font-size: var(--fs-sm);
  color: var(--cream);
  line-height: 1.6;
}

.form-success.show { display: block; }

/* ── Footer ───────────────────────────────────────── */
.footer {
  padding: 3rem 0;
  background: var(--green);
  border-top: 1px solid rgba(241, 245, 232, 0.1);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(241, 245, 232, 0.08);
  margin-bottom: 2rem;
}

.footer .logo { color: var(--cream); }
.footer .logo-mark { color: var(--green-muted); }

.footer-tagline {
  font-size: var(--fs-sm);
  color: rgba(241, 245, 232, 0.5);
  font-weight: 300;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: rgba(241, 245, 232, 0.4);
  letter-spacing: 0.04em;
}

/* ── Scroll animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-text { padding-right: 0; }
  .hero-image { height: 55vh; min-height: 400px; }
  .about-grid { gap: 3rem; }
  .visit-layout { gap: 3rem; }
  .contact-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }

  .hero { min-height: auto; padding-top: 72px; padding-bottom: 3rem; }
  .hero-grid { min-height: auto; padding-bottom: 2rem; }
  .hero-text { padding-bottom: 2rem; }
  .hero-image { height: 45vh; min-height: 300px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 0.4rem; }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-image-wrap img { aspect-ratio: 3/4; }
  .about-stats { gap: 2rem; }

  .visit-layout { grid-template-columns: 1fr; }
  .visit-map { min-height: 300px; }
  .visit-map iframe { min-height: 300px; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
}

@media (max-width: 480px) {
  .header-inner { height: 64px; }
  .site-header { padding: 0; }
  .hero-grid { padding: 0 clamp(1.2rem, 5vw, 2rem); }
  .hero-divider { padding: 0 clamp(1.2rem, 5vw, 2rem); }
  .hero-meta { padding: 1rem clamp(1.2rem, 5vw, 2rem) 0; }
}
