@charset "UTF-8";

/* ===== RESET ===== */
.cf:before, .cf:after { content: ""; display: block; }
.cf:after { clear: both; }
.cf { zoom: 1; }

article, aside, audio, command, datagrid, details, dialog, embed,
figcaption, figure, footer, header, hgroup, menu, nav, section, summary,
video, wbr { display: block; }

bdi, figcaption, keygen, mark, meter, progress, rp, rt, ruby, time { display: inline; }

acronym, applet, big, center, dir, font, frame, frameset, noframes, s,
strike, tt, u, xmp { display: none; }

a, abbr, area, article, aside, audio, b, bdo, blockquote, body, button,
canvas, caption, cite, code, col, colgroup, command, datalist, dd, del,
details, dialog, dfn, div, dl, dt, em, embed, fieldset, figure, form,
h1, h2, h3, h4, h5, h6, head, header, hgroup, hr, html, i, iframe, img,
input, ins, keygen, kbd, label, legend, li, map, mark, menu, meter, nav,
noscript, object, ol, optgroup, option, output, p, param, pre, progress,
q, rp, rt, ruby, samp, section, select, small, span, strong, sub, sup,
table, tbody, td, textarea, tfoot, th, thead, time, tr, ul, var, video {
  background: transparent;
  border: 0;
  font-size: 16px;
  font: inherit;
  margin: 0;
  outline: none;
  padding: 0;
  text-align: left;
  text-decoration: none;
  vertical-align: baseline;
}

ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Nunito Sans', Arial, Helvetica, sans-serif;
  color: #000;
  background: #fff;
  line-height: 1;
}

img { max-width: 100%; height: auto; display: block; }
p { line-height: 1.6; }
a { text-decoration: none; }

.lp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


/* ===================================================
   HEADING BAR
   Background: Black | Text: White (logos only)
=================================================== */
.heading-bar {
  background-color: #000;
  padding: 1.25rem 0;
}

.hb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.heading-bar img {
  max-height: 80px;
  width: auto;
  max-width: 42%;
}

@media (max-width: 600px) {
  .hb-container { flex-direction: column; gap: 1rem; }
  .heading-bar img { max-width: 65%; max-height: 60px; }
}


/* ===================================================
   HERO
   Background: Image with Black overlay
   Text: White | Highlight: City Red
=================================================== */
.hero-section {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.82) 40%, rgba(0,0,0,0.15) 100%);
  display: flex;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #BE1E2D;
  margin-bottom: 0.9rem;
  line-height: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}

.hero-title span {
  display: block;
  font-size: 0.52em;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  margin-bottom: 0.2em;
}

.hero-date {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #BE1E2D;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  max-width: 420px;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .hero-section { height: 320px; }
}


/* ===================================================
   STATS BAR
   Background: White | Numbers: City Red | Labels: Gray
=================================================== */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.stats-bar .lp-container {
  display: flex;
  max-width: 1100px;
}

.stat-item {
  flex: 1;
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-right: 1px solid #e0e0e0;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  display: block;
  font-size: 2.1rem;
  font-weight: 800;
  color: #BE1E2D;
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: #7F7F7F;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .stats-bar .lp-container { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid #e0e0e0; }
  .stat-item:nth-child(odd) { border-right: 1px solid #e0e0e0; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}


/* ===================================================
   SHARED BUTTON STYLES
=================================================== */

/* Outlined button: City Red border/text, fills on hover */
.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: 2px solid #BE1E2D;
  color: #BE1E2D;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-outline:hover { background: #BE1E2D; color: #fff; }

/* Solid City Red button */
.btn-gold {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  background: #BE1E2D;
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.btn-gold:hover { background: #96181f; }

/* Ghost white button (on dark backgrounds) */
.btn-outline-white {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: 2px solid rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.85);
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-outline-white:hover { border-color: #fff; color: #fff; }

/* Solid black button */
.btn-dark {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  background: #000;
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease;
  align-self: flex-start;
}

.btn-dark:hover { background: #333; }


/* ===================================================
   PROGRAM CARDS
   Background: White | Accents: City Red | Text: Black
=================================================== */
.programs-section {
  padding: 4.5rem 1.5rem;
  background: #fff;
}

.programs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1100px;
  margin: 0 auto 2.75rem;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.programs-header-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.programs-header-text h2 em {
  font-style: italic;
  font-weight: 400;
  color: #BE1E2D;
}

.programs-header-text p {
  font-size: 0.95rem;
  color: #7F7F7F;
  line-height: 1.55;
  max-width: 480px;
}

.programs-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.program-card {
  border: 1px solid #e0e0e0;
  border-top: 3px solid #BE1E2D;
  border-radius: 6px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.program-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: #BE1E2D;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.program-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.program-card p {
  font-size: 0.875rem;
  color: #000;
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 1.1rem;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.card-tags span {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #BE1E2D;
  border: 1.5px solid #BE1E2D;
  border-radius: 100px;
  padding: 0.25rem 0.65rem;
  line-height: 1.2;
}

.card-link {
  font-weight: 700;
  color: #BE1E2D;
  font-size: 0.85rem;
  border-bottom: 2px solid #BE1E2D;
  display: inline-block;
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
  align-self: flex-start;
}

.card-link:hover { color: #000; border-color: #000; }


/* ===================================================
   FEATURE / TOUR SECTION
   Left: Image with City Red accents
   Right: Black background | Text: White | Accents: City Red
=================================================== */
.feature-section {
  display: flex;
  min-height: 480px;
}

.feature-image {
  flex: 0 0 44%;
  position: relative;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* City Red decorative accent squares */
.feature-image::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: -1.25rem;
  width: 4.5rem;
  height: 4.5rem;
  background: #BE1E2D;
  z-index: 1;
}

.feature-image::after {
  content: '';
  position: absolute;
  bottom: 2.5rem;
  right: -1.25rem;
  width: 5.5rem;
  height: 5.5rem;
  background: #BE1E2D;
  z-index: 1;
  opacity: 0.55;
}

.feature-content {
  flex: 1;
  background: #000;
  color: #fff;
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Watermark icon */
.feature-content::after {
  content: '\f19d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -1.5rem;
  bottom: -3rem;
  font-size: 14rem;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  line-height: 1;
}

.feature-title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 2.25rem;
  color: #fff;
}

.feature-title strong {
  font-weight: 800;
  display: block;
}

.feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.feature-item:last-child { margin-bottom: 0; }

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(190,30,45,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #BE1E2D;
  font-size: 0.9rem;
  margin-top: 0.1rem;
}

.feature-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.feature-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.feature-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: #BE1E2D;
  border-bottom: 1px solid rgba(190,30,45,0.55);
  display: inline-block;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.feature-link:hover { color: #fff; border-color: rgba(255,255,255,0.45); }

@media (max-width: 768px) {
  .feature-section { flex-direction: column; }
  .feature-image { flex: none; height: 260px; }
  .feature-image::before, .feature-image::after { display: none; }
  .feature-content { padding: 2.5rem 1.5rem; }
}


/* ===================================================
   CTA MOSAIC
   Primary: Black | Accent: White | Need Help: City Red | Contact: Gray
=================================================== */
.cta-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
}

/* Left column — Black background */
.cta-primary {
  background: #000;
  color: #fff;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-primary h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.cta-primary p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.cta-primary-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.cta-secondary {
  display: grid;
  grid-template-rows: 1fr auto;
}

.cta-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Top right — White background */
.cta-accent {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.cta-accent h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #BE1E2D;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.cta-accent p {
  font-size: 0.9rem;
  color: #000;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.cta-accent strong { font-weight: 700; }

.cta-arrow-link {
  font-weight: 700;
  color: #BE1E2D;
  font-size: 0.875rem;
  display: inline-block;
  transition: letter-spacing 0.15s ease;
}

.cta-arrow-link:hover { letter-spacing: 0.03em; }

.cta-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Bottom left — City Red background (strategic highlight) */
.cta-gold {
  background: #BE1E2D;
}

.cta-gold h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-gold p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

/* Bottom right — Gray background */
.cta-light {
  background: #7F7F7F;
}

.cta-light h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
}

.cta-light p {
  font-size: 0.85rem;
  color: #000;
  line-height: 1.8;
}

.cta-light a {
  color: #000;
  font-weight: 700;
  text-decoration: underline;
}

.cta-light a:hover { color: #fff; }

@media (max-width: 900px) {
  .cta-section { grid-template-columns: 1fr; }
  .cta-primary { padding: 3rem 1.5rem; }
  .cta-card { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .cta-cards-row { grid-template-columns: 1fr; }
}


/* ===================================================
   SOCIAL SECTION
   Background: White | Icons: City Red | Text: Black
=================================================== */
.social-section {
  background: #fff;
  padding: 3.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

.social-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.social-sub {
  font-size: 0.9rem;
  color: #7F7F7F;
  margin-bottom: 1.75rem;
}

.social-icons {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.social-icons a {
  background-color: #BE1E2D;
  color: #fff;
  font-size: 1.3rem;
  width: 50px;
  height: 50px;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.25s ease, transform 0.15s ease;
}

.social-icons a:hover {
  background-color: #000;
  transform: translateY(-3px);
}


/* ===================================================
   FOOTER
   Background: Black | Text: White (muted) | Name: City Red
=================================================== */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 3rem 1.5rem;
  border-top: 4px solid #BE1E2D;
}

.footer-inner {
  text-align: center;
}

.site-footer h2 {
  color: #BE1E2D;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.site-footer p {
  font-size: 0.875rem;
  margin: 0.5rem 0;
  line-height: 1.7;
  color: #7F7F7F;
}

.site-footer strong {
  font-weight: 700;
  color: #fff;
}
