/* ═══════════════════════════════════════════════════════
   LULU CULTURE FOUNDATION — main.css
   Palette: Crimson #b71c1c · Gold #C9A84C · Black #111 · Off-white #fafafa
   Type: Playfair Display (display) · Inter (body)
═══════════════════════════════════════════════════════ */

/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #b71c1c;
  --red-dark:  #7f1212;
  --red-light: #e53935;
  --gold:      #C9A84C;
  --gold-light:#e8c96a;
  --black:     #111111;
  --charcoal:  #1e1e1e;
  --dark:      #222222;
  --mid:       #444444;
  --muted:     #777777;
  --border:    #e2e2e2;
  --light:     #f5f5f5;
  --white:     #ffffff;
  --off-white: #fafafa;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);

  --max-width:  1200px;
  --nav-height: 72px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Typography Scale ───────────────────────────────── */
.display-xl   { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; }
.display-lg   { font-family: var(--font-display); font-size: clamp(2rem,  5vw, 3.6rem);  font-weight: 700; line-height: 1.15; }
.display-md   { font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; }
.display-sm   { font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 700; line-height: 1.25; }
.eyebrow      { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.lead         { font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.75; color: var(--mid); font-weight: 400; }

/* ── Layout Utilities ───────────────────────────────── */
.container    { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.section      { padding: 5rem 0; }
.section--sm  { padding: 3rem 0; }
.section--lg  { padding: 7rem 0; }
.grid-2       { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3       { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4       { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center  { text-align: center; }
.text-white   { color: var(--white); }
.text-gold    { color: var(--gold); }
.text-red     { color: var(--red); }
.bg-dark      { background: var(--charcoal); }
.bg-light     { background: var(--light); }
.bg-red       { background: var(--red); }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-4  { margin-bottom: 2rem; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.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(183,28,28,0.35);
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red);
}
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}
.btn i { font-size: 0.875rem; }

/* ── Section Header ─────────────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }
.section-title { margin-top: 0.4rem; color: var(--black); }
.section-title span { color: var(--red); }
.title-bar {
  display: inline-block;
  width: 48px; height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 1rem;
}
.section-header--center .title-bar { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,0.98);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
  height: var(--nav-height);
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 1.5rem;
}

/* Logo */
.site-logo img {
  height: 52px;
  width: auto;
}

/* Contact strip */
.header-contact {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.header-contact a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mid);
  transition: color var(--transition);
}
.header-contact a:hover { color: var(--red); }
.header-contact i { color: var(--red); font-size: 0.85rem; }

/* Primary Nav */
.primary-nav { display: flex; align-items: center; gap: 0.25rem; }
.primary-nav a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--red);
  transition: all var(--transition);
  border-radius: 1px;
}
.primary-nav a:hover::after,
.primary-nav a.active::after { left: 0.75rem; right: 0.75rem; }
.primary-nav a:hover { color: var(--red); }
.primary-nav .btn { margin-left: 0.5rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--light); }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
  z-index: 899;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  transform: translateY(-8px);
  opacity: 0;
  transition: all var(--transition);
  pointer-events: none;
}
.mobile-nav.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--red); }
.mobile-nav a i { color: var(--red); width: 20px; }
.mobile-nav .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  height: 100svh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}
.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.15) 100%
  );
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.25rem;
  max-width: 700px;
  margin: 0 auto 0 0;
  left: calc((100% - var(--max-width)) / 2 + 1.25rem);
}

.slide-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.slide-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.slide-title .accent { color: var(--gold); }

.slide-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  line-height: 1.65;
  max-width: 520px;
}

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

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none; cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.slider-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.slider-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem; right: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-hint .line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(0) translateY(-100%); opacity:0; }
  50%      { transform: scaleY(1) translateY(0);    opacity:1; }
}

/* ═══════════════════════════════════════════════════════
   TICKER STRIP
═══════════════════════════════════════════════════════ */
.ticker-strip {
  background: var(--red);
  padding: 0.7rem 0;
  overflow: hidden;
  position: relative;
}
.ticker-inner {
  display: flex;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 2.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.ticker-item::before {
  content: '●';
  color: var(--gold);
  font-size: 0.5rem;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   ABOUT STRIP
═══════════════════════════════════════════════════════ */
.about-strip {
  padding: 5rem 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--red);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  display: block;
  line-height: 1;
  color: var(--gold);
}
.about-badge .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-top: 0.3rem;
  color: rgba(255,255,255,0.85);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.value-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  background: var(--light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--red);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}
.value-pill i { color: var(--gold); font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════
   PILLARS / MISSION
═══════════════════════════════════════════════════════ */
.pillars-section {
  background: var(--charcoal);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.pillars-section::before {
  content: '';
  position: absolute;
  top: -40px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 80px solid rgba(183,28,28,0.12);
  pointer-events: none;
}
.pillar-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.pillar-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.pillar-icon {
  width: 52px; height: 52px;
  background: rgba(183,28,28,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  color: var(--gold);
}
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.pillar-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   EVENTS SECTION
═══════════════════════════════════════════════════════ */
.events-section { background: var(--off-white); padding: 5rem 0; }

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.event-card-thumb {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--light);
}
.event-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-card:hover .event-card-thumb img { transform: scale(1.06); }
.event-card-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  font-size: 3rem;
  color: rgba(255,255,255,0.3);
}

.event-date-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  text-align: center;
  min-width: 52px;
  box-shadow: 0 4px 12px rgba(183,28,28,0.4);
}
.event-date-badge .day  { display: block; font-size: 1.6rem; font-weight: 900; font-family: var(--font-display); line-height: 1; }
.event-date-badge .mon  { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; color: rgba(255,255,255,0.85); }

.event-badge-pill {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
}

.event-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.event-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.event-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.event-meta-item i { color: var(--red); font-size: 0.8rem; width: 14px; }
.event-card-excerpt {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  gap: 0.75rem;
}
.event-card-footer .btn { font-size: 0.78rem; padding: 0.6rem 1.2rem; }
.event-read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
  display: flex; align-items: center; gap: 0.3rem;
  transition: gap var(--transition);
}
.event-read-more:hover { gap: 0.6rem; }

/* No events fallback */
.no-events {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--muted);
  grid-column: 1 / -1;
}
.no-events i { font-size: 3rem; color: var(--border); margin-bottom: 1rem; display: block; }

/* ═══════════════════════════════════════════════════════
   FEATURED SUMMIT / HIGHLIGHT
═══════════════════════════════════════════════════════ */
.highlight-section {
  padding: 5rem 0;
  background: var(--white);
}
.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.highlight-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.highlight-images img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.highlight-images img:first-child { margin-top: 2rem; }
.highlight-images img:hover { transform: scale(1.02); }
.highlight-info { padding: 1rem 0; }
.highlight-info h2 { margin-bottom: 1rem; }
.highlight-info p  { color: var(--mid); margin-bottom: 1.5rem; font-size: 1.05rem; line-height: 1.75; }
.highlight-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   BLOG / POSTS
═══════════════════════════════════════════════════════ */
.posts-section { background: var(--off-white); padding: 5rem 0; }
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.post-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.post-thumb {
  height: 200px;
  overflow: hidden;
  background: var(--light);
}
.post-thumb img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s; }
.post-card:hover .post-thumb img { transform: scale(1.06); }
.post-body { padding: 1.5rem; }
.post-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.post-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.post-body p { font-size: 0.875rem; color: var(--mid); line-height: 1.65; margin-bottom: 1rem; }
.post-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted);
}
.post-footer a { color: var(--red); font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--red);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.8);
  margin-top: 0.4rem;
  display: block;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
}

/* ═══════════════════════════════════════════════════════
   INSTAGRAM / SOCIALS
═══════════════════════════════════════════════════════ */
.social-section {
  padding: 5rem 0;
  background: var(--white);
  text-align: center;
}
.social-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  transition: all var(--transition);
  background: var(--white);
}
.social-btn:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.social-btn i { font-size: 1.1rem; }
.social-btn.instagram i { color: #E1306C; }
.social-btn.whatsapp  i { color: #25D366; }
.social-btn.email     i { color: var(--red); }
.social-btn.phone     i { color: var(--red); }

/* IG feed grid */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 2.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.ig-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--light);
  position: relative;
}
.ig-item img { width:100%; height:100%; object-fit:cover; transition: transform 0.4s; }
.ig-item:hover img { transform: scale(1.1); }
.ig-item-overlay {
  position: absolute; inset:0;
  background: rgba(183,28,28,0.75);
  opacity:0;
  transition: opacity var(--transition);
  display: flex; align-items:center; justify-content:center;
  color: var(--white); font-size:1.4rem;
}
.ig-item:hover .ig-item-overlay { opacity:1; }

/* ═══════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--charcoal);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(183,28,28,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.cta-text p { color: rgba(255,255,255,0.65); font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-wrap img {
  height: 52px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.footer-social-links { display: flex; gap: 0.6rem; }
.footer-social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social-links a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 0.4rem;
}
.footer-links a::before {
  content: '';
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-links a:hover::before { width: 12px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   SINGLE EVENT PAGE
═══════════════════════════════════════════════════════ */
.single-hero {
  margin-top: var(--nav-height);
  height: 55vh;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.single-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.single-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.single-hero-content {
  position: absolute;
  bottom: 2.5rem; left: 0; right: 0;
}
.single-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
}

.single-content-wrap {
  padding: 4rem 0;
}
.single-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.single-body { font-size: 1.05rem; line-height: 1.8; color: var(--dark); }
.single-body p { margin-bottom: 1.25rem; }
.single-body h2, .single-body h3 {
  font-family: var(--font-display);
  color: var(--black);
  margin: 2rem 0 0.75rem;
}

.event-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.sidebar-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--red);
}
.sidebar-detail {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.sidebar-detail i {
  color: var(--red);
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}
.sidebar-detail span { font-size: 0.88rem; color: var(--mid); line-height: 1.5; }
.sidebar-detail strong { color: var(--dark); display: block; }
.sidebar-card .btn { width: 100%; justify-content: center; margin-top: 1.25rem; }

/* ═══════════════════════════════════════════════════════
   ARCHIVE / EVENTS LIST PAGE
═══════════════════════════════════════════════════════ */
.archive-hero {
  margin-top: var(--nav-height);
  padding: 4rem 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.archive-hero::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(183,28,28,0.2);
  pointer-events: none;
}
.archive-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
}
.archive-hero p { color: rgba(255,255,255,0.65); margin-top: 0.5rem; }

/* ═══════════════════════════════════════════════════════
   PAGE: Default / Static
═══════════════════════════════════════════════════════ */
.page-content-wrap {
  margin-top: var(--nav-height);
  padding: 4rem 0;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════════════ */

/* ─── Tablet (≤ 1024px) ─── */
@media (max-width: 1024px) {
  :root { --nav-height: 68px; }

  .header-contact { display: none; }

  .about-grid      { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap img { height: 360px; }
  .about-badge     { bottom: -1rem; right: 0; }

  .highlight-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .highlight-images { order: -1; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .stat-divider { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }

  .single-layout { grid-template-columns: 1fr; }
  .event-sidebar { position: static; }

  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-actions { justify-content: center; }

  .ig-grid { grid-template-columns: repeat(4, 1fr); }

  .slide-content {
    left: 1.25rem;
    right: 1.25rem;
    max-width: 100%;
  }
}

/* ─── Mobile (≤ 768px) ─── */
@media (max-width: 768px) {
  :root { --nav-height: 62px; }

  /* Nav */
  .primary-nav { display: none; }
  .nav-toggle  { display: flex; }
  .header-contact { display: none; }

  /* Hero */
  .hero-slider { height: 92svh; min-height: 480px; max-height: 700px; }
  .slide-content { left: 1.25rem; right: 1.25rem; max-width: 100%; padding: 0; }
  .slide-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .slide-subtitle { font-size: 0.92rem; }
  .slide-actions { flex-direction: column; }
  .slide-actions .btn { width: 100%; justify-content: center; }
  .slider-arrow { display: none; }
  .scroll-hint  { display: none; }

  /* Grids */
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* Pillars */
  .pillars-section .grid-3 { grid-template-columns: 1fr; }

  /* Events */
  .events-grid { grid-template-columns: 1fr; }

  /* Highlight */
  .highlight-images { grid-template-columns: 1fr 1fr; }
  .highlight-images img { aspect-ratio: 1; }
  .highlight-images img:first-child { margin-top: 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* IG */
  .ig-grid { grid-template-columns: repeat(3, 1fr); }

  /* Social */
  .social-grid { flex-direction: column; align-items: center; }
  .social-btn  { width: 100%; max-width: 300px; justify-content: center; }

  /* Single */
  .single-hero { height: 42vh; min-height: 280px; }

  /* CTA */
  .cta-banner { padding: 3.5rem 0; }
  .cta-text h2 { font-size: 1.8rem; }

  /* About */
  .about-image-wrap img { height: 280px; }
  .about-badge { position: relative; bottom: auto; right: auto; margin-top: 1rem; display: inline-block; }

  /* Section */
  .section    { padding: 3.5rem 0; }
  .section--lg { padding: 4rem 0; }
}

/* ─── Small mobile (≤ 420px) ─── */
@media (max-width: 420px) {
  .grid-4  { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-images { grid-template-columns: 1fr; }
  .highlight-images img:first-child { margin-top: 0; }
  .posts-grid { grid-template-columns: 1fr; }
}

/* ─── Accessibility ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ════════════════════════════════════════════════════
   PATCH — Button white text, bigger logo, footer logo
════════════════════════════════════════════════════ */

/* ── Ensure ALL btn-primary text is always white ── */
.btn-primary,
.btn-primary:visited,
.btn-primary:hover,
.btn-primary:focus,
.primary-nav .btn-primary,
.primary-nav .btn-primary:hover,
.mobile-nav .btn-primary,
.mobile-nav .btn-primary:hover {
  color: #ffffff !important;
}

/* ── Header logo — bigger & crisp ─────────────────── */
:root { --nav-height: 80px; }

.site-logo img,
.site-logo .custom-logo {
  height: 68px !important;
  width: auto !important;
  max-width: 240px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.site-header {
  height: var(--nav-height);
}
.header-inner {
  height: var(--nav-height);
}

/* ── Footer logo ──────────────────────────────────── */
.footer-brand .logo-wrap img,
.footer-brand .logo-wrap .custom-logo {
  height: 64px !important;
  width: auto !important;
  max-width: 220px;
  object-fit: contain;
  /* Keep natural colours in footer — no invert */
  filter: none !important;
  /* Light background pill so logo reads on dark footer */
  background: #ffffff;
  border-radius: 8px;
  padding: 6px 12px;
  margin-bottom: 1.25rem;
}

/* ── Responsive patch ─────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-height: 70px; }
  .site-logo img,
  .site-logo .custom-logo { height: 56px !important; }
  .footer-brand .logo-wrap img,
  .footer-brand .logo-wrap .custom-logo { height: 52px !important; }
}

/* ════════════════════════════════════════════════════
   LOGO LOCKUP — icon + text side by side
════════════════════════════════════════════════════ */
.site-logo { text-decoration: none; display: inline-flex; align-items: center; }

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-icon-wrap {
  flex-shrink: 0;
  background: var(--red);
  border-radius: 10px;
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(183,28,28,0.25);
}
.logo-icon-wrap img.logo-icon {
  width: 46px !important;
  height: 46px !important;
  object-fit: contain;
  filter: brightness(0) invert(1); /* white icon on red bg */
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo-sub {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* adjust nav height for bigger logo */
:root { --nav-height: 78px; }
.site-header { height: var(--nav-height); }
.header-inner { height: var(--nav-height); }

/* ── FOOTER LOGO LOCKUP ──────────────────────────── */
.footer-logo-link { text-decoration: none; display: inline-block; }

.footer-logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer-logo-icon {
  flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  padding: 4px;
}
.footer-logo-icon img {
  width: 44px !important; height: 44px !important;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  white-space: nowrap;
}
.footer-logo-sub {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════════════ */
.contact-section {
  background: var(--white);
  padding: 5rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1rem;
  color: var(--mid);
}
.contact-list li i {
  color: var(--red);
  width: 20px;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.contact-list a {
  color: var(--mid);
  transition: color var(--transition);
}
.contact-list a:hover { color: var(--red); }

.contact-cta-box {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
}
.contact-cta-box h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.contact-cta-box p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-cta-box { position: static; }
}

/* ════════════════════════════════════════════════════
   SPA / MOBILE LOGO RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --nav-height: 66px; }
  .logo-icon-wrap { width: 44px; height: 44px; border-radius: 8px; }
  .logo-icon-wrap img.logo-icon { width: 36px !important; height: 36px !important; }
  .logo-name { font-size: 0.95rem; }
  .logo-sub  { font-size: 0.78rem; }
  .header-contact { display: none; }
}

/* Remove old broken logo-wrap filter */
.footer-brand .logo-wrap { display: none; }

/* ════════════════════════════════════════════════════
   LOGO LOCKUP v3 — original icon, text beside it
════════════════════════════════════════════════════ */

/* Reset any old logo rules */
.site-logo,
.site-logo img,
.logo-icon-wrap,
.logo-icon-wrap img.logo-icon { all: unset; }

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

/* Original logo image — natural colours, no filter */
img.logo-icon {
  display: block !important;
  width: auto !important;
  height: 62px !important;
  max-height: 62px;
  object-fit: contain;
  flex-shrink: 0;
  filter: none !important;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* Vertical divider between icon and text */
.logo-lockup::after {
  content: '';
  display: block;
  width: 1.5px;
  height: 36px;
  background: #ddd;
  margin: 0 0.2rem;
  flex-shrink: 0;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 1px;
}

.logo-name-line {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.logo-sub-line {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Nav height to accommodate logo */
:root { --nav-height: 82px; }
.site-header,
.header-inner { height: var(--nav-height); }

/* ── Footer logo lockup (same style, white palette) ─ */
.footer-logo-link { text-decoration: none; display: inline-flex; }

.footer-logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-logo-icon img {
  display: block !important;
  height: 56px !important;
  width: auto !important;
  object-fit: contain;
  filter: none !important;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 4px;
}

.footer-logo-lockup::after {
  content: '';
  display: block;
  width: 1.5px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  margin: 0 0.15rem;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  color: #ffffff;
  white-space: nowrap;
  display: block;
}

.footer-logo-sub {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  display: block;
}

/* ── Mobile scaling ─────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-height: 70px; }
  img.logo-icon { height: 50px !important; }
  .logo-name-line { font-size: 0.92rem; }
  .logo-sub-line  { font-size: 0.75rem; }
  .logo-lockup::after { height: 28px; }
  .header-contact { display: none; }
}

@media (max-width: 400px) {
  :root { --nav-height: 64px; }
  img.logo-icon { height: 42px !important; }
  .logo-name-line { font-size: 0.82rem; }
  .logo-sub-line  { font-size: 0.68rem; }
}
