:root {
  --bg: #faf7f2;
  --bg-soft: #f1ece2;
  --bg-deep: #253041;
  --ink: #1f2530;
  --ink-soft: #4a4f5b;
  --ink-mute: #7a7e88;
  --line: #e6dfd1;
  --accent: #b08555;
  --accent-deep: #8a6437;
  --accent-soft: #d7c4a3;
  --shadow: 0 30px 60px -30px rgba(31, 37, 48, 0.25);
  --r: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); line-height: 1.05; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); line-height: 1.15; }
h3 { font-size: 1.35rem; line-height: 1.25; font-weight: 600; }

p { margin: 0 0 1rem; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent-deep);
  margin: 0 0 1.25rem;
}

/* ── NAV ───────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(230, 223, 209, 0.6);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-deep);
  color: var(--accent-soft);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.brand-mark.small { width: 30px; height: 30px; font-size: 14px; }
.brand-text { font-size: 0.98rem; }

.nav nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.94rem;
}

.nav nav a {
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav nav a:hover { color: var(--ink); }

.nav-cta {
  padding: 9px 18px;
  background: var(--bg-deep);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 500;
}

.nav-cta:hover { background: #1a2231; }

/* ── HERO ──────────────────────────────────────────────── */

.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 100px) 32px clamp(64px, 9vw, 120px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-text .lede {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  margin: 1.5rem 0 2rem;
  max-width: 32em;
}

.hero-text .lede em { font-style: italic; color: var(--ink); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 3rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 500;
  transition: all 0.25s;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--bg-deep);
  color: #fff;
}
.btn-primary:hover { background: #1a2231; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(31,37,48,0.03); }

.hero-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-meta li { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--ink);
  font-weight: 500;
}
.hero-meta span { font-size: 0.85rem; color: var(--ink-mute); }

.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.08));
  pointer-events: none;
}

.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── SECTIONS ──────────────────────────────────────────── */

.section { padding: clamp(64px, 9vw, 120px) 32px; }

.section-soft { background: var(--bg-soft); }

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}

.section-head .eyebrow { display: inline-block; }
.section-sub { color: var(--ink-mute); margin-top: 0.5rem; }

/* split section */
.section-split {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.section-split-reverse .split-image { order: 2; }

.split-image {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.split-text blockquote {
  margin: 1.5rem 0 0;
  padding: 18px 22px;
  border-left: 3px solid var(--accent);
  background: rgba(176, 133, 85, 0.06);
  border-radius: 0 var(--r) var(--r) 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
}

.ul-clean { list-style: none; padding: 0; margin: 0 0 2rem; }
.ul-clean li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}
.ul-clean li:last-child { border-bottom: 1px solid var(--line); }
.ul-clean strong { color: var(--ink); font-weight: 500; margin-right: 6px; }

/* cards */
.cards {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  padding: 32px 28px;
  background: #fff;
  border-radius: var(--r);
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -25px rgba(31,37,48,0.18);
}

.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.95rem; }

/* approach */
.section-approach { background: var(--bg-deep); color: #e9e6df; }
.section-approach .eyebrow { color: var(--accent-soft); }
.section-approach h2 { color: #fff; }
.section-approach p { color: rgba(255,255,255,0.78); }

.approach-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.approach-image {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}
.approach-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.timeline {
  margin: 1.5rem 0 0;
  display: grid;
  gap: 14px;
}
.timeline div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.timeline div:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.timeline dt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--accent-soft);
  margin: 0;
}
.timeline dd { margin: 0; color: rgba(255,255,255,0.85); }

/* gallery */
.gallery { padding: clamp(64px, 9vw, 120px) 32px; max-width: 1400px; margin: 0 auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  filter: saturate(0.92);
  transition: filter 0.4s, transform 0.4s;
}

.gallery-grid img:hover { filter: saturate(1.05); transform: scale(1.02); }

/* contact */
.section-contact { background: var(--bg-soft); }
.contact-inner { max-width: 980px; margin: 0 auto; text-align: center; }
.contact-lede { color: var(--ink-soft); max-width: 38em; margin: 0 auto 2.5rem; font-size: 1.08rem; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 2rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 22px;
  background: #fff;
  border-radius: var(--r);
  border: 1px solid var(--line);
  text-align: left;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 18px 36px -22px rgba(31,37,48,0.2);
}

.contact-card-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 500;
}

.contact-card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--ink);
}

.contact-card-hint {
  font-size: 0.86rem;
  color: var(--ink-mute);
  line-height: 1.45;
  margin-top: 4px;
}

.contact-address {
  color: var(--ink-mute);
  font-size: 0.94rem;
  margin: 1.5rem 0 0;
}

/* footer */
.foot {
  background: var(--bg-deep);
  color: rgba(255,255,255,0.65);
  padding: 28px 32px;
  font-size: 0.88rem;
}
.foot-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-inner > div:first-child { display: flex; align-items: center; gap: 12px; }
.foot-meta { display: flex; gap: 22px; }
.foot-meta a:hover { color: #fff; }

/* ── RESPONSIVE ────────────────────────────────────────── */

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 36px; padding-bottom: 56px; }
  .hero-image { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .section-split, .approach-grid { grid-template-columns: 1fr; }
  .section-split-reverse .split-image { order: -1; }
  .approach-image { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .nav nav { gap: 18px; font-size: 0.88rem; }
  .nav nav a:not(.nav-cta) { display: none; }
  .timeline div { grid-template-columns: 90px 1fr; gap: 12px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav-inner { padding: 14px 20px; }
  .brand-text { display: none; }
  .hero, .section, .gallery { padding-left: 20px; padding-right: 20px; }
  .hero-meta { grid-template-columns: 1fr; gap: 12px; padding-top: 20px; }
  .hero-meta li { flex-direction: row; align-items: baseline; gap: 12px; }
  .hero-meta strong { font-size: 1.2rem; }
  .cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .btn { padding: 12px 22px; font-size: 0.92rem; }
  .timeline div { grid-template-columns: 1fr; gap: 4px; }
}
