/* ==========================================================================
   HUWII EVENTS — Design System
   Swap the variables below with your own design-system values.
   ========================================================================== */

:root {
  /* Colors */
  --color-primary: #ff6a1a;        /* Huwii orange */
  --color-primary-dark: #e05200;
  --color-primary-soft: #fff0e6;
  --color-accent: #10b5ae;         /* teal accent */
  --color-ink: #16130f;            /* near-black, warm */
  --color-ink-soft: #241f19;
  --color-paper: #faf7f2;          /* warm off-white page background */
  --color-surface: #ffffff;
  --color-text: #2c2620;
  --color-muted: #6f675e;
  --color-text-invert: #f7f3ee;
  --color-muted-invert: #b8afa5;
  --color-line: #e7e0d6;
  --color-line-invert: #3a332b;
  --color-focus: #1a6bff;

  /* Fonts */
  --font-display: "Arial Black", "Segoe UI", Arial, sans-serif;
  --font-body: "Segoe UI", -apple-system, Roboto, Helvetica, Arial, sans-serif;

  /* Type scale */
  --text-xs: 0.78rem;
  --text-sm: 0.9rem;
  --text-base: 1rem;
  --text-md: 1.15rem;
  --text-lg: 1.45rem;
  --text-xl: 2rem;
  --text-2xl: clamp(1.9rem, 5vw, 3.4rem);
  --text-hero: clamp(2.4rem, 7vw, 4.6rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2.5rem;
  --space-6: 4rem;
  --space-7: 6rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Misc */
  --shadow-card: 0 10px 30px rgba(22, 19, 15, 0.09);
  --shadow-lift: 0 16px 40px rgba(22, 19, 15, 0.16);
  --container: 1180px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-paper);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  margin: 0 0 var(--space-3);
  color: var(--color-ink);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-lg); }
h4 { font-size: var(--text-md); }

p { margin: 0 0 var(--space-3); }

a { color: var(--color-primary-dark); }

a:hover { color: var(--color-primary); }

ul, ol { padding-left: 1.2rem; }

/* Accessible focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-ink);
  color: #fff;
  padding: var(--space-2) var(--space-3);
  z-index: 200;
}

.skip-link:focus { left: var(--space-3); }

/* ==========================================================================
   Layout helpers
   ========================================================================== */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.section { padding: var(--space-6) 0; }

.section--tight { padding: var(--space-5) 0; }

.section--dark {
  background: var(--color-ink);
  color: var(--color-text-invert);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--color-text-invert); }

.section--dark p { color: var(--color-muted-invert); }

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.section-head { max-width: 720px; margin-bottom: var(--space-5); }

.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.underline-accent {
  display: block;
  width: 64px;
  height: 4px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  margin-top: var(--space-3);
}

.section-head--center .underline-accent { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-align: center;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.btn--primary:hover { background: var(--color-primary-dark); color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-ink);
}

.btn--ghost:hover { background: var(--color-ink); color: #fff; }

.btn--ghost-invert {
  background: transparent;
  color: var(--color-text-invert);
  border-color: var(--color-text-invert);
}

.btn--ghost-invert:hover { background: var(--color-text-invert); color: var(--color-ink); }

.btn--accent {
  background: var(--color-accent);
  color: #fff;
}

.btn--accent:hover { background: #0c948e; color: #fff; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

/* ==========================================================================
   Header / navigation (CSS-only mobile menu)
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-ink);
  border-bottom: 3px solid var(--color-primary);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
}

.brand img { height: 46px; width: auto; }

.nav-toggle-input { position: absolute; opacity: 0; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--color-text-invert);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-input:focus-visible + .nav-toggle {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
}

.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-ink);
  border-bottom: 3px solid var(--color-primary);
  display: none;
  padding: var(--space-3) var(--space-4) var(--space-4);
}

.nav-toggle-input:checked ~ .site-nav { display: block; }

.nav-toggle-input:checked ~ .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle-input:checked ~ .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-toggle-input:checked ~ .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.site-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--color-text-invert);
  padding: var(--space-2) var(--space-2);
  border-radius: var(--radius-sm);
}

.site-nav a:hover { color: var(--color-primary); }

.site-nav a[aria-current="page"] {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  border-radius: 0;
}

.site-nav .nav-cta { margin-top: var(--space-2); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }

  .site-nav {
    position: static;
    display: block;
    background: none;
    border: 0;
    padding: 0;
  }

  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: var(--space-4);
  }

  .site-nav .nav-cta { margin: 0 0 0 var(--space-3); }
}

/* ==========================================================================
   Hero (home)
   ========================================================================== */

.hero {
  /* Light left-side scrim only: the photo (people, banner) stays clearly visible */
  background:
    linear-gradient(95deg, rgba(18, 15, 12, 0.82) 0%, rgba(18, 15, 12, 0.62) 30%, rgba(18, 15, 12, 0.22) 55%, rgba(18, 15, 12, 0) 75%),
    url("imgi_329_cropped-Huwii-Events-Team-Building-122710.jpg") center / cover no-repeat;
  color: var(--color-text-invert);
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero .container { width: 100%; }

.hero__content {
  max-width: 620px;
  padding: var(--space-6) 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.hero__content .btn { text-shadow: none; }

.hero h1 { color: var(--color-text-invert); }

.hero h1 .accent { color: var(--color-primary); }

.hero__lede { font-size: var(--text-md); max-width: 40ch; color: var(--color-text-invert); }

@media (min-width: 900px) {
  .hero { min-height: 640px; }
  .hero__content { padding: var(--space-7) 0; }
}

@media (max-width: 899px) {
  .hero {
    /* Photo first: gentle darkening only where the text sits */
    background:
      linear-gradient(rgba(18, 15, 12, 0.55) 0%, rgba(18, 15, 12, 0.42) 45%, rgba(18, 15, 12, 0.66) 100%),
      url("imgi_329_cropped-Huwii-Events-Team-Building-122710.jpg") center / cover no-repeat;
    min-height: 480px;
  }
}

/* Audience ticker strip */
.audience-strip {
  background: var(--color-ink-soft);
  border-top: 1px solid var(--color-line-invert);
  border-bottom: 1px solid var(--color-line-invert);
  padding: var(--space-3) 0;
  overflow: hidden;
}

.audience-strip ul {
  list-style: none;
  margin: 0;
  padding: 0 var(--space-4);
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: var(--space-4);
  overflow-x: auto;
  scrollbar-width: none;
}

.audience-strip ul::-webkit-scrollbar { display: none; }

.audience-strip li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-invert);
  white-space: nowrap;
}

.audience-strip li + li::before {
  content: "•";
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-right: var(--space-4);
}

.audience-strip svg { width: 20px; height: 20px; color: var(--color-muted-invert); }

.audience-strip .dup { display: none; }

@media (min-width: 900px) {
  .audience-strip ul { justify-content: center; overflow-x: hidden; }
}

@media (min-width: 1240px) {
  .audience-strip .dup { display: flex; }
}

/* ==========================================================================
   Cards & grids
   ========================================================================== */

.grid { display: grid; gap: var(--space-4); }

.grid > * { min-width: 0; }

.grid--2 { grid-template-columns: minmax(0, 1fr); }
.grid--3 { grid-template-columns: minmax(0, 1fr); }
.grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.card h3 { margin-top: var(--space-2); font-size: var(--text-md); }

/* White cards/tiers sitting inside a dark section keep dark, readable text */
.section--dark .card,
.section--dark .tier { color: var(--color-text); }

.section--dark .card h3,
.section--dark .card h4,
.section--dark .tier h3 { color: var(--color-ink); }

.section--dark .card p,
.section--dark .tier p { color: var(--color-muted); }

/* Reusable cover image for content cards */
.card__cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
}

.card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--color-primary-soft);
  color: var(--color-primary);
}

.card__icon svg { width: 28px; height: 28px; }

.card .text-link {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

/* Service pillar cards (home) — full poster, whole card clickable */
.pillar-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  overflow: hidden;
  padding: 0 var(--space-3) var(--space-4);
  text-decoration: none;
  color: var(--color-ink);
}

.pillar-card__media {
  margin: 0 calc(var(--space-3) * -1) 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-ink);
}

.pillar-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar-card__title {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2.2vw, 1.1rem);
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0;
  color: var(--color-ink);
  hyphens: none;
}

.pillar-card__more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: auto;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary-dark);
}

.pillar-card__more svg {
  width: 15px;
  height: 15px;
  transition: transform 0.15s ease;
}

.pillar-card:hover { color: var(--color-ink); }
.pillar-card:hover .pillar-card__more { color: var(--color-primary); }
.pillar-card:hover .pillar-card__more svg { transform: translateX(4px); }

/* Product / game cards */
.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.product-card img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; background: #fff; }

/* Landscape event/equipment photos: frame them landscape (matches the source
   orientation) instead of square-cropping, so the short side is never upscaled. */
.product-card--photo img { aspect-ratio: 4 / 3; object-position: center; }

.product-card__body { padding: var(--space-3); display: flex; flex-direction: column; gap: var(--space-2); flex: 1; }

.product-card__body h3,
.product-card__body h4 { font-size: var(--text-base); margin: 0; }

.product-card__body p { font-size: var(--text-sm); color: var(--color-muted); margin: 0; flex: 1; }

.product-card .btn { padding: 0.55rem 1.1rem; font-size: var(--text-xs); align-self: flex-start; }

.badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 1;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--color-primary);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

.badge--hire { background: var(--color-accent); }

/* Photo tiles (gallery) */
.photo-grid { display: grid; gap: var(--space-3); grid-template-columns: repeat(2, 1fr); }

@media (min-width: 760px) { .photo-grid { grid-template-columns: repeat(3, 1fr); } }

@media (min-width: 1020px) { .photo-grid { grid-template-columns: repeat(4, 1fr); } }

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.photo-grid .tall { grid-row: span 2; }

.photo-grid .tall img { aspect-ratio: 3 / 4; height: 100%; }

/* Video embeds */
.video-grid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }

@media (min-width: 760px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--color-ink-soft);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   G.R.O.W.T.H. section
   ========================================================================== */

.growth-grid { display: grid; gap: var(--space-3); grid-template-columns: 1fr; }

@media (min-width: 640px) { .growth-grid { grid-template-columns: repeat(2, 1fr); } }

@media (min-width: 960px) { .growth-grid { grid-template-columns: repeat(3, 1fr); } }

.growth-card {
  display: flex;
  gap: var(--space-3);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-top: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

.growth-card__letter {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--color-primary);
}

.growth-card h3 { font-size: var(--text-base); margin-bottom: var(--space-1); }

.growth-card p { font-size: var(--text-sm); color: var(--color-muted); margin: 0; }

/* ==========================================================================
   Stats band
   ========================================================================== */

.stats-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  text-align: center;
}

@media (min-width: 760px) { .stats-band { grid-template-columns: repeat(4, 1fr); } }

.stat__number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
  line-height: 1;
}

.stat__label {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted-invert);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.testimonial__stars { color: var(--color-primary); letter-spacing: 0.2em; font-size: var(--text-sm); }

.testimonial blockquote { margin: 0; font-size: var(--text-md); color: var(--color-text); }

.testimonial cite {
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--color-muted);
  margin-top: auto;
}

.testimonial cite strong { display: block; color: var(--color-ink); }

/* ==========================================================================
   Process timeline
   ========================================================================== */

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  gap: var(--space-4);
}

.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 2px;
  background: var(--color-line);
}

.timeline li {
  position: relative;
  padding-left: 64px;
}

.timeline__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  border-radius: var(--radius-pill);
  border: 4px solid var(--color-paper);
}

.timeline h3 { font-size: var(--text-base); margin-bottom: var(--space-1); }

.timeline p { font-size: var(--text-sm); color: var(--color-muted); margin: 0; }

@media (min-width: 960px) {
  .timeline { grid-template-columns: repeat(5, 1fr); gap: var(--space-3); }

  .timeline::before {
    left: 8%;
    right: 8%;
    top: 22px;
    bottom: auto;
    width: auto;
    height: 3px;
  }

  .timeline li { padding-left: 0; padding-top: 64px; text-align: center; }

  .timeline__num { left: 50%; transform: translateX(-50%); }
}

/* ==========================================================================
   Pricing tiers (packages)
   ========================================================================== */

.tier-grid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; align-items: stretch; }

@media (min-width: 900px) { .tier-grid { grid-template-columns: repeat(3, 1fr); } }

.tier {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.tier--featured {
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-lift);
  position: relative;
}

.tier__flag {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.tier__stars { color: var(--color-primary); font-size: var(--text-md); letter-spacing: 0.12em; }

.tier h3 { margin: 0; }

.tier ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-2);
  font-size: var(--text-sm);
}

.tier ul li { padding-left: 1.5rem; position: relative; }

.tier ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.tier .btn { margin-top: auto; }

/* ==========================================================================
   Comparison table
   ========================================================================== */

.table-wrap { overflow-x: auto; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-width: 560px;
}

.compare-table th,
.compare-table td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--color-line);
  font-size: var(--text-sm);
}

.compare-table thead th {
  background: var(--color-ink);
  color: var(--color-text-invert);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--text-xs);
}

.compare-table tbody th { font-weight: 600; color: var(--color-ink); }

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }

.compare-table .yes { color: var(--color-primary-dark); font-weight: 700; }

/* ==========================================================================
   FAQ accordion (CSS-only, details/summary)
   ========================================================================== */

.faq { display: grid; gap: var(--space-3); max-width: 820px; margin: 0 auto; }

.faq details {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: var(--space-3) var(--space-4);
  padding-right: 3.2rem;
  position: relative;
  color: var(--color-ink);
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-primary);
  line-height: 1;
}

.faq details[open] summary::after { content: "–"; }

.faq details[open] summary { border-bottom: 1px solid var(--color-line); }

.faq .faq__body { padding: var(--space-3) var(--space-4); font-size: var(--text-sm); color: var(--color-muted); }

.faq .faq__body p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Split sections / feature rows
   ========================================================================== */

.split {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }

  .split--reverse > .split__media { order: 2; }
}

.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

.split__media--stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.split__media--stack img { aspect-ratio: 3 / 4; object-fit: cover; height: 100%; }

.split__media--stack img:first-child { margin-top: var(--space-4); }

.check-list {
  list-style: none;
  margin: 0 0 var(--space-4);
  padding: 0;
  display: grid;
  gap: var(--space-2);
}

.check-list li { padding-left: 1.7rem; position: relative; }

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* Chip tags (activities) */
.chip-row { display: flex; flex-wrap: wrap; gap: var(--space-2); margin: var(--space-3) 0; padding: 0; list-style: none; }

.chip {
  font-size: var(--text-xs);
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  border: 1px solid rgba(255, 106, 26, 0.25);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.section--dark .chip {
  background: rgba(255, 106, 26, 0.12);
  color: #ffb08a;
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background:
    radial-gradient(700px 300px at 15% 0%, rgba(255, 106, 26, 0.35), transparent 65%),
    var(--color-ink);
  color: var(--color-text-invert);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  text-align: center;
}

.cta-band h2 { color: var(--color-text-invert); }

.cta-band p { color: var(--color-muted-invert); max-width: 52ch; margin-left: auto; margin-right: auto; }

.cta-band .btn-row { justify-content: center; }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */

.page-hero {
  background:
    radial-gradient(800px 360px at 80% 0%, rgba(255, 106, 26, 0.25), transparent 60%),
    var(--color-ink);
  color: var(--color-text-invert);
  padding: var(--space-6) 0;
}

.page-hero h1 { color: var(--color-text-invert); max-width: 18ch; }

.page-hero h1 .accent { color: var(--color-primary); }

.page-hero p { color: var(--color-muted-invert); max-width: 60ch; font-size: var(--text-md); }

.breadcrumbs {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-3);
  color: var(--color-muted-invert);
}

.breadcrumbs a { color: var(--color-primary); text-decoration: none; }

/* Anchor tab pills (games / services) */
.anchor-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: 0;
  margin: var(--space-4) 0 0;
  list-style: none;
}

.anchor-tabs a {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--color-text-invert);
  border: 2px solid var(--color-line-invert);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.anchor-tabs a:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form-grid { display: grid; gap: var(--space-3); }

@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }

  .form-grid .form-field--full { grid-column: 1 / -1; }
}

.form-field { display: flex; flex-direction: column; gap: var(--space-1); }

.form-field label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  color: var(--color-text);
  background: var(--color-surface);
  border: 2px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover { border-color: var(--color-muted); }

.form-field textarea { resize: vertical; min-height: 140px; }

.form-hint { font-size: var(--text-xs); color: var(--color-muted); }

/* Contact info cards */
.contact-card {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

.contact-card h3 { font-size: var(--text-base); margin-bottom: var(--space-1); }

.contact-card p { margin: 0; font-size: var(--text-sm); color: var(--color-muted); }

.contact-card a { word-break: break-word; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-ink);
  color: var(--color-muted-invert);
  padding: var(--space-6) 0 var(--space-4);
  margin-top: var(--space-6);
}

.site-footer__grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-line-invert);
}

@media (min-width: 760px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }

.site-footer h2 {
  color: var(--color-text-invert);
  font-size: var(--text-sm);
  letter-spacing: 0.14em;
  margin-bottom: var(--space-3);
}

.site-footer img { height: 54px; width: auto; margin-bottom: var(--space-3); }

.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-2); }

.site-footer a { color: var(--color-muted-invert); text-decoration: none; }

.site-footer a:hover { color: var(--color-primary); }

.site-footer p { font-size: var(--text-sm); }

.social-row { display: flex; gap: var(--space-3); margin-top: var(--space-3); }

.social-row a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-line-invert);
  color: var(--color-text-invert);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.social-row a:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

.social-row svg { width: 18px; height: 18px; }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  justify-content: space-between;
  padding-top: var(--space-4);
  font-size: var(--text-xs);
}

/* ==========================================================================
   Misc utilities
   ========================================================================== */

.text-center { text-align: center; }

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mb-0 { margin-bottom: 0; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after { transition: none !important; }
}
