/* ==========================================================================
   style.css — Kelliher Opticians
   Plain CSS for use in MODX or any static HTML environment.
   Font:  Noto Sans (loaded via Google Fonts CDN in index.html)
   Icons: Lucide (loaded via unpkg CDN in index.html)
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (design tokens)
   -------------------------------------------------------------------------- */
:root {
  --color-teal:         #83BCC4;
  --color-teal-dark:    #3A8A94;
  --color-teal-muted:   #9CBCB7;
  --color-teal-green:   #4A7067;
  --color-red:          #E77F76;
  --color-red-dark:     #d06860;
  --color-tan:          #E77F76;
  --color-dark:         #1A1A1A;
  --color-darker:       #111111;
  --color-bg-light:     #F7F9F8;
  --color-bg-insta:     #F0F7F8;
  --color-text:         #5B6E6B;
  --color-text-muted:   #888888;
  --color-text-faint:   #555555;
  --color-border:       #E8EFED;
  --color-border-dark:  #222222;
  --color-border-footer:#333333;

  --font-sans: 'Noto Sans', sans-serif;

  --space-1:  8px;
  --space-2:  16px;
  --space-3:  24px;
  --space-4:  32px;
  --space-5:  40px;
  --space-6:  48px;
  --space-8:  64px;
  --space-10: 80px;

  --transition: 0.3s ease;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-text);
  background: #fff;
}

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

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

ul {
  list-style: none;
}

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

/* --------------------------------------------------------------------------
   Utility: fade-in animation (applied to hero image on slide change)
   -------------------------------------------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

/* --------------------------------------------------------------------------
   Shared components
   -------------------------------------------------------------------------- */

/* Eyebrow labels */
.eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow--dark        { color: var(--color-teal-green); }
.eyebrow--red         { color: var(--color-red); }
.eyebrow--teal-muted  { color: var(--color-teal-muted); }
.eyebrow--white-muted { color: rgba(255,255,255,0.7); }

/* default (hero) eyebrow is white/translucent */
.hero .eyebrow {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-left: -4px;
}

/* Horizontal divider */
.divider {
  width: 40px;
  height: 2px;
  margin-bottom: 24px;
}

.divider--white { background: rgba(255,255,255,0.5); }
.divider--teal  { background: var(--color-teal); }

/* Section headers (centred) */
.section-header {
  text-align: center;
  padding: var(--space-10) var(--space-3) var(--space-6);
}

.section-header--dark { background: var(--color-dark); }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-teal-dark);
}

.section-title--white { color: #fff; }

/* Underline-style text link with arrow */
.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-teal-dark);
  border-bottom: 2px solid var(--color-teal-dark);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.link-cta:hover {
  color: var(--color-red);
  border-color: var(--color-red);
}

/* Centred variant used in Instagram section */
.link-cta--center {
  margin: 0 auto;
}

.link-cta__icon {
  width: 13px;
  height: 13px;
  transition: transform var(--transition);
}

.link-cta:hover .link-cta__icon {
  transform: translateX(3px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

/* Outlined white (on teal / dark backgrounds) */
.btn--outline-white {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn--outline-white:hover {
  background: #fff;
  color: var(--color-teal);
}

/* Outlined teal (on white backgrounds) */
.btn--outline-teal {
  border: 2px solid var(--color-teal);
  color: var(--color-teal-dark);
  background: transparent;
}

.btn--outline-teal:hover {
  background: var(--color-teal);
  color: #fff;
}

/* White background with teal text (hero secondary CTA) */
.btn--white-teal {
  background: #fff;
  color: var(--color-teal);
  border: 2px solid #fff;
}

.btn--white-teal:hover {
  background: var(--color-teal);
  color: #fff;
}

/* Red fill (booking CTA) */
.btn--red {
  background: var(--color-red);
  color: #fff;
  border: none;
}

.btn--red:hover {
  background: var(--color-red-dark);
}

/* Small size modifier */
.btn--sm {
  padding: 10px 20px;
  font-size: 12px;
}

.btn__icon {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.btn:hover .btn__icon {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   TOP BAR
   -------------------------------------------------------------------------- */
.topbar {
  display: none; /* hidden on mobile */
  background: var(--color-teal);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 64px;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .topbar { display: flex; }
}

/* --------------------------------------------------------------------------
   NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}

.navbar--scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

.navbar__inner {
  display: flex;
  align-items: center;
  height: 136px;
}

.navbar__logo {
  padding-left: 64px;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 104px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
}

/* Desktop nav links — centered in remaining space */
.navbar__nav {
  display: none;
  flex: 1;
  justify-content: center;
}

.navbar__nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar__nav ul li {
  margin: 0;
  padding: 0;
}

.navbar__nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-teal-dark);
  transition: color var(--transition);
}

.navbar__nav a:hover {
  color: var(--color-red);
}

@media (min-width: 1024px) {
  .navbar__nav { display: flex; }
}

/* Actions: book button + hamburger — right edge mirrors logo left edge */
.navbar__actions {
  padding-right: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Book appointment button hidden below lg */
.navbar__actions .btn--outline-teal {
  display: none;
}

@media (min-width: 1024px) {
  .navbar__actions .btn--outline-teal { display: inline-flex; }
}

/* Hamburger toggle (visible below lg) */
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal-dark);
  padding: 4px;
}

.hamburger svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

/* Mobile dropdown menu */
.mobile-menu {
  display: none;
  background: var(--color-dark);
  color: #fff;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  z-index: 99;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 24px;
}

.mobile-menu nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu nav ul li {
  margin: 0;
  padding: 0;
}

.mobile-menu__link {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  transition: color var(--transition);
}

.mobile-menu__link:hover {
  color: var(--color-red);
}

.mobile-menu__cta {
  margin-top: 16px;
  justify-content: center;
}

/* ── Mobile sub-links indent ── */
.mobile-menu__sublink {
  padding-left: 16px;
  font-size: 13px;
  opacity: 0.85;
}

/* ── Desktop nav icons ── */
.navbar__nav > ul > li > a svg,
.navbar__nav > ul > li > ul > li > a svg {
  width: 13px;
  height: 13px;
  transition: transform var(--transition);
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* ── Desktop: top-level item with a child <ul> ── */
.navbar__nav > ul > li:has(> ul) {
  position: relative;
}

/* Top-level link that has a submenu — make it flex for icon alignment */
.navbar__nav > ul > li:has(> ul) > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Rotate chevron on hover */
.navbar__nav > ul > li:has(> ul):hover > a svg,
.navbar__nav > ul > li:has(> ul).is-open > a svg {
  transform: rotate(180deg);
}

/* Invisible bridge: prevents the dropdown from closing as the mouse moves down */
.navbar__nav > ul > li:has(> ul)::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 16px;
}

/* ── Desktop: first-level dropdown ── */
.navbar__nav > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 160px;
  padding: 12px 0 8px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 200;
}

.navbar__nav > ul > li:hover > ul,
.navbar__nav > ul > li.is-open > ul {
  opacity: 1;
  pointer-events: auto;
}

.navbar__nav > ul > li > ul > li {
  margin: 0;
  padding: 0;
  position: relative;
}

.navbar__nav > ul > li > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-teal-dark);
  white-space: nowrap;
  transition: color var(--transition);
}

.navbar__nav > ul > li > ul > li > a:hover {
  color: #e8621a;
}

/* ── Desktop: second-level flyout (right) ── */

/* Bridge: fills the gap so the flyout stays open on mouse move */
.navbar__nav > ul > li > ul > li:has(> ul)::after {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 8px;
  height: 100%;
}

.navbar__nav > ul > li > ul > li > ul {
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 150px;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 210;
}

.navbar__nav > ul > li > ul > li:hover > ul {
  opacity: 1;
  pointer-events: auto;
}

.navbar__nav > ul > li > ul > li > ul > li > a {
  display: block;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-teal-dark);
  white-space: nowrap;
  transition: color var(--transition);
}

.navbar__nav > ul > li > ul > li > ul > li > a:hover {
  color: #e8621a;
}

/* ── Mobile accordion: level 1 (Eye Care) ── */
.mobile-menu nav > ul > li > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu nav > ul > li.is-open > ul {
  max-height: 400px;
  padding-top: 16px;
}

.mobile-menu nav > ul > li:has(> ul) > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mobile-menu nav > ul > li.is-open > a svg {
  transform: rotate(180deg);
}

/* ── Mobile accordion: level 2 (Child 2) ── */
.mobile-menu nav > ul > li > ul > li > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu nav > ul > li > ul > li.is-open > ul {
  max-height: 200px;
  padding-top: 12px;
}

.mobile-menu nav > ul > li > ul > li:has(> ul) > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mobile-menu nav > ul > li > ul > li.is-open > a svg {
  transform: rotate(180deg);
}

/* Sub-sub links indent */
.mobile-menu nav > ul > li > ul > li > ul > li > a {
  padding-left: 32px;
  font-size: 12px;
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
  display: flex;
  flex-direction: column;
  min-height: 90vh;
}

@media (min-width: 768px) {
  .hero { flex-direction: row; }
}

/* Left: content panel */
.hero__content {
  flex: 1;
  background: var(--color-teal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px;
}

@media (min-width: 768px) {
  .hero__content { padding: 80px 64px; }
}

.hero__heading {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.hero__heading--accent {
  color: #D18C6A;
}

/* Row containing body text + prev/next buttons */
.hero__body-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}

.hero__body {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 400px;
}

/* Prev / Next slider buttons */
.slider-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  margin-top: 4px;
}

.slider-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  color: #fff;
  transition: background var(--transition), color var(--transition);
}

.slider-btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

.slider-btn:hover {
  background: #fff;
  color: var(--color-teal);
}

/* Slide indicator dashes */
.slide-indicators {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.slide-dot {
  height: 2px;
  width: 16px;
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 0;
  transition: width var(--transition), background var(--transition);
}

.slide-dot--active {
  width: 32px;
  background: #fff;
}

/* Hero CTA buttons row */
.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 480px) {
  .hero__ctas { flex-direction: row; flex-wrap: wrap; }
}

/* Right: image panel */
.hero__image-panel {
  flex: 1;
  position: relative;
  min-height: 50vh;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero__image-panel { min-height: unset; }
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  display: none;
}

/* "Currently welcoming" glass badge */
.hero__badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  max-width: 280px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 20px;
}

.hero__badge-title {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero__badge-body {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   SERVICES
   -------------------------------------------------------------------------- */
.services {
  background: var(--color-bg-light);
}

/* Alternating image + text panels */
.service-panel {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .service-panel              { flex-direction: row; }
  .service-panel--reverse     { flex-direction: row-reverse; }
}

.service-panel__image {
  flex: 1;
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .service-panel__image { min-height: 480px; }
}

.service-panel__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-panel__image:hover img {
  transform: scale(1.05);
}

.service-panel__overlay {
  display: none;
}

.service-panel__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 40px;
  background: #fff;
}

@media (min-width: 768px) {
  .service-panel__text { padding: 64px 64px; }
}

.service-panel__heading {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-teal-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.service-panel__body {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 32px;
}

/* --------------------------------------------------------------------------
   BRANDS
   -------------------------------------------------------------------------- */
.brands {
  position: relative;
  overflow: hidden;
  padding-bottom: var(--space-10);
}

/* Full-bleed background photo */
.brands__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark scrim over the photo */
.brands__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* All content sits above the bg */
.brands__inner {
  position: relative;
  z-index: 1;
}

/* Override the dark background on the section-header inside brands */
.brands .section-header--dark {
  background: transparent;
}

/* Eyebrow in brands — white */
.brands__eyebrow {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

/* Sub-heading — white, larger */
.brands__sub--white {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin: 16px auto 0;
}

/* 12-tile brand logo grid */
.brands__logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 12px;
  padding: 0 24px;
  margin-bottom: 48px;
}

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

@media (min-width: 1024px) {
  .brands__logo-grid {
    grid-template-columns: repeat(6, 1fr);
    padding: 0 64px;
  }
}

/* Individual brand logo tile */
.brand-tile {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 100px;
  padding: 20px 16px 14px;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.brand-tile__img {
  max-width: 120px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0);
  opacity: 1;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.brand-tile__img--large {
  max-width: 240px;
  max-height: 104px;
}

.brand-tile__img--medium {
  max-width: 144px;
  max-height: 62px;
}

.brand-tile__img--no-blacken {
  filter: grayscale(100%) contrast(150%);
}

.brand-tile:hover .brand-tile__img--no-blacken {
  filter: grayscale(0%) contrast(100%);
}

.brand-tile:hover .brand-tile__img {
  filter: grayscale(0%);
  opacity: 1;
}

.brand-tile__name {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  text-align: center;
  line-height: 1.3;
}

.brand-tile:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}

.brands__cta {
  text-align: center;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   ABOUT
   -------------------------------------------------------------------------- */
.about {
  background: #fff;
}

.about__panels {
  display: flex;
  flex-direction: column;
  min-height: 560px;
}

@media (min-width: 1024px) {
  .about__panels { flex-direction: row; }
}

.about__image {
  flex: 1;
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.about__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image-overlay {
  display: none;
}

.about__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 40px;
  background: var(--color-bg-light);
}

@media (min-width: 768px) {
  .about__text { padding: 64px 64px; }
}

.about__heading {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-teal-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about__body {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 20px;
}

.about__body:last-of-type {
  margin-bottom: 32px;
}

/* Stats bar */
.stats-bar {
  background: var(--color-teal);
  padding: 56px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-bar { grid-template-columns: repeat(4, 1fr); }
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat__icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
  stroke: #fff;
}

.stat__value {
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat__label {
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials {
  background: var(--color-bg-light);
  padding: var(--space-10) 24px;
}

.testimonials__google-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
}

.google-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.testimonials__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Individual review card */
.review-card {
  background: #fff;
  padding: 32px;
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow var(--transition);
}

.review-card:hover {
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.12);
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Star rating */
.star-rating {
  display: flex;
  gap: 2px;
}

.star-rating svg {
  width: 16px;
  height: 16px;
  fill: #FBBC04;
}

.review-card__quote {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}

.review-card__name {
  color: var(--color-teal-dark);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.review-card__time {
  color: var(--color-teal-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   INSTAGRAM FEED
   -------------------------------------------------------------------------- */
.instagram {
  background: #fff;
  padding: var(--space-10) 24px;
}

.instagram .section-header {
  padding-top: 0;
  margin-bottom: var(--space-6);
}

.insta-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

/* 4-column placeholder grid */
.insta-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

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

/* Individual Instagram cell */
.insta-cell {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--color-bg-insta);
}

.insta-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-cell:hover img {
  transform: scale(1.10);
}

/* Hover overlay with Instagram icon */
.insta-cell__hover {
  position: absolute;
  inset: 0;
  background: rgba(131,188,196,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.insta-cell__hover svg {
  width: 32px;
  height: 32px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.insta-cell:hover .insta-cell__hover {
  background: rgba(131,188,196,0.30);
}

.insta-cell:hover .insta-cell__hover svg {
  opacity: 1;
}

/* Attribution line below grid */
.insta-credit {
  text-align: center;
  color: var(--color-teal-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 20px;
}

.insta-credit a {
  text-decoration: underline;
  transition: color var(--transition);
}

.insta-credit a:hover {
  color: var(--color-teal-dark);
}

/* --------------------------------------------------------------------------
   BOOKING CTA
   -------------------------------------------------------------------------- */
.booking-cta {
  position: relative;
  overflow: hidden;
}

.booking-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(131,188,196,0.85);
}

.booking-cta__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 96px 24px;
}

.booking-cta__heading {
  color: #fff;
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.booking-cta__body {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 40px;
}

.booking-cta__btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 480px) {
  .booking-cta__btns { flex-direction: row; }
}

.booking-cta__btns .btn {
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--color-darker);
  color: #fff;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer__brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__brand-tagline {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 28px;
}

/* Contact list in footer */
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.5;
  transition: color var(--transition);
}

.footer__contact-item:hover {
  color: #fff;
}

.footer__contact-icon {
  color: var(--color-teal-muted);
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}

/* Social icons */
.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.footer__social {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border-footer);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: color var(--transition), border-color var(--transition);
}

.footer__social svg {
  width: 16px;
  height: 16px;
}

.footer__social:hover {
  color: #fff;
  border-color: #fff;
}

/* Footer link columns */
.footer__links-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer__links-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links-col a {
  color: var(--color-text-muted);
  font-size: 14px;
  transition: color var(--transition);
}

.footer__links-col a:hover {
  color: #fff;
}

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid var(--color-border-dark);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  color: var(--color-text-faint);
  font-size: 14px;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  color: var(--color-text-faint);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: #fff;
}
