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

:root {
  --cream: #f5f2ec;
  --white: #ffffff;
  --black: #111010;
  --green: #2d4a2d;
  --green-mid: #3a5e3a;
  --sage: #8aab7e;
  --sage-pale: #e8f0e5;
  --tan: #c9b48a;
  --gray: #767676;
  --border: rgba(0,0,0,0.09);
  --mint: #c9d8d5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; font-weight: 300; overflow-x: hidden; background: var(--cream); color: var(--black); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 64px;
  transition: all 0.4s;
}
nav.scrolled {
  background: rgba(245,242,236,0.96);
  backdrop-filter: blur(14px);
  padding: 17px 64px;
  border-bottom: 1px solid var(--border);
}
nav.solid {
  background: rgba(245,242,236,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.lw { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.ls { width: 42px; height: 42px; flex-shrink: 0; }
.ln { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 500; letter-spacing: 0.12em; color: var(--green); line-height: 1; }
.lb { font-size: 7.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--tan); margin-top: 3px; }
.nl { display: flex; gap: 36px; list-style: none; }
.nl a { text-decoration: none; font-size: 14px; letter-spacing: 0.05em; font-weight: 400; color: rgba(0,0,0,0.72); transition: color 0.2s; }
.nl a:hover, .nl a.active { color: var(--green); }
.nc { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; color: #fff; background: var(--green); padding: 10px 24px; transition: background 0.25s; white-space: nowrap; }
.nc:hover { background: var(--green-mid); }

/* ── HOMEPAGE HERO ── */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  overflow: hidden;
  display: flex; align-items: center;
  background-color: var(--mint);
}
.hero-img {
  position: absolute; inset: 0;
  background-image: url('img/hero.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 65% center;
}
/* Top/bottom fade to blend with mint bg */
.hero-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, var(--mint) 0%, rgba(201,216,213,0.5) 10%, transparent 22%,
      transparent 78%, rgba(201,216,213,0.5) 90%, var(--mint) 100%),
    linear-gradient(to right, rgba(245,242,236,0.98) 0%, rgba(245,242,236,0.94) 26%,
      rgba(245,242,236,0.65) 44%, rgba(245,242,236,0.12) 60%, transparent 74%);
}
.hero-content { position: relative; z-index: 2; padding: 0 64px; max-width: 560px; }
.eyebrow { display: flex; align-items: center; gap: 12px; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--sage); margin-bottom: 26px; opacity: 0; animation: fadeup 0.9s 0.3s forwards; }
.eyebrow-line { width: 32px; height: 1px; background: var(--sage); flex-shrink: 0; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(40px, 4.8vw, 72px); font-weight: 400; line-height: 1.08; color: var(--green); margin-bottom: 18px; opacity: 0; animation: fadeup 0.9s 0.45s forwards; }
.hero h1 em { font-style: italic; color: var(--tan); }
.hero-desc { font-size: 14.5px; line-height: 1.88; color: var(--gray); max-width: 410px; margin-bottom: 36px; opacity: 0; animation: fadeup 0.9s 0.6s forwards; }
.hero-btns { opacity: 0; animation: fadeup 0.9s 0.75s forwards; }
.btn-dark { background: var(--green); color: #fff; padding: 12px 28px; text-decoration: none; font-size: 11.5px; letter-spacing: 0.09em; text-transform: uppercase; transition: background 0.25s; display: inline-block; }
.btn-dark:hover { background: var(--green-mid); }
@keyframes fadeup { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

/* ── INTRO CARDS ── */
.intro { padding: 86px 64px; background: var(--white); }
.intro-top { margin-bottom: 48px; }
.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.tc { background: var(--cream); padding: 34px 28px 38px; text-decoration: none; color: var(--black); border-top: 2px solid transparent; transition: all 0.3s; display: block; }
.tc:hover { border-color: var(--sage); background: var(--sage-pale); }
.tcn { font-family: 'Playfair Display', serif; font-size: 32px; color: rgba(45,74,45,0.07); line-height: 1; margin-bottom: 12px; }
.tct { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 400; color: var(--green); margin-bottom: 8px; }
.tcd { font-size: 12.5px; line-height: 1.8; color: var(--gray); margin-bottom: 16px; }
.tcl { font-size: 11px; color: var(--sage); border-bottom: 1px solid var(--sage); padding-bottom: 1px; }

/* ── PAGE HERO (inner pages) ── */
.phero {
  position: relative;
  height: 52vh; min-height: 360px;
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding-bottom: 56px;
  margin-top: 73px; /* nav height */
}
.phero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 40%;
}
.phero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,18,8,0.8) 0%, rgba(8,18,8,0.3) 55%, rgba(8,18,8,0.08) 100%);
}
.phero-content { position: relative; z-index: 2; padding: 0 64px; }
.phero-label { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(138,171,126,0.9); margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.phero-label::before { content: ''; display: block; width: 26px; height: 1px; background: rgba(138,171,126,0.8); }
.phero h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 56px); font-weight: 400; line-height: 1.1; color: #fff; }
.phero h1 em { font-style: italic; color: rgba(201,180,138,0.95); }

/* ── CONTENT ── */
.content { padding: 80px 64px; background: var(--cream); }
.sec-label { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--sage); margin-bottom: 16px; display: flex; align-items: center; gap: 11px; }
.sec-label::after { content: ''; display: block; width: 24px; height: 1px; background: var(--sage); }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(22px, 2.6vw, 38px); font-weight: 400; line-height: 1.18; margin-bottom: 18px; }
.bt { font-size: 15px; line-height: 1.9; color: var(--gray); margin-bottom: 14px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

/* Pill list */
.pill { display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.pill-item { background: var(--white); display: grid; grid-template-columns: 44px 1fr; }
.pill-num { display: flex; align-items: flex-start; justify-content: center; padding: 22px 0; background: var(--sage-pale); font-family: 'Playfair Display', serif; font-size: 14px; color: var(--tan); }
.pill-body { padding: 22px 24px; }
.pill-title { font-size: 14.5px; font-weight: 500; color: var(--green); margin-bottom: 4px; }
.pill-desc { font-size: 13px; line-height: 1.75; color: var(--gray); }

/* Why cards */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); margin-top: 44px; }
.why-card { background: var(--white); padding: 34px 28px; border-top: 2px solid transparent; transition: all 0.3s; }
.why-card:hover { border-color: var(--sage); background: var(--sage-pale); }
.why-n { font-family: 'Playfair Display', serif; font-size: 34px; color: rgba(45,74,45,0.08); line-height: 1; margin-bottom: 12px; }
.why-title { font-size: 15px; font-weight: 500; color: var(--green); margin-bottom: 8px; }
.why-desc { font-size: 13px; line-height: 1.8; color: var(--gray); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.cinfo { display: flex; flex-direction: column; gap: 22px; margin-top: 24px; }
.citem { display: flex; gap: 16px; align-items: flex-start; }
.cicon { width: 38px; height: 38px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.clabel { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); margin-bottom: 3px; }
.cval { font-size: 14px; line-height: 1.6; color: var(--black); }
.cform { background: var(--white); padding: 44px; }
.fg { margin-bottom: 20px; }
.fg label { display: block; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray); margin-bottom: 7px; }
.fg input, .fg textarea, .fg select { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(0,0,0,0.15); padding: 9px 0; font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 300; color: var(--black); outline: none; transition: border-color 0.25s; -webkit-appearance: none; appearance: none; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--green); }
.fg textarea { resize: vertical; min-height: 90px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fsub { background: var(--green); color: #fff; border: none; padding: 13px 40px; font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; width: 100%; transition: background 0.25s; margin-top: 6px; }
.fsub:hover { background: var(--green-mid); }

/* CTA band */
.cta-band { background: var(--green); padding: 68px 64px; display: flex; justify-content: space-between; align-items: center; }
.cta-band h2 { color: #fff; margin: 0; max-width: 480px; }
.btn-white { display: inline-block; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.38); color: #fff; padding: 12px 30px; text-decoration: none; font-size: 12px; letter-spacing: 0.09em; text-transform: uppercase; transition: all 0.25s; font-family: 'Jost', sans-serif; }
.btn-white:hover { background: rgba(255,255,255,0.28); }

/* Footer */
footer { background: var(--black); color: #fff; padding: 52px 64px 26px; }
.ft { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 22px; }
.fn { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 500; letter-spacing: 0.1em; }
.fsb { font-size: 7.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--tan); margin-top: 4px; margin-bottom: 14px; }
.fta { font-family: 'Playfair Display', serif; font-style: italic; font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.65; }
.fl { display: flex; gap: 56px; }
.flt { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tan); margin-bottom: 14px; }
.fll { list-style: none; }
.fll li { margin-bottom: 8px; }
.fll a { text-decoration: none; font-size: 13px; color: rgba(255,255,255,0.38); transition: color 0.2s; }
.fll a:hover { color: #fff; }
.fb { display: flex; justify-content: space-between; }
.fc { font-size: 11px; color: rgba(255,255,255,0.2); }

/* Scroll reveal */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 0.7s, transform 0.7s; }
.rv.on { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-img { background-size: cover; background-position: 65% center; }
}
@media (max-width: 768px) {
  nav, nav.scrolled, nav.solid { padding: 16px 24px; }
  .nl { display: none; }
  .hero-content { padding: 0 24px; }
  .hero-img { background-size: cover; background-position: 65% center; }
  .hero-fade { background: linear-gradient(to bottom, rgba(245,242,236,0.85) 0%, rgba(245,242,236,0.6) 40%, transparent 100%); }
  .hero h1 { font-size: clamp(36px, 8vw, 52px); }
  .intro { padding: 56px 24px; }
  .three { grid-template-columns: 1fr; }
  .phero { margin-top: 56px; min-height: 280px; }
  .phero-content { padding: 0 24px; }
  .content { padding: 56px 24px; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cform { padding: 28px 20px; }
  .frow { grid-template-columns: 1fr; }
  .cta-band { padding: 52px 24px; flex-direction: column; gap: 24px; align-items: flex-start; }
  footer { padding: 44px 24px 24px; }
  .ft { flex-direction: column; gap: 32px; }
}
