/* ==========================================================================
   WOLUWÉ HANDBALL CLUB — Design tokens & base
   ========================================================================== */

:root {
  /* Palette — extraite du blason : marine profond, or, brun de l'ours */
  --navy-deep: #0f1f3d;
  --navy-mid: #16294f;
  --navy-soft: #1f3461;
  --gold: #f0b23d;
  --gold-bright: #ffc94d;
  --gold-light: #fce8b5;
  --bear-brown: #b9772e;
  --bear-brown-dark: #8a5a22;
  --cream: #faf7f0;
  --white: #ffffff;
  --ink: #0c1730;
  --ink-soft: rgba(12, 23, 48, 0.66);

  /* Typographie */
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", monospace;

  /* Echelle */
  --step--1: clamp(0.83rem, 0.8rem + 0.1vw, 0.9rem);
  --step-0: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.4vw, 1.4rem);
  --step-2: clamp(1.5rem, 1.3rem + 0.8vw, 1.9rem);
  --step-3: clamp(2rem, 1.6rem + 1.6vw, 2.75rem);
  --step-4: clamp(2.75rem, 2rem + 3vw, 4.5rem);
  --step-5: clamp(3.5rem, 2.4rem + 4.8vw, 6.5rem);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-soft: 0 20px 50px -20px rgba(15, 31, 61, 0.45);
  --shadow-deep: 0 30px 80px -25px rgba(15, 31, 61, 0.6);

  --container: 1240px;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { margin: 0; padding: 0; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.04;
  color: var(--navy-deep);
}

p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   Signature element: paw mark (réutilisé du blason comme fil rouge graphique)
   ========================================================================== */

.paw {
  display: inline-block;
  width: 1em;
  height: 1em;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path d='M50 58c14 0 26 13 26 24 0 9-7 14-16 14-5 0-7-2-10-2s-5 2-10 2c-9 0-16-5-16-14 0-11 12-24 26-24z'/><ellipse cx='22' cy='42' rx='9' ry='12'/><ellipse cx='42' cy='30' rx='8.5' ry='11.5'/><ellipse cx='62' cy='30' rx='8.5' ry='11.5'/><ellipse cx='80' cy='42' rx='9' ry='12'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path d='M50 58c14 0 26 13 26 24 0 9-7 14-16 14-5 0-7-2-10-2s-5 2-10 2c-9 0-16-5-16-14 0-11 12-24 26-24z'/><ellipse cx='22' cy='42' rx='9' ry='12'/><ellipse cx='42' cy='30' rx='8.5' ry='11.5'/><ellipse cx='62' cy='30' rx='8.5' ry='11.5'/><ellipse cx='80' cy='42' rx='9' ry='12'/></svg>") center/contain no-repeat;
  flex-shrink: 0;
}

.paw-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  color: var(--gold);
  margin-block: 1.5rem;
}
.paw-divider::before,
.paw-divider::after {
  content: "";
  height: 1px;
  width: clamp(30px, 8vw, 90px);
  background: linear-gradient(90deg, transparent, currentColor);
}
.paw-divider::after { background: linear-gradient(90deg, currentColor, transparent); }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 1.1rem;
  background: linear-gradient(180deg, rgba(8,18,38,0.75), rgba(8,18,38,0));
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(15, 31, 61, 0.92);
  backdrop-filter: blur(10px);
  padding-block: 0.7rem;
  box-shadow: 0 10px 30px -15px rgba(0,0,0,0.5);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  color: var(--white);
  font-size: var(--step-1);
  letter-spacing: 0.02em;
}

.brand img,
.brand svg {
  height: 48px;
  width: auto;
}

.brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.5em;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 700;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.main-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  position: relative;
  padding-block: 0.3rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); }

a.header-cta {
  display: none;
}

@media (min-width: 880px) {
  a.header-cta:not(.mobile) { display: inline-flex; }
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold);
  border-radius: 8px;
  color: var(--white);
  padding: 0.5rem 0.7rem;
  cursor: pointer;
}

@media (max-width: 879px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: var(--navy-deep);
    padding: 2rem var(--pad);
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    visibility: hidden;
  }
  .main-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .main-nav a { font-size: var(--step-1); }
  a.header-cta.mobile { display: inline-flex; margin-top: 1rem; }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--step--1);
  letter-spacing: 0.01em;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

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

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--navy-deep);
  box-shadow: 0 14px 30px -10px rgba(240, 178, 61, 0.6);
}
.btn-gold:hover { box-shadow: 0 18px 36px -8px rgba(240, 178, 61, 0.75); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-navy {
  background: var(--navy-deep);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-soft); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  background: radial-gradient(120% 100% at 80% 0%, var(--navy-soft) 0%, var(--navy-deep) 55%, #081226 100%);
  color: var(--white);
  padding-top: clamp(8rem, 16vw, 11rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  /* motif "élan" rappelant les traits jaunes du blason */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    repeating-linear-gradient(115deg, rgba(240,178,61,0.07) 0 2px, transparent 2px 64px);
  mask-image: radial-gradient(70% 60% at 75% 30%, black, transparent 75%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; margin-bottom: 1.5rem; }
}

.hero-eyebrow {
  color: var(--gold-bright);
}

.hero h1 {
  color: var(--white);
  font-size: var(--step-5);
  margin-top: 0.6rem;
  text-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.hero h1 .hl {
  color: var(--gold-bright);
}

.hero-lede {
  margin-top: 1.3rem;
  max-width: 46ch;
  font-size: var(--step-1);
  color: rgba(255,255,255,0.86);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem 2.6rem;
  margin-top: 2.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.hero-meta > div {
  min-width: 9rem;
}

.hero-meta .stat-num {
  font-family: var(--font-mono);
  font-size: var(--step-2);
  font-weight: 700;
  color: var(--gold-bright);
  display: block;
}

.hero-meta .stat-label {
  font-size: var(--step--1);
  color: rgba(255,255,255,0.7);
  display: block;
  margin-top: 0.2rem;
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  isolation: isolate;
}

.hero-art .ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(240,178,61,0.35);
  inset: 0;
  animation: spin 38s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.hero-art img {
  position: relative;
  width: min(420px, 88%);
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.45));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-art .paw-badge {
  position: absolute;
  bottom: 6%;
  left: 6%;
  background: var(--gold);
  color: var(--navy-deep);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-soft);
  animation: pop 2.4s ease-in-out infinite;
}

@keyframes pop {
  0%, 100% { transform: scale(1) rotate(-6deg); }
  50% { transform: scale(1.08) rotate(2deg); }
}

/* ==========================================================================
   Section: marquee (bande défilante de mots-clés)
   ========================================================================== */

.marquee {
  background: var(--gold);
  color: var(--navy-deep);
  overflow: hidden;
  padding-block: 0.75rem;
  border-bottom: 4px solid var(--navy-deep);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: marquee 26s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: var(--step-0);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ==========================================================================
   Section: Pourquoi le club (cards)
   ========================================================================== */

.section { padding-block: clamp(4rem, 9vw, 7rem); }
.section-navy { background: var(--navy-deep); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-cream { background: var(--cream); }

.section-head {
  max-width: 62ch;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-head .eyebrow { color: var(--bear-brown-dark); }
.section-navy .section-head .eyebrow { color: var(--gold-bright); }

.section-head h2 {
  font-size: var(--step-4);
  margin-top: 0.5rem;
}

.section-head p {
  margin-top: 1rem;
  font-size: var(--step-1);
  color: var(--ink-soft);
  font-weight: 500;
}
.section-navy .section-head p { color: rgba(255,255,255,0.78); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .cards-grid { grid-template-columns: 1fr; }
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15,31,61,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

.value-card .paw {
  width: 2.2rem;
  height: 2.2rem;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.value-card h3 {
  font-size: var(--step-1);
  letter-spacing: 0.01em;
}

.value-card p {
  margin-top: 0.7rem;
  color: var(--ink-soft);
  font-size: var(--step--1);
}

/* ==========================================================================
   Section: Catégories d'âge (timeline réelle — ordre = progression d'âge)
   ========================================================================== */

.categories-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}

@media (max-width: 980px) {
  .categories-rail { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .categories-rail { grid-template-columns: 1fr; }
}

.cat-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: 1.8rem 1.6rem;
  background: var(--navy-mid);
  border: 1px solid rgba(240,178,61,0.18);
  overflow: hidden;
}

.cat-card::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -30%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(240,178,61,0.18), transparent 70%);
}

.cat-card .age {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--gold-bright);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.cat-card h3 {
  color: var(--white);
  font-size: var(--step-1);
  margin-top: 0.4rem;
}

.cat-card p {
  margin-top: 0.6rem;
  color: rgba(255,255,255,0.72);
  font-size: var(--step--1);
}

/* ==========================================================================
   Section: Galerie / esprit d'équipe
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 0.9rem;
}

.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); }

.gallery-grid > :nth-child(1) { grid-column: span 2; grid-row: span 2; border-radius: var(--radius-md); }
.gallery-grid > :nth-child(4) { grid-column: span 2; }

@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 160px); }
  .gallery-grid > :nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-grid > :nth-child(4) { grid-column: span 1; }
}

/* ==========================================================================
   Section: Témoignages
   ========================================================================== */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.testimonial {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-soft);
}

.testimonial p.quote {
  font-size: var(--step-0);
  font-weight: 500;
  color: var(--ink);
}

.testimonial .who {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.3rem;
  font-size: var(--step--1);
}

.testimonial .who strong { color: var(--navy-deep); }
.testimonial .who span { color: var(--ink-soft); display: block; }

.avatar-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bear-brown);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Section: Inscription / formulaire (signature CTA)
   ========================================================================== */

.signup {
  position: relative;
  background: linear-gradient(160deg, var(--navy-deep), #081226 75%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.6rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.signup::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -90px;
  top: -90px;
  background: radial-gradient(circle, rgba(240,178,61,0.22), transparent 70%);
  z-index: -1;
}

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

.signup-copy .eyebrow { color: var(--gold-bright); }
.signup-copy h2 { color: var(--white); font-size: var(--step-3); margin-top: 0.5rem; }
.signup-copy p { margin-top: 1rem; color: rgba(255,255,255,0.78); max-width: 42ch; }

.signup-trust {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}
.signup-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--step--1);
  color: rgba(255,255,255,0.85);
}
.signup-trust .paw { color: var(--gold); width: 1.1em; height: 1.1em; }

.signup-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  color: var(--ink);
  box-shadow: var(--shadow-deep);
}

.signup-form h3 {
  font-size: var(--step-1);
  color: var(--navy-deep);
}

.signup-form .form-sub {
  margin-top: 0.3rem;
  font-size: var(--step--1);
  color: var(--ink-soft);
}

.field {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0.01em;
}

.field input,
.field select {
  font-family: var(--font-body);
  font-size: var(--step--1);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1.5px solid #e1ddd2;
  background: var(--cream);
  color: var(--ink);
}

.field input:focus,
.field select:focus { border-color: var(--gold); }

.signup-form .btn { width: 100%; justify-content: center; margin-top: 1.4rem; }

.form-note {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-align: center;
}

.form-success {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  background: #effaf0;
  border: 1px solid #bfe6c4;
  border-radius: 10px;
  color: #1f6b2c;
  font-size: var(--step--1);
  font-weight: 600;
}

/* ==========================================================================
   Contact Form 7 — alignement visuel avec le design du site
   ========================================================================== */

.signup-form .wpcf7 { margin-top: 1.1rem; }

.signup-form .wpcf7-form p {
  margin-bottom: 1.1rem;
}

.signup-form .wpcf7-form label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0.01em;
  margin-bottom: 0.4rem;
}

.signup-form .wpcf7-form input[type="text"],
.signup-form .wpcf7-form input[type="email"],
.signup-form .wpcf7-form input[type="tel"],
.signup-form .wpcf7-form select,
.signup-form .wpcf7-form textarea {
  font-family: var(--font-body) !important;
  font-size: var(--step--1) !important;
  padding: 0.85rem 1rem !important;
  border-radius: 10px !important;
  border: 1.5px solid #e1ddd2 !important;
  background: var(--cream) !important;
  color: var(--ink) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.signup-form .wpcf7-form input[type="text"]:focus,
.signup-form .wpcf7-form input[type="email"]:focus,
.signup-form .wpcf7-form input[type="tel"]:focus,
.signup-form .wpcf7-form select:focus,
.signup-form .wpcf7-form textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: none !important;
  outline: none;
}

.signup-form .wpcf7-form input[type="submit"] {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: var(--step--1) !important;
  padding: 0.95rem 1.7rem !important;
  border-radius: 999px !important;
  border: none !important;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold)) !important;
  color: var(--navy-deep) !important;
  box-shadow: 0 14px 30px -10px rgba(240, 178, 61, 0.6) !important;
  cursor: pointer;
  transition: transform 0.2s ease;
  margin-top: 0.6rem;
}

.signup-form .wpcf7-form input[type="submit"]:hover {
  transform: translateY(-2px);
}

.signup-form .wpcf7-not-valid-tip {
  color: #c0392b;
  font-size: 0.78rem;
  margin-top: 0.3rem;
  display: block;
}

.signup-form .wpcf7-response-output {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-size: var(--step--1);
  font-weight: 600;
  border: none !important;
}

.signup-form .wpcf7-mail-sent-ok {
  background: #effaf0;
  border: 1px solid #bfe6c4 !important;
  color: #1f6b2c;
}

.signup-form .wpcf7-mail-sent-ng,
.signup-form .wpcf7-aborted,
.signup-form .wpcf7-validation-errors {
  background: #fdf2f2;
  border: 1px solid #f5c6c6 !important;
  color: #c0392b;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list { max-width: 760px; margin-inline: auto; }

.faq-item {
  border-bottom: 1px solid rgba(15,31,61,0.12);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy-deep);
  font-size: var(--step-0);
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding-bottom: 1.3rem;
  color: var(--ink-soft);
  max-width: 65ch;
}

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

.site-footer {
  background: #081226;
  color: rgba(255,255,255,0.7);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .brand { color: var(--white); margin-bottom: 0.8rem; }
.footer-brand p { max-width: 32ch; font-size: var(--step--1); }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: none;
  font-size: var(--step--1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; font-size: var(--step--1); }
.footer-col a:hover { color: var(--gold-bright); }

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.5rem;
  font-size: 0.8rem;
}

.footer-bottom .paw { color: var(--gold); }

/* ==========================================================================
   Utilities
   ========================================================================== */

.text-center { text-align: center; margin-inline: auto; }
.mx-auto { margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; }
  .hero-art img, .hero-art .paw-badge, .hero-art .ring, .marquee-track { animation: none; }
}
