:root {
  --bg: #f6f3ec;
  --bg-alt: #ecead9;
  --surface: #ffffff;
  --forest: #2c3a2a;
  --moss: #4a6b4a;
  --sage: #8aa784;
  --sand: #d9c9a3;
  --sun: #d4a857;
  --ink: #1f2a1d;
  --ink-soft: #5b6657;
  --line: rgba(44, 58, 42, 0.12);
  --shadow: 0 20px 60px rgba(44, 58, 42, 0.08);
  --shadow-soft: 0 10px 30px rgba(44, 58, 42, 0.06);
  --radius: 18px;
  --radius-lg: 24px;
  --max: 1320px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.3s ease, color 0.3s ease; }

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--forest);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); }
h3 { font-size: 1.5rem; }
h1 em, h2 em { font-style: italic; color: var(--moss); }

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

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.4s ease;
  background: transparent;
}
.site-header.scrolled, .site-header.solid {
  background: rgba(246, 243, 236, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.logo span { color: var(--moss); font-style: italic; margin-left: 4px; }

.main-nav { display: flex; gap: 36px; align-items: center; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover { color: var(--moss); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%;
  height: 1px;
  background: var(--moss);
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--forest); transition: 0.3s; }
.nav-close { display: none; background: none; border: none; font-size: 2rem; color: var(--forest); cursor: pointer; position: absolute; top: 20px; right: 24px; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.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(135deg, rgba(31, 42, 29, 0.65) 0%, rgba(44, 58, 42, 0.35) 60%, rgba(74, 107, 74, 0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 880px;
  padding-top: 100px;
  padding-bottom: 80px;
}
.hero-content .eyebrow { color: rgba(255,255,255,0.85); }
.hero-content h1 { color: #fff; margin-bottom: 28px; }
.hero-content h1 em { color: var(--sand); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 14px;
}
.hero-scroll span {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.5);
  display: inline-block;
  animation: scrollPulse 2s ease infinite;
}

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

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.link-arrow {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--moss);
  border-bottom: 1px solid var(--moss);
  padding-bottom: 3px;
  transition: 0.3s;
}
.link-arrow:hover { color: var(--forest); border-color: var(--forest); }

/* SECTIONS */
section { padding: 120px 0; }

.section-head { max-width: 700px; margin-bottom: 70px; }

.intro { background: var(--bg); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

/* SERVICES */
.services { background: var(--bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: var(--shadow-soft);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-img { height: 240px; overflow: hidden; }
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-card h3 { padding: 28px 28px 12px; }
.service-card p { padding: 0 28px 32px; color: var(--ink-soft); font-size: 0.95rem; }

/* SHOWCASE */
.showcase { background: var(--bg); }
.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;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}
.showcase-item.large { grid-row: span 2; grid-column: span 2; }
.showcase-item.wide { grid-column: span 2; }
.showcase-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.showcase-item:hover img { transform: scale(1.05); }
.showcase-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(31,42,29,0.85) 0%, transparent 100%);
  color: #fff;
}
.showcase-meta span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}
.showcase-meta h4 { color: #fff; margin-top: 6px; font-size: 1.3rem; }

/* WHY */
.why { background: var(--forest); color: var(--bg); }
.why h2 { color: var(--bg); }
.why .section-label { color: var(--sand); }
.why-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: start; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 36px; }
.why-list li { padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.why-list li:last-child { border-bottom: none; }
.why-list h4 { color: var(--sand); font-family: var(--sans); font-weight: 500; font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.why-list p { color: rgba(255,255,255,0.78); font-size: 1.05rem; line-height: 1.7; }

/* TESTIMONIALS */
.testimonials { background: var(--bg-alt); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial-grid blockquote {
  background: var(--surface);
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.testimonial-grid blockquote::before {
  content: '"';
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--sage);
  position: absolute;
  top: 10px; left: 24px;
  line-height: 1;
  opacity: 0.4;
}
.testimonial-grid p {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.55;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-grid cite { font-style: normal; font-size: 0.88rem; color: var(--ink-soft); }

/* CTA BAND */
.cta-band {
  background: var(--bg);
  padding: 100px 0;
}
.cta-inner {
  background: linear-gradient(135deg, var(--moss) 0%, var(--forest) 100%);
  border-radius: var(--radius-lg);
  padding: 90px 60px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-inner h2 { color: #fff; max-width: 720px; margin: 0 auto 18px; }
.cta-inner p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-inner .btn-primary { background: var(--bg); color: var(--forest); }
.cta-inner .btn-primary:hover { background: var(--sand); }

/* PAGE HERO */
.page-hero {
  padding: 200px 0 100px;
  background: var(--bg-alt);
}
.page-hero h1 { max-width: 900px; margin-bottom: 24px; }
.page-sub { font-size: 1.2rem; color: var(--ink-soft); max-width: 680px; }

/* ABOUT */
.about-story { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; }
.about-image img { width: 100%; height: 600px; object-fit: cover; }
.about-text p { color: var(--ink-soft); margin-bottom: 1.2rem; font-size: 1.05rem; line-height: 1.8; }

.philosophy { background: var(--bg-alt); }
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.philosophy-grid > div {
  background: var(--surface);
  padding: 50px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.philosophy-grid h3 { margin-bottom: 14px; color: var(--moss); }
.philosophy-grid p { color: var(--ink-soft); }

.approach { background: var(--bg); }
.approach-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.approach-steps { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.approach-steps li {
  background: var(--surface);
  padding: 28px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.approach-steps strong {
  display: block;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 6px;
}

/* CONTACT */
.contact-section { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.info-block { margin-bottom: 28px; }
.info-block h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 8px;
  font-weight: 500;
}
.info-block p, .info-block a { color: var(--ink); font-size: 1rem; line-height: 1.7; }
.info-block a:hover { color: var(--moss); }

.contact-form {
  background: var(--surface);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  transition: 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--moss);
  background: #fff;
}
.field textarea { resize: vertical; }

.form-success {
  display: none;
  margin-top: 20px;
  color: var(--moss);
  font-size: 0.95rem;
}
.form-success.visible { display: block; }

/* LEGAL */
.legal-section { background: var(--bg); padding: 100px 0; }
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 14px;
  color: var(--forest);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-content a { color: var(--moss); border-bottom: 1px solid var(--moss); }

/* FOOTER */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,0.78);
  padding: 90px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.site-footer .logo { color: #fff; }
.site-footer .logo span { color: var(--sand); }
.footer-tag { margin-top: 16px; font-size: 0.92rem; line-height: 1.7; max-width: 320px; }
.site-footer h5 {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 22px;
  font-weight: 500;
}
.site-footer a {
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.site-footer a:hover { color: #fff; }
.site-footer p { font-size: 0.95rem; margin-bottom: 12px; line-height: 1.7; }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}