/*
Theme Name: Accolade House
Theme URI: https://accoladehousemontessori.com
Author: Accolade House Montessori School
Description: Custom theme for Accolade House Montessori School — a Montessori preschool and primary school in Majeck, Lagos, Nigeria. Palette sampled directly from the school's own logo artwork.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: accolade-house
*/

/* ==========================================================================
   Design tokens & base
   ========================================================================== */

:root {
  /* Brand colors — sampled from Accolade House logo_00.png / 1.png */
  --plum: #240c1e;         /* infant / darkest figure */
  --crimson: #b6304a;      /* toddler figure + logo wordmark */
  --crimson-deep: #8f2438; /* AA-safe text/hover variant */
  --orange: #dd7d2c;       /* children's house figure */
  --navy: #3a3a86;         /* primary-tween figure */
  --olive: #7fa53a;        /* tallest/oldest figure, deepened for contrast */

  /* Neutrals */
  --paper: #fbf4ee;        /* warm sand background */
  --paper-alt: #f5e8e3;    /* blush-tinted section band */
  --paper-deep: #efe2da;
  --ink: #2b2320;          /* warm near-black */
  --ink-soft: #5a4f49;
  --line: rgba(43, 35, 32, 0.12);
  --white: #fffdfb;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Figtree", "Segoe UI", system-ui, sans-serif;

  /* Shape & motion */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 45px -25px rgba(36, 12, 30, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@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; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  color: var(--plum);
}
h1 { font-weight: 900; }
p { margin: 0 0 1em; }
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.visually-hidden, .screen-reader-text {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* Admin bar offset so the sticky header doesn't hide behind it when logged in */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson-deep);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--orange);
  display: inline-block;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 244, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; padding-bottom: 12px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { height: 48px; width: auto; }
.brand-text { display: none; }

.main-nav { display: none; }
.main-nav ul { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; }
.main-nav li { position: relative; }
.main-nav a {
  text-decoration: none; font-weight: 600; font-size: 0.96rem;
  color: var(--ink); position: relative; padding: 6px 0;
  display: inline-block;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--crimson); transition: right 0.25s var(--ease);
}
.main-nav a:hover::after, .main-nav .current-menu-item > a::after, .main-nav a.is-active::after { right: 0; }
.main-nav .current-menu-item > a, .main-nav a.is-active { color: var(--crimson-deep); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: none; font-weight: 700; font-size: 0.9rem; text-decoration: none; color: var(--plum); }
.header-phone svg { vertical-align: -3px; margin-right: 4px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  padding: 12px 22px; border-radius: 999px; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--crimson); color: var(--white); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--crimson-deep); }
.btn-outline { background: transparent; border-color: var(--plum); color: var(--plum); }
.btn-outline:hover { background: var(--plum); color: var(--white); }
.btn-light { background: var(--white); color: var(--plum); }
.btn-block-color { color: var(--white); }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--white); cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--plum);
  position: relative; transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg) translate(4px, -5px); }

.mobile-nav {
  display: none; flex-direction: column; gap: 2px;
  background: var(--white); border-bottom: 1px solid var(--line);
  padding: 8px 24px 18px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav a {
  text-decoration: none; color: var(--ink); font-weight: 600;
  padding: 12px 4px; border-bottom: 1px solid var(--line);
  display: block;
}
.mobile-nav .btn { margin-top: 12px; }

@media (min-width: 960px) {
  .brand-text { display: block; }
  .main-nav { display: block; }
  .header-phone { display: inline-flex; align-items: center; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 64px 0 90px;
  overflow: hidden;
}
.hero .container {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
.hero-copy h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 0.4em; }
.hero-copy .lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 46ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}
.hero-frame img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-frame img.is-active { opacity: 1; }
.hero-frame video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  animation: hero-zoom 9s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.14); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-frame video { animation: none; }
}
.hero-badge {
  position: absolute; left: -18px; bottom: -18px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 14px 18px; box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 12px;
  max-width: 240px;
}
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--crimson-deep); }
.hero-badge span { font-size: 0.8rem; color: var(--ink-soft); }

@media (min-width: 900px) {
  .hero .container { grid-template-columns: 1.05fr 0.95fr; }
}

/* ==========================================================================
   Quick-nav action strip
   ========================================================================== */
.quick-nav { padding: 0 0 8px; }
.quick-nav-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: -54px;
  position: relative; z-index: 5;
}
.quick-nav-item {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 20px 22px; border-radius: var(--radius-md);
  text-decoration: none; color: var(--white); font-weight: 700; font-size: 1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s var(--ease);
}
.quick-nav-item:hover { transform: translateY(-4px); }
.quick-nav-item svg { flex-shrink: 0; }
.qn-crimson { background: var(--crimson); }
.qn-navy { background: var(--navy); }
.qn-orange { background: var(--orange); }
.qn-olive { background: var(--olive); }

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

/* ==========================================================================
   Sections generic
   ========================================================================== */
section { padding: 96px 0; }
.section-alt { background: var(--paper-alt); }
.section-plum { background: var(--plum); color: var(--paper); }
.section-plum h2, .section-plum h3 { color: var(--white); }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.lede { color: var(--ink-soft); font-size: 1.08rem; }

/* Welcome / about split */
.welcome-grid { display: grid; gap: 40px; align-items: center; }
.welcome-media { position: relative; }
.welcome-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.pull-quote {
  font-family: var(--font-display); font-size: 1.3rem; font-style: italic;
  color: var(--plum); border-left: 4px solid var(--orange); padding-left: 20px;
  margin: 24px 0;
}
.signature-line { font-weight: 700; color: var(--crimson-deep); }
.signature-line small { display: block; font-weight: 500; color: var(--ink-soft); font-size: 0.85rem; }

@media (min-width: 900px) {
  .welcome-grid { grid-template-columns: 0.9fr 1.1fr; }
  .welcome-grid.reverse { grid-template-columns: 1.1fr 0.9fr; }
  .welcome-grid.reverse .welcome-media { order: 2; }
}

/* ==========================================================================
   Signature: The Growth Staircase
   ========================================================================== */
.staircase {
  display: flex; align-items: flex-end; gap: 0;
  margin: 56px 0 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.stair-step {
  flex: 1 1 0;
  min-width: 132px;
  position: relative;
  border-radius: 14px 14px 0 0;
  padding: 18px 14px 20px;
  color: var(--white);
  display: flex; flex-direction: column; justify-content: flex-end;
  margin-right: 4px;
}
.stair-step:last-child { margin-right: 0; }
.stair-step .stair-age { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.85; }
.stair-step .stair-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-top: 4px; }
.stair-1 { background: var(--plum); height: 118px; }
.stair-2 { background: var(--crimson); height: 150px; }
.stair-3 { background: var(--orange); height: 182px; }
.stair-4 { background: var(--navy); height: 214px; }
.stair-5 { background: var(--olive); height: 246px; }
.staircase-caption { font-size: 0.9rem; color: var(--ink-soft); }

@media (max-width: 700px) {
  .staircase { align-items: stretch; }
  .stair-step { min-width: 108px; }
}

/* Divider echo of the staircase, used between sections */
.stair-divider {
  display: flex; justify-content: center; gap: 6px; margin: 0 auto 40px;
  width: fit-content;
}
.stair-divider span { display: block; width: 10px; border-radius: 3px 3px 0 0; }
.stair-divider span:nth-child(1) { height: 10px; background: var(--plum); }
.stair-divider span:nth-child(2) { height: 15px; background: var(--crimson); }
.stair-divider span:nth-child(3) { height: 20px; background: var(--orange); }
.stair-divider span:nth-child(4) { height: 25px; background: var(--navy); }
.stair-divider span:nth-child(5) { height: 30px; background: var(--olive); }

/* ==========================================================================
   Cards: values, enrichment, gallery, news
   ========================================================================== */
.card-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
}

.value-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 28px 22px; border-top: 6px solid var(--crimson);
  box-shadow: 0 14px 30px -22px rgba(43,35,32,0.35);
}
.value-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.value-card ul { margin: 0; padding-left: 18px; color: var(--ink-soft); font-size: 0.95rem; }
.value-card li { margin-bottom: 6px; }
.value-card.v-plum { border-color: var(--plum); }
.value-card.v-orange { border-color: var(--orange); }
.value-card.v-navy { border-color: var(--navy); }
.value-card.v-olive { border-color: var(--olive); }

.club-chip-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.club-chip {
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 18px; font-weight: 700; font-size: 0.92rem; color: var(--plum);
}

.photo-card { border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 14px 30px -22px rgba(43,35,32,0.4); background: var(--white); }
.photo-card img { aspect-ratio: 4/3; object-fit: cover; }
.photo-card figcaption { padding: 14px 16px; font-size: 0.9rem; color: var(--ink-soft); }

.news-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 14px 30px -22px rgba(43,35,32,0.35); }
.news-card img { aspect-ratio: 16/10; object-fit: cover; }
.news-card-body { padding: 20px; }
.news-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--crimson-deep); margin-bottom: 8px; }
.news-card h3 { font-size: 1.1rem; }
.news-placeholder-note { font-size: 0.82rem; color: var(--ink-soft); font-style: italic; margin-top: 6px; }
.news-card a { text-decoration: none; }

/* Standalone content video (e.g. Enrichment showcase) */
.video-frame {
  max-width: 900px; margin: 0 auto;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft);
}
.video-frame video { display: block; width: 100%; height: auto; background: var(--plum); }

/* CTA band */
.cta-band { text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band .lede { color: rgba(255,255,255,0.82); max-width: 60ch; margin-left: auto; margin-right: auto; }
.cta-band .hero-ctas { justify-content: center; }

/* ==========================================================================
   Gallery page
   ========================================================================== */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.filter-btn {
  border: 1px solid var(--line); background: var(--white); border-radius: 999px;
  padding: 9px 18px; font-weight: 700; font-size: 0.85rem; cursor: pointer; color: var(--ink);
}
.filter-btn.is-active { background: var(--plum); color: var(--white); border-color: var(--plum); }
.gallery-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in; }
.gallery-item img { aspect-ratio: 1/1; object-fit: cover; transition: transform 0.4s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item[hidden] { display: none; }

.lightbox {
  position: fixed; inset: 0; background: rgba(36,12,30,0.92); z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(90vw, 1100px); max-height: 84vh; border-radius: 12px; }
.lightbox-close {
  position: absolute; top: 22px; right: 26px; background: var(--white); border: none;
  width: 42px; height: 42px; border-radius: 50%; font-size: 1.2rem; cursor: pointer;
}

/* ==========================================================================
   Forms (Admissions inquiry + Contact Form 7)
   ========================================================================== */
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-soft); }
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; color: var(--plum); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); font-family: var(--font-body); font-size: 0.96rem;
  background: var(--paper);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--crimson); outline: none; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 16px; }

/* Contact Form 7 default markup, styled to match .form-card fields */
.form-card .wpcf7-form p { margin-bottom: 18px; }
.form-card .wpcf7-form label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; color: var(--plum); }
.form-card .wpcf7-form input[type="text"],
.form-card .wpcf7-form input[type="email"],
.form-card .wpcf7-form input[type="tel"],
.form-card .wpcf7-form select,
.form-card .wpcf7-form textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); font-family: var(--font-body); font-size: 0.96rem;
  background: var(--paper);
}
.form-card .wpcf7-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  padding: 12px 22px; border-radius: 999px; text-decoration: none;
  border: 2px solid transparent; cursor: pointer; background: var(--crimson); color: var(--white);
}
.form-card .wpcf7-submit:hover { background: var(--crimson-deep); }
.form-card .wpcf7-not-valid-tip { color: var(--crimson-deep); font-size: 0.82rem; margin-top: 4px; }
.form-card .wpcf7-response-output { border-radius: var(--radius-sm); margin-top: 18px; padding: 12px 16px !important; }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 0; font-family: var(--font-display); font-size: 1.1rem; color: var(--plum);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .plus { font-size: 1.4rem; color: var(--crimson); transition: transform 0.25s ease; flex-shrink: 0; }
.faq-item[aria-expanded="true"] .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); color: var(--ink-soft); }
.faq-a-inner { padding-bottom: 20px; }

/* Stat strip */
.stat-strip { display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr); text-align: center; }
@media (min-width: 760px) { .stat-strip { grid-template-columns: repeat(4, 1fr); } }
.stat-strip strong { display: block; font-family: var(--font-display); font-size: 2.3rem; color: var(--crimson-deep); }
.stat-strip span { font-size: 0.85rem; color: var(--ink-soft); }

/* Page header (interior pages) */
.page-header { padding: 56px 0 40px; text-align: center; }
.page-header h1 { font-size: clamp(2rem, 4.5vw, 2.9rem); }
.breadcrumb { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 14px; }
.breadcrumb a { color: var(--crimson-deep); text-decoration: none; font-weight: 700; }

/* Generic entry content (fallback page.php / single.php via the_content) */
.entry-content { max-width: 760px; margin: 0 auto; }
.entry-content img { border-radius: var(--radius-md); }
.entry-content a { color: var(--crimson-deep); }

/* Contact page */
.contact-grid { display: grid; gap: 32px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-soft); }
.contact-info-card ul { list-style: none; padding: 0; margin: 0; }
.contact-info-card li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-info-card li:last-child { border-bottom: none; }
.contact-info-card svg { color: var(--crimson); flex-shrink: 0; margin-top: 2px; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); border: 0; width: 100%; height: 320px; }
.social-row { display: flex; gap: 12px; margin-top: 20px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%; background: var(--paper-alt);
  display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--plum);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--plum); color: rgba(251,244,238,0.86); padding: 72px 0 28px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; margin-bottom: 48px; }
@media (min-width: 860px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-brand img { height: 52px; margin-bottom: 14px; }
.footer-brand p { color: rgba(251,244,238,0.65); font-size: 0.92rem; max-width: 30ch; }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(251,244,238,0.82); text-decoration: none; font-size: 0.95rem; }
.site-footer a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(251,244,238,0.16); padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 0.82rem; color: rgba(251,244,238,0.6);
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,0.5); text-decoration: none;
  transition: transform 0.2s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-tooltip {
  position: fixed; right: 92px; bottom: 38px; z-index: 150;
  background: var(--white); padding: 8px 14px; border-radius: 10px; font-size: 0.85rem;
  font-weight: 700; box-shadow: var(--shadow-soft); white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
}
.whatsapp-float:hover + .whatsapp-tooltip,
.whatsapp-tooltip.is-visible { opacity: 1; }

@media (max-width: 640px) {
  .whatsapp-tooltip { display: none; }
}
