/* =========================================================
   Innov Events — charte : navy #17253A / #1F2E48, cyan #7BC6D3
   / #88CCE1, fond pâle #E9F5F6, ambre #DEA442 (ponctuel)
   ========================================================= */

:root {
  --navy: #17253A;
  --navy-2: #1F2E48;
  --cyan: #7BC6D3;
  --cyan-light: #88CCE1;
  --pale: #E9F5F6;
  --amber: #DEA442;
  --white: #FFFFFF;
  --text: #2A3850;
  --text-muted: #5A6A85;
  --text-on-dark: rgba(255, 255, 255, 0.82);
  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --track: 0.15em;
  --radius: 10px;
  --container: 1140px;
  --header-h: 92px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

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

img, svg { max-width: 100%; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy-2);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

p { margin: 0 0 1em; }

a { color: var(--navy-2); }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

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

:focus-visible {
  outline: 3px solid var(--cyan-light);
  outline-offset: 3px;
}

/* ===== Signature : sur-titres espacés ===== */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: var(--track);
  text-transform: uppercase;
  color: var(--navy-2);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--cyan);
  flex: none;
}

.eyebrow-light { color: var(--cyan); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  color: var(--white);
  border-bottom: 1px solid rgba(123, 198, 211, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.brand-logo {
  width: 72px;
  height: 72px;
  color: var(--cyan);
  flex: none;
}

.brand-logo-innov {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 8px;
  fill: currentColor;
}

.brand-logo-events {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 6px;
  fill: currentColor;
}

.brand-name { display: flex; flex-direction: column; line-height: 1.25; }

.brand-name-main {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
}

.brand-name-sub {
  font-size: 0.66rem;
  letter-spacing: var(--track);
  text-transform: uppercase;
  color: var(--cyan-light);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-menu a:hover { color: var(--cyan-light); border-bottom-color: var(--cyan); }

.nav-menu .nav-cta {
  border: 1.5px solid var(--cyan);
  border-radius: 999px;
  padding: 9px 20px;
  color: var(--cyan);
  font-weight: 600;
}

.nav-menu .nav-cta:hover {
  background: var(--cyan);
  color: var(--navy);
  border-bottom-color: var(--cyan);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.25s, opacity 0.25s;
}

/* ===== Boutons ===== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 30px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--cyan);
  color: var(--navy);
}

.btn-primary:hover { background: var(--cyan-light); }

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: transparent;
}

.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan-light); }

.btn-block { width: 100%; }

/* ===== Hero — bannière à formes organiques ===== */
/* Conteneur élargi : la bannière respire plus que le reste du site */
.hero > .container { max-width: 1300px; }

.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.hero-blobs,
.contact-arcs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding-block: clamp(56px, 8vh, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 3vw, 44px);
  align-items: center;
}

.hero-title {
  color: var(--white);
  font-size: clamp(1.95rem, 4.1vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 0.6em;
}

.hero-title em {
  display: inline-block;
  font-style: italic;
  font-weight: 400;
  color: var(--cyan);
}

.hero-lead {
  color: var(--text-on-dark);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  max-width: 42ch;
  margin-bottom: 2.2rem;
}

/* Ligne bouton + réseaux + téléphone */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(12px, 1.4vw, 20px);
  margin: 0;
}

.hero-contact {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 20px);
}

.hero-social {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--cyan);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.hero-social a:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.hero-social svg { width: 17px; height: 17px; }

.hero-tel {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}

.hero-tel:hover { color: var(--cyan-light); }

/* Photo dans sa forme organique, cernée d'un filet décalé */
.hero-visual {
  position: relative;
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 1.05;
}

.hero-outline {
  position: absolute;
  inset: -26px -26px 14px 14px;
  width: auto;
  height: auto;
  overflow: visible;
  opacity: 1;
}

.hero-slides {
  position: absolute;
  inset: 0;
  clip-path: url(#hero-blob);
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.35));
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  animation: hero-zoom 7s ease-out forwards;
}

@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

/* ===== Sections ===== */
.section { padding-block: clamp(64px, 10vh, 110px); }

.section-pale { background: var(--pale); }

.section-dark {
  background: var(--navy);
  color: var(--text-on-dark);
}

.section-dark .section-title { color: var(--white); }

.section-title {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.8em;
}

.section-lead {
  max-width: 62ch;
  color: inherit;
  margin-bottom: 2.2rem;
}

/* ===== Pourquoi ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 2.4rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  border-top: 3px solid var(--cyan);
  box-shadow: 0 8px 24px rgba(23, 37, 58, 0.06);
}

.why-card h3 { font-size: 1.08rem; font-weight: 600; }

.why-card p { margin: 0; font-size: 0.94rem; color: var(--text-muted); }

/* ===== Services — grille bento ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 215px;
  gap: 20px;
  margin-top: 2.4rem;
}

.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--navy-2);
}

.bento-large { grid-column: span 2; grid-row: span 2; }

.bento-wide { grid-column: span 3; }

.bento-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bento-card:hover .bento-img { transform: scale(1.05); }

.bento-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(23, 37, 58, 0.25) 0%,
    rgba(23, 37, 58, 0.35) 40%,
    rgba(23, 37, 58, 0.88) 78%,
    rgba(23, 37, 58, 0.96) 100%);
  transition: background 0.3s;
}

.bento-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--cyan-light);
  background: rgba(23, 37, 58, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(123, 198, 211, 0.35);
}

.bento-chip svg { width: 24px; height: 24px; }

.bento-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 22px 18px;
}

.bento-body h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.35em;
}

.bento-large .bento-body h3 { font-size: 1.4rem; }

.bento-body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.bento-large .bento-body p { font-size: 0.95rem; max-width: 58ch; }

/* ===== Objets publicitaires — carrousel photo ===== */
.op-carousel-wrap {
  position: relative;
  margin-top: 2.6rem;
}

.op-carousel {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.op-carousel::-webkit-scrollbar { display: none; }

.op-card {
  flex: 0 0 225px;
  background: var(--white);
  border: 1px solid rgba(23, 37, 58, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.op-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 14px 30px rgba(23, 37, 58, 0.12);
}

.op-media {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(150deg, var(--pale), #D9EDF0);
  display: grid;
  place-items: center;
}

.op-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.op-ico {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--cyan);
}

.op-ico svg { width: 32px; height: 32px; }

.op-name {
  display: block;
  padding: 14px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-2);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(23, 37, 58, 0.12);
  background: var(--white);
  color: var(--navy-2);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(23, 37, 58, 0.15);
  transition: background 0.2s, color 0.2s;
}

.carousel-nav:hover { background: var(--cyan); color: var(--navy); }

.carousel-nav svg { width: 22px; height: 22px; }

.carousel-nav.is-prev { left: 6px; }

.carousel-nav.is-next { right: 6px; }

.op-cta { margin-top: 2.2rem; }

.op-cta p { margin: 0; color: var(--text-muted); font-size: 0.97rem; }

.op-cta a { color: var(--navy-2); font-weight: 600; }

.op-cta a:hover { color: var(--cyan); }

/* ===== Galerie ===== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 2.2rem 0 2rem;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-on-dark);
  background: transparent;
  border: 1px solid rgba(123, 198, 211, 0.4);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.filter-btn:hover { border-color: var(--cyan); color: var(--cyan-light); }

.filter-btn.is-active {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy);
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gallery-item figure { margin: 0; }

.gallery-item.is-hidden { display: none; }

.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(123, 198, 211, 0.22);
  transition: transform 0.25s;
}

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

.gallery-item figcaption {
  padding-top: 12px;
  font-size: 0.9rem;
  color: var(--text-on-dark);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* L'ambre, réservé aux étiquettes de la galerie */
.tag {
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--amber);
  border-radius: 4px;
  padding: 3px 9px;
}

.gallery-note {
  margin: 2rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}

/* ===== Partenaires ===== */
.partners-wrap {
  position: relative;
  margin-top: 2.4rem;
}

.partners-carousel {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  /* marge intérieure : les logos de bord passent sous les flèches sinon */
  padding: 4px 34px;
  overflow-x: auto;
  scrollbar-width: none;
  /* fondu aux extrémités : les logos s'effacent au lieu d'être coupés net */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.partners-carousel::-webkit-scrollbar { display: none; }

.partner {
  flex: 0 0 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 110px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(23, 37, 58, 0.08);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy-2);
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.partner:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(23, 37, 58, 0.1);
}

.partner img {
  max-width: 100%;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ===== Témoignages ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 22px;
  margin-top: 2.4rem;
}

.testimonial-card {
  margin: 0;
  border-radius: 22px;
  padding: 22px 26px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.t-pale { background: var(--pale); border: 1px solid rgba(123, 198, 211, 0.5); }

.t-white { background: var(--white); border: 1px solid rgba(23, 37, 58, 0.12); }

.t-amber { background: #FBF3E2; border: 1px solid rgba(222, 164, 66, 0.45); }

.t-navy { background: var(--navy-2); border: 1px solid var(--navy-2); }

.testimonial-card blockquote { margin: 0; flex: 1; }

.testimonial-card blockquote p {
  margin: 0 0 1rem;
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.65;
}

.t-navy blockquote p { color: var(--text-on-dark); }

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(23, 37, 58, 0.1);
  padding-top: 14px;
}

.t-navy figcaption { border-top-color: rgba(255, 255, 255, 0.15); }

.testimonial-avatar {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  background: linear-gradient(140deg, var(--cyan-light), var(--cyan));
}

.testimonial-id { display: flex; flex-direction: column; gap: 2px; }

.testimonial-author {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-2);
  line-height: 1.3;
}

.t-navy .testimonial-author { color: var(--white); }

.testimonial-role {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.t-navy .testimonial-role { color: rgba(255, 255, 255, 0.65); }

.testimonial-tag {
  margin-left: auto;
  flex: none;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy-2);
  background: rgba(123, 198, 211, 0.25);
  border-radius: 999px;
  padding: 5px 14px;
}

@media (max-width: 520px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-tag { display: none; }
}

.t-navy .testimonial-tag { color: var(--cyan-light); background: rgba(123, 198, 211, 0.15); }


/* ===== Contact ===== */
.section-contact { position: relative; overflow: hidden; }

.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

.contact-details { font-style: normal; margin: 1.6rem 0; }

.contact-details p {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 1.1rem;
}

.contact-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: var(--track);
  text-transform: uppercase;
  color: var(--cyan);
}

.contact-details a { color: var(--white); text-decoration: none; }

.contact-details a:hover { color: var(--cyan-light); }

.social-links {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(123, 198, 211, 0.4);
  border-radius: 50%;
  color: var(--cyan);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social-links a:hover { background: var(--cyan); color: var(--navy); border-color: var(--cyan); }

.social-links svg { width: 20px; height: 20px; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(24px, 3.5vw, 40px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.form-row { margin-bottom: 18px; }

.form-row label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-2);
  margin-bottom: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: #F7FBFC;
  border: 1px solid rgba(23, 37, 58, 0.15);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(123, 198, 211, 0.3);
}

textarea { resize: vertical; }

.form-note {
  margin: 12px 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: var(--text-on-dark);
  padding-block: 48px;
  text-align: center;
  border-top: 1px solid rgba(123, 198, 211, 0.18);
}

.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }

.brand-footer .brand-logo { width: 96px; height: 96px; color: var(--white); }

.footer-baseline {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: var(--track);
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0;
}

.footer-copy { font-size: 0.85rem; margin: 0; }

.footer-copy a { color: inherit; }

/* ===== Apparition au défilement ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ===== Responsive ===== */
@media (max-width: 1000px) {
  /* cercles et points décoratifs : ils viennent buter sur le titre en colonne unique */
  .hero-deco { display: none; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { justify-self: center; max-width: 400px; margin-top: 8px; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-large { grid-column: span 2; grid-row: span 2; }
  .bento-wide { grid-column: span 2; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav-toggle { display: block; }

  .nav-menu {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-2);
    padding: 12px 24px 24px;
    border-bottom: 1px solid rgba(123, 198, 211, 0.2);
    display: none;
  }

  .nav-menu.is-open { display: flex; }

  .nav-menu li { border-bottom: 1px solid rgba(255, 255, 255, 0.07); }

  .nav-menu li:last-child { border-bottom: 0; padding-top: 16px; }

  .nav-menu a { display: block; padding: 14px 0; border-bottom: 0; }

  .nav-menu .nav-cta { text-align: center; }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .brand-name-sub { display: none; }

  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 235px; }
  .bento-large, .bento-wide { grid-column: auto; grid-row: auto; }
  .bento-large { grid-row: span 2; }

  .hero-stats { gap: 24px; }
}

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

  .hero-slide.is-active { animation: none; }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
}
