/*
Theme Name: Fit Monkeys
Theme URI: https://www.ryandesign.co.uk
Author: RyanDesign
Author URI: https://www.ryandesign.co.uk
Description: Custom WordPress theme for Fit Monkeys, providing high quality and unique PE lessons to children in playgroups, nurseries and primary schools across the North East. Bright, light, family-friendly design built on the same architecture as Sports Camps NE and Football Squirts.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fit-monkeys
Tags: custom-logo, custom-menu, featured-images, theme-options, translation-ready

Fit Monkeys Theme © 2026 RyanDesign
*/

/* ==========================================================================
   CSS Variables - Brand Colours
   ========================================================================== */

:root {
  /* Brand Turquoise */
  --fm-turquoise: #3eb9bf;
  --fm-turquoise-light: #e8f7f8;
  --fm-turquoise-dark: #2fa1a7;
  --fm-turquoise-darker: #267e83;
  --fm-turquoise-text: #ffffff;

  /* Supporting Colours - playful accents for kid-friendly cards */
  --fm-green: #22c55e;
  --fm-green-light: #dcfce7;
  --fm-blue: #3b82f6;
  --fm-blue-light: #dbeafe;
  --fm-purple: #8b5cf6;
  --fm-purple-light: #ede9fe;
  --fm-orange: #f97316;
  --fm-orange-light: #ffedd5;
  --fm-pink: #ec4899;
  --fm-pink-light: #fce7f3;
  --fm-yellow: #facc15;
  --fm-yellow-light: #fef9c3;
  --fm-red: #ef4444;

  /* Neutrals - brand greys */
  --fm-dark: #1a1a1a;
  --fm-dark-lighter: #2a2a2a;
  --fm-gray-100: #f5f5f5;
  --fm-gray-200: #e5e5e5;
  --fm-gray-300: #d4d4d4;
  --fm-gray-400: #a3a3a3;
  --fm-gray-500: #737373;
  --fm-gray-600: #525252;
  --fm-gray-700: #404040;
  --fm-white: #ffffff;

  /* Header Colours */
  --fm-header-bg: #1a1a1a;
  --fm-announcement-bg: #0d0d0d;

  /* Typography */
  --fm-font-display: 'Chewy', cursive;
  --fm-font-body: 'Nunito', sans-serif;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--fm-font-body);
  background: var(--fm-white);
  color: var(--fm-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Screen reader only */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  padding: 1rem 1.5rem;
  background: var(--fm-turquoise);
  color: var(--fm-white);
  font-weight: 700;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fm-font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fm-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 4rem 2rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  background: var(--fm-turquoise);
  color: var(--fm-turquoise-text);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--fm-gray-500);
}

.section-footer {
  text-align: center;
  margin-top: 2.5rem;
}

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

.btn,
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: inherit;
  cursor: pointer;
  line-height: 1.2;
}

.btn-primary {
  background: var(--fm-turquoise);
  color: var(--fm-white);
  box-shadow: 0 4px 15px rgba(62, 185, 191, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(62, 185, 191, 0.5);
  background: var(--fm-turquoise-dark);
  color: var(--fm-white);
}

.btn-secondary {
  background: var(--fm-dark);
  color: var(--fm-white);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: var(--fm-turquoise);
  color: var(--fm-white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--fm-turquoise);
  color: var(--fm-turquoise);
}

.btn-outline:hover {
  background: var(--fm-turquoise);
  color: var(--fm-white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */

.announcement-bar {
  padding: 0.65rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.announcement-bar--dark {
  background: var(--fm-announcement-bg);
  color: var(--fm-turquoise);
}

.announcement-bar--turquoise {
  background: var(--fm-turquoise);
  color: var(--fm-white);
}

.announcement-bar a {
  text-decoration: underline;
}

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

.site-header {
  background: var(--fm-header-bg);
  padding: 0.75rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1001;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.site-header.scrolled {
  padding: 0.5rem 2rem;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}

.site-logo img,
.custom-logo {
  height: 60px;
  width: auto;
  max-width: 220px;
  display: block;
}

.custom-logo-link {
  display: flex;
  align-items: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

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

.main-nav li {
  position: relative;
}

.main-nav a {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  color: var(--fm-gray-300);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  border-radius: 8px;
}

.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current-menu-parent > a {
  color: var(--fm-turquoise);
}

.main-nav .menu-item-has-children > a::after {
  content: '▾';
  margin-left: 0.25rem;
  font-size: 0.75rem;
}

/* Desktop dropdown */
.main-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--fm-white);
  min-width: 220px;
  padding: 0.5rem;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 1002;
}

.main-nav li:hover > .sub-menu,
.main-nav li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .sub-menu a {
  color: var(--fm-dark);
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-size: 0.92rem;
}

.main-nav .sub-menu a:hover {
  background: var(--fm-turquoise-light);
  color: var(--fm-turquoise-dark);
}

.main-nav .sub-menu .sub-menu-divider {
  margin-top: 0.35rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--fm-gray-200);
}

.main-nav .sub-menu .sub-menu-divider > a {
  font-weight: 700;
  color: var(--fm-turquoise-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.btn-book {
  white-space: nowrap;
  padding: 0.7rem 1.5rem;
  background: var(--fm-turquoise);
  border-radius: 50px;
  color: var(--fm-white);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(62, 185, 191, 0.4);
  transition: all 0.2s;
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(62, 185, 191, 0.55);
  background: var(--fm-turquoise-dark);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--fm-white);
  border-radius: 2px;
  transition: all 0.3s;
}

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

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

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  overflow: hidden;
  background: var(--fm-turquoise-light);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.18;
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--fm-white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fm-dark);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.hero-badge span {
  background: var(--fm-turquoise);
  color: var(--fm-white);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero h1 {
  font-size: 3.75rem;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--fm-dark);
}

.hero h1 .highlight {
  position: relative;
  display: inline-block;
  color: var(--fm-turquoise-dark);
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--fm-turquoise);
  z-index: -1;
  border-radius: 4px;
  opacity: 0.25;
}

.hero p {
  font-size: 1.2rem;
  color: var(--fm-gray-700);
  margin-bottom: 2rem;
  max-width: 540px;
}

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

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 480px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  background: var(--fm-white);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.floating-card {
  position: absolute;
  background: var(--fm-white);
  border-radius: 16px;
  padding: 0.9rem 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  animation: float 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.floating-card.card-1 {
  top: 8%;
  right: -10px;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 8%;
  left: -10px;
  animation-delay: 1.5s;
}

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

.floating-card .fc-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--fm-turquoise-light);
  color: var(--fm-turquoise-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-card .fc-icon svg {
  width: 22px;
  height: 22px;
}

.floating-card .fc-text {
  display: flex;
  flex-direction: column;
}

.floating-card .fc-label {
  font-size: 0.75rem;
  color: var(--fm-gray-500);
}

.floating-card .fc-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fm-dark);
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */

.trust-bar {
  background: var(--fm-white);
  padding: 2rem;
  border-bottom: 1px solid var(--fm-gray-200);
}

.trust-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--fm-turquoise-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  color: var(--fm-turquoise-dark);
}

.trust-text {
  font-weight: 700;
  color: var(--fm-dark);
  font-size: 0.95rem;
}

.trust-text span {
  display: block;
  font-weight: 500;
  font-size: 0.825rem;
  color: var(--fm-gray-500);
}

/* ==========================================================================
   Settings / Environments Section (where we teach)
   ========================================================================== */

.environments {
  background: var(--fm-white);
}

.env-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.env-card {
  background: var(--fm-white);
  border-radius: 24px;
  padding: 2rem 1.75rem;
  border: 2px solid var(--fm-gray-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.env-card:hover {
  transform: translateY(-6px);
  border-color: var(--fm-turquoise);
  box-shadow: 0 20px 40px rgba(62, 185, 191, 0.15);
}

.env-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--fm-turquoise);
}

.env-card.env-nurseries::before { background: var(--fm-pink); }
.env-card.env-playgroups::before { background: var(--fm-orange); }
.env-card.env-primary::before { background: var(--fm-turquoise); }

.env-card .env-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fm-turquoise-light);
  color: var(--fm-turquoise-dark);
}

.env-card.env-nurseries .env-icon { background: var(--fm-pink-light); color: var(--fm-pink); }
.env-card.env-playgroups .env-icon { background: var(--fm-orange-light); color: var(--fm-orange); }
.env-card.env-primary .env-icon { background: var(--fm-turquoise-light); color: var(--fm-turquoise-dark); }

.env-card .env-icon svg {
  width: 40px;
  height: 40px;
}

.env-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--fm-dark);
}

.env-card p {
  color: var(--fm-gray-600);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.env-card .btn-outline {
  align-self: center;
  margin-top: auto;
}

/* ==========================================================================
   Skills / What We Develop
   ========================================================================== */

.skills {
  background: var(--fm-gray-100);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1400px;
  margin: 0 auto;
}

.skill-card {
  background: var(--fm-white);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border-top: 4px solid var(--fm-turquoise);
  transition: transform 0.2s, box-shadow 0.2s;
}

.skill-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.skill-card .skill-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--fm-turquoise-light);
  color: var(--fm-turquoise-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill-card .skill-icon svg {
  width: 28px;
  height: 28px;
}

.skill-card h3 {
  font-size: 1.25rem;
  color: var(--fm-dark);
  margin: 0;
}

.skill-card p {
  color: var(--fm-gray-600);
  font-size: 0.95rem;
  margin: 0;
}

/* Alternating accent colours on skill cards */
.skill-card:nth-child(6n+1) { border-top-color: var(--fm-turquoise); }
.skill-card:nth-child(6n+1) .skill-icon { background: var(--fm-turquoise-light); color: var(--fm-turquoise-dark); }
.skill-card:nth-child(6n+2) { border-top-color: var(--fm-orange); }
.skill-card:nth-child(6n+2) .skill-icon { background: var(--fm-orange-light); color: var(--fm-orange); }
.skill-card:nth-child(6n+3) { border-top-color: var(--fm-green); }
.skill-card:nth-child(6n+3) .skill-icon { background: var(--fm-green-light); color: var(--fm-green); }
.skill-card:nth-child(6n+4) { border-top-color: var(--fm-purple); }
.skill-card:nth-child(6n+4) .skill-icon { background: var(--fm-purple-light); color: var(--fm-purple); }
.skill-card:nth-child(6n+5) { border-top-color: var(--fm-pink); }
.skill-card:nth-child(6n+5) .skill-icon { background: var(--fm-pink-light); color: var(--fm-pink); }
.skill-card:nth-child(6n+6) { border-top-color: var(--fm-yellow); }
.skill-card:nth-child(6n+6) .skill-icon { background: var(--fm-yellow-light); color: #ca8a04; }

/* ==========================================================================
   Booking Options (Book Now page + homepage block)
   ========================================================================== */

.booking-options {
  background: var(--fm-white);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.booking-card {
  background: var(--fm-white);
  border-radius: 24px;
  padding: 2rem 1.75rem;
  border: 2px solid var(--fm-gray-200);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.booking-card.featured {
  border-color: var(--fm-turquoise);
  background: linear-gradient(180deg, var(--fm-turquoise-light) 0%, var(--fm-white) 100%);
}

.booking-card:hover {
  transform: translateY(-5px);
  border-color: var(--fm-turquoise);
  box-shadow: 0 20px 40px rgba(62, 185, 191, 0.15);
}

.booking-card .booking-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--fm-turquoise-light);
  color: var(--fm-turquoise-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.booking-card .booking-icon svg {
  width: 32px;
  height: 32px;
}

.booking-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.booking-card p {
  color: var(--fm-gray-600);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.booking-card .booking-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.booking-card .booking-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--fm-gray-700);
}

.booking-card .booking-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--fm-turquoise);
  color: var(--fm-white);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.booking-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--fm-turquoise);
  color: var(--fm-white);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Page Hero (interior pages)
   ========================================================================== */

.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-color: var(--fm-turquoise-light);
  padding: 4rem 2rem;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero--turquoise .page-hero-overlay {
  background: linear-gradient(135deg, rgba(62, 185, 191, 0.85) 0%, rgba(62, 185, 191, 0.7) 100%);
}

.page-hero--dark .page-hero-overlay {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
}

.page-hero--light .page-hero-overlay {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(232, 247, 248, 0.7) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.page-hero--turquoise .page-hero-content h1,
.page-hero--dark .page-hero-content h1 {
  color: var(--fm-white);
}

.page-hero--light .page-hero-content h1 {
  color: var(--fm-dark);
}

.page-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
}

.page-hero-content .hero-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.95;
}

.page-hero--light .page-hero-content .hero-subtitle {
  color: var(--fm-gray-600);
}

/* ==========================================================================
   Page Content Area
   ========================================================================== */

.page-content-area {
  padding: 4rem 0;
  background: var(--fm-white);
}

.page-article {
  max-width: 800px;
  margin: 0 auto;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fm-gray-700);
  margin-bottom: 1.25rem;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.5rem;
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.entry-content a {
  color: var(--fm-turquoise-dark);
  text-decoration: underline;
}

.entry-content a:hover {
  color: var(--fm-turquoise);
}

/* ==========================================================================
   About / Two-column content
   ========================================================================== */

.about-story {
  background: var(--fm-white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.about-story-content .section-tag {
  margin-bottom: 1rem;
}

.about-story-content h2 {
  margin-bottom: 1.25rem;
}

.about-story-content p {
  color: var(--fm-gray-700);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-story-image {
  position: relative;
}

.about-story-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.story-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.story-images-grid img {
  height: 220px;
  border-radius: 20px;
}

.story-images-grid img:first-child {
  grid-row: span 2;
  height: 100%;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */

.stats {
  background: var(--fm-turquoise);
  color: var(--fm-white);
}

.stats h2,
.stats .section-tag {
  color: var(--fm-white);
}

.stats .section-tag {
  background: var(--fm-white);
  color: var(--fm-turquoise-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--fm-font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--fm-white);
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.95;
}

/* ==========================================================================
   Team Grid (Meet the Team)
   ========================================================================== */

.team {
  background: var(--fm-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.team-card {
  background: var(--fm-white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--fm-gray-200);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--fm-turquoise);
}

.team-photo {
  position: relative;
  aspect-ratio: 1;
  background: var(--fm-turquoise-light);
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--fm-turquoise-light), var(--fm-white));
  color: var(--fm-turquoise-dark);
  font-family: var(--fm-font-display);
  font-size: 4rem;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-family: var(--fm-font-display);
  font-size: 1.4rem;
  margin: 0 0 0.25rem;
  color: var(--fm-dark);
}

.team-role {
  display: inline-block;
  background: var(--fm-turquoise-light);
  color: var(--fm-turquoise-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.team-bio {
  color: var(--fm-gray-600);
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================================================
   Photo Strip
   ========================================================================== */

.photo-strip {
  padding: 0;
  margin: 0;
  background: var(--fm-white);
}

.photo-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.photo-strip-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.photo-strip-item:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials {
  background: var(--fm-gray-100);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--fm-white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-family: var(--fm-font-display);
  font-size: 5rem;
  color: var(--fm-turquoise);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-stars {
  color: var(--fm-yellow);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.testimonial-text {
  color: var(--fm-gray-700);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 700;
  color: var(--fm-dark);
  font-size: 0.95rem;
}

.testimonial-meta {
  color: var(--fm-gray-500);
  font-size: 0.85rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
  background: linear-gradient(135deg, var(--fm-turquoise) 0%, var(--fm-turquoise-dark) 100%);
  color: var(--fm-white);
  text-align: center;
  padding: 5rem 2rem;
}

.cta-section h2 {
  color: var(--fm-white);
  margin-bottom: 1rem;
  font-size: 3rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.cta-section .btn-primary {
  background: var(--fm-white);
  color: var(--fm-turquoise-dark);
}

.cta-section .btn-primary:hover {
  background: var(--fm-dark);
  color: var(--fm-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.cta-section .btn-secondary {
  background: transparent;
  border: 2px solid var(--fm-white);
  color: var(--fm-white);
}

.cta-section .btn-secondary:hover {
  background: var(--fm-white);
  color: var(--fm-turquoise-dark);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-section {
  background: var(--fm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  background: var(--fm-gray-100);
  border-radius: 24px;
  padding: 2.5rem 2rem;
}

.contact-info h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.contact-info > p {
  color: var(--fm-gray-600);
  margin-bottom: 1.75rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--fm-gray-200);
}

.contact-detail:first-of-type {
  border-top: none;
  padding-top: 0;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--fm-turquoise-light);
  color: var(--fm-turquoise-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
}

.contact-detail-text {
  flex: 1;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--fm-gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.15rem;
}

.contact-detail-text a,
.contact-detail-text span {
  color: var(--fm-dark);
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-detail-text a:hover {
  color: var(--fm-turquoise-dark);
}

.contact-social-links {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--fm-turquoise);
  border-radius: 10px;
  color: var(--fm-white);
  transition: all 0.2s;
}

.social-icon-btn:hover {
  background: var(--fm-turquoise-dark);
  transform: translateY(-2px);
}

.social-icon-btn svg {
  width: 18px;
  height: 18px;
}

.contact-form-wrapper {
  background: var(--fm-white);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--fm-gray-200);
}

.contact-form-wrapper h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.contact-form-wrapper > p {
  color: var(--fm-gray-600);
  margin-bottom: 1.5rem;
}

/* CF7 form styling */
.contact-form-wrapper .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form-wrapper .wpcf7-form > p {
  margin: 0;
}

.contact-form-wrapper .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form-wrapper label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fm-dark);
  margin-bottom: 0.35rem;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper input[type="url"],
.contact-form-wrapper textarea,
.contact-form-wrapper select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--fm-gray-200);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--fm-white);
  transition: border-color 0.2s;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus,
.contact-form-wrapper select:focus {
  outline: none;
  border-color: var(--fm-turquoise);
}

.contact-form-wrapper textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form-wrapper .wpcf7-submit,
.contact-form-wrapper button[type="submit"] {
  background: var(--fm-turquoise);
  color: var(--fm-white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(62, 185, 191, 0.35);
}

.contact-form-wrapper .wpcf7-submit:hover,
.contact-form-wrapper button[type="submit"]:hover {
  background: var(--fm-turquoise-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(62, 185, 191, 0.5);
}

.contact-form-wrapper .wpcf7-not-valid-tip {
  color: var(--fm-red);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.contact-form-wrapper .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 2px solid var(--fm-gray-200);
  font-size: 0.95rem;
}

/* ==========================================================================
   North East / Locations Grid
   ========================================================================== */

.locations {
  background: var(--fm-white);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.location-card {
  background: var(--fm-white);
  border: 2px solid var(--fm-gray-200);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}

.location-card:hover {
  border-color: var(--fm-turquoise);
  background: var(--fm-turquoise-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(62, 185, 191, 0.15);
}

.location-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--fm-turquoise-light);
  color: var(--fm-turquoise-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-card:hover .location-card-icon {
  background: var(--fm-turquoise);
  color: var(--fm-white);
}

.location-card-icon svg {
  width: 20px;
  height: 20px;
}

.location-card-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fm-dark);
}

.location-card-meta {
  display: block;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--fm-gray-500);
}

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

.site-footer {
  background: var(--fm-dark);
  color: var(--fm-gray-300);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
  margin-bottom: 1rem;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
}

.footer-logo-link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.footer-logo-link img,
.footer-logo {
  height: 70px;
  width: auto;
  display: block;
}

.footer-brand p {
  margin: 0.5rem 0 1.25rem;
  color: var(--fm-gray-400);
  max-width: 480px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fm-white);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--fm-turquoise);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-family: var(--fm-font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--fm-white);
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-column a {
  color: var(--fm-gray-400);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--fm-turquoise);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--fm-gray-500);
}

.footer-bottom a {
  color: var(--fm-turquoise);
}

.footer-bottom a:hover {
  color: var(--fm-turquoise-dark);
}

/* ==========================================================================
   404 page
   ========================================================================== */

.error-404 {
  text-align: center;
  padding: 6rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .error-code {
  font-family: var(--fm-font-display);
  font-size: 8rem;
  color: var(--fm-turquoise);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-404 h1 {
  margin-bottom: 1rem;
}

.error-404 p {
  color: var(--fm-gray-600);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */

.animate-in {
  animation: fadeUp 0.6s ease-out forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .page-hero-content h1 { font-size: 2.75rem; }
  h2 { font-size: 2.1rem; }
  .env-cards { grid-template-columns: repeat(2, 1fr); }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .header-actions {
    margin-left: 0;
    gap: 0.5rem;
  }

  .btn-book {
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--fm-dark);
    padding: 5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.25);
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    width: 100%;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-radius: 10px;
  }

  .main-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    padding: 0.25rem 0.5rem;
    margin: 0.25rem 0 0.5rem 1rem;
    border-radius: 8px;
  }

  .main-nav .sub-menu a {
    color: var(--fm-gray-400);
    font-size: 0.92rem;
    padding: 0.55rem 0.75rem;
  }

  .main-nav .sub-menu a:hover {
    background: rgba(62, 185, 191, 0.15);
    color: var(--fm-turquoise);
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1.05rem; }
  .hero-image { height: 380px; }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-story-image img,
  .story-images-grid img:first-child { height: 360px; }
  .story-images-grid img { height: 170px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .photo-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .section { padding: 3rem 1.5rem; }
  .page-hero { min-height: 260px; padding: 3rem 1.5rem; }
  .page-hero-content h1 { font-size: 2.25rem; }
}

@media (max-width: 600px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.85rem; }
  .hero h1 { font-size: 2.1rem; }
  .page-hero-content h1 { font-size: 2rem; }
  .cta-section h2 { font-size: 2.25rem; }

  .container { padding: 0 1rem; }
  .section { padding: 2.5rem 1rem; }
  .site-header { padding: 0.6rem 1rem; }
  .header-inner { gap: 0.75rem; }

  .site-logo img,
  .custom-logo { height: 48px; max-width: 160px; }

  .trust-bar-inner { gap: 1.5rem; }
  .trust-item { flex-basis: 100%; justify-content: center; }

  .env-cards { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2.25rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { text-align: center; justify-content: center; }

  .photo-strip-inner { grid-template-columns: 1fr 1fr; }

  .contact-form-wrapper .form-row {
    grid-template-columns: 1fr;
  }

  .floating-card { display: none; }

  .hero-image { height: 280px; border-radius: 20px; }

  .booking-card { padding: 1.5rem 1.25rem; }
  .contact-info,
  .contact-form-wrapper { padding: 1.75rem 1.25rem; }

  .error-404 .error-code { font-size: 5rem; }
}

/* ==========================================================================
   Contact form notices
   ========================================================================== */
.fm-notice {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.fm-notice--success {
  background: var(--fm-turquoise-light);
  color: var(--fm-turquoise-darker);
  border: 2px solid var(--fm-turquoise);
}
.fm-notice--error {
  background: #fdecea;
  color: #b71c1c;
  border: 2px solid #f5c2bd;
}

/* ==========================================================================
   Headline (featured) location cards — Areas We Cover
   ========================================================================== */
.locations--headline {
  background: var(--fm-gray-100);
}
.locations-grid--headline {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.location-card--featured {
  padding: 1.5rem;
  border-width: 2px;
  border-color: var(--fm-turquoise);
  background: var(--fm-white);
  box-shadow: 0 6px 18px rgba(62, 185, 191, 0.12);
}
.location-card--featured .location-card-icon {
  width: 48px;
  height: 48px;
  background: var(--fm-turquoise);
  color: var(--fm-white);
}
.location-card--featured .location-card-icon svg {
  width: 24px;
  height: 24px;
}
.location-card--featured .location-card-name {
  font-size: 1.05rem;
}

/* ==========================================================================
   Free Taster Session Banner (homepage)
   ========================================================================== */
.taster-banner {
  background: linear-gradient(135deg, var(--fm-turquoise) 0%, var(--fm-turquoise-dark) 100%);
  color: var(--fm-white);
  padding: 3.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.taster-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}
.taster-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}
.taster-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}
.taster-content {
  max-width: 680px;
}
.taster-badge {
  display: inline-block;
  background: var(--fm-white);
  color: var(--fm-turquoise-darker);
  font-family: 'Chewy', cursive;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.taster-content h2 {
  font-family: 'Chewy', cursive;
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 0.65rem;
  color: var(--fm-white);
}
.taster-content p {
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}
.taster-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  min-width: 280px;
}
.taster-cta .btn-primary {
  background: var(--fm-white);
  color: var(--fm-turquoise-darker);
  border-color: var(--fm-white);
  text-align: center;
}
.taster-cta .btn-primary:hover {
  background: var(--fm-dark);
  color: var(--fm-white);
  border-color: var(--fm-dark);
}
.taster-meta {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}
@media (max-width: 768px) {
  .taster-banner {
    padding: 2.5rem 1.25rem;
  }
  .taster-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .taster-content {
    margin: 0 auto;
  }
  .taster-cta {
    min-width: 0;
    align-items: center;
  }
  .taster-cta .btn-primary {
    width: 100%;
    max-width: 360px;
  }
}

/* Footer logo sizing on small screens */
@media (max-width: 600px) {
  .footer-logos {
    gap: 1.25rem 1.5rem;
  }
  .footer-logo-link img,
  .footer-logo {
    height: 56px;
  }
}
