:root {
  --bg: #f6f3ec;
  --bg-soft: #ece7db;
  --bg-card: #ffffff;
  --moss: #3a5a40;
  --moss-deep: #2a3f2e;
  --moss-soft: #6a8a6f;
  --olive: #8a9a5b;
  --sand: #d9cfb8;
  --sun: #c9a96e;
  --ink: #1f2620;
  --ink-soft: #4d564f;
  --ink-mute: #8a8f87;
  --line: rgba(58, 90, 64, 0.15);
  --radius: 18px;
  --radius-lg: 24px;
  --shadow-soft: 0 12px 40px rgba(42, 63, 46, 0.08);
  --shadow-hover: 0 24px 60px rgba(42, 63, 46, 0.14);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 1320px;
  --section-pad: 120px;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

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

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

h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.2rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }

p { color: var(--ink-soft); font-size: 1.02rem; }

.section { padding: var(--section-pad) 0; }

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

.section-head {
  max-width: 720px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-head p {
  margin-top: 18px;
  font-size: 1.08rem;
}

/* 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 {
  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);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--moss-deep);
}

.logo-mark {
  color: var(--moss);
  font-size: 1.3rem;
}

.nav-desktop {
  display: flex;
  gap: 38px;
}

.nav-desktop a {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--moss-deep);
}

.nav-desktop a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  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;
  width: 100%;
  height: 1.5px;
  background: var(--moss-deep);
  transition: 0.3s;
}

.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg);
  z-index: 200;
  padding: 100px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.08);
}

.mobile-menu.open { right: 0; }

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--moss-deep);
}

.close-menu {
  position: absolute;
  top: 28px;
  right: 32px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--moss-deep);
  cursor: pointer;
  line-height: 1;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  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(115deg, rgba(42,63,46,0.78) 0%, rgba(42,63,46,0.35) 60%, rgba(42,63,46,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  color: #fff;
}

.hero .eyebrow { color: rgba(255,255,255,0.8); }

.hero h1 {
  color: #fff;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero h1 em {
  font-style: italic;
  color: var(--sand);
}

.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--moss);
  color: #fff;
}

.btn-primary:hover {
  background: var(--moss-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(42, 63, 46, 0.25);
}

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

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.hero-meta {
  display: flex;
  gap: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  max-width: 600px;
}

.hero-meta div { color: rgba(255,255,255,0.85); }

.hero-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}

.hero-meta span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.intro-text h2 { margin-bottom: 24px; }
.intro-text p { font-size: 1.1rem; margin-bottom: 28px; }

.link-arrow {
  font-size: 0.95rem;
  color: var(--moss);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--moss);
  padding-bottom: 4px;
}

.link-arrow:hover { color: var(--moss-deep); }

.intro-image img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

/* SERVICES */
.services { background: var(--bg-soft); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  padding: 48px 40px;
  border-radius: var(--radius);
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--line);
}

.service-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--moss);
  font-style: italic;
  margin-bottom: 24px;
}

.service-card h3 { margin-bottom: 14px; }

/* SHOWCASE */
.showcase-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 360px 360px;
  gap: 24px;
}

.showcase-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  background: var(--moss-deep);
}

.showcase-item.large {
  grid-row: 1 / 3;
  grid-column: 1;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.showcase-item:hover img { transform: scale(1.05); }

.showcase-meta {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(42,63,46,0.85) 0%, transparent 60%);
  color: #fff;
}

.showcase-meta span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
}

.showcase-meta h4 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}

/* WHY */
.why { background: var(--bg-soft); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: center;
}

.why-image img {
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.why-content h2 { margin-bottom: 50px; }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.why-item {
  padding-left: 24px;
  border-left: 2px solid var(--moss);
}

.why-item h4 { margin-bottom: 8px; color: var(--moss-deep); }

/* TESTIMONIALS */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-grid blockquote {
  background: var(--bg-card);
  padding: 40px 36px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.testimonial-grid p {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--moss-deep);
  line-height: 1.5;
  margin-bottom: 24px;
}

.testimonial-grid cite {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-style: normal;
}

/* CTA */
.cta {
  background: var(--moss-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(201,169,110,0.15) 0%, transparent 50%);
}

.cta-inner {
  text-align: center;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.cta h2 {
  color: #fff;
  margin-bottom: 20px;
}

.cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

/* PAGE HERO */
.page-hero {
  padding: 200px 0 100px;
  background: var(--bg-soft);
  position: relative;
}

.page-hero h1 {
  margin-bottom: 18px;
  max-width: 900px;
}

.page-hero-sub {
  font-size: 1.15rem;
  max-width: 600px;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-text h2 { margin-bottom: 26px; }
.about-text p { margin-bottom: 18px; font-size: 1.05rem; }

.about-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(3, 1fr);
  gap: 28px;
}

.philosophy-card {
  background: var(--bg-card);
  padding: 48px 36px;
  border-radius: var(--radius);
  text-align: center;
}

.philosophy-card h3 {
  font-style: italic;
  color: var(--moss);
  margin-bottom: 16px;
}

.approach-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.approach-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.approach-item:last-child { border-bottom: none; }

.approach-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--moss);
  min-width: 60px;
}

.approach-item h4 { margin-bottom: 8px; color: var(--moss-deep); }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 90px;
}

.contact-info h3 {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--moss);
  margin-top: 32px;
  margin-bottom: 10px;
}

.contact-info h3:first-child { margin-top: 0; }

.contact-info p { font-size: 1rem; color: var(--ink); }

.contact-info a:hover { color: var(--moss); }

.contact-form {
  background: var(--bg-card);
  padding: 50px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}

.contact-form label {
  display: block;
  margin-bottom: 22px;
}

.contact-form span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.98rem;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.3s, background 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--moss);
  background: #fff;
}

.contact-form textarea { resize: vertical; }

.contact-form .btn-primary {
  margin-top: 8px;
  border: none;
  font-family: var(--sans);
}

.form-success {
  margin-top: 16px;
  color: var(--moss);
  font-size: 0.95rem;
}

/* LEGAL */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 48px;
  margin-bottom: 14px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p,
.legal-content ul {
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.75;
}

.legal-content ul { padding-left: 22px; }
.legal-content li { margin-bottom: 6px; color: var(--ink-soft); }

.legal-content a {
  color: var(--moss);
  border-bottom: 1px solid var(--moss);
}

/* FOOTER */
.site-footer {
  background: var(--moss-deep);
  color: rgba(255,255,255,0.75);
  padding: 90px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { color: #fff; margin-bottom: 14px; }
.footer-logo .logo-text { color: #fff; }
.footer-logo .logo-mark { color: var(--sand); }

.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
}

.site-footer h5 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
  font-weight: 600;
}

.site-footer a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.site-footer a:hover { color: #fff; }

.site-footer p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.footer-base {
  padding-top: 30px;
  text-align: center;
}

.footer-base p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}