@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --cream: #F8F3EC;
  --warm-white: #FDFAF6;
  --deep-green: #2C3E2D;
  --sage: #7A9E7E;
  --sage-light: #A8C5AB;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --charcoal: #2A2A2A;
  --text-mid: #5A5A5A;
  --text-light: #8A8A8A;
  --border: rgba(122,158,126,0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,250,246,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: box-shadow .3s;
}
header.scrolled { box-shadow: 0 4px 32px rgba(44,62,45,0.08); }

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--deep-green);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.logo span { color: var(--gold); }

nav { display: flex; align-items: center; gap: 2.5rem; }
nav a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-mid);
  text-decoration: none; position: relative; padding-bottom: 2px;
  transition: color .3s;
}
nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s;
}
nav a:hover, nav a.active { color: var(--deep-green); }
nav a:hover::after, nav a.active::after { transform: scaleX(1); transform-origin: left; }

.btn {
  display: inline-block; padding: 0.65rem 1.8rem;
  font-family: 'Jost', sans-serif; font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .3s;
}
.btn-primary {
  background: var(--deep-green); color: var(--cream);
}
.btn-primary:hover { background: var(--gold); color: var(--deep-green); }
.btn-outline {
  background: transparent; color: var(--deep-green);
  border: 1px solid var(--deep-green);
}
.btn-outline:hover { background: var(--deep-green); color: var(--cream); }
.btn-gold {
  background: var(--gold); color: var(--deep-green);
}
.btn-gold:hover { background: var(--deep-green); color: var(--cream); }

/* Mobile menu */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--deep-green); transition: all .3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--deep-green) 0%, #3d5c3e 50%, #2C3E2D 100%);
  display: flex; align-items: center;
  padding: 120px 2rem 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(201,169,110,0.12) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(122,158,126,0.15) 0%, transparent 50%);
}
.hero-leaves {
  position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 800'%3E%3Cellipse cx='400' cy='200' rx='180' ry='120' fill='none' stroke='rgba(201,169,110,0.15)' stroke-width='1'/%3E%3Cellipse cx='350' cy='400' rx='200' ry='140' fill='none' stroke='rgba(201,169,110,0.1)' stroke-width='1'/%3E%3Cellipse cx='450' cy='600' rx='160' ry='100' fill='none' stroke='rgba(201,169,110,0.12)' stroke-width='1'/%3E%3Cpath d='M300 100 Q480 300 350 600' stroke='rgba(168,197,171,0.2)' stroke-width='1' fill='none'/%3E%3Cpath d='M400 0 Q550 200 420 500' stroke='rgba(168,197,171,0.15)' stroke-width='1' fill='none'/%3E%3C/svg%3E") center/cover no-repeat;
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1.15;
  color: var(--cream); margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p {
  font-size: 1rem; color: rgba(248,243,236,0.75);
  max-width: 480px; margin-bottom: 2.5rem; line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badge {
  position: absolute; bottom: 60px; right: 8%;
  background: rgba(253,250,246,0.08);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 1.2rem 1.8rem; text-align: center;
  backdrop-filter: blur(10px);
}
.hero-badge strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold); }
.hero-badge span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(248,243,236,0.6); }

/* ── ADDRESS BAR ── */
.address-bar {
  background: var(--deep-green); color: var(--cream);
  padding: 0.9rem 2rem;
  display: flex; justify-content: center; align-items: center; gap: 3rem;
  flex-wrap: wrap;
}
.address-bar a { color: var(--gold-light); text-decoration: none; font-size: 0.85rem; }
.address-bar a:hover { color: var(--gold); }
.address-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; }
.address-item svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.7; }

/* ── SECTIONS ── */
section { padding: 90px 2rem; }
.container { max-width: 1140px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400; line-height: 1.25;
  color: var(--deep-green); margin-bottom: 1.2rem;
}
.section-subtitle {
  font-size: 1rem; color: var(--text-mid);
  max-width: 560px; line-height: 1.8;
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--cream); padding: 70px 2rem;
}
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; max-width: 1140px; margin: 0 auto;
}
.intro-visual {
  position: relative;
}
.intro-block {
  background: var(--deep-green);
  aspect-ratio: 3/4; max-height: 420px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.intro-block::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 40% 60%, rgba(201,169,110,0.2) 0%, transparent 60%);
}
.intro-block-icon {
  font-size: 6rem; opacity: 0.15; position: absolute;
  bottom: 1rem; right: 1rem;
}
.intro-block-text {
  position: relative; z-index: 2; padding: 2rem; text-align: center;
}
.intro-block-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-style: italic;
  color: var(--gold-light); line-height: 1.6;
}
.intro-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  background: var(--gold); opacity: 0.4;
}

/* ── SERVICES ── */
.services-section { background: var(--warm-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 4rem;
}
.service-card {
  background: var(--cream); padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: all .4s; cursor: default;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s;
}
.service-card:hover { background: var(--deep-green); transform: translateY(-4px); }
.service-card:hover .service-name,
.service-card:hover .service-desc { color: var(--cream); }
.service-card:hover .service-num { color: var(--gold); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: var(--gold-light); line-height: 1;
  margin-bottom: 1.2rem; transition: color .4s;
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400;
  color: var(--deep-green); margin-bottom: 0.8rem;
  transition: color .4s;
}
.service-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; transition: color .4s; }

/* ── ABOUT STRIP ── */
.about-strip { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: center; max-width: 1140px; margin: 0 auto;
}
.about-values { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.about-value {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold);
  background: rgba(201,169,110,0.06);
}
.about-value strong { font-weight: 500; font-size: 0.9rem; color: var(--deep-green); }

/* ── STATS ── */
.stats-section {
  background: var(--deep-green); padding: 70px 2rem;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; max-width: 900px; margin: 0 auto;
}
.stat-item {
  text-align: center; padding: 3rem 2rem;
  border-right: 1px solid rgba(201,169,110,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300;
  color: var(--gold); display: block;
}
.stat-label {
  font-size: 0.78rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(248,243,236,0.6);
  margin-top: 0.3rem;
}

/* ── FAQ ── */
.faq-section { background: var(--warm-white); }
.faq-list { max-width: 800px; margin: 4rem auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.5rem 0; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-q-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 400; color: var(--deep-green);
}
.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s; color: var(--gold); font-size: 0.9rem;
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--deep-green); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s ease;
}
.faq-a-inner { padding: 0 0 1.5rem; font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--deep-green) 0%, #4a6b4c 100%);
  padding: 90px 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,169,110,0.15) 0%, transparent 70%);
}
.cta-section .section-title { color: var(--cream); }
.cta-section .section-subtitle { color: rgba(248,243,236,0.7); margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── CONTACT PAGE ── */
.contact-hero {
  background: var(--deep-green); padding: 140px 2rem 80px;
  text-align: center;
}
.contact-hero .section-title { color: var(--cream); }
.contact-hero .section-subtitle { color: rgba(248,243,236,0.7); margin: 0 auto; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4rem; max-width: 1000px; margin: 0 auto;
  padding: 80px 2rem;
}
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--deep-green); margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--cream); border: 1px solid var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.contact-detail p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }
.contact-detail strong { display: block; color: var(--deep-green); margin-bottom: 0.2rem; font-weight: 500; }

.contact-form { background: var(--cream); padding: 2.5rem; }
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--deep-green); margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  background: var(--warm-white);
  font-family: 'Jost', sans-serif; font-size: 0.9rem;
  color: var(--charcoal); outline: none;
  transition: border-color .3s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── ABOUT PAGE ── */
.about-hero {
  background: var(--deep-green); padding: 140px 2rem 80px;
}
.about-hero .section-title { color: var(--cream); font-size: clamp(2.5rem, 4vw, 3.5rem); }
.about-hero .section-subtitle { color: rgba(248,243,236,0.75); }

.about-story { padding: 80px 2rem; background: var(--cream); }
.about-story-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 5rem; align-items: start; max-width: 1140px; margin: 0 auto;
}
.about-story p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 1.2rem; }

.mission-section { background: var(--warm-white); padding: 80px 2rem; }
.mission-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.mission-card {
  padding: 2rem; border: 1px solid var(--border);
  text-align: center;
}
.mission-card .icon {
  font-size: 2rem; margin-bottom: 1rem; display: block;
}
.mission-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--deep-green); margin-bottom: 0.6rem;
}
.mission-card p { font-size: 0.88rem; color: var(--text-mid); }

.team-callout {
  background: var(--deep-green); padding: 70px 2rem; text-align: center;
}
.team-callout .section-title { color: var(--cream); }
.team-callout p { color: rgba(248,243,236,0.75); max-width: 620px; margin: 1rem auto 2rem; }

/* ── FOOTER ── */
footer {
  background: #1a2b1b; padding: 60px 2rem 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem; max-width: 1140px; margin: 0 auto 3rem;
}
.footer-brand .logo { font-size: 1.4rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(248,243,236,0.5); margin-top: 0.8rem; line-height: 1.7; }
.footer-col h5 {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col a, .footer-col p {
  display: block; font-size: 0.85rem;
  color: rgba(248,243,236,0.55); text-decoration: none;
  margin-bottom: 0.6rem; transition: color .3s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(248,243,236,0.08);
  padding-top: 1.5rem; text-align: center;
  font-size: 0.78rem; color: rgba(248,243,236,0.3);
  max-width: 1140px; margin: 0 auto;
}
.social-links { display: flex; gap: 0.8rem; margin-top: 1rem; }
.social-link {
  width: 34px; height: 34px; border: 1px solid rgba(248,243,236,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(248,243,236,0.5); text-decoration: none; font-size: 0.8rem;
  transition: all .3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ── PAGE TRANSITIONS ── */
.page { display: none; }
.page.active { display: block; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { display: none; }
  nav.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
  }
  nav.open a { padding: 0.8rem 0; border-bottom: 1px solid var(--border); }
  nav.open .btn { margin-top: 1rem; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .intro-grid, .about-grid, .about-story-grid, .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(201,169,110,0.2); }
  .stat-item:last-child { border-bottom: none; }
  .mission-grid { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
  .hero { padding: 110px 1.5rem 60px; }
  section { padding: 60px 1.5rem; }
}
