:root {
  --bg: #f5f1ea;
  --bg-alt: #ebe5da;
  --cream: #faf7f1;
  --moss: #5e7a4a;
  --moss-dark: #3a4d2e;
  --forest: #1f2c1a;
  --sand: #d9cdb5;
  --sun: #c8a96a;
  --ink: #1f2c1a;
  --ink-soft: #4a5440;
  --muted: #8a8576;
  --line: rgba(31, 44, 26, 0.12);
  --max: 1320px;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow: 0 20px 60px -30px rgba(31, 44, 26, 0.25);
  --shadow-soft: 0 8px 30px -15px rgba(31, 44, 26, 0.15);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--moss); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.section { padding: 120px 0; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.15; color: var(--forest); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
h1 em { font-style: italic; color: var(--moss); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.5rem; font-weight: 500; }
h4 { font-size: 1.2rem; }
p { color: var(--ink-soft); font-size: 1.02rem; }
.muted { color: var(--muted); font-size: 0.92rem; }

.eyebrow, .section-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--moss);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 24px;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .4s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(245, 241, 234, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--forest); }
.logo-mark { color: var(--moss); font-size: 1.1rem; transition: transform .6s ease; }
.logo:hover .logo-mark { transform: rotate(180deg); }

.nav-desktop { display: flex; gap: 36px; }
.nav-desktop a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
}
.nav-desktop a.active, .nav-desktop a:hover { color: var(--forest); }
.nav-desktop a.active::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: var(--moss);
}

.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 24px;
  flex-direction: column; justify-content: space-between;
}
.menu-toggle span { display: block; height: 1px; background: var(--forest); width: 100%; }
.menu-toggle span:nth-child(2) { width: 70%; align-self: flex-end; }

.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 320px; max-width: 85%;
  height: 100vh;
  background: var(--cream);
  z-index: 200;
  padding: 80px 40px;
  transition: right .5s cubic-bezier(.7,0,.3,1);
  box-shadow: -20px 0 60px -20px rgba(31, 44, 26, 0.2);
}
.mobile-menu.open { right: 0; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 22px; }
.mobile-menu a { font-family: var(--serif); font-size: 1.6rem; color: var(--forest); }
.close-menu {
  position: absolute; top: 24px; right: 30px;
  background: none; border: none;
  font-size: 2rem; color: var(--forest); cursor: pointer;
  font-family: var(--serif);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: slowZoom 20s ease-out forwards; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(245,241,234,0.4) 0%, rgba(245,241,234,0.85) 60%, var(--bg) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 880px; }
.hero-sub { font-size: 1.15rem; max-width: 540px; margin: 28px 0 44px; color: var(--ink-soft); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--moss);
  z-index: 2;
  animation: floatY 3s ease-in-out infinite;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all .35s ease;
  border: 1px solid transparent;
  font-family: var(--sans);
}
.btn-primary {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover { background: var(--moss); color: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-ghost:hover { background: var(--forest); color: var(--cream); }

/* INTRO */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.intro-grid p + p { margin-top: 16px; }

/* SECTION HEAD */
.section-head { margin-bottom: 72px; max-width: 700px; }

/* SERVICES */
.services { background: var(--bg-alt); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .5s ease, box-shadow .5s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-img { aspect-ratio: 16/10; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-card h3 { padding: 28px 32px 8px; }
.service-card p { padding: 0 32px 32px; font-size: 0.96rem; }

/* SHOWCASE */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 380px 380px;
  gap: 24px;
}
.show-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.show-item.large { grid-row: span 2; grid-column: span 1; }
.show-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.show-item:hover img { transform: scale(1.06); }
.show-item figcaption {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  color: var(--cream);
  z-index: 2;
}
.show-item figcaption span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.8;
}
.show-item figcaption h4 { color: var(--cream); margin-top: 6px; font-size: 1.3rem; }
.show-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31, 44, 26, 0.7) 100%);
  z-index: 1;
}

/* WHY */
.why { background: var(--forest); color: var(--cream); }
.why h2, .why .section-label { color: var(--cream); }
.why .section-label { color: var(--sun); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.why-card {
  padding: 40px 0;
  border-top: 1px solid rgba(250, 247, 241, 0.15);
}
.why-num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--sun);
  display: block;
  margin-bottom: 24px;
}
.why-card h3 { color: var(--cream); margin-bottom: 14px; }
.why-card p { color: rgba(250, 247, 241, 0.7); }

/* TESTIMONIALS */
.testimonials { background: var(--bg-alt); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.testimonial-grid blockquote {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-lg);
}
.testimonial-grid p {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--forest);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-grid cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--moss);
  letter-spacing: 0.05em;
}

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--moss) 0%, var(--moss-dark) 100%);
  color: var(--cream);
  text-align: center;
}
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-band h2 { color: var(--cream); margin-bottom: 18px; }
.cta-band p { color: rgba(250, 247, 241, 0.85); margin-bottom: 36px; font-size: 1.1rem; }
.cta-band .btn-primary { background: var(--cream); color: var(--forest); }
.cta-band .btn-primary:hover { background: var(--sun); color: var(--forest); }

/* PAGE HERO */
.page-hero {
  padding: 200px 0 80px;
  background: var(--bg-alt);
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
.page-sub { font-size: 1.1rem; color: var(--ink-soft); margin-top: 20px; max-width: 580px; }

/* STORY */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-text h2 { margin-bottom: 24px; }
.story-text p + p { margin-top: 18px; }

/* PHILOSOPHY */
.philosophy { background: var(--bg-alt); }
.phil-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.phil-card {
  background: var(--cream);
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.phil-card h3 { margin-bottom: 14px; }

/* APPROACH */
.approach { max-width: 880px; }
.approach h2 { margin-bottom: 56px; }
.approach-list { list-style: none; }
.approach-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.approach-list li:last-child { border-bottom: 1px solid var(--line); }
.approach-list li span {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--moss);
}
.approach-list h4 { margin-bottom: 8px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.contact-info h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--moss);
  font-weight: 500;
  margin: 32px 0 10px;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { color: var(--forest); }

.contact-form {
  background: var(--cream);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.field { margin-bottom: 24px; }
.field label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  margin-bottom: 10px;
  font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--forest);
  transition: border-color .3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--moss);
}
.field textarea { resize: vertical; }
.form-success {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--moss);
  opacity: 0;
  transition: opacity .4s ease;
}
.form-success.show { opacity: 1; }

/* LEGAL */
.legal { max-width: 820px; }
.legal h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
  color: var(--forest);
}
.legal h2:first-child { margin-top: 0; }
.legal p { margin-bottom: 12px; }
.legal a { color: var(--moss); border-bottom: 1px solid var(--moss); }

/* FOOTER */
.site-footer {
  background: var(--forest);
  color: rgba(250, 247, 241, 0.75);
  padding: 100px 0 40px;
}
.site-footer .logo { color: var(--cream); }
.site-footer h5 {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sun);
  font-weight: 500;
  margin-bottom: 18px;
}
.site-footer p, .site-footer a { font-size: 0.92rem; }
.site-footer a:hover { color: var(--sun); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250, 247, 241, 0.1);
}
.footer-tag { margin-top: 18px; max-width: 280px; font-size: 0.9rem; }
.foot-links { list-style: none; }
.foot-links li { margin-bottom: 10px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  font-size: 0.82rem;
  color: rgba(250, 247, 241, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}