:root {
  --ivory: #f6f3ee;
  --paper: #fffdf9;
  --stone: #dcd6cc;
  --olive: #5f6f55;
  --olive-dark: #465343;
  --charcoal: #2b2b2b;
  --ink: #22201d;
  --muted: #706c64;
  --line: rgba(70, 83, 67, 0.18);
  --shadow: 0 24px 80px rgba(36, 32, 26, 0.09);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1180px, 88vw); margin: 0 auto; }

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(3.3rem, 6.4vw, 6.8rem); color: var(--paper); }
h2 { font-size: clamp(2.7rem, 4.4vw, 5.1rem); }
h3 { font-size: clamp(1.6rem, 2.2vw, 2.3rem); }
p { font-size: 1rem; color: var(--muted); margin-bottom: 1.15rem; }

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.83);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(70, 83, 67, 0.08);
  transition: background 0.45s ease, box-shadow 0.45s ease, transform 0.45s ease;
}
.site-header.is-scrolled { background: rgba(255, 253, 249, 0.96); box-shadow: 0 10px 40px rgba(0,0,0,.06); }
.nav-wrap { height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand img { width: 210px; height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(1.4rem, 2.6vw, 3rem); }
.main-nav a { font-size: .88rem; color: var(--ink); position: relative; padding: .4rem 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--olive); transition: width .35s ease; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.mobile-toggle { display: none; background: none; border: 0; font-size: 1.5rem; color: var(--ink); }

.section { padding: clamp(5.2rem, 9vw, 9rem) 0; }
.section-kicker, .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: .73rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--olive-dark);
  font-weight: 600;
}
.section-kicker::after { content: ""; display: block; width: 30px; height: 1px; background: var(--olive); margin-top: .75rem; opacity: .7; }
.center .section-kicker::after { margin-left: auto; margin-right: auto; }
.copy-block { max-width: 610px; }
.split-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(3rem, 6vw, 7rem); align-items: center; }
.image-panel { border-radius: 2px; overflow: hidden; box-shadow: var(--shadow); }
.image-panel img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.about-section { background: var(--paper); }
.who-section { background: var(--ivory); }
.section-intro { max-width: 790px; margin-bottom: 3.5rem; }
.section-intro.center { margin-left: auto; margin-right: auto; text-align: center; }
.three-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.2rem; margin-bottom: 3.2rem; }
.three-columns article { padding-top: 1.6rem; border-top: 1px solid var(--line); }
.three-columns h3 { font-size: 2rem; margin-bottom: .9rem; }
.vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.vm-card { background: var(--paper); padding: clamp(2rem, 4vw, 3.4rem); border: 1px solid var(--line); box-shadow: 0 12px 50px rgba(70,83,67,.05); }
.vm-card span, .service-number { display: block; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.3rem; color: var(--olive); margin-bottom: 1rem; }

.philosophy-section { background: #e9e3da; }
.narrow { max-width: 880px; }
.philosophy-section h2 { margin-bottom: 2rem; }
.what-section { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.service-card { background: var(--ivory); border: 1px solid var(--line); overflow: hidden; box-shadow: 0 16px 70px rgba(36,32,26,.06); }
.service-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.service-card div { padding: clamp(2rem, 4vw, 3.2rem); }
.service-card h3 { margin-bottom: 1.1rem; }

.contact-section { background: #e8e1d6; }
.contact-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2.5rem, 5vw, 6rem); align-items: center; }
.contact-card { background: var(--paper); padding: 2.2rem; border: 1px solid var(--line); text-align: center; box-shadow: var(--shadow); }
.qr { width: 210px; margin: 0 auto 1.6rem; }
.contact-card .label { text-transform: uppercase; letter-spacing: .18em; color: var(--olive-dark); font-size: .78rem; margin-bottom: .3rem; }
.contact-card .phone { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.2rem; color: var(--ink); margin: 0; }

.button {
  display: inline-block;
  margin-top: 1.3rem;
  padding: .95rem 1.7rem;
  background: var(--olive);
  color: var(--paper);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .35s ease, background .35s ease;
}
.button:hover { transform: translateY(-2px); background: var(--olive-dark); }

.site-footer { background: var(--paper); border-top: 1px solid var(--line); padding: 2.2rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-inner img { width: 185px; }
.footer-inner p { margin: 0; font-size: .86rem; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 900px) {
  .nav-wrap { height: 78px; }
  .brand img { width: 170px; }
  .mobile-toggle { display: block; }
  .main-nav { position: absolute; top: 78px; left: 0; right: 0; display: none; flex-direction: column; gap: 0; background: rgba(255,253,249,.98); border-bottom: 1px solid var(--line); }
  .main-nav.open { display: flex; }
  .main-nav a { width: 88vw; padding: 1rem 0; border-bottom: 1px solid var(--line); }
  .split-layout, .three-columns, .vision-mission, .service-grid, .contact-layout { grid-template-columns: 1fr; }
  .section { padding: 4.8rem 0; }
  .footer-inner { flex-direction: column; text-align: center; }
}
