/* =================================================================
   Magic Ben — clean static rebuild
   Dark, theatrical "gentleman magician / speakeasy" system.
   Single source of truth for the redesigned site.
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Surfaces — warm near-black, never pure #000 */
  --bg:            #0b0a0c;
  --bg-2:          #110f12;
  --surface:       rgba(255, 250, 244, 0.035);
  --surface-2:     rgba(255, 250, 244, 0.06);
  --border:        rgba(255, 245, 235, 0.10);
  --border-strong: rgba(255, 245, 235, 0.18);

  /* Ink */
  --text:    #f6f0e8;
  --muted:   rgba(246, 240, 232, 0.62);
  --faint:   rgba(246, 240, 232, 0.40);

  /* Warm brand — ember orange + candlelight gold */
  --accent:      #ff5915;
  --accent-soft: #ff8a4c;
  --gold:        #e7b15c;
  --gold-soft:   #f4d59a;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 11vw, 160px);
  --radius:   18px;
  --radius-lg: 28px;
  --radius-sm: 12px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow:    0 18px 50px -18px rgba(0, 0, 0, 0.75);
  --shadow-lg: 0 40px 90px -30px rgba(0, 0, 0, 0.85);
  --glow:      0 0 0 1px rgba(255, 138, 76, 0.25), 0 18px 60px -12px rgba(255, 89, 21, 0.35);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Fixed ambience: faint grain + ember glow that anchors the dark theme */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 78% -5%, rgba(255, 89, 21, 0.14), transparent 60%),
    radial-gradient(50% 40% at 0% 100%, rgba(231, 177, 92, 0.07), transparent 60%);
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

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

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { position: relative; z-index: 1; padding-block: var(--section-y); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
}
.display {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.h3 { font-size: clamp(1.3rem, 2.4vw, 1.85rem); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 56ch; }
.muted { color: var(--muted); }
.accent { color: var(--accent-soft); }
.serif-em { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.6em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  will-change: transform;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #1a0d04;
  box-shadow: 0 12px 34px -10px rgba(255, 89, 21, 0.6);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 20px 48px -10px rgba(255, 89, 21, 0.7); }
.btn--ghost {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--gold); color: var(--gold-soft); }

.arrow-link {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 600; font-size: 0.92rem; color: var(--gold-soft);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.arrow-link svg { width: 1em; height: 1em; transition: transform 0.3s var(--ease); }
.arrow-link:hover { gap: 0.85em; color: var(--accent-soft); }

/* =================================================================
   HEADER / NAV
   ================================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 10, 12, 0.82);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 78px;
}
.nav__logo img { height: 40px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 0.35rem; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 0.4em;
  padding: 0.6em 0.9em;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav__link:hover, .nav__item:hover .nav__link { color: var(--text); background: var(--surface); }
.nav__link .caret { width: 0.7em; height: 0.7em; opacity: 0.6; transition: transform 0.3s var(--ease); }
.nav__item:hover .caret { transform: rotate(180deg); }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px;
  background: rgba(17, 15, 18, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}
.nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__dropdown a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 0.7em 0.85em;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav__dropdown a span { font-size: 0.74rem; color: var(--faint); }
.nav__dropdown a:hover { background: var(--surface-2); color: var(--text); }
.nav__dropdown a:hover span { color: var(--gold); }

.nav__cta { display: flex; align-items: center; gap: 1rem; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.9rem; font-weight: 600; color: var(--text);
}
.nav__phone svg { width: 1em; height: 1em; color: var(--accent-soft); }

/* Burger */
.nav__burger { display: none; width: 46px; height: 46px; border-radius: 12px; position: relative; background: var(--surface-2); border: 1px solid var(--border-strong); }
.nav__burger span {
  position: absolute; left: 11px; right: 11px; height: 2px; background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 22px; }
.nav__burger span:nth-child(3) { top: 28px; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(8, 7, 9, 0.98);
  backdrop-filter: blur(8px);
  padding: 100px var(--gutter) 40px;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a {
  display: block; padding: 0.65em 0;
  font-family: var(--font-display); font-size: 1.5rem; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-menu__cta {
  font-family: var(--font-sans) !important; font-size: 1rem !important;
  text-align: center; border-bottom: none !important; margin-bottom: 1rem;
  color: #1a0d04 !important; justify-content: center;
}
.mobile-menu .sub { padding-left: 1rem; }
.mobile-menu .sub a { font-size: 1.05rem; font-family: var(--font-sans); color: var(--muted); }
.mobile-menu .group-label {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-top: 1.6rem; margin-bottom: 0.3rem;
}

/* =================================================================
   HERO
   ================================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding-top: 100px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; filter: saturate(0.9); }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,10,12,0.6) 0%, rgba(11,10,12,0.4) 40%, var(--bg) 100%),
    radial-gradient(70% 70% at 30% 40%, transparent, rgba(11,10,12,0.7));
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center; width: 100%;
}
.hero__title { margin: 1.4rem 0 1.6rem; }
.hero__title em { color: var(--gold-soft); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero__meta { display: flex; gap: 2.2rem; margin-top: 3rem; flex-wrap: wrap; }
.hero__meta-item .n { font-family: var(--font-display); font-size: 1.9rem; color: var(--text); display: block; line-height: 1; }
.hero__meta-item .l { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.04em; }

/* Hero portrait */
.hero__portrait { position: relative; }
.hero__portrait img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 20%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.hero__portrait::before {
  content: ""; position: absolute; inset: -14px; border-radius: calc(var(--radius-lg) + 14px);
  background: radial-gradient(60% 60% at 70% 20%, rgba(255,89,21,0.35), transparent 70%);
  z-index: -1; filter: blur(20px);
}
.hero__badge {
  position: absolute; bottom: -18px; left: -18px;
  background: rgba(17,15,18,0.92); backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong); border-radius: 16px;
  padding: 0.85rem 1.2rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.8rem;
}
.hero__badge .star { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.1em; }
.hero__badge .txt { font-size: 0.82rem; line-height: 1.3; }
.hero__badge .txt strong { display: block; font-size: 0.92rem; }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-cue .line { width: 1px; height: 38px; background: linear-gradient(var(--gold), transparent); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0%,100% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; } }

/* =================================================================
   INTRO / BENJAMIN
   ================================================================= */
.intro__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.intro__media { position: relative; }
.intro__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.intro__media .sig {
  position: absolute; right: -10px; bottom: 24px;
  background: var(--accent); color: #1a0d04; font-weight: 700;
  padding: 0.7rem 1.1rem; border-radius: 12px; font-size: 0.85rem;
  box-shadow: var(--shadow);
}
.intro__body p + p { margin-top: 1.1rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.5em 1em; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 0.85rem; color: var(--muted);
}
.chip svg { width: 1em; height: 1em; color: var(--gold); }

/* =================================================================
   SECTION HEADING
   ================================================================= */
.sec-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .h2 { margin: 1rem 0 1.1rem; }

/* =================================================================
   PRESTATIONS — editorial bento
   ================================================================= */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: flex-end;
  isolation: isolate;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform 0.7s var(--ease);
}
.card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,10,12,0.05) 0%, rgba(11,10,12,0.55) 55%, rgba(11,10,12,0.94) 100%);
  transition: background 0.5s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.card:hover img { transform: scale(1.06); }
.card:hover::after { background: linear-gradient(180deg, rgba(11,10,12,0.05) 0%, rgba(40,14,2,0.5) 50%, rgba(11,10,12,0.96) 100%); }
.card__body { padding: clamp(1.2rem, 2vw, 1.8rem); }
.card__kicker { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.card__title { font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.05; margin-bottom: 0.5rem; }
.card__desc { font-size: 0.92rem; color: var(--muted); margin-bottom: 0.9rem; max-width: 42ch; }
.card .arrow-link { font-size: 0.85rem; }

/* spans */
.card--xl { grid-column: span 4; min-height: 460px; }
.card--lg { grid-column: span 2; min-height: 460px; }
.card--md { grid-column: span 2; min-height: 320px; }

/* =================================================================
   ÉVÉNEMENTIEL band
   ================================================================= */
.evt { background: var(--bg-2); border-block: 1px solid var(--border); }
.evt__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.evt-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--border); min-height: 360px;
  display: flex; flex-direction: column; justify-content: flex-end;
  isolation: isolate;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.evt-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.7s var(--ease); }
.evt-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11,10,12,0.1), rgba(11,10,12,0.92)); }
.evt-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.evt-card:hover img { transform: scale(1.06); }
.evt-card__body { padding: 1.5rem; }
.evt-card__icon { width: 40px; height: 40px; color: var(--gold); margin-bottom: 0.8rem; }
.evt-card__title { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.4rem; }
.evt-card__desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.9rem; }

/* =================================================================
   SHOWREEL
   ================================================================= */
.reel { position: relative; }
.reel__frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-strong); box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9; background: #000;
}
.reel__frame video, .reel__frame img.poster { width: 100%; height: 100%; object-fit: cover; }
.reel__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.2rem;
  background: radial-gradient(60% 60% at 50% 50%, rgba(11,10,12,0.3), rgba(11,10,12,0.75));
  transition: opacity 0.4s var(--ease);
}
.reel__overlay.hidden { opacity: 0; pointer-events: none; }
.play-btn {
  width: 86px; height: 86px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(255,89,21,0.5); animation: pulse 2.6s infinite;
  transition: transform 0.3s var(--ease-spring);
}
.play-btn:hover { transform: scale(1.08); }
.play-btn svg { width: 30px; height: 30px; color: #1a0d04; margin-left: 4px; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,89,21,0.45); } 70% { box-shadow: 0 0 0 26px rgba(255,89,21,0); } 100% { box-shadow: 0 0 0 0 rgba(255,89,21,0); } }
.reel__label { font-family: var(--font-display); font-size: 1.3rem; color: var(--text); }

/* =================================================================
   WHY / value props
   ================================================================= */
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }
.why-item { padding: 1.6rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: border-color 0.4s var(--ease), background 0.4s var(--ease); }
.why-item:hover { border-color: var(--border-strong); background: var(--surface-2); }
.why-item .num { font-family: var(--font-display); font-size: 0.9rem; color: var(--gold); margin-bottom: 1rem; }
.why-item h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.why-item p { font-size: 0.9rem; color: var(--muted); }

/* =================================================================
   CTA band
   ================================================================= */
.cta { position: relative; overflow: hidden; }
.cta__inner {
  position: relative; z-index: 1;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(80% 120% at 85% 0%, rgba(255,89,21,0.22), transparent 55%),
    linear-gradient(180deg, var(--bg-2), #0a0709);
  padding: clamp(2.5rem, 6vw, 5rem);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta__inner .h2 { margin: 1rem auto 1.2rem; max-width: 16ch; }
.cta__contact { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; justify-content: center; margin-top: 2rem; }
.cta__contact a { display: inline-flex; align-items: center; gap: 0.6em; color: var(--text); font-weight: 600; }
.cta__contact svg { width: 1.1em; height: 1.1em; color: var(--accent-soft); }

/* =================================================================
   FOOTER
   ================================================================= */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding-block: clamp(3rem, 6vw, 5rem) 2rem; position: relative; z-index: 1; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer__brand img { height: 44px; margin-bottom: 1.2rem; }
.footer__brand p { font-size: 0.9rem; color: var(--muted); max-width: 34ch; }
.footer__col h4 { font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer__col a { display: block; font-size: 0.92rem; color: var(--muted); padding: 0.3em 0; transition: color 0.25s var(--ease); }
.footer__col a:hover { color: var(--text); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--border); font-size: 0.82rem; color: var(--faint); }

/* =================================================================
   Scroll reveal
   ================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* =================================================================
   Responsive
   ================================================================= */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr 0.8fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
  .hero { min-height: auto; padding-block: 130px 80px; }
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__portrait { max-width: 420px; }
  .scroll-cue { display: none; }
  .intro__grid { grid-template-columns: 1fr; }
  .intro__media { max-width: 460px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .card--xl, .card--lg, .card--md { grid-column: span 1; min-height: 340px; }
  .evt__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .bento { grid-template-columns: 1fr; }
  .hero__meta { gap: 1.4rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta__contact { flex-direction: column; gap: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
