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

  :root {
    --ink: #1a120b;
    --parchment: #f5ead8;
    --parchment-dark: #e8d5b0;
    --amber: #c8822a;
    --amber-light: #e8a44a;
    --wood: #3d1f0a;
    --wood-mid: #5c3015;
    --muted: #7a5c3a;
  }

  html { scroll-behavior: smooth; }

  /* Skip to main content — visible only on keyboard focus */
  .skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    background: var(--amber);
    color: var(--wood);
    font-family: 'Crimson Pro', serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0 0 4px 4px;
    text-decoration: none;
    transition: top 0.15s;
  }
  .skip-link:focus { top: 0; }

  body {
    font-family: 'Crimson Pro', Georgia, serif;
    background-color: var(--wood);
    color: var(--parchment);
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* Wood grain texture overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: repeating-linear-gradient(
      92deg,
      transparent 0px,
      transparent 18px,
      rgba(0,0,0,0.04) 18px,
      rgba(0,0,0,0.04) 19px
    ), repeating-linear-gradient(
      177deg,
      transparent 0px,
      transparent 60px,
      rgba(255,255,255,0.015) 60px,
      rgba(255,255,255,0.015) 61px
    );
    pointer-events: none;
    z-index: 0;
  }

  /* ====== NAV ====== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background: rgba(29, 12, 3, 0.88);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(200, 130, 42, 0.3);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--amber-light);
    letter-spacing: 0.02em;
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Crimson Pro', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--parchment-dark);
    text-decoration: none;
    transition: color 0.2s;
  }

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

  /* ====== HERO ====== */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200,130,42,0.18) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,130,42,0.08) 0%, transparent 60%),
                linear-gradient(180deg, var(--wood) 0%, #2a1206 100%);
    z-index: 0;
  }

  /* Candlelight glow */
  .hero-glow {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(240,192,112,0.12) 0%, transparent 70%);
    animation: flicker 4s ease-in-out infinite;
    z-index: 0;
  }

  @keyframes flicker {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    33% { opacity: 0.85; transform: translate(-50%, -50%) scale(1.03); }
    66% { opacity: 0.92; transform: translate(-50%, -50%) scale(0.98); }
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
  }

  .hero-emblem {
    margin: 0 auto 2rem;
    width: 90px;
    height: 90px;
    animation: fadeDown 0.9s ease both;
  }

  .hero-eyebrow {
    font-family: 'Crimson Pro', serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1rem;
    display: block;
    text-align: center;
    animation: fadeDown 0.9s 0.15s ease both;
  }

  .hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3.2rem, 8vw, 5.8rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--parchment);
    letter-spacing: -0.01em;
    animation: fadeDown 0.9s 0.25s ease both;
  }

  .hero-title em {
    font-style: italic;
    color: var(--amber-light);
  }

  .hero-subtitle {
    font-size: 1.35rem;
    font-weight: 300;
    font-style: italic;
    color: var(--parchment-dark);
    margin: 1.5rem 0 2.5rem;
    line-height: 1.6;
    animation: fadeDown 0.9s 0.38s ease both;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeDown 0.9s 0.5s ease both;
  }

  .btn-primary {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: var(--amber);
    color: var(--ink);
    font-family: 'Crimson Pro', serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-primary:hover { background: var(--amber-light); transform: translateY(-1px); }

  .btn-secondary {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: transparent;
    color: var(--parchment);
    font-family: 'Crimson Pro', serif;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(245,234,216,0.35);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
  }

  .btn-secondary:hover { border-color: var(--amber); color: var(--amber-light); transform: translateY(-1px); }

  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-18px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ====== DIVIDER ====== */
  .divider {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
    position: relative;
  }

  .divider::before {
    content: '✦';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--amber);
    font-size: 1.1rem;
    background: var(--wood);
    padding: 0 0.8rem;
    line-height: 1;
  }

  /* ====== SECTIONS ====== */
  section {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
  }

  .section-inner {
    max-width: 1060px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.75rem;
    display: block;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--parchment);
    margin-bottom: 1rem;
    line-height: 1.15;
  }

  /* ====== ABOUT ====== */
  .about {
    background: linear-gradient(180deg, var(--wood) 0%, var(--wood-mid) 100%);
  }

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

  .about-text p {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--parchment-dark);
    margin-bottom: 1.3rem;
  }

  .about-text p strong {
    font-weight: 600;
    color: var(--parchment);
  }

  .pillars {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .pillar {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    background: rgba(0,0,0,0.25);
    border-left: 3px solid var(--amber);
    border-radius: 0 4px 4px 0;
  }

  .pillar-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    color: var(--amber-light);
  }

  .pillar-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--parchment);
    margin-bottom: 0.25rem;
  }

  .pillar-text p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--parchment-dark);
    line-height: 1.5;
  }

  /* ====== EVENTS ====== */
  .events {
    background: linear-gradient(180deg, var(--wood-mid) 0%, var(--wood) 100%);
  }

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

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

  .event-card {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(200,130,42,0.2);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
  }

  .event-card:hover {
    transform: translateY(-3px);
    border-color: rgba(200,130,42,0.5);
  }

  /* Featured "next event" card */
  .event-card-featured {
    border-color: rgba(200,130,42,0.55);
    box-shadow: 0 0 0 1px rgba(200,130,42,0.25), 0 4px 24px rgba(0,0,0,0.4);
    grid-column: 1 / -1;
  }

  .event-next-label {
    font-family: 'Crimson Pro', serif;
    font-size: 0.72rem;
    font-style: italic;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    background: rgba(200,130,42,0.1);
    padding: 0.35rem 1.2rem;
    border-bottom: 1px solid rgba(200,130,42,0.15);
  }

  .event-card-header {
    background: rgba(200,130,42,0.12);
    padding: 1rem 1.2rem 0.7rem;
    border-bottom: 1px solid rgba(200,130,42,0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .event-date-block {
    text-align: center;
    min-width: 48px;
  }

  .event-date-block .month {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    display: block;
  }

  .event-date-block .day {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--parchment);
    line-height: 1;
    display: block;
  }

  .event-meta {
    flex: 1;
  }

  .event-meta .event-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--parchment);
    line-height: 1.2;
  }

  .event-meta .event-type {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-top: 0.15rem;
    display: block;
  }

  .event-card-body {
    padding: 1rem 1.2rem 1.2rem;
  }

  .event-detail {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--parchment-dark);
    margin-bottom: 0.5rem;
  }

  .event-detail svg {
    width: 15px;
    height: 15px;
    color: var(--amber);
    flex-shrink: 0;
  }

  .event-description {
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic;
    color: var(--muted);
    margin-top: 0.8rem;
    line-height: 1.5;
    border-top: 1px solid rgba(200,130,42,0.1);
    padding-top: 0.8rem;
    margin-bottom: 0.75rem;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    font-weight: 400;
    border: 1px solid;
  }

  /* beginner Friendly — amber */
  .badge.beginner {
    background: rgba(200,130,42,0.18);
    color: var(--amber-light);
    border-color: rgba(200,130,42,0.35);
  }

  /* All Levels — soft green */
  .badge.alllevels {
    background: rgba(58,128,64,0.2);
    color: #7ecb85;
    border-color: rgba(58,128,64,0.35);
  }

  /* Strategy Focus — steel blue */
  .badge.strategy {
    background: rgba(40,112,192,0.2);
    color: #7ab8f0;
    border-color: rgba(40,112,192,0.35);
  }

  /* Heavy Games — deep red */
  .badge.heavy {
    background: rgba(180,40,40,0.2);
    color: #f09090;
    border-color: rgba(180,40,40,0.35);
  }

  /* Special Event — purple */
  .badge.special {
    background: rgba(120,60,180,0.2);
    color: #c4a0f0;
    border-color: rgba(120,60,180,0.35);
  }

  /* RSVP Requested — teal */
  .badge.rsvp {
    background: rgba(20,140,130,0.2);
    color: #60d0c8;
    border-color: rgba(20,140,130,0.35);
  }

  /* ── Add to Calendar dropdown ── */
  .cal-dropdown {
    position: relative;
    margin-left: auto;
    flex-shrink: 0;
  }

  .cal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: var(--muted);
    background: none;
    border: 1px solid rgba(200,130,42,0.2);
    border-radius: 3px;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
    flex-shrink: 0;
  }

  .cal-btn:hover {
    color: var(--amber-light);
    border-color: rgba(200,130,42,0.45);
    background: rgba(200,130,42,0.08);
  }

  .cal-menu {
    display: none;
    position: absolute;
    bottom: calc(100% + 6px);
    right: 0;
    background: #1e0d05;
    border: 1px solid rgba(200,130,42,0.3);
    border-radius: 3px;
    min-width: 170px;
    z-index: 50;
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  }

  .cal-menu.cal-open { display: block; }

  .cal-option {
    display: block;
    padding: 0.55rem 0.9rem;
    font-family: 'Crimson Pro', serif;
    font-size: 0.9rem;
    color: var(--parchment-dark);
    text-decoration: none;
    transition: background 0.12s, color 0.12s;
    white-space: nowrap;
  }

  .cal-option + .cal-option {
    border-top: 1px solid rgba(200,130,42,0.1);
  }

  .cal-option:hover {
    background: rgba(200,130,42,0.12);
    color: var(--amber-light);
  }

  /* ====== FIND US ====== */
  .find-us {
    background: linear-gradient(180deg, var(--wood) 0%, #200e04 100%);
  }

  .find-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .info-block {
    margin-bottom: 2rem;
  }

  .info-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--amber-light);
    margin-bottom: 0.6rem;
  }

  .info-block p, .info-block address {
    font-size: 1.05rem;
    font-weight: 300;
    font-style: normal;
    color: var(--parchment-dark);
    line-height: 1.8;
  }

  .venue-maps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
  }

  .venue-map-card {
    border: 1px solid rgba(200,130,42,0.2);
    border-radius: 4px;
    overflow: hidden;
  }

  .venue-map-label {
    background: rgba(200,130,42,0.12);
    border-bottom: 1px solid rgba(200,130,42,0.2);
    padding: 0.7rem 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--amber-light);
  }

  .venue-map-label a {
    color: var(--amber-light);
    text-decoration: none;
    transition: color 0.2s;
  }

  .venue-map-label a:hover {
    color: var(--parchment);
  }

  .venue-map-label span {
    display: block;
    font-family: 'Crimson Pro', serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--muted);
    margin-top: 0.1rem;
  }

  .venue-map-card iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: none;
    filter: sepia(40%) saturate(60%) brightness(0.85);
  }

  @media (max-width: 700px) {
    .venue-maps { grid-template-columns: 1fr; }
  }

  /* ====== FAQ ====== */
  .faq {
    background: linear-gradient(180deg, #200e04 0%, var(--wood) 100%);
  }

  .faq-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(200,130,42,0.2);
    border-radius: 4px;
    overflow: hidden;
  }

  .faq-item {
    border-bottom: 1px solid rgba(200,130,42,0.15);
  }

  .faq-item:last-child { border-bottom: none; }

  .faq-question {
    width: 100%;
    background: rgba(0,0,0,0.25);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    text-align: left;
    transition: background 0.2s;
  }

  .faq-question:hover { background: rgba(200,130,42,0.08); }
  .faq-item.open .faq-question { background: rgba(200,130,42,0.1); }

  .faq-question-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--parchment);
    line-height: 1.3;
  }

  .faq-chevron {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--amber);
    transition: transform 0.3s ease;
  }

  .faq-item.open .faq-chevron { transform: rotate(180deg); }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 1.4rem;
    background: rgba(0,0,0,0.15);
  }

  .faq-item.open .faq-answer {
    max-height: 1000px;
    padding: 1rem 1.4rem 1.3rem;
  }

  .faq-answer p {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--parchment-dark);
    line-height: 1.75;
  }

  .faq-answer a {
    color: var(--amber-light);
    text-decoration: none;
  }

  .faq-answer a:hover { text-decoration: underline; }

  /* ====== TEAM ====== */
  .team {
    background: linear-gradient(180deg, var(--wood-mid) 0%, var(--wood) 100%);
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .team-card {
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(200,130,42,0.18);
    border-radius: 4px;
    padding: 1.5rem 1.3rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    transition: border-color 0.2s, transform 0.15s;
  }

  .team-card:hover {
    border-color: rgba(200,130,42,0.45);
    transform: translateY(-2px);
  }

  .member-avatar {
    width: 52px;
    height: 52px;
    margin-bottom: 0.7rem;
    flex-shrink: 0;
  }

  .member-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--parchment);
    line-height: 1.2;
  }

  .member-role {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.5rem;
  }

  .member-bio {
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic;
    color: var(--muted);
    line-height: 1.55;
  }

  @media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; }
  }

  /* ====== FOOTER ====== */
  footer {
    position: relative;
    z-index: 1;
    background: #130804;
    border-top: 1px solid rgba(200,130,42,0.2);
    padding: 3rem 2rem;
    text-align: center;
  }

  .footer-inner {
    max-width: 640px;
    margin: 0 auto;
  }

  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--amber-light);
    margin-bottom: 0.8rem;
  }

  .footer-tagline {
    font-size: 1rem;
    font-style: italic;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 2rem;
  }

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }

  .footer-links a {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--parchment-dark);
    text-decoration: none;
    transition: color 0.2s;
  }

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

  .footer-copy {
    font-size: 0.85rem;
    font-weight: 300;
    color: #4a3520;
  }

  /* ====== HAMBURGER ====== */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
  }

  .nav-hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--parchment-dark);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.2s;
    transform-origin: center;
  }

  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 57px;
    left: 0; right: 0;
    z-index: 99;
    background: rgba(20, 8, 2, 0.97);
    border-bottom: 1px solid rgba(200,130,42,0.3);
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 0;
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    font-family: 'Crimson Pro', serif;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--parchment-dark);
    text-decoration: none;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(200,130,42,0.1);
    transition: color 0.2s;
  }

  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { color: var(--amber-light); }

  /* ====== RESPONSIVE ====== */
  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { gap: 1.2rem; }
    .nav-links a { font-size: 0.85rem; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .find-us-grid { grid-template-columns: 1fr; gap: 2rem; }
    .find-us-grid > div:last-child .info-block { margin-top: 0 !important; }
    .events-header { flex-direction: column; align-items: flex-start; }
    section { padding: 4rem 1.5rem; }
    .venue-maps { margin-top: 2.5rem; }
  }

  @media (max-width: 580px) {
    nav { padding: 0.85rem 1.2rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .hero { padding: 7rem 1.5rem 3rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .btn-primary, .btn-secondary { padding: 0.75rem 1.5rem; font-size: 0.95rem; width: 100%; text-align: center; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    section { padding: 3.5rem 1.2rem; }
    .about-grid { gap: 2.5rem; }
    .pillar { padding: 1rem 1.1rem; }
    .venue-map-label span { font-size: 0.75rem; }
    .venue-map-card iframe { height: 180px; }
    .footer-links { gap: 1.2rem; }
    .events-grid { grid-template-columns: 1fr; }
  }
