:root {
  --bg: #0a0a0a;
  --bg-alt: #121212;
  --card: #1a1a1a;
  --text: #f4f4f4;
  --muted: #b0b0b0;
  --gold: #d4a84b;
  --gold-bright: #f0d078;
  --navy: #141e55;
  --line: #2a2a2a;
  --max: 1080px;
  --radius: 12px;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); line-height: 1.55; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(10,10,10,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 72px; }
.brand { margin-right: auto; text-decoration: none; display: flex; align-items: center; }
.brand-logo { height: 48px; width: auto; }
nav { display: none; gap: 1.15rem; }
nav a { text-decoration: none; color: var(--muted); font-size: .95rem; }
nav a:hover { color: var(--gold-bright); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; border-radius: 999px; font-weight: 700;
  padding: .65rem 1.15rem; border: 1px solid transparent;
}
.btn-call, .btn-primary { background: var(--gold); color: #111; }
.btn-call:hover, .btn-primary:hover { background: var(--gold-bright); }
.btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-ghost:hover { border-color: #fff; }
.btn-lg { padding: .95rem 1.45rem; font-size: 1.15rem; }
.hero {
  position: relative; min-height: min(78vh, 640px);
  display: flex; align-items: flex-end; padding: 3.5rem 0 3rem;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.35) 100%),
              linear-gradient(0deg, rgba(0,0,0,.65), transparent 45%);
}
.hero-copy { position: relative; z-index: 1; max-width: 36rem; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--gold); font-size: .78rem; font-weight: 700; margin: 0 0 .8rem;
}
.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.12; margin: 0 0 1rem;
}
.lede { color: #ddd; font-size: 1.08rem; margin: 0 0 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.section { padding: 3.5rem 0; }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--line); }
.section h2 { margin: 0 0 .75rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.section-intro { color: var(--muted); margin: 0 0 1.75rem; max-width: 55ch; }
.cards {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.cards li {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.15rem 1.2rem;
}
.cards h3 { margin: 0 0 .4rem; color: var(--gold); font-size: 1.05rem; }
.cards p { margin: 0; color: var(--muted); font-size: .95rem; }
.gallery {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.gallery figure {
  margin: 0; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery figcaption {
  padding: .65rem .85rem; color: var(--muted); font-size: .88rem;
}
.area-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 1rem;
}
.plain { margin: .5rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.note { color: var(--muted); margin: 1rem 0 0; }
.contact { text-align: center; }
.contact-logo { margin: 0 auto 1rem; height: 72px; width: auto; }
.contact p { color: var(--muted); }
.fine { margin-top: 1.25rem; font-size: .9rem; }
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem; color: var(--muted); font-size: .92rem;
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: end;
}
.site-footer a { color: var(--text); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.copy { margin: 0; }
@media (min-width: 800px) {
  nav { display: flex; }
  .brand-logo { height: 56px; }
}

.email-line { margin: 1rem 0 0; }
.email-line a { color: var(--gold-bright); text-decoration: none; font-weight: 600; }
.email-line a:hover { text-decoration: underline; }
