:root {
  --red: #e63946;
  --red-dark: #9d0208;
  --gold: #d4af37;
  --black: #0a0a0a;
  --charcoal: #141414;
  --gray: #b0b0b0;
  --light: #f7f7f7;
  --text-body: #e4e4e4;
  --text-muted: #c8c8c8;
  --white: #ffffff;
  --font-display: "Bebas Neue", "Oswald", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --max-width: 1200px;
  --nav-height: 92px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  width: min(92%, var(--max-width));
  margin-inline: auto;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.03em;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.65;
  max-width: 640px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.nav.scrolled { background: rgba(10, 10, 10, 0.98); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 76px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.nav-logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/team-group-hero.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.7) 50%,
    rgba(157, 2, 8, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.4);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
  display: block;
}

.hero-text {
  font-size: 1.2rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.hero-stat span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Mission */
.mission {
  padding: 6rem 0;
  background: var(--charcoal);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.mission-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.mission-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--red);
  transform: translate(12px, 12px);
  pointer-events: none;
}

.mission-content p {
  color: var(--text-body);
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  line-height: 1.75;
}

.mission-quote {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--red);
  font-style: italic;
  color: var(--light);
  font-size: 1.15rem;
  line-height: 1.7;
}

/* Services */
.services { padding: 6rem 0; }

.services-header { text-align: center; margin-bottom: 4rem; }

.services-header .section-subtitle { margin-inline: auto; }

.services-hint {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: -2rem 0 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(230, 57, 70, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  background: #1a1a1a;
}

.service-card:hover::before,
.service-card:focus-visible::before { transform: scaleX(1); }

.service-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 57, 70, 0.12);
  border-radius: 4px;
  margin-bottom: 1.25rem;
  color: var(--red);
  transition: background 0.35s ease, transform 0.35s ease;
}

.service-card:hover .service-icon,
.service-card:focus-visible .service-icon {
  background: rgba(230, 57, 70, 0.22);
  transform: scale(1.08);
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.service-card:hover h3,
.service-card:focus-visible h3 { color: var(--red); }

.service-teaser {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.service-reveal {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, margin 0.35s ease;
  margin-top: 0;
}

.service-card:hover .service-reveal,
.service-card:focus-visible .service-reveal {
  max-height: 200px;
  opacity: 1;
  margin-top: 1rem;
}

@media (hover: none) {
  .service-reveal {
    max-height: 48px;
    opacity: 1;
    margin-top: 0.75rem;
  }

  .service-preview {
    display: none;
  }
}

.service-preview {
  color: var(--text-body);
  font-size: 0.975rem;
  line-height: 1.65;
  margin: 0 0 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.service-card-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-cta svg,
.service-card:focus-visible .service-card-cta svg {
  transform: translateX(4px);
}

/* Service detail modal */
.service-modal-panel {
  position: relative;
  width: min(640px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--red);
  border-radius: 4px;
  padding: 2.5rem;
  animation: serviceModalIn 0.35s ease;
}

@keyframes serviceModalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.service-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 4px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.service-modal-close:hover {
  background: var(--red);
  border-color: var(--red);
}

.service-modal-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-right: 2.5rem;
}

.service-modal-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 57, 70, 0.15);
  border-radius: 4px;
  color: var(--red);
}

.service-modal-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.service-modal-intro {
  color: var(--light);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-modal-body {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.service-modal-methods-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.service-modal-methods {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.service-modal-methods li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.65;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-modal-methods li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.service-modal-methods li:last-child { border-bottom: none; }

.service-modal-cta { width: 100%; justify-content: center; }

/* Events */
.events {
  padding: 6rem 0;
  background: var(--black);
}

.events-header {
  text-align: center;
  margin-bottom: 4rem;
}

.events-header .section-subtitle {
  margin-inline: auto;
}

/* Featured flagship event */
.event-featured {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--red);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 4rem;
}

.event-featured-video {
  background: var(--black);
  aspect-ratio: 16/9;
}

.event-featured-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.event-featured-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-featured-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.event-featured-body p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.event-featured-body .event-yt-link {
  margin-top: 1.5rem;
  align-self: flex-start;
}

/* Shared event typography */
.event-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.event-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}

.event-badge--gold {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--gold);
}

.event-lead {
  color: var(--light) !important;
  font-size: 1.05rem !important;
  font-weight: 500;
  line-height: 1.55 !important;
  margin-bottom: 1rem !important;
}

.event-highlights {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}

.event-highlights li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.event-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.event-highlights li:last-child { border-bottom: none; }

/* Divider */
.events-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  color: var(--gray);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.events-divider::before,
.events-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* Event catalog rows */
.events-catalog {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.event-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
}

.event-row:hover {
  border-color: rgba(230, 57, 70, 0.2);
}

.event-row--reverse .event-row-video { order: 2; }
.event-row--reverse .event-row-body { order: 1; }

.event-row-video {
  background: var(--black);
  aspect-ratio: 16/9;
  min-height: 240px;
}

.event-row-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.event-row-body {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-row-body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.event-row-body p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.event-row-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.event-broadcaster {
  font-size: 0.8rem;
  color: var(--gray);
  font-style: italic;
}

.event-watch-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  transition: color var(--transition);
}

.event-watch-link:hover { color: var(--white); }

/* Press coverage card (no video) */
.event-row-video--press {
  position: relative;
}

.event-press-cover {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.event-press-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-press-cover:hover img { transform: scale(1.04); }

.event-press-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(10, 10, 10, 0.55);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition);
}

.event-press-cover:hover .event-press-label {
  background: rgba(230, 57, 70, 0.65);
}

/* YouTube */
.youtube-section {
  padding: 6rem 0;
  background: var(--charcoal);
}

.youtube-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.yt-card {
  border-radius: 4px;
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.yt-card:hover { border-color: rgba(230, 57, 70, 0.4); }

.yt-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }

.yt-card-body { padding: 1.25rem; }

.yt-card-body h4 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.yt-card-body span { font-size: 0.875rem; color: var(--text-muted); }

/* Coffee Shop */
.coffee {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.coffee-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.coffee-visual {
  position: relative;
  background: linear-gradient(135deg, var(--red-dark), var(--black));
  border-radius: 4px;
  padding: 3rem;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.coffee-visual::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 2px;
}

.coffee-icon { font-size: 4rem; margin-bottom: 1rem; }

.coffee-visual h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.coffee-visual p { color: rgba(255, 255, 255, 0.88); margin-top: 0.5rem; font-size: 1rem; }

.coffee-features {
  list-style: none;
  margin-top: 2rem;
}

.coffee-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.coffee-features li strong {
  display: block;
  color: var(--light);
  margin-bottom: 0.25rem;
}

.coffee-features .check {
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

/* Gallery */
.gallery { padding: 6rem 0; background: var(--black); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 0.75rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 1; }
.gallery-item:nth-child(3) { grid-column: span 1; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }

/* Contact */
.contact {
  padding: 6rem 0;
  background: var(--charcoal);
}

.contact-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.contact-header .section-subtitle {
  margin-inline: auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(230, 57, 70, 0.25);
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(230, 57, 70, 0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.contact-card h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.contact-card-detail {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--red);
  transition: color var(--transition);
}

.contact-card-link:hover { color: var(--white); }

.contact-phones {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.contact-phone-sep {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gray);
}

.contact-card-link--phone {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  letter-spacing: 0.04em;
  color: var(--gold);
}

.contact-card-link--phone:hover { color: var(--white); }

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.contact-social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.contact-map-section {
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.contact-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-map-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-map-header p {
  color: var(--text-muted);
  font-size: 0.975rem;
}

.map-embed {
  height: 380px;
}

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

/* Footer */
.footer {
  padding: 3rem 0 2rem;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  height: 44px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

.footer-brand p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal.active { display: flex; }

.modal-content {
  position: relative;
  width: min(900px, 100%);
  aspect-ratio: 16/9;
}

.modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 4px;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--black);
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-toggle { display: flex; }

  .mission-grid,
  .coffee-inner { grid-template-columns: 1fr; }

  .contact-cards { grid-template-columns: 1fr; }

  .contact-map-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-featured,
  .event-row {
    grid-template-columns: 1fr;
  }

  .event-row--reverse .event-row-video,
  .event-row--reverse .event-row-body { order: unset; }

  .event-featured-body,
  .event-row-body { padding: 1.75rem; }

  .event-row-video { min-height: auto; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
    height: 200px;
  }

  .gallery-item:nth-child(1) { grid-column: span 2; height: 280px; }

  .hero-stats { gap: 2rem; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  :root { --nav-height: 80px; }

  .nav-logo img {
    height: 58px;
    max-width: 150px;
  }

  .hero-stats { gap: 1.5rem; }
  .hero-stat strong { font-size: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
}