:root {
  --navy: #16274f;
  --navy-light: #2c4a86;
  --maroon: #8a1d33;
  --maroon-dark: #6e1727;
  --bg: #fdfdfb;
  --bg-alt: #f4f2ee;
  --text: #23262b;
  --muted: #5a5f68;
  --border: #e4e1da;
  --radius: 10px;
  --container: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--navy);
  margin: 0 0 0.5em;
}

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

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 253, 251, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand-logo { width: 44px; height: 44px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: 'EB Garamond', serif; font-weight: 600; color: var(--navy); font-size: 1.1rem; }
.brand-text small { color: var(--maroon); letter-spacing: .03em; font-size: .78rem; }

.nav-cta { flex-shrink: 0; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: background .2s, color .2s, border-color .2s;
}

.btn-primary { background: var(--maroon); color: #fff; }
.btn-primary:hover { background: var(--maroon-dark); }

.btn-outline { border: 1.5px solid var(--navy); color: var(--navy); padding: 8px 18px; }
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-ghost { border: 1.5px solid rgba(255,255,255,.7); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.15); }

/* Hero */
.hero { position: relative; color: #fff; }

.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(22,39,79,.92) 0%, rgba(22,39,79,.78) 45%, rgba(22,39,79,.55) 100%);
}

.hero-content {
  position: relative;
  padding: 130px 24px 110px;
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 600;
  color: #d8b9c0;
  margin-bottom: 14px;
}

.hero h1 { color: #fff; font-size: 3rem; line-height: 1.25; }
.hero h1 span { color: #e7c6cd; }

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #f1e2e5;
  margin: 18px 0 34px;
}

.hero-tagline::before {
  content: "";
  width: 40px;
  height: 2px;
  background: #c2596b;
  flex-shrink: 0;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.section-label {
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Contact */
.contact { padding: 90px 0; background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact h2 { font-size: 1.9rem; margin-bottom: 24px; }

.contact-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { color: var(--maroon); font-size: 1.1rem; line-height: 1.5; }
.contact-list a:hover { color: var(--maroon); }

.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}

.map-card iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
.site-footer { background: #fff; border-top: 1px solid var(--border); padding: 36px 0; }
.footer-inner { display: flex; justify-content: center; }
.footer-banner { width: 100%; max-width: 460px; }

/* Responsive */
@media (max-width: 860px) {
  .hero h1 { font-size: 2rem; }
  .hero-content { padding: 100px 20px 80px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; }
  .btn { text-align: center; }
  .nav-cta { font-size: .85rem; padding: 8px 14px; }
}
