/* ========== Reset ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #1a2e1a;
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.25; }
ul { list-style: none; }

/* ========== Tokens ========== */
:root {
  --sage: #d4e6c3;
  --sage-light: #eef4e8;
  --sage-mid: #b8d4a3;
  --green-dark: #1a2e1a;
  --green-text: #2d4a2d;
  --ali-color: #6b9e6b;
  --white: #ffffff;
  --radius: 8px;
  --max: 1080px;
}

/* ========== Layout ========== */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}
.section-sage {
  background: var(--sage-light);
}
.section-heading {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 48px;
}

/* ========== Nav ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,46,26,0.06);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green-dark);
}
.nav-logo span { color: var(--ali-color); font-weight: 600; }
.nav-cta {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 10px 24px;
  border: 1px solid var(--green-dark);
  border-radius: 100px;
  transition: all 0.25s ease;
}
.nav-cta:hover {
  background: var(--green-dark);
  color: var(--white);
}

/* ========== Hero ========== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--sage-light);
  padding-top: 60px;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px 60px 0;
  margin-left: auto;
  max-width: 540px;
  width: 100%;
  padding-left: 24px;
}
.hero-photo {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  max-height: 100vh;
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 400;
  color: var(--green-dark);
  letter-spacing: 0.02em;
}
.brand span { color: var(--ali-color); font-weight: 600; }
.tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--green-text);
  margin-top: 12px;
  font-weight: 300;
}
.hero .btn {
  margin-top: 32px;
  align-self: flex-start;
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
  background: var(--green-dark);
  color: var(--white);
  border: 2px solid var(--green-dark);
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn:hover {
  background: transparent;
  color: var(--green-dark);
}
.hero .btn {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.hero .btn:hover {
  background: transparent;
  color: var(--green-dark);
}
.btn-lg {
  padding: 16px 48px;
  font-size: 1rem;
  margin-top: 32px;
}

/* ========== Split Layout ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-reverse .split-text { order: 2; }
.split-reverse .split-img { order: 1; }
.split-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 24px;
  color: var(--green-dark);
}
.split-text p {
  color: var(--green-text);
  margin-bottom: 16px;
}
.split-img img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* ========== Values ========== */
.values {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.values li {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ali-color);
  padding-left: 16px;
  position: relative;
}
.values li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--sage-mid);
  border-radius: 50%;
}

/* ========== Services Grid ========== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(26,46,26,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,46,26,0.06);
}
.card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--green-dark);
}
.card p {
  font-size: 0.9rem;
  color: var(--green-text);
  line-height: 1.6;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(26,46,26,0.1);
}
.faq-item summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--green-dark);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ali-color);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--ali-color); }
.faq-item p {
  padding: 0 0 20px;
  font-size: 0.9rem;
  color: var(--green-text);
  line-height: 1.7;
}

/* ========== Contact ========== */
.contact-wrap {
  text-align: center;
}
.contact-sub {
  color: var(--green-text);
  margin-bottom: 36px;
  font-size: 1rem;
}
.contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--green-dark);
  padding: 12px 28px;
  border: 1px solid rgba(26,46,26,0.12);
  border-radius: 100px;
  transition: all 0.2s ease;
}
.contact-link:hover {
  background: var(--sage-light);
  border-color: var(--sage-mid);
}
.contact-link svg {
  flex-shrink: 0;
  color: var(--ali-color);
}

/* ========== Footer ========== */
.footer {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.footer-img-wrap {
  position: absolute;
  inset: 0;
}
.footer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.footer-dim {
  position: absolute;
  inset: 0;
  background: rgba(10,20,10,0.7);
}
.footer-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
  color: var(--white);
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
}
.footer-brand span { color: var(--sage); font-weight: 600; }
.footer-tag {
  margin-top: 8px;
  font-size: 0.95rem;
  opacity: 0.8;
  font-weight: 300;
}
.footer-copy {
  margin-top: 24px;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ========== Sparkles ========== */
.sparkle {
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
}
.sparkle svg {
  fill: var(--ali-color);
}
.hero-text {
  position: relative;
}
.sparkle-hero-1 {
  width: 48px;
  top: -20px;
  right: 40px;
}
.sparkle-hero-2 {
  width: 24px;
  bottom: 60px;
  left: -10px;
  opacity: 0.1;
}
.footer-inner {
  position: relative;
}
.sparkle-footer {
  width: 32px;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
}
.sparkle-footer svg {
  fill: var(--sage);
}

/* ========== Scroll Animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-reverse .split-text { order: 1; }
  .split-reverse .split-img { order: 2; }
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-text {
    padding: 100px 24px 48px;
    max-width: none;
    text-align: center;
    align-items: center;
  }
  .hero .btn {
    align-self: center;
  }
  .hero-photo {
    max-height: 70vh;
  }
  .brand {
    font-size: 3.2rem;
  }
  .contact-links {
    width: 100%;
  }
  .contact-link {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
