/* ============================================
   NEMO PICCOLI PASSI - Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* === TOKENS === */
:root {
  --teal:       #00B4C6;
  --teal-dark:  #0095A8;
  --teal-light: #E0F7FA;
  --yellow:     #FFB800;
  --yellow-dark:#E6A200;
  --coral:      #FF6B6B;
  --navy:       #1A2E44;
  --navy-light: #2E4A68;
  --white:      #FFFFFF;
  --offwhite:   #F0FAFB;
  --gray:       #6B7C8D;
  --gray-light: #EAF2F5;

  --font-display: 'Nunito', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 8px rgba(0,90,100,0.10);
  --shadow-md:  0 6px 24px rgba(0,90,100,0.14);
  --shadow-lg:  0 12px 40px rgba(0,90,100,0.18);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { font-size: 1rem; color: var(--gray); }

/* === UTILITY === */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-alt { background: var(--offwhite); }
.text-center { text-align: center; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title {
  margin-bottom: 16px;
  color: var(--navy);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: var(--teal-dark); }
.btn-secondary {
  background: var(--yellow);
  color: var(--navy);
}
.btn-secondary:hover { background: var(--yellow-dark); }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2.5px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

/* === WAVE DIVIDER === */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
}
.wave-divider svg { display: block; width: 100%; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,90,100,0.10);
  transition: box-shadow 0.2s;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}
.navbar-logo img { height: 74px; width: auto; object-fit: contain; }
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-menu a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}
.navbar-menu a:hover,
.navbar-menu a.active { background: var(--teal-light); color: var(--teal); }
.navbar-cta { margin-left: 12px; padding: 10px 24px; font-size: 0.95rem; }
.navbar-menu .navbar-cta.active { background: var(--teal); color: var(--white); }
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.navbar-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: all 0.25s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #004F6E 0%, #006B80 40%, #00A0B4 100%);
  overflow: hidden;
  padding: 80px 0 0;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  animation: floatUp var(--dur, 8s) ease-in infinite;
  animation-delay: var(--delay, 0s);
  bottom: -80px;
}
@keyframes floatUp {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-110vh) scale(1.15); opacity: 0; }
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 60px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.25);
}
.hero-tag span { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero-desc { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 340px;
  object-fit: cover;
  width: 100%;
}
.hero-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-img-row img {
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.hero-wave svg { display: block; }

/* ============================================
   FEATURES STRIP
   ============================================ */
.features-strip {
  background: var(--navy);
  padding: 32px 0;
}
.features-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.feature-pill-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 180, 198, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.feature-pill strong { display: block; font-family: var(--font-display); font-size: 0.92rem; }
.feature-pill span   { font-size: 0.78rem; color: rgba(255,255,255,0.6); }

/* ============================================
   CHI SIAMO PREVIEW
   ============================================ */
.about-preview { padding: 90px 0; }
.about-preview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-gallery img {
  border-radius: var(--radius-md);
  height: 200px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s;
}
.about-gallery img:hover { transform: scale(1.03); }
.about-gallery img:first-child {
  grid-column: 1 / -1;
  height: 240px;
}
.about-content .section-eyebrow { margin-bottom: 10px; }
.about-list { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--gray);
}
.about-list li::before {
  content: '✦';
  color: var(--teal);
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ============================================
   SERVIZI PREVIEW
   ============================================ */
.services-preview { padding: 90px 0; background: var(--offwhite); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--teal);
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:nth-child(2) { border-top-color: var(--yellow); }
.service-card:nth-child(3) { border-top-color: var(--coral); }
.service-card:nth-child(4) { border-top-color: var(--yellow); }
.service-card:nth-child(5) { border-top-color: var(--coral); }
.service-card:nth-child(6) { border-top-color: var(--teal); }
.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.service-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
}
.service-card p { font-size: 0.92rem; }

/* ============================================
   EVENTI ANNUALI
   ============================================ */
.events-section { padding: 90px 0; }
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.event-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.event-card-header {
  padding: 20px 24px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.event-card-icon { font-size: 2rem; }
.event-period {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--teal);
  padding: 3px 10px;
  border-radius: 12px;
  display: block;
  margin-bottom: 4px;
}
.event-card h3 { font-size: 1rem; color: var(--navy); }
.event-card-body { padding: 0 24px 24px; }
.event-card-body p { font-size: 0.87rem; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, #00D4E8 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '🐠 🐟 🐠 🐬 🐟 🐠 🐟 🐠 🐬 🐟 🐠 🐟';
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
  font-size: 1.4rem;
  opacity: 0.18;
  letter-spacing: 12px;
  white-space: nowrap;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--teal-dark); }
.btn-white:hover { background: var(--offwhite); }

/* ============================================
   GALLERY
   ============================================ */
.gallery-section { padding: 90px 0; background: var(--offwhite); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img { height: 96px; width: auto; margin-bottom: 16px; filter: none; opacity: 1; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); max-width: 260px; }
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item span:first-child { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,0.72); }
.footer-contact-item a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.18s;
}
.social-btn:hover { background: var(--teal); }
.social-btn svg { width: 17px; height: 17px; fill: #fff; display: block; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   WHATSAPP STICKY BUTTON
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9999;
  background: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.1); }
}
.whatsapp-tooltip {
  position: absolute;
  left: 70px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: var(--navy);
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ============================================
   PAGE HERO (sub-pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #004F6E 0%, #006B80 60%, #00A0B4 100%);
  padding: 72px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-top: 12px; }
.page-hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.5;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: 0.5; }

/* ============================================
   CHI SIAMO PAGE
   ============================================ */
.about-story { padding: 90px 0; }
.about-story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.values-section { padding: 90px 0; background: var(--offwhite); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s;
}
.value-card:hover { transform: translateY(-5px); }
.value-emoji { font-size: 2.8rem; margin-bottom: 16px; }
.value-card h3 { margin-bottom: 10px; }

/* ============================================
   SERVIZI PAGE
   ============================================ */
.services-detail { padding: 90px 0; }
.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--gray-light);
}
.service-detail-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-detail-item.reverse { direction: rtl; }
.service-detail-item.reverse > * { direction: ltr; }
.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 320px;
  object-fit: cover;
}
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ============================================
   DOVE SIAMO PAGE
   ============================================ */
.location-section { padding: 90px 0; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.location-info { display: flex; flex-direction: column; gap: 24px; }
.info-block {
  background: var(--offwhite);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-block-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.info-block h3 { font-size: 1rem; margin-bottom: 4px; }
.info-block p  { font-size: 0.9rem; }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 480px;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ============================================
   CONTATTI PAGE
   ============================================ */
.contact-section { padding: 90px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap > p { margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--offwhite);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,180,198,0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-side { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-card h3 { font-size: 1rem; margin-bottom: 5px; }
.contact-card p, .contact-card a { font-size: 0.9rem; color: var(--gray); }
.contact-card a:hover { color: var(--teal); }
.orari-table { margin-top: 8px; }
.orari-table tr td { font-size: 0.88rem; padding: 3px 0; color: var(--gray); }
.orari-table tr td:first-child { font-weight: 600; color: var(--navy); width: 120px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .navbar .container { height: 78px; }
  .navbar-logo img { height: 66px; }
  .navbar-menu { display: none; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0; background: var(--white); padding: 16px; box-shadow: var(--shadow-md); gap: 4px; }
  .navbar-menu.open { display: flex; }
  .navbar-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 60px 0 0; }
  .features-strip .container { grid-template-columns: 1fr 1fr; }
  .about-preview .container { grid-template-columns: 1fr; }
  .about-gallery { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-story .container { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .service-detail-item { grid-template-columns: 1fr; direction: ltr; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  section[style*="background:var(--offwhite)"] .container > div[style*="repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .features-strip .container { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall, .gallery-item.wide { grid-column: 1; grid-row: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}


/* === FOOTER LEGAL LINKS === */
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.footer-legal a:hover { color: var(--white); }

/* === LEGAL PAGES === */
.legal-page .container { max-width: 920px; }
.legal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(28px, 5vw, 48px);
}
.legal-card h2 {
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--navy);
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card p { margin-bottom: 12px; }
.legal-card ul {
  list-style: disc;
  padding-left: 22px;
  margin: 10px 0 18px;
}
.legal-card li {
  color: var(--gray);
  margin-bottom: 8px;
}
.legal-note {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .footer-legal { justify-content: center; }
}
