:root {
  /* Botanical palette */
  --bg: #f6f3ec;
  --bg-soft: #efeae0;
  --bg-card: #ffffff;
  --moss-deep: #1f3a2e;
  --moss: #2f5240;
  --moss-mid: #4a6b56;
  --sage: #8aa48d;
  --sand: #d9cdb6;
  --sun: #c9a96a;
  --ink: #1a1f1c;
  --ink-soft: #4a5550;
  --ink-mute: #7a847f;
  --line: rgba(31,58,46,0.12);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;

  --radius: 18px;
  --radius-lg: 24px;
  --shadow-soft: 0 20px 50px -25px rgba(31,58,46,0.18);
  --shadow-card: 0 8px 30px -12px rgba(31,58,46,0.15);

  --container: 1320px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--moss-deep);
  margin: 0 0 0.5em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; font-family: var(--sans); font-weight: 600; letter-spacing: .02em; }
em { font-style: italic; color: var(--moss-mid); }
p { margin: 0 0 1em; color: var(--ink-soft); }

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

.link-arrow {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 500;
  color: var(--moss-deep);
  border-bottom: 1px solid var(--moss-deep);
  padding-bottom: 3px;
  transition: gap .3s ease;
}
.link-arrow:hover { letter-spacing: 0.04em; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .35s ease;
}
.btn-primary {
  background: var(--moss-deep);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--moss);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn-ghost {
  background: transparent;
  color: var(--moss-deep);
  border-color: var(--moss-deep);
}
.btn-ghost:hover {
  background: var(--moss-deep);
  color: var(--bg);
}

/* 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, .site-header.solid {
  background: rgba(246,243,236,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--moss-deep);
  letter-spacing: 0.01em;
}
.logo span {
  font-style: italic;
  color: var(--moss-mid);
  margin-left: 4px;
}
.nav-desktop {
  display: flex;
  gap: 38px;
}
.nav-desktop a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav-desktop a.active, .nav-desktop a:hover {
  color: var(--moss-deep);
}
.nav-desktop a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 1px;
  background: var(--moss-deep);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  height: 1.5px;
  background: var(--moss-deep);
  display: block;
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-soft);
  z-index: 200;
  padding: 80px 40px;
  transition: right .45s cubic-bezier(0.7, 0, 0.3, 1);
  box-shadow: -20px 0 40px rgba(0,0,0,0.08);
}
.mobile-menu.open { right: 0; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--moss-deep);
}
.menu-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--moss-deep);
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.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,58,46,0.78) 0%, rgba(31,58,46,0.35) 60%, rgba(31,58,46,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 140px 32px 80px;
  max-width: 900px;
}
.hero-content .eyebrow { color: rgba(255,255,255,0.85); }
.hero-content h1 { color: #fff; font-weight: 400; }
.hero-content h1 em { color: var(--sand); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 24px 0 40px;
  line-height: 1.7;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-cta .btn-primary { background: var(--bg); color: var(--moss-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: #fff; color: var(--moss-deep); border-color: #fff; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-scroll span {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}
.hero-scroll span::before {
  content: '';
  position: absolute;
  top: -50%; left: 0;
  width: 100%; height: 50%;
  background: #fff;
  animation: scrollLine 2.4s ease-in-out infinite;
}
.hero-scroll p {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
@keyframes scrollLine {
  0% { top: -50%; } 100% { top: 100%; }
}

/* Sections */
section { padding: 120px 0; }
.section-head { max-width: 700px; margin-bottom: 70px; }
.section-head p { font-size: 1.1rem; color: var(--ink-mute); }

/* Intro */
.intro { background: var(--bg-soft); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.intro-image img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all .5s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--moss);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; margin: 0; }

/* Showcase */
.showcase { background: var(--bg-soft); }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  grid-auto-rows: 320px;
}
.showcase-item {
  position: relative;
  margin: 0;
  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 1.2s ease;
}
.showcase-item:hover img { transform: scale(1.06); }
.showcase-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  color: #fff;
  background: linear-gradient(to top, rgba(31,58,46,0.85), transparent);
}
.showcase-item figcaption span {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.85;
}
.showcase-item figcaption h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  margin: 6px 0 0;
}

/* Why Us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.why-image img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.principle-list { list-style: none; padding: 0; margin: 32px 0 0; }
.principle-list li {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.principle-list li:last-child { border-bottom: 1px solid var(--line); }
.principle-list h4 {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 600;
  margin-bottom: 10px;
}
.principle-list p { margin: 0; font-size: 1rem; }

/* Testimonials */
.testimonials { background: var(--bg-soft); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-grid blockquote {
  background: var(--bg-card);
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  margin: 0;
  border: 1px solid var(--line);
}
.testimonial-grid p {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--moss-deep);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-grid cite {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}

/* CTA */
.cta {
  background: var(--moss-deep);
  color: var(--bg);
  text-align: center;
}
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta h2 { color: #fff; font-size: clamp(2.2rem, 4vw, 3.4rem); }
.cta p { color: rgba(246,243,236,0.78); font-size: 1.15rem; margin-bottom: 36px; }
.cta .btn-primary { background: var(--bg); color: var(--moss-deep); }
.cta .btn-primary:hover { background: #fff; }

/* Page Hero (inner pages) */
.page-hero {
  padding: 180px 0 90px;
  background: var(--bg-soft);
}
.page-hero h1 { max-width: 900px; }
.page-sub {
  font-size: 1.2rem;
  color: var(--ink-mute);
  max-width: 640px;
  margin-top: 16px;
}

/* About — story */
.story-grid, .approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.story-image img, .approach-image img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.philosophy { background: var(--bg-soft); }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.phi-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.phi-card h3 { font-size: 1.5rem; }

.steps { list-style: none; padding: 0; margin: 24px 0 0; }
.steps li {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps strong { color: var(--moss-deep); display: inline-block; margin-right: 10px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.contact-info h3 {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
  margin-top: 36px;
  margin-bottom: 8px;
  font-weight: 600;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { font-size: 1.05rem; color: var(--ink); }
.contact-info .address { font-family: var(--serif); font-size: 1.4rem; color: var(--moss-deep); line-height: 1.4; }

.contact-form {
  background: var(--bg-card);
  padding: 50px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 8px;
  font-weight: 600;
}
.field label span { font-weight: 400; color: var(--ink-mute); text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--moss);
}
.field textarea { resize: vertical; }
.form-success {
  display: none;
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--bg-soft);
  color: var(--moss-deep);
  border-radius: 12px;
  font-size: 0.95rem;
}

/* Legal */
.legal { padding: 90px 0 120px; }
.legal-content { max-width: 820px; }
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content ul { font-size: 1rem; }
.legal-content ul { padding-left: 22px; color: var(--ink-soft); }
.legal-content ul li { margin-bottom: 8px; }
.legal-content a { color: var(--moss); border-bottom: 1px solid var(--line); }

/* Footer */
.site-footer {
  background: var(--moss-deep);
  color: rgba(246,243,236,0.75);
  padding: 90px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { color: #fff; display: inline-block; margin-bottom: 18px; }
.footer-logo span { color: var(--sand); }
.footer-tag { font-size: 0.95rem; max-width: 280px; }
.site-footer h5 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
  font-weight: 600;
}
.site-footer a {
  display: block;
  font-size: 0.95rem;
  color: rgba(246,243,236,0.7);
  padding: 4px 0;
}
.site-footer a:hover { color: #fff; }
.site-footer p { font-size: 0.95rem; color: rgba(246,243,236,0.7); margin: 0 0 12px; }
.footer-bottom {
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
}
.footer-bottom p { margin: 0; color: rgba(246,243,236,0.55); }