:root {
  --bg: #0b0d10;
  --bg-alt: #14171c;
  --card: #1a1e24;
  --text: #f2f2f0;
  --text-muted: #a8adb5;
  --red: #c8102e;
  --blue: #002868;
  --gold: #d4af37;
  --border: #2a2f37;
  --radius: 6px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.15;
}

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

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Placeholder image block ---------- */
.placeholder {
  background: repeating-linear-gradient(45deg, #20242b, #20242b 12px, #1a1e24 12px, #1a1e24 24px);
  border: 1px dashed var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  text-transform: none;
  letter-spacing: normal;
  padding: 16px;
  min-height: 220px;
  border-radius: var(--radius);
}

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

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo .accent { color: var(--red); }

/* The white mark is used on the dark header/footer because the brand red
   only reaches 2.7:1 contrast against #0b0d10 and muddies at small sizes.
   images/logo-mark-red.png is the same mark in brand red for light surfaces. */
.logo-mark {
  height: 38px;
  width: auto;
  flex-shrink: 0;
}
.logo-text { line-height: 1.1; }

@media (max-width: 520px) {
  .logo-mark { height: 30px; }
  .logo { font-size: 0.95rem; gap: 9px; }
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

nav.main-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
  transition: color 0.2s;
}

nav.main-nav a:hover,
nav.main-nav a.active { color: var(--text); }

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: transform 0.15s, opacity 0.15s;
}
.btn:hover { transform: translateY(-1px); opacity: 0.92; }

.btn-primary { background: var(--red); color: #fff; }
.btn-secondary { background: transparent; border: 1px solid var(--text-muted); color: var(--text); }
.btn-gold { background: var(--gold); color: #14171c; }

/* Contact CTA is the only header link to the contact page, so it stays
   visible at every breakpoint (slightly tighter padding on small screens). */
.nav-cta { display: inline-block; }
@media (max-width: 859px) {
  .nav-cta { padding: 10px 16px; font-size: 0.72rem; margin-left: auto; margin-right: 12px; }
}

.hamburger {
  display: block;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}
@media (min-width: 860px) { .hamburger { display: none; } }

nav.main-nav {
  display: none;
}
@media (min-width: 860px) {
  nav.main-nav { display: block; }
}
nav.main-nav.open { display: block; }

@media (max-width: 859px) {
  nav.main-nav.open ul {
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
  }
  nav.main-nav { position: absolute; top: 100%; left: 0; right: 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero .placeholder,
.hero img.hero-img {
  position: absolute;
  inset: 0;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  border: none;
  /* The hero photo is a tall portrait in a wide frame, so `cover` crops it
     vertically. Anchoring below centre pushes past the dark ceiling at the top
     of the frame so he sits higher in view without losing headroom. */
  object-position: center 46%;
}
@media (max-width: 859px) {
  /* On narrow screens the crop is horizontal instead, so recentre. */
  .hero img.hero-img { object-position: center center; }
}

.card img.card-img,
.two-col img.feature-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}
.two-col img.feature-img { height: 380px; }

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,13,16,0.35) 0%, rgba(11,13,16,0.55) 55%, rgba(11,13,16,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 24px 72px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin-bottom: 18px;
}

.hero p.lead {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1.1rem;
  margin-bottom: 28px;
}

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

/* ---------- Credentials strip ---------- */
.credentials-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
}
@media (min-width: 720px) {
  .credentials-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .credentials-grid { grid-template-columns: repeat(4, 1fr); }
}

.credential-item {
  padding: 12px 8px;
  border-right: 1px solid transparent;
}

.credential-item .stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* ---------- Sections ---------- */
section { padding: 88px 0; }

.section-heading { margin-bottom: 40px; max-width: 640px; }
.section-heading .eyebrow { margin-bottom: 10px; }
.section-heading h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.section-heading p { color: var(--text-muted); margin-top: 14px; }

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

.two-col {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 860px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px) { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 700px) { .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .card-body { padding: 24px; }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.95rem; }
.card .card-body a.btn { margin-top: 18px; }

/* ---------- Timeline ---------- */
.timeline { border-left: 2px solid var(--border); padding-left: 24px; display: flex; flex-direction: column; gap: 28px; }
.timeline-item .year { color: var(--gold); font-weight: 700; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; }
.timeline-item h4 { margin: 6px 0 4px; font-size: 1.05rem; }
.timeline-item p { color: var(--text-muted); font-size: 0.92rem; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-grid .placeholder { min-height: 200px; aspect-ratio: 1/1; }

.filter-bar { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  cursor: pointer;
  background: transparent;
}
.filter-btn.active { background: var(--red); color: #fff; border-color: var(--red); }

/* ---------- Gallery empty state ---------- */
.gallery-empty {
  color: var(--text-muted);
  text-align: center;
  padding: 56px 20px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  margin-top: 14px;
}
.gallery-empty[hidden] { display: none; }

/* ---------- Video grid (click-to-load YouTube facade) ---------- */
.video-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }

.video-card h3 {
  font-size: 1rem;
  margin-top: 14px;
  line-height: 1.35;
  text-transform: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  cursor: pointer;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s, opacity 0.2s;
}
.video-thumb:hover img { transform: scale(1.04); opacity: 0.85; }

.play-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 44px;
  background: var(--red);
  border-radius: 10px;
  transition: background 0.2s;
}
.play-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
}
.video-thumb:hover .play-icon { background: #e01235; }

.video-duration {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(0,0,0,0.82);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
}

.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius);
  display: block;
}

/* ---------- Instagram grid (click-to-load embed facade) ---------- */
.ig-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .ig-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }

.ig-thumb {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 340px;
  padding: 28px;
  cursor: pointer;
  color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  transition: filter 0.2s, transform 0.2s;
  font-family: 'Inter', sans-serif;
}
.ig-thumb:hover { filter: brightness(1.08); transform: translateY(-2px); }

.ig-icon {
  width: 46px; height: 46px;
  border: 3px solid #fff;
  border-radius: 13px;
  position: relative;
}
.ig-icon::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 19px; height: 19px;
  border: 3px solid #fff;
  border-radius: 50%;
}
.ig-icon::after {
  content: "";
  position: absolute;
  top: 5px; right: 5px;
  width: 5px; height: 5px;
  background: #fff;
  border-radius: 50%;
}

.ig-label {
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.ig-hint {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.ig-embed {
  width: 100%;
  min-height: 540px;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
  display: block;
}

/* ---------- Pricing table ---------- */
.pricing-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.price-card.featured { border-color: var(--gold); }
.price-card .price { font-family: 'Oswald', sans-serif; font-size: 2.2rem; margin: 12px 0; color: var(--gold); }
.price-card ul { list-style: none; margin: 20px 0; color: var(--text-muted); font-size: 0.9rem; display: flex; flex-direction: column; gap: 8px; }

/* ---------- Forms ---------- */
form.contact-form { display: flex; flex-direction: column; gap: 18px; max-width: 560px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); }
.form-row input, .form-row select, .form-row textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- Contact callout ---------- */
.contact-callout {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.contact-callout .eyebrow { margin-bottom: 8px; }
.contact-callout p {
  color: var(--text-muted);
  max-width: 460px;
  margin: 18px auto 28px;
}
a.phone-link {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
  transition: color 0.2s;
}
a.phone-link:hover { color: var(--gold); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--red), #7d0a1c);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  margin: 0 24px;
}
.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.cta-banner .btn-secondary { border-color: rgba(255,255,255,0.6); }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  margin-top: 48px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-bottom: 32px;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-grid h4 { font-size: 0.85rem; margin-bottom: 14px; color: var(--text-muted); }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.footer-grid ul a { color: var(--text-muted); }
.footer-grid ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
.page-hero p { color: var(--text-muted); max-width: 620px; margin-top: 14px; }

.quote-block {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 24px 0;
}
