:root {
  --bg: #f6f3ec;
  --bg-soft: #ece7da;
  --bg-warm: #f9f6f0;
  --green-deep: #1f3b2d;
  --green: #2e5a44;
  --green-soft: #6f8a6e;
  --moss: #88a07d;
  --sun: #c9a96a;
  --ink: #1a221d;
  --ink-soft: #4a554e;
  --muted: #8b9189;
  --line: rgba(31, 59, 45, 0.12);
  --shadow-soft: 0 20px 50px rgba(31, 59, 45, 0.08);
  --shadow-hover: 0 30px 70px rgba(31, 59, 45, 0.14);
  --radius: 18px;
  --radius-lg: 24px;
  --container: 1320px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s ease; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* Typography */
h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; line-height: 1.15; color: var(--green-deep); }
.display { font-size: clamp(2.2rem, 4.6vw, 4rem); line-height: 1.08; letter-spacing: -0.02em; }
.display em { font-style: italic; color: var(--green); }
h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); font-weight: 500; letter-spacing: -0.02em; }
h1 em { font-style: italic; color: var(--moss); font-weight: 400; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }
p { color: var(--ink-soft); font-size: 1.02rem; }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 640px; line-height: 1.6; }

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

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .4s ease;
}
.site-header.scrolled, .site-header.solid {
  background: rgba(246, 243, 236, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: -0.01em;
}
.logo span { font-style: italic; color: var(--green); margin-left: 4px; }
.nav-desktop { display: flex; gap: 36px; }
.nav-desktop a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 400;
  position: relative;
  padding: 6px 0;
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--green-deep); }
.nav-desktop a.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--green);
}
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 22px; height: 1.5px; background: var(--green-deep); display: block; }

.mobile-menu {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: 320px; max-width: 80%;
  background: var(--bg-warm);
  z-index: 200;
  padding: 80px 40px 40px;
  transition: right .45s cubic-bezier(.6,.05,.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.1);
}
.mobile-menu.open { right: 0; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 22px; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--green-deep);
}
.close-menu {
  position: absolute; top: 24px; right: 28px;
  font-size: 2rem; color: var(--green-deep);
  width: 40px; height: 40px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
  transition: all .35s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--green-deep);
  color: var(--bg-warm);
}
.btn-primary:hover {
  background: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(31, 59, 45, 0.22);
}
.btn-ghost {
  background: transparent;
  color: var(--green-deep);
  border: 1px solid var(--green-deep);
}
.btn-ghost:hover { background: var(--green-deep); color: var(--bg-warm); }

.link-arrow {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--green);
  font-weight: 500;
  margin-top: 16px;
  transition: transform .3s ease;
}
.link-arrow:hover { transform: translateX(6px); }

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(31,59,45,0.72) 0%, rgba(31,59,45,0.45) 50%, rgba(31,59,45,0.65) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  color: var(--bg-warm);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.hero-content .eyebrow { color: rgba(255,255,255,0.85); }
.hero-content h1 { color: #fff; max-width: 900px; }
.hero-content h1 em { color: #d8c89b; }
.hero-content .lead { color: rgba(255,255,255,0.85); margin: 28px 0 40px; max-width: 580px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-cta .btn-primary { background: var(--bg-warm); color: var(--green-deep); }
.hero-cta .btn-primary:hover { background: #fff; }
.hero-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.6); }
.hero-cta .btn-ghost:hover { background: rgba(255,255,255,0.95); color: var(--green-deep); border-color: #fff; }

.scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollPulse 2.4s ease infinite;
}

/* Intro */
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

/* Section heads */
.section-head { max-width: 720px; margin-bottom: 70px; }

/* Services */
.services { background: var(--bg-soft); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .5s ease, box-shadow .5s ease;
  box-shadow: var(--shadow-soft);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 28px;
}
.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 { margin-bottom: 12px; }

/* Showcase */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 24px;
}
.showcase-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.showcase-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.showcase-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.showcase-item:hover img { transform: scale(1.06); }
.showcase-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(31,59,45,0.85), transparent);
  color: var(--bg-warm);
}
.showcase-item figcaption span {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}
.showcase-item figcaption h4 {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-top: 6px;
}

/* Why */
.why { background: var(--bg-warm); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
}
.why-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-list { list-style: none; margin-top: 40px; }
.why-list li {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.why-list li:last-child { border-bottom: 1px solid var(--line); }
.why-list h4 { margin-bottom: 8px; color: var(--green-deep); }

/* Testimonials */
.testimonials { background: var(--bg-soft); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-grid blockquote {
  background: var(--bg-warm);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.testimonial-grid p {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--green-deep);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 28px;
}
.testimonial-grid cite {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
}
.testimonial-grid cite span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  color: var(--bg-warm);
  padding: 100px 0;
}
.cta-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.cta-section h2 { color: #fff; margin-bottom: 20px; }
.cta-section p { color: rgba(255,255,255,0.82); margin-bottom: 36px; font-size: 1.1rem; }
.cta-section .btn-primary { background: var(--bg-warm); color: var(--green-deep); }
.cta-section .btn-primary:hover { background: #fff; }

/* Footer */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.logo-footer { color: #fff; }
.logo-footer span { color: var(--moss); }
.footer-tag { color: rgba(255,255,255,0.6); margin-top: 16px; max-width: 280px; font-size: 0.95rem; }
.site-footer h5 {
  color: #fff;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.site-footer p, .site-footer a { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.8; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 6px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Page Hero */
.page-hero {
  padding: 200px 0 80px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 900px; color: var(--green-deep); }
.page-hero .lead { margin-top: 22px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text p { margin-top: 20px; }

.pillars { background: var(--bg-soft); }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pillar {
  background: var(--bg-warm);
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.pillar-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--moss);
  display: block;
  margin-bottom: 14px;
}
.pillar h3 { margin-bottom: 12px; }

.approach-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.approach-steps {
  list-style: none;
  margin: 50px 0 40px;
  text-align: left;
}
.approach-steps li {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.approach-steps li strong {
  color: var(--green-deep);
  font-weight: 500;
  margin-right: 12px;
  font-family: var(--serif);
  font-size: 1.3rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.info-block { margin-bottom: 36px; }
.info-block h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
  font-weight: 500;
}
.info-block p, .info-block a { color: var(--ink); font-size: 1.05rem; line-height: 1.7; }
.info-block a:hover { color: var(--green); }

.contact-form {
  background: var(--bg-warm);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.field { margin-bottom: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
  font-weight: 500;
}
.field label span { text-transform: none; letter-spacing: 0; color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg);
  color: var(--ink);
  transition: border-color .3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
}
.contact-form .btn { margin-top: 8px; }
.form-status {
  margin-top: 16px;
  color: var(--green);
  font-size: 0.95rem;
}

/* Legal pages */
.legal { max-width: 820px; }
.legal-doc h2 {
  font-size: 1.4rem;
  margin: 40px 0 14px;
  color: var(--green-deep);
}
.legal-doc h2:first-child { margin-top: 0; }
.legal-doc p, .legal-doc li {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-doc ul { padding-left: 22px; margin-bottom: 16px; }
.legal-doc a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.legal-doc a:hover { color: var(--green-deep); }