/*
Theme Name: Kitchen LaunchPad
Theme URI: https://kitchenlaunchpad.cz
Author: Kitchen LaunchPad
Author URI: https://kitchenlaunchpad.cz
Description: Custom WordPress theme for Kitchen LaunchPad â€“ a shared pro kitchen and culinary business launch platform.
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kitchenlaunchpad
Tags: business, food, kitchen, booking, bilingual
*/

/* =========================================
   CSS CUSTOM PROPERTIES
   ========================================= */
:root {
  --color-navy:       #1a2e5a;
  --color-navy-dark:  #111f3e;
  --color-orange:     #e8651a;
  --color-orange-dark:#c8520e;
  --color-white:      #ffffff;
  --color-light:      #f5f6f8;
  --color-gray:       #6b7280;
  --color-text:       #1f2937;
  --color-border:     #e5e7eb;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);

  --transition: 0.25s ease;
  --container: 1200px;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
}

/* =========================================
   UTILITY
   ========================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
}
.btn-primary:hover {
  background: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.btn-secondary:hover {
  background: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-navy);
  transform: translateY(-2px);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 8px;
}
.section-subtitle {
  text-align: center;
  color: var(--color-gray);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 48px;
}

/* =========================================
   LANGUAGE SWITCHER
   ========================================= */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}
/* Polylang outputs a <ul> list â€” reset it to inline */
.lang-switcher ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-switcher li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.lang-switcher a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-gray);
  padding: 4px 6px;
  border-radius: 4px;
  transition: all var(--transition);
  text-decoration: none;
  opacity: 0.6;
}
.lang-switcher li.current-lang a,
.lang-switcher a.active,
.lang-switcher a:hover {
  color: var(--color-orange);
  opacity: 1;
}
.lang-switcher img {
  width: 20px;
  height: auto;
  border-radius: 2px;
  vertical-align: middle;
}
.lang-switcher span { color: var(--color-border); }

/* =========================================
   HEADER / NAVIGATION
   ========================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
  overflow: visible;
}
#site-header .container {
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
  overflow: visible;
}

/* Logo â€” sits in header, circle overflows down into hero */
.site-logo {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
  align-self: center;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.site-logo > img {
  display: none;
}

/* White circle badge */
.logo-circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid rgba(255,255,255,0.8);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  top: 50px;
}
.logo-circle img {
  display: block !important;
  width: 95%;
  height: 95%;
  object-fit: contain;
  padding-left: 6px;         /* nudge image toward center */
}

/* Scrolled â€” shrink to flat logo inside header */
#site-header.scrolled .site-logo {
  align-self: center;
}
#site-header.scrolled .logo-circle {
  width: 80px;
  height: 80px;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  border-radius: 0;
  top: 0;
}
#site-header.scrolled .logo-circle img {
  width: 100%;
  height: 100%;
  padding-left: 0;
}
.site-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.site-logo .logo-text .logo-main {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
}
.site-logo .logo-text .logo-sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-orange);
  text-transform: uppercase;
}

/* Primary Nav */
#primary-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}
#primary-navigation ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
#primary-navigation ul li a {
  display: block;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-navy);
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition);
}
#primary-navigation ul li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-orange);
  border-radius: 2px;
  transition: width var(--transition);
}
#primary-navigation ul li a:hover::after,
#primary-navigation ul li.current-menu-item > a::after {
  width: calc(100% - 32px);
}
#primary-navigation ul li a:hover,
#primary-navigation ul li.current-menu-item > a {
  color: var(--color-orange);
}

/* Dropdown */
#primary-navigation ul li { position: relative; }
/* Chevron indicator for parent items */
#primary-navigation ul li.menu-item-has-children > a {
  padding-right: 26px;
}
#primary-navigation > ul > li.menu-item-has-children > a::before {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
  transition: transform var(--transition);
  opacity: 0.5;
}
#primary-navigation > ul > li.menu-item-has-children:hover > a::before {
  transform: translateY(-40%) rotate(-135deg);
  opacity: 1;
}
/* Inline SVG chevron (added via PHP filter) */
.nav-chevron {
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
  opacity: 0.5;
  transition: transform var(--transition), opacity var(--transition);
}
#primary-navigation ul li.menu-item-has-children:hover .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
#primary-navigation ul li ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 260px;
  padding: 8px;
  border: 1px solid var(--color-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 100;

}
#primary-navigation ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* Remove underline effect on dropdown items */
#primary-navigation ul li ul li a::after { display: none; }
#primary-navigation ul li ul li a {
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

#primary-navigation ul li ul li a:hover {
  background: var(--color-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   PAGE HERO BAR (inner pages)
   ========================================= */
.page-hero {
  background: var(--color-navy);
  padding: 60px 0 48px;
}
.page-hero .container {
  text-align: center;
}
.page-hero h1 {
  color: var(--color-white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0;
}
.page-hero .breadcrumb {
  margin-top: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}
.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.6);
}
.page-hero .breadcrumb a:hover {
  color: rgba(255,255,255,0.85);
}
.page-hero .breadcrumb .breadcrumb-sep {
  margin: 0 8px;
}
.page-hero .breadcrumb .breadcrumb-current {
  color: var(--color-orange);
}
.page-hero-sub {
  color: rgba(255,255,255,0.75);
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

/* When header is scrolled (logo shrunk), remove extra padding */
#site-header.scrolled ~ main .page-hero .container {
  padding-left: 24px;
}

@media (max-width: 768px) {
  .page-hero .container {
    padding-left: 24px;  /* logo is smaller on mobile */
  }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-navy);
  background-image: linear-gradient(
    105deg,
    rgba(26, 46, 90, 0.88) 0%,
    rgba(26, 46, 90, 0.6) 50%,
    rgba(26, 46, 90, 0.25) 100%
  );
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 80px 0;
}
.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--color-white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-content .hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero badge */
.hero-badge {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  color: var(--color-white);
  z-index: 1;
  min-width: 160px;
}
.hero-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1;
}
.hero-badge .badge-label { font-size: 0.85rem; opacity: 0.9; margin-top: 6px; }

/* =========================================
   FEATURES BAR
   ========================================= */
.features-bar {
  background: var(--color-white);
  padding: 56px 0;
  border-bottom: 1px solid var(--color-border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.feature-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-item:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.feature-item:hover .feature-icon {
  background: rgba(232, 101, 26, 0.12);
}
.feature-icon svg {
  width: 36px;
  height: 36px;
  color: var(--color-orange);
}
.feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--color-navy);
}
.feature-item p {
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* =========================================
   RECIPE FOR SUCCESS
   ========================================= */
.recipe-section {
  background: var(--color-light);
  padding: 80px 0;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.recipe-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  background: var(--color-white);
}
.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.recipe-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.recipe-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.recipe-card:hover .recipe-card-image img { transform: scale(1.06); }
.recipe-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 46, 90, 0.92);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 20px;
  text-align: center;
}
.recipe-card-body {
  padding: 20px;
  text-align: center;
}
.recipe-card-body p {
  color: var(--color-gray);
  font-size: 0.95rem;
}

/* =========================================
   SUCCESS STORIES / TESTIMONIALS
   ========================================= */
.testimonials-section {
  background: var(--color-white);
  padding: 80px 0;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.testimonial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.testimonial-content {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.testimonial-content .quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-orange);
  line-height: 0.5;
  margin-bottom: 8px;
}
.testimonial-content .quote-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-white);
  font-weight: 700;
}
.testimonial-content .quote-body {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
}
.testimonial-content .quote-author {
  color: var(--color-orange);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 8px;
}

.testimonial-image {
  position: relative;
  overflow: hidden;
}
.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.slider-btn:hover {
  background: var(--color-orange-dark);
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--color-orange);
  transform: scale(1.3);
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--color-white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-white {
  background: var(--color-white);
  color: var(--color-orange);
  border-color: var(--color-white);
  font-size: 1.1rem;
  padding: 16px 48px;
}
.cta-banner .btn-white:hover {
  background: transparent;
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* =========================================
   BOOKING SECTION
   ========================================= */
.booking-section {
  background: var(--color-light);
  padding: 80px 0;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.booking-info h2 { text-align: left; margin-bottom: 16px; }
.booking-info p { color: var(--color-gray); margin-bottom: 24px; }
.booking-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.booking-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.booking-feature-item .check-icon {
  width: 22px;
  height: 22px;
  background: var(--color-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 0.7rem;
}
.booking-calendar-wrap {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 32px;
  min-height: 300px;
}
.booking-calendar-wrap .calendar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  color: var(--color-gray);
  font-size: 0.9rem;
  text-align: center;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
}

/* =========================================
   HACCP SECTION
   ========================================= */
.haccp-section {
  background: var(--color-white);
  padding: 80px 0;
}
.haccp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.haccp-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.haccp-content h2 { text-align: left; margin-bottom: 16px; }
.haccp-content p { color: var(--color-gray); margin-bottom: 24px; }
.haccp-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.haccp-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.haccp-step-number {
  width: 36px;
  height: 36px;
  background: var(--color-navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.haccp-step-text h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.haccp-step-text p {
  font-size: 0.875rem;
  color: var(--color-gray);
  margin: 0;
}

/* =========================================
   FOOTER
   ========================================= */
#site-footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid rgba(255,255,255,0.6);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-logo-circle img,
.footer-logo-circle .custom-logo {
  width: 99% !important;
  height: auto !important;
  max-height: none !important;
  padding: 0 !important;
}

.footer-brand .footer-logo img { height: auto; width: auto; }
.footer-brand .footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-white);
  font-weight: 700;
}
.footer-brand .footer-logo-sub {
  display: block;
  font-size: 0.65rem;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
  font-size: 1rem;
}
.footer-social a:hover {
  background: var(--color-orange);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-orange); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--color-orange); }
.footer-bottom-links { display: flex; gap: 24px; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .haccp-inner { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
}

@media (max-width: 768px) {
  #primary-navigation,
  .header-actions .btn { display: none; }
  .menu-toggle { display: flex; }
  .site-logo {
    height: auto;
  }
  .logo-circle {
    width: 120px;
    height: 120px;
    top: 30px;
  }

  #primary-navigation.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--color-white);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--color-border);
    z-index: 999;
  }
  #primary-navigation.is-open ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  #primary-navigation.is-open ul li a { padding: 14px 0; border-bottom: 1px solid var(--color-border); }
  /* Mobile dropdowns */
  #primary-navigation.is-open ul li ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    min-width: 0;
  }
  #primary-navigation.is-open ul li.menu-item-has-children > a::before {
    right: 0;
  }

  .features-grid { grid-template-columns: 1fr; }
  .recipe-grid { grid-template-columns: 1fr; }
  .testimonial-inner { grid-template-columns: 1fr; }
  .testimonial-image { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-content { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}

/* =========================================
   WP BOOKING CALENDAR OVERRIDES
   ========================================= */
.booking_form_div .calendar_div {
  border: none !important;
  border-radius: var(--radius-md) !important;
}
.booking_form_div table.booking_calendar {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 4px !important;
}
.booking_form_div table.booking_calendar td {
  border-radius: var(--radius-sm) !important;
  transition: background var(--transition) !important;
}
.booking_form_div table.booking_calendar .date_booked,
.booking_form_div table.booking_calendar .date_busy {
  background-color: #fde8d8 !important;
  color: var(--color-orange-dark) !important;
}
.booking_form_div table.booking_calendar .date_available:hover {
  background-color: var(--color-orange) !important;
  color: white !important;
  cursor: pointer;
}
.booking_form_div table.booking_calendar .selected_date {
  background-color: var(--color-navy) !important;
  color: white !important;
}
.booking_form_div .booking-form-element input,
.booking_form_div .booking-form-element select,
.booking_form_div .booking-form-element textarea {
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 14px !important;
  font-family: var(--font-body) !important;
  width: 100% !important;
  transition: border-color var(--transition) !important;
}
.booking_form_div .booking-form-element input:focus,
.booking_form_div .booking-form-element select:focus,
.booking_form_div .booking-form-element textarea:focus {
  outline: none !important;
  border-color: var(--color-orange) !important;
  box-shadow: 0 0 0 3px rgba(232,101,26,0.15) !important;
}
.booking_form_div input[type="submit"],
.booking_form_div button[type="submit"] {
  background: var(--color-orange) !important;
  border: none !important;
  color: white !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 32px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: background var(--transition) !important;
}
.booking_form_div input[type="submit"]:hover,
.booking_form_div button[type="submit"]:hover {
  background: var(--color-orange-dark) !important;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* Intersection Observer driven */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.ct-section {
  padding: 80px 0;
  background: var(--color-white);
}
.ct-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: start;
}

/* --- Info panel --- */
.ct-info-heading {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.ct-info-desc {
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.ct-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ct-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.ct-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(232,101,26,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-orange);
}
.ct-icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.ct-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-gray);
  margin-bottom: 1px;
}
.ct-value {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text);
}
a.ct-value {
  color: var(--color-orange);
  font-weight: 600;
}
a.ct-value:hover {
  text-decoration: underline;
}

/* --- Form card --- */
.ct-form-card {
  background: var(--color-light);
  border-radius: var(--radius-md);
  padding: 36px 32px;
}
.ct-form-heading {
  font-size: 1.3rem;
  margin-bottom: 24px;
}
.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ct-field {
  margin-bottom: 16px;
}
.ct-field label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 5px;
  color: var(--color-text);
}
.ct-req { color: var(--color-orange); }

.ct-field input,
.ct-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.ct-field input:focus,
.ct-field textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(232,101,26,0.10);
}
.ct-field textarea {
  resize: vertical;
  min-height: 110px;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: #b0b5bf;
}

.ct-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.ct-submit:disabled { opacity: .65; cursor: not-allowed; }

@keyframes ct-spin { to { transform: rotate(360deg); } }
.ct-btn-spinner { animation: ct-spin .7s linear infinite; }

.ct-status { margin-top: 14px; font-size: 0.88rem; font-weight: 600; border-radius: var(--radius-sm); text-align: center; }
.ct-status:empty { display: none; }
.ct-status-ok  { display: block; padding: 12px 16px; background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.ct-status-err { display: block; padding: 12px 16px; background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* --- Maps --- */
.ct-maps {
  background: var(--color-light);
  padding: 80px 0;
}
.ct-maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.ct-map-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.ct-map-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.ct-map-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 16px;
}
.ct-map-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-white);
}
.ct-map-badge svg { width: 20px; height: 20px; flex-shrink: 0; }
.ct-map-header strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-navy);
}
.ct-map-header span {
  display: block;
  font-size: 0.85rem;
  color: var(--color-gray);
}
.ct-map-embed { line-height: 0; }
.ct-map-embed iframe { width: 100%; display: block; }

/* --- Contact responsive --- */
@media (max-width: 1024px) {
  .ct-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .ct-maps-grid { grid-template-columns: 1fr; }
  .ct-form-row  { grid-template-columns: 1fr; }
  .ct-form-card { padding: 24px 18px; }
}

/* =========================================
   GET STARTED PAGE
   ========================================= */
.gs-options {
  padding: 64px 0 80px;
  background: var(--color-light);
}

.gs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}

/* Cards */
.gs-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
  border: 2px solid transparent;
}
.gs-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.gs-card--kitchen {
  border-color: var(--color-orange);
}

.gs-card-icon {
  margin-bottom: 16px;
  color: var(--color-orange);
  line-height: 0;
}
.gs-card-icon svg {
  width: 48px;
  height: 48px;
}

/* Badge */
.gs-card-badge {
  display: inline-block;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.gs-card-badge--orange {
  background: var(--color-orange);
}

.gs-card h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--color-navy);
}

.gs-card-desc {
  color: var(--color-gray);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Checklist */
.gs-card-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gs-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text);
}
.gs-check {
  width: 20px;
  height: 20px;
  background: var(--color-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* Pricing preview */
.gs-pricing-preview {
  background: var(--color-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 20px;
}
.gs-price-row {
  font-size: 0.95rem;
  color: var(--color-text);
}
.gs-price-row strong {
  font-size: 1.2rem;
  color: var(--color-orange);
}

/* Button */
.gs-card-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* Note */
.gs-card-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-gray);
  margin-top: 12px;
}

/* Divider */
.gs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.gs-divider span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gray);
  text-transform: lowercase;
}

/* Bottom CTA */
.gs-bottom {
  padding: 48px 0;
  text-align: center;
  background: var(--color-white);
}
.gs-bottom p {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 4px;
}
.gs-bottom-sub {
  color: var(--color-gray);
  font-size: 0.9rem;
}
.gs-bottom-sub a {
  color: var(--color-orange);
  font-weight: 600;
}
.gs-bottom-sub a:hover {
  text-decoration: underline;
}

/* Get Started responsive */
@media (max-width: 768px) {
  .gs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 480px;
  }
  .gs-divider {
    padding: 8px 0;
  }
  .gs-card {
    padding: 32px 24px 28px;
  }
}

/* ── Pricing Hero ─────────────────────────── */
.pricing-hero {
  background: var(--color-navy);
  padding: 72px 0 56px;
  text-align: center;
}
.pricing-hero h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}
.pricing-hero > .container > p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 20px;
}
.pricing-breadcrumb {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}
.pricing-breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.pricing-breadcrumb a:hover { color: var(--color-white); }
.pricing-breadcrumb span { margin: 0 8px; }
.pricing-breadcrumb .current { color: var(--color-orange); }

/* ── Section wrappers ─────────────────────── */
.pricing-section {
  padding: 80px 0;
}
.pricing-section--light { background: var(--color-light); }
.pricing-section--white { background: var(--color-white); }

.pricing-section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ── Grid layouts ─────────────────────────── */
.pricing-grid {
  display: grid;
  gap: 28px;
  align-items: stretch;
}
.pricing-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.pricing-grid--center {
  grid-template-columns: 1fr;
  max-width: 400px;
  margin: 0 auto;
}

/* ── Individual pricing card ──────────────── */
.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border);
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Popular badge */
.pricing-card--popular {
  border-width: 2px;
}
.pricing-popular-badge {
  position: absolute;
  top: 14px;
  right: -32px;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 40px;
  transform: rotate(45deg);
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Accent colours for the top header bar */
.pricing-accent--green  .pricing-card-header { background: #2e7d32; }
.pricing-accent--orange .pricing-card-header { background: var(--color-orange); }
.pricing-accent--navy   .pricing-card-header { background: var(--color-navy); }



/* Button accent colours */
.pricing-accent--green  .pricing-btn { background: #2e7d32; border-color: #2e7d32; }
.pricing-accent--green  .pricing-btn:hover { background: #1b5e20; border-color: #1b5e20; }
.pricing-accent--orange .pricing-btn { background: var(--color-orange); border-color: var(--color-orange); }
.pricing-accent--orange .pricing-btn:hover { background: var(--color-orange-dark); border-color: var(--color-orange-dark); }
.pricing-accent--navy   .pricing-btn { background: var(--color-navy); border-color: var(--color-navy); }
.pricing-accent--navy   .pricing-btn:hover { background: var(--color-navy-dark); border-color: var(--color-navy-dark); }

/* Check icon colours */
.pricing-accent--green  .pricing-check { color: #2e7d32; }
.pricing-accent--orange .pricing-check { color: var(--color-orange); }
.pricing-accent--navy   .pricing-check { color: var(--color-navy); }

/* Card header (coloured bar with title) */
.pricing-card-header {
  padding: 16px 24px;
  text-align: center;
}
.pricing-card-title {
  color: var(--color-white) !important;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
}

/* Price block */
.pricing-card-price {
  padding: 28px 24px 20px;
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}
.pricing-amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
}
.pricing-currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-navy);
}
.pricing-unit {
  font-size: 0.85rem;
  color: var(--color-gray);
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 2px;
}

/* Features list */
.pricing-features {
  list-style: none;
  padding: 0 24px;
  margin: 0 0 auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.4;
}
.pricing-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* Card footer / button */
.pricing-card-footer {
  padding: 24px;
  margin-top: auto;
}
.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-white);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-white);
}
.pricing-btn svg {
  transition: transform var(--transition);
}
.pricing-btn:hover svg {
  transform: translateX(3px);
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .pricing-grid--3 {
    grid-template-columns: 1fr;
  }
  .pricing-section {
    padding: 56px 0;
  }
  .pricing-hero {
    padding: 56px 0 40px;
  }
}


/* =========================================
   ABOUT PAGE STYLES
   Add this to the bottom of your style.css
   ========================================= */

/* ── About Hero ───────────────────────────── */
.about-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-navy);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.about-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 0;
}
.about-hero-content h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.about-hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Section wrappers ─────────────────────── */
.about-section {
  padding: 72px 0;
}
.about-section--white { background: var(--color-white); }
.about-section--light { background: var(--color-light); }
.about-section--navy  { background: var(--color-navy-dark); }

/* ── Section headings with decorative line ── */
.about-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-orange);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-heading::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--color-border);
}
.about-heading--light {
  color: var(--color-orange);
}
.about-heading--light::after {
  background: rgba(255,255,255,0.15);
}

/* ── Shared check icon ────────────────────── */
.about-check {
  flex-shrink: 0;
  color: var(--color-orange);
}
.about-check--orange { color: var(--color-orange); }

/* ── Our Mission ──────────────────────────── */
.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.about-mission-card {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.about-mission-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.about-mission-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(232,101,26,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-orange);
}
.about-mission-card h3 {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: var(--color-navy);
}
.about-mission-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.about-mission-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-gray);
}

/* ── Our Facility ─────────────────────────── */
.about-facility-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.about-facility-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,0.05);
}
.about-facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-facility-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding-top: 8px;
}
.about-facility-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

/* ── Why Choose Us ────────────────────────── */
.about-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-why-card {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.about-why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.about-why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(232,101,26,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-orange);
}
.about-why-card h4 {
  font-size: 0.95rem;
  color: var(--color-navy);
  font-family: var(--font-body);
  font-weight: 700;
}

/* ── Meet the Founder ─────────────────────── */
.about-founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-founder-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
}
.about-founder-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-text);
}
.about-founder-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.about-founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Who We Support ───────────────────────── */
.about-support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about-support-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
}
.about-support-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.about-support-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.about-support-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.about-support-card:hover .about-support-img img {
  transform: scale(1.06);
}
.about-support-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(232,101,26,0.9);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  padding: 12px 8px;
}

/* ── Find Us ──────────────────────────────── */
.about-findus-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.about-findus-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}
.about-findus-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-text);
}
.about-findus-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 300px;
}
.about-findus-map iframe {
  display: block;
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 1024px) {
  .about-mission-grid  { grid-template-columns: 1fr 1fr; }
  .about-why-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-support-grid  { grid-template-columns: repeat(2, 1fr); }
  .about-founder-grid  { grid-template-columns: 1fr; }
  .about-findus-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .about-mission-grid    { grid-template-columns: 1fr; }
  .about-why-grid        { grid-template-columns: 1fr 1fr; }
  .about-support-grid    { grid-template-columns: 1fr 1fr; }
  .about-facility-images { grid-template-columns: 1fr; }
  .about-facility-features { flex-direction: column; align-items: flex-start; }
  .about-section         { padding: 56px 0; }
  .about-hero-content    { padding: 56px 0; }
}





/* =============================================
   HOW IT WORKS PAGE  (page-how-it-works.php)
   ============================================= */

/* ── Section base ──────────────────────────── */
.hiw-section              { padding: 72px 0; }
.hiw-section--white       { background: var(--color-white); }
.hiw-section--light       { background: var(--color-light); }

/* ── Navy sub-headings (columns, not main sections) */
.hiw-col-heading {
	font-size: clamp(1.3rem, 2.5vw, 1.6rem);
	font-weight: 800;
	color: var(--color-navy);
	margin-bottom: 28px;
}

/* ── How Can You Start — two cards ─────────── */
.hiw-start-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	max-width: 920px;
	margin: 0 auto;
}
.hiw-start-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 32px;
	display: flex;
	flex-direction: column;
}
.hiw-start-card-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
}
.hiw-start-card-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-light);
	border-radius: var(--radius-md);
	color: var(--color-navy-dark);
}
.hiw-start-card h3 {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
}
.hiw-start-card-sub {
	margin: 2px 0 0;
	font-size: .92rem;
	color: var(--color-orange);
	font-weight: 600;
}
.hiw-start-btn {
	margin-top: auto;
	align-self: flex-start;
}

/* ── Checklist shared style ────────────────── */
.hiw-check-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}
.hiw-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 6px 0;
	font-size: .97rem;
	line-height: 1.5;
}
.hiw-check {
	flex-shrink: 0;
	color: #2e7d32;
	margin-top: 2px;
}
.hiw-check-list--card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 28px 32px;
}
.hiw-check-list--card li {
	padding: 8px 0;
}

/* ── Dual grid (steps+req AND faq+rules) ───── */
.hiw-dual-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
}

/* ── Booking Steps ─────────────────────────── */
.hiw-steps {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.hiw-step {
	display: flex;
	align-items: center;
	gap: 18px;
}
.hiw-step-number {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--color-orange);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	font-weight: 700;
}
.hiw-step p {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 500;
}

/* ── FAQ Topic Sections ────────────────────── */
.hiw-faq-topics {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.hiw-faq-topic {
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--color-white);
}
.hiw-faq-topic-btn {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	text-align: left;
	transition: background .2s;
}
.hiw-faq-topic-btn:hover {
	background: var(--color-light);
}
.hiw-faq-topic-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-light);
	border-radius: var(--radius-md);
	color: var(--color-navy-dark);
}
.hiw-faq-topic.is-open .hiw-faq-topic-icon {
	background: var(--color-orange);
	color: #fff;
}
.hiw-faq-topic-label {
	flex: 1;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--color-navy);
}
.hiw-faq-topic-chevron {
	flex-shrink: 0;
	color: var(--color-gray);
	transition: transform .3s;
}
.hiw-faq-topic.is-open .hiw-faq-topic-chevron {
	transform: rotate(180deg);
}
.hiw-faq-topic-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease;
}
.hiw-faq-topic.is-open .hiw-faq-topic-body {
	max-height: 1200px;
}
.hiw-faq-item {
	border-top: 1px solid var(--color-border);
}
.hiw-faq-item summary {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	padding: 14px 20px 14px 72px;
	font-weight: 600;
	font-size: .93rem;
	list-style: none;
	transition: background .2s;
	color: var(--color-navy);
}
.hiw-faq-item summary::-webkit-details-marker { display: none; }
.hiw-faq-item summary:hover { background: var(--color-light); }
.hiw-faq-q       { flex: 1; }
.hiw-faq-chevron {
	flex-shrink: 0;
	transition: transform .25s;
	color: var(--color-gray);
}
.hiw-faq-item[open] .hiw-faq-chevron { transform: rotate(180deg); }
.hiw-faq-a {
	padding: 0 20px 18px 72px;
	font-size: .91rem;
	line-height: 1.65;
	color: var(--color-gray);
}

/* ── House Rules (expandable) ──────────────── */
.hiw-rules-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.hiw-rule-item {
	background: var(--color-light);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: box-shadow .2s;
}
.hiw-rule-item:hover {
	box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.hiw-rule-item summary {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 18px;
	font-size: .95rem;
	font-weight: 500;
	cursor: pointer;
	list-style: none;
	transition: background .2s;
}
.hiw-rule-item summary::-webkit-details-marker { display: none; }
.hiw-rule-item summary:hover { background: #eceef2; }
.hiw-rule-dot {
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-orange);
}
.hiw-rule-title { flex: 1; }
.hiw-rule-chevron {
	flex-shrink: 0;
	color: var(--color-gray);
	transition: transform .25s;
}
.hiw-rule-item[open] .hiw-rule-chevron {
	transform: rotate(180deg);
}
.hiw-rule-detail {
	padding: 0 18px 18px 38px;
	font-size: .9rem;
	line-height: 1.65;
	color: var(--color-gray);
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 768px) {
	.hiw-section { padding: 48px 0; }

	.hiw-start-grid {
		grid-template-columns: 1fr;
	}
	.hiw-dual-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.hiw-faq-item summary {
		padding-left: 20px;
	}
	.hiw-faq-a {
		padding-left: 20px;
	}
}


