:root {
  --bg: #f5f1ea;
  --fg: #2b2620;
  --muted: #6b6359;
  --primary: #6e6450;
  --primary-fg: #f5f1ea;
  --secondary: #d4c9b0;
  --border: #d8cfc0;
  --card: #ffffff;
  --alt: #ebe4d6;
  --serif: 'Cormorant Garamond', Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--serif);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.eyebrow { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin: 0 0 12px; }
.muted { color: var(--muted); }
h1, h2, h3 { color: var(--primary); font-weight: 300; margin: 0; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.1; }
h1 em { font-style: italic; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1rem; }

/* Header */
.site-header {
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 48px; height: 48px; border-radius: 4px; object-fit: cover; }
.brand-name { font-size: 1.25rem; font-weight: 600; color: var(--primary); letter-spacing: 0.05em; line-height: 1; }
.brand-sub { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.nav-desktop { display: none; align-items: center; gap: 32px; }
.nav-desktop a { font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--fg); transition: color .2s; }
.nav-desktop a:hover { color: var(--primary); }
.btn { display: inline-block; padding: 12px 24px; font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; border-radius: 3px; cursor: pointer; transition: opacity .2s, background .2s; border: 1px solid transparent; font-family: inherit; }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { opacity: 0.9; }
.btn-outline { border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: rgba(110, 100, 80, 0.08); }
.nav-toggle { background: none; border: 0; width: 40px; height: 40px; display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--fg); }
.nav-mobile {
  border-top: 1px solid var(--border);
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}
.nav-mobile.is-open {
  max-height: 400px;
  opacity: 1;
  padding: 12px 24px 16px;
}
.nav-mobile a { padding: 12px 0; font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--fg); }
.nav-mobile .btn { text-align: center; margin-top: 8px; }
@media (min-width: 1024px) {
  .site-header { position: sticky; top: 0; z-index: 50; }
  .nav-desktop { display: flex; }
  .nav-toggle, .nav-mobile { display: none !important; }
}

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, rgba(245,241,234,0.95), rgba(245,241,234,0.7) 50%, rgba(245,241,234,0.3)); }
.hero-content { position: relative; padding: 112px 24px; }
.hero-content h1 { max-width: 760px; }
.hero-content .lead { max-width: 600px; margin-top: 24px; font-size: 1.15rem; color: rgba(43, 38, 32, 0.85); }
.cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
@media (min-width: 768px) { .hero-content { padding: 160px 24px; } }

/* Sections */
.section { padding: 96px 0; border-top: 1px solid var(--border); }
.section-alt { background: rgba(235, 228, 214, 0.5); }
.section-header { max-width: 640px; margin-bottom: 64px; }
.section-header p.muted { margin-top: 16px; }

/* Cards */
.cards { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card { background: var(--card); border: 1px solid var(--border); overflow: hidden; transition: box-shadow .3s; }
.card:hover { box-shadow: 0 12px 28px rgba(0,0,0,0.08); }
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 32px; }
.card-body p { color: var(--muted); font-size: 0.95rem; margin-top: 12px; }

/* Split */
.split { display: grid; gap: 48px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 768px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } }
.split-img { aspect-ratio: 4/3; overflow: hidden; border-radius: 3px; }
.split-img.tall { aspect-ratio: 4/5; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* Steps */
.steps { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { border-top: 1px solid var(--border); padding-top: 24px; }
.step-num { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.step h3 { margin-top: 8px; font-size: 1.2rem; }
.step p { margin-top: 12px; font-size: 0.9rem; color: var(--muted); }

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 24px 0 0; }
.checklist li { position: relative; padding-left: 28px; margin-bottom: 12px; color: rgba(43, 38, 32, 0.85); }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: 600; }

/* Contact */
.contact { background: var(--primary); color: var(--primary-fg); border-top: 0; }
.contact h2, .contact .eyebrow { color: var(--primary-fg); }
.contact .eyebrow { opacity: 0.7; }
.contact-list { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: block; padding-bottom: 24px; border-bottom: 1px solid rgba(245, 241, 234, 0.2); }
.contact-item:last-child { border-bottom: 0; }
.contact-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7; }
.contact-value { font-size: 1.25rem; margin-top: 4px; }

/* Footer */
.site-footer { background: var(--primary); color: rgba(245, 241, 234, 0.7); text-align: center; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; padding: 24px 0; }
