:root {
  --bg: #f7f4ef;
  --bg-alt: #ede9e0;
  --fg: #1a2332;
  --fg-muted: #5c6370;
  --accent: #c9732e;
  --accent-dark: #a85e24;
  --surface: #ffffff;
  --border: #d9d3c8;
  --copper: #d4853a;
  --slate: #1a2332;
}

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: 1.15rem; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--slate);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.header-nav { display: flex; gap: 2rem; }
.header-nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--fg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 40%;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 35, 50, 0.88) 0%,
    rgba(26, 35, 50, 0.55) 50%,
    rgba(26, 35, 50, 0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
  width: 100%;
}
.hero-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
}
.hero-headline {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.65;
  font-weight: 300;
}

/* ── SECTION BASE ── */
section { padding: 5rem 2rem; }
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--copper);
  margin-bottom: 0.8rem;
}

/* ── FEATURES ── */
.features { background: var(--bg); }
.features-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}
.features-header h2 { margin-bottom: 0.8rem; }
.features-intro { color: var(--fg-muted); font-size: 1.05rem; max-width: 520px; }
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
}
.feature-card {
  background: var(--surface);
  padding: 2.2rem 2rem;
  transition: background 0.2s;
}
.feature-card:hover { background: #f0ece5; }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  margin-bottom: 1.2rem;
}
.feature-card h3 { margin-bottom: 0.6rem; font-size: 1.05rem; }
.feature-card p { color: var(--fg-muted); font-size: 0.92rem; line-height: 1.6; }

/* ── MANIFESTO ── */
.manifesto { background: var(--slate); }
.manifesto-inner {
  max-width: 780px;
  margin: 0 auto;
}
.manifesto-label { color: var(--copper); margin-bottom: 2rem; }
.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  border-left: 3px solid var(--copper);
  padding-left: 2rem;
  margin-bottom: 2.5rem;
  font-style: normal;
}
.manifesto-body { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.manifesto-body:last-child { margin-bottom: 0; }

/* ── LOCATIONS ── */
.locations { background: var(--bg-alt); }
.locations-header { max-width: 1200px; margin: 0 auto 3rem; }
.locations-header h2 { margin-top: 0.5rem; }
.locations-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.location-card {
  background: var(--bg);
  padding: 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.location-card--primary { background: var(--slate); }
.location-marker { color: var(--copper); flex-shrink: 0; margin-top: 0.2rem; }
.location-card--primary .location-marker { color: var(--copper); }
.location-card h3 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--fg); }
.location-card p { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.5; }
.location-card--primary h3 { color: #fff; }
.location-card--primary p { color: rgba(255,255,255,0.6); }
.location-status {
  margin-top: 0.6rem !important;
  font-size: 0.8rem !important;
  font-weight: 600;
  color: var(--copper) !important;
}

/* ── PRICING ── */
.pricing { background: var(--bg); }
.pricing-header { max-width: 1200px; margin: 0 auto 3rem; }
.pricing-header h2 { margin-top: 0.5rem; margin-bottom: 0.8rem; }
.pricing-note { color: var(--fg-muted); font-size: 0.95rem; }
.pricing-grid {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 4px;
}
.pricing-card--featured {
  background: var(--slate);
  border-color: var(--slate);
  color: #fff;
}
.pricing-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.pricing-size { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; }
.pricing-tag { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.25rem 0.65rem; border-radius: 3px; background: var(--bg-alt); color: var(--fg-muted); }
.pricing-card--featured .pricing-tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); }
.pricing-price { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; margin-bottom: 1.5rem; line-height: 1; }
.pricing-price span { font-size: 0.9rem; font-weight: 400; opacity: 0.7; font-family: 'Jost', sans-serif; }
.pricing-card--featured .pricing-price { color: #fff; }
.pricing-features { list-style: none; }
.pricing-features li { font-size: 0.88rem; padding: 0.5rem 0; border-bottom: 1px solid var(--border); color: var(--fg-muted); }
.pricing-card--featured .pricing-features li { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.65); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-cta-note { max-width: 1200px; margin: 0 auto; color: var(--fg-muted); font-size: 0.88rem; }

/* ── CLOSING ── */
.closing { background: var(--bg-alt); border-top: 1px solid var(--border); }
.closing-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.closing-inner h2 { margin-bottom: 1.2rem; }
.closing-inner p { color: var(--fg-muted); font-size: 1.05rem; line-height: 1.7; max-width: 600px; margin: 0 auto 1rem; }
.closing-closing { color: var(--fg) !important; font-weight: 500 !important; }

/* ── FOOTER ── */
.site-footer { background: var(--slate); padding: 3rem 2rem 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-tagline { color: rgba(255,255,255,0.4); font-size: 0.88rem; margin-top: 0.5rem; }
.footer-links { display: flex; gap: 3rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-bottom: 0.3rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 1.5rem 0; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .features-grid,
  .locations-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  section { padding: 4rem 1.5rem; }
  .hero-content { padding-bottom: 4rem; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-links { flex-direction: column; gap: 1.5rem; }
}