:root {
  --primary: #1b2f45;
  --primary-2: #0d1723;
  --secondary: #8d7442;
  --secondary-soft: #b79d67;
  --accent: #d8c79f;
  --bg: #edf1f4;
  --surface: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.78);
  --surface-2: #f5f8fa;
  --text: #111820;
  --muted: #4f5e69;
  --border: #c9d2d9;
  --shadow-md: 0 28px 58px rgba(8, 16, 24, 0.14);
  --shadow-sm: 0 14px 30px rgba(8, 16, 24, 0.09);
  --shadow-xs: 0 6px 18px rgba(8, 16, 24, 0.07);
  --radius-card: 18px;
  --focus-ring: 0 0 0 3px rgba(141, 116, 66, 0.28);
  --section-divider: linear-gradient(90deg, rgba(17, 38, 54, 0), rgba(141, 116, 66, 0.4), rgba(17, 38, 54, 0));
  --gutter: clamp(0.9rem, 4vw, 1.6rem);
  --section-space: clamp(3.1rem, 7vw, 4.5rem);
  --header-offset: 92px;
}

body.dark {
  --bg: #0b121a;
  --surface: #111d28;
  --surface-glass: rgba(17, 29, 40, 0.82);
  --surface-2: #172736;
  --text: #edf3f7;
  --muted: #afbfcc;
  --border: #2d455a;
  --shadow-md: 0 24px 40px rgba(2, 8, 14, 0.45);
  --shadow-sm: 0 10px 24px rgba(2, 8, 14, 0.35);
  --shadow-xs: 0 4px 16px rgba(2, 8, 14, 0.3);
  --section-divider: linear-gradient(90deg, rgba(151, 188, 211, 0), rgba(178, 151, 92, 0.45), rgba(151, 188, 211, 0));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  overflow-x: clip;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 7% 5%, rgba(143, 116, 69, 0.14), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(27, 47, 69, 0.1), transparent 30%),
    linear-gradient(180deg, #f7f9fb 0%, #edf1f4 42%, #e7ebef 100%);
  line-height: 1.58;
  overflow-x: hidden;
  width: 100%;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(63, 111, 140, 0.2);
  color: #0d1a24;
}

img,
video,
iframe {
  max-width: 100%;
}

img,
video {
  height: auto;
}

body.dark {
  background:
    radial-gradient(circle at 8% 8%, rgba(141, 116, 66, 0.2), transparent 34%),
    radial-gradient(circle at 90% 10%, rgba(35, 59, 82, 0.28), transparent 30%),
    linear-gradient(180deg, #0a131d, #0b161f 46%, #0c1925 100%);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-content > *,
  .hero-panel {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

a {
  color: inherit;
}

a,
button,
.btn,
.menu-toggle,
.theme-toggle {
  touch-action: manipulation;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: #ffffff;
  color: #0b2e42;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  border: 1px solid #9eb7c6;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(95, 185, 220, 0.22), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(12, 47, 68, 0.28), transparent 34%),
    linear-gradient(180deg, #eff7fb, #eaf1f6);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

body.dark .site-loader {
  background:
    radial-gradient(circle at 20% 20%, rgba(95, 185, 220, 0.16), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(12, 47, 68, 0.38), transparent 34%),
    linear-gradient(180deg, #07111b, #0a1522);
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-core {
  position: relative;
  width: min(280px, 70vw);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.loader-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #2f7f9f;
  border-right-color: #0f3d56;
  animation: spinLoader 1.2s linear infinite;
  filter: drop-shadow(0 0 14px rgba(47, 127, 159, 0.25));
}

.loader-ring--alt {
  width: 68%;
  height: 68%;
  border-top-color: #5ca6c2;
  border-right-color: #124a68;
  animation-direction: reverse;
  animation-duration: 0.9s;
}

.loader-wordmark {
  z-index: 1;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #0f3d56;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
}

body.dark .loader-wordmark {
  color: #d8ebf6;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 2000;
  background: linear-gradient(90deg, #5ca6c2, #2f7f9f, #0f3d56);
  box-shadow: 0 0 12px rgba(47, 127, 159, 0.6);
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.noscript-banner {
  background: #fff6d9;
  color: #563f00;
  text-align: center;
  padding: 0.55rem 0.8rem;
  font-size: 0.9rem;
  border-bottom: 1px solid #edd48f;
}

.container {
  width: min(1120px, calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.hero-layout > *,
.experience-layout > *,
.instagram-layout > *,
.hours-layout > *,
.contact-grid > *,
.team-lead-card > *,
.cards > *,
.photo-grid > * {
  min-width: 0;
}

.top-strip {
  background: var(--primary-2);
  color: #e8f1f6;
  font-size: 0.85rem;
}

.top-strip-content {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-strip p {
  margin: 0;
}

.top-strip a {
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-xs);
  isolation: isolate;
}

body.dark .site-header {
  background: rgba(12, 24, 35, 0.84);
}

.nav-wrapper {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand {
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: #0f1d2a;
}

.menu-toggle {
  display: none;
  justify-self: start;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 10px;
  padding: 0.45rem 0.8rem;
  font-weight: 700;
}

.theme-toggle {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 246, 251, 0.92));
  color: var(--text);
  border-radius: 999px;
  padding: 0.38rem 0.68rem;
  font-weight: 700;
  min-height: 36px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(15, 61, 86, 0.16);
}

body.dark .theme-toggle {
  background: linear-gradient(180deg, #17334a, #102638);
  color: #dce9f3;
}

#main-nav {
  margin-left: auto;
  margin-right: 0.35rem;
  min-width: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.2rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  backdrop-filter: saturate(108%);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  border-color: rgba(63, 111, 140, 0.25);
  background: linear-gradient(90deg, rgba(63, 111, 140, 0.16), rgba(16, 26, 36, 0.08));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  min-height: 44px;
  letter-spacing: 0.01em;
}

.header-cta {
  min-height: 38px;
  padding: 0.55rem 0.92rem;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.tablet-booking-bar {
  display: none;
  position: sticky;
  top: 72px;
  z-index: 1100;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.tablet-booking-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.tablet-booking-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.tablet-booking-inner .btn {
  min-height: 36px;
  padding: 0.46rem 0.86rem;
  font-size: 0.8rem;
}

.btn-primary {
  background: linear-gradient(110deg, #1b2f45, #2a4661 45%, #8d7442);
  color: #fff;
  box-shadow: 0 14px 30px rgba(13, 33, 47, 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 36px rgba(17, 33, 49, 0.38);
}

.btn-secondary {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: rgba(24, 64, 90, 0.1);
}

.btn:focus-visible,
.menu-toggle:focus-visible,
.theme-toggle:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.full-width {
  width: 100%;
}

.hero {
  padding: 4.6rem 0 3.2rem;
  position: relative;
  overflow: clip;
}

.hero-mesh {
  position: absolute;
  inset: -10% -5% auto;
  height: 420px;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 40%, rgba(154, 133, 89, 0.22), transparent 42%),
    radial-gradient(circle at 78% 30%, rgba(27, 47, 69, 0.24), transparent 36%),
    radial-gradient(circle at 55% 80%, rgba(183, 157, 103, 0.2), transparent 36%);
  filter: blur(6px);
  animation: meshFloat 12s ease-in-out infinite alternate;
  z-index: 0;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.1rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  background: var(--surface-glass);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  padding: 2.35rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  position: relative;
  isolation: isolate;
}

.hero-content::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
  z-index: -1;
}

.eyebrow {
  margin: 0;
  display: inline-flex;
  padding: 0.23rem 0.75rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.08);
  color: #334155;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.7rem;
  border: 1px solid rgba(24, 64, 90, 0.14);
}

h1 {
  margin: 0.9rem 0 0.8rem;
  font-size: clamp(2.1rem, 4.2vw, 3.65rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: #13273d;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}

.hero p {
  color: var(--muted);
  margin: 0.5rem 0;
}

.hero-copy-mobile {
  display: none;
}

.hero-photo-caption {
  margin: -0.1rem 0 0.15rem;
  font-size: 0.87rem;
  color: var(--text);
}

.hero-photo-caption strong {
  color: var(--primary);
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-actions .btn {
  min-width: 206px;
}

.hero-storyline {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-storyline span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.18rem 0.62rem;
  border-radius: 999px;
  background: rgba(27, 47, 69, 0.08);
  border: 1px solid rgba(27, 47, 69, 0.14);
  color: #2a425a;
  font-size: 0.73rem;
  font-weight: 700;
}

.hero-points {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.hero-badges {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.24rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(141, 116, 66, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 240, 224, 0.95));
  color: #2d4560;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-points li {
  margin: 0.35rem 0;
}

.hero-points li::marker {
  color: var(--secondary);
}

.hero-trustline {
  margin: 0.8rem 0 0;
  padding-left: 0.85rem;
  border-left: 3px solid rgba(141, 116, 66, 0.55);
  font-size: 0.92rem;
  color: #445a6d;
}

.hero-metrics {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-metrics article {
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.9rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), var(--shadow-xs);
  text-align: left;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.hero-metrics article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(14, 36, 53, 0.16);
  border-color: rgba(141, 116, 66, 0.45);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
  color: var(--primary);
}

.hero-metrics span {
  color: #4b5563;
  font-size: 0.9rem;
}

.hero-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(241, 249, 253, 0.76));
  border-radius: 26px;
  padding: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: grid;
  gap: 0.8rem;
  isolation: isolate;
}

.hero-visual-main {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(169, 195, 211, 0.7);
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.12);
}

.hero-visual-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.98) contrast(1.01);
}

.hero-visual-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.hero-visual-strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  border: 1px solid rgba(169, 195, 211, 0.6);
}

.hero-contact-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff, #f7fbfd);
  border-radius: 14px;
  padding: 0.9rem;
}

.hero-contact-card h3 {
  margin: 0 0 0.45rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
}

.hero-contact-card p {
  margin: 0.42rem 0;
  color: var(--muted);
}

.hero-contact-card p a {
  color: inherit;
}

.section {
  padding: var(--section-space) 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: var(--section-divider);
  opacity: 0.78;
}

.section-compact {
  padding-top: 0.45rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 250, 0.93));
}

#team {
  background:
    radial-gradient(circle at 8% 12%, rgba(141, 116, 66, 0.12), transparent 36%),
    radial-gradient(circle at 92% 8%, rgba(27, 47, 69, 0.1), transparent 32%);
}

#standards {
  background:
    radial-gradient(circle at 10% 14%, rgba(183, 157, 103, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 252, 0.88));
}

#services {
  background:
    radial-gradient(circle at 90% 8%, rgba(27, 47, 69, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 248, 251, 0.93));
}

#standards::after,
#team::after,
#services::after {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(27, 47, 69, 0), rgba(141, 116, 66, 0.45), rgba(27, 47, 69, 0));
  opacity: 0.75;
}

.section-heading {
  margin-bottom: 1.2rem;
  text-align: center;
  padding-inline: clamp(0.15rem, 1vw, 0.5rem);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading .section-lead {
  margin-left: auto;
  margin-right: auto;
}

#standards .section-heading,
#team .section-heading,
#services .section-heading {
  margin-bottom: 1.45rem;
}

h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  text-wrap: balance;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  letter-spacing: -0.01em;
  color: var(--primary-2);
}

.content-panel {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 252, 0.92));
  border-radius: 20px;
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
  max-width: 980px;
  margin: 0 auto;
}

.trust-grid,
.cards,
.photo-grid {
  display: grid;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.trust-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 0.9rem;
  align-items: stretch;
}

.cards > .card,
.trust-grid > .trust-card {
  height: 100%;
}

.photo-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 0.85rem;
}

.gallery-intro-band {
  margin: 0 auto 1rem;
  max-width: 920px;
  border: 1px solid rgba(141, 116, 66, 0.26);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 228, 0.78));
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow-xs);
}

.gallery-intro-band p {
  margin: 0;
  color: var(--muted);
}

.trust-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff, #f7fbfd);
  border-radius: 16px;
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  opacity: 0.6;
}

.trust-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(15, 61, 86, 0.14);
  border-color: #b9c9d4;
}

.feature-card,
.review {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.93));
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.experience-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: stretch;
}

.experience-visual {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.experience-visual img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.98) contrast(1);
}

.experience-card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(238, 248, 253, 0.92));
  border: 1px solid rgba(123, 166, 189, 0.32);
  border-radius: 16px;
  padding: 1rem 1.05rem;
  box-shadow: 0 14px 30px rgba(15, 61, 86, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.experience-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 61, 86, 0.12);
}

.experience-step {
  margin: 0 0 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(130deg, var(--secondary), var(--primary-2));
}

.section-lead {
  margin: 0.55rem 0 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 0.99rem;
  line-height: 1.58;
  text-wrap: pretty;
}

.hero-lead {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text);
}

.team-lead-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.15rem;
  align-items: stretch;
  margin-bottom: 1.25rem;
  border: 1px solid #c3d1da;
  background: linear-gradient(165deg, #ffffff, #f3f8fb);
}

.team-intro-band {
  border: 1px solid rgba(141, 116, 66, 0.28);
  border-radius: 18px;
  padding: 1.1rem 1.15rem;
  margin: 0 auto 1.25rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 229, 0.8));
  box-shadow: var(--shadow-sm);
}

.team-intro-band p {
  margin: 0;
  color: var(--muted);
}

.team-intro-metrics {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.team-intro-metrics article {
  border: 1px solid rgba(27, 47, 69, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.7rem;
}

.team-intro-metrics strong {
  display: block;
  color: #1f3953;
  font-size: 0.88rem;
}

.team-intro-metrics span {
  display: block;
  margin-top: 0.28rem;
  color: #4f6677;
  font-size: 0.82rem;
  line-height: 1.38;
}

.team-lead-photo-wrap {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #e8eef2;
}

.team-lead-photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.team-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-cards .team-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-cards .team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(15, 61, 86, 0.18);
}

.team-member-photo-wrap {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  max-width: 148px;
}

.team-member-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.team-member-photo-wrap:hover .team-member-photo {
  transform: scale(1.03);
  filter: saturate(1.02) contrast(1.02);
}

.team-card-body {
  padding: 0.05rem 0.1rem 0.2rem 0;
}

.team-focus-title {
  margin: 0.8rem 0 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2f4b63;
}

.team-focus-list {
  margin-top: 0.45rem;
}

.team-impact {
  margin: 0.58rem 0 0;
  padding: 0.55rem 0.7rem;
  border-left: 3px solid rgba(141, 116, 66, 0.5);
  background: linear-gradient(180deg, rgba(251, 246, 235, 0.85), rgba(247, 251, 254, 0.85));
  border-radius: 10px;
  color: #425c70;
  font-size: 0.88rem;
}

.team-note {
  margin: 0 0 1rem;
  color: var(--muted);
  text-align: center;
  max-width: 78ch;
  margin-left: auto;
  margin-right: auto;
}

.team-card-body h3 {
  margin: 0;
  font-size: 1.15rem;
}

.team-role {
  margin: 0.4rem 0 0;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--secondary);
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.team-bio {
  margin: 0.65rem 0 0;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.55;
}

.team-card p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.team-highlights {
  margin: 0.8rem 0 0;
  padding-left: 1.05rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.team-credentials {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.team-credentials span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.23rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 47, 69, 0.22);
  background: linear-gradient(180deg, #f8fbfd, #eef4f8);
  color: #1f3953;
  font-size: 0.76rem;
  font-weight: 700;
}

.team-highlights li {
  margin: 0.35rem 0;
}

.team-highlights li::marker {
  color: var(--secondary);
}

.team-values-grid {
  margin-top: 1.15rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.team-value-card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 253, 0.95));
}

.team-group-photo-wrap {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--surface);
  position: relative;
}

.team-group-photo {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.team-group-photo-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(180deg, rgba(12, 28, 40, 0), rgba(12, 28, 40, 0.18));
  pointer-events: none;
}

.photo-fallback--staff {
  aspect-ratio: 4 / 5;
  min-height: 200px;
  font-size: 0.95rem;
}

.service-intro {
  margin-bottom: 1.35rem;
  text-align: center;
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}

.service-list {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.45;
}

.service-list li {
  margin: 0.35rem 0;
}

.service-list li::marker {
  color: var(--secondary);
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-thumb {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 0.8rem;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 18px rgba(15, 61, 86, 0.16);
  position: relative;
  z-index: 1;
}

.service-card h3,
.service-card p,
.service-card .service-list {
  position: relative;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -65px;
  top: -65px;
  background: radial-gradient(circle, rgba(141, 116, 66, 0.3), rgba(141, 116, 66, 0));
}

.standards-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.standard-card {
  border-color: rgba(141, 116, 66, 0.35);
  background: linear-gradient(165deg, #ffffff, #f8f4ea);
}

.standard-card h3 {
  color: #1b2f45;
}

.service-card {
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(15, 61, 86, 0.16);
}

.service-cta {
  display: inline-flex;
  margin-top: 0.8rem;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  color: #1e3a52;
  padding: 0.34rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 47, 69, 0.22);
  background: rgba(255, 255, 255, 0.8);
}

.service-cta:hover {
  background: rgba(250, 242, 224, 0.9);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.signature-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 253, 0.95));
}

.signature-step {
  margin: 0 0 0.45rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, #8d7442, #1b2f45);
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, #ffffff, #f7fafc);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.card h3 {
  margin-bottom: 0.28rem;
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(63, 111, 140, 0), rgba(63, 111, 140, 0.55), rgba(63, 111, 140, 0));
  opacity: 0.75;
  pointer-events: none;
}

@media (hover: hover) {
  .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(11, 31, 46, 0.12);
    border-color: #b9c9d4;
  }
}

.section .card,
.section .trust-card,
.section .photo-card,
.section .hours-list,
.section .hours-note,
.section .contact-panel,
.section .booking-form,
.section details {
  border-color: #cfdbe3;
}

.section-alt .card,
.section-alt .trust-card {
  background: linear-gradient(180deg, #ffffff, #f6fbfd);
}

.fx-depth {
  transform-style: preserve-3d;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}

.hours-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 1.1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-note {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, #fafdff, #f2f8fb);
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.review p {
  margin-top: 0;
  font-style: normal;
}

.review-stars {
  margin: 0 0 0.55rem;
  letter-spacing: 0.09em;
  color: #f4b400;
  font-size: 0.92rem;
}

.photo-card {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  isolation: isolate;
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  background: linear-gradient(135deg, #dde8ef, #c8d7e2);
  filter: saturate(0.99) contrast(1);
  transition: transform 0.32s ease, filter 0.32s ease;
}

.photo-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.02) contrast(1.02);
}

.photo-card figcaption {
  padding: 0.78rem 0.86rem 0.88rem;
  min-height: 118px;
  display: grid;
  align-content: start;
  gap: 0.32rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 253, 0.96));
}

.photo-meta {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  color: #5a7386;
}

.photo-card figcaption strong {
  font-size: 0.94rem;
  line-height: 1.35;
  color: #274056;
}

.photo-tag {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0.1rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(141, 116, 66, 0.34);
  font-size: 0.7rem;
  font-weight: 700;
  color: #785f2e;
  background: rgba(250, 242, 224, 0.75);
}

.photo-fallback {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: #355468;
  background: linear-gradient(135deg, #dbe7ef, #c6d8e5);
  font-weight: 700;
}

.instagram-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  align-items: start;
}

.instagram-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
  background: linear-gradient(180deg, #ffffff, #f8fcfe);
  box-shadow: var(--shadow-sm);
}

.instagram-handle {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
}

.instagram-card h3 {
  margin: 0.45rem 0 0.45rem;
  line-height: 1.25;
}

.instagram-card p {
  color: var(--muted);
}

.instagram-embeds {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.instagram-embed-wrap {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f8fcfe);
  box-shadow: var(--shadow-sm);
  padding: 0.8rem;
  display: grid;
  place-items: center;
  min-height: 540px;
}

.instagram-embed-wrap .instagram-media {
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 540px !important;
  min-width: 0 !important;
}

.cta-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 8% 12%, rgba(63, 111, 140, 0.16), transparent 42%),
    radial-gradient(circle at 90% 20%, rgba(17, 26, 36, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 252, 0.92));
}

.cta-band-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
  flex-wrap: wrap;
}

details {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #fafdff);
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
}

details[open] {
  box-shadow: var(--shadow-sm);
}

details summary {
  cursor: pointer;
  font-weight: 700;
  min-height: 44px;
  display: flex;
  align-items: center;
}

details p {
  margin-bottom: 0.2rem;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.contact-panel,
.booking-form {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem;
  background: linear-gradient(180deg, #ffffff, #f9fcfe);
  box-shadow: var(--shadow-sm);
}

.contact-panel p {
  margin: 0.45rem 0;
}

.map-link {
  font-weight: 800;
  color: var(--primary);
}

.map-embed {
  margin-top: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #dde8ef;
  box-shadow: var(--shadow-sm);
}

.map-embed iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.booking-form h3 {
  margin-top: 0;
}

.booking-form label {
  display: block;
  margin-top: 0.75rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
  font-size: 0.93rem;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid #bcc5d1;
  border-radius: 10px;
  padding: 0.68rem 0.75rem;
  font: inherit;
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

@media (hover: none) and (pointer: coarse) {
  .btn,
  .menu-toggle,
  .theme-toggle,
  .booking-form input,
  .booking-form textarea,
  details summary {
    min-height: 44px;
  }
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  box-shadow: var(--focus-ring);
  border-color: #7da0b3;
  background: #ffffff;
}

.booking-form .btn {
  margin-top: 0.95rem;
  cursor: pointer;
}

.site-footer {
  background:
    radial-gradient(circle at 78% 12%, rgba(90, 144, 177, 0.24), transparent 30%),
    linear-gradient(120deg, #0f1c29, #173850);
  color: #dbeaf2;
  padding: 1.7rem 0;
}

body.dark .site-footer {
  background:
    radial-gradient(circle at 80% 10%, rgba(92, 166, 194, 0.22), transparent 32%),
    linear-gradient(120deg, #0a1824, #0d2232);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 1rem;
  align-items: start;
}

.footer-brand {
  margin: 0;
  font-weight: 800;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.34rem;
  letter-spacing: 0.02em;
}

.footer-brand-block {
  display: grid;
  gap: 0.2rem;
}

.footer-copy {
  color: #bdd1df;
  max-width: 38ch;
}

.footer-content p {
  margin: 0.18rem 0;
}

.footer-links-title {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #d7e7f2;
  font-weight: 800;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.3rem;
}

.footer-links a,
.footer-contact a {
  text-decoration: none;
  color: #d8e8f2;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffffff;
}

.footer-contact {
  display: grid;
  gap: 0.26rem;
}

.social-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.9rem;
}

.social-links a {
  text-decoration: none;
  border: 1px solid rgba(197, 218, 233, 0.34);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  background: rgba(228, 241, 249, 0.08);
}

.social-links a:hover {
  background: rgba(228, 241, 249, 0.2);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  background: #18b85a;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.72rem 1.02rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2600;
  background: rgba(7, 14, 22, 0.88);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-figure {
  margin: 0;
  max-width: min(920px, 96vw);
  background: #ffffff;
  border: 1px solid #d2dde5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.35);
}

.lightbox-figure img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #f3f7fa;
  display: block;
}

@supports (height: 100dvh) {
  .lightbox-figure img {
    max-height: 78dvh;
  }
}

.lightbox-figure figcaption {
  padding: 0.75rem 0.9rem;
  color: #334a5a;
  font-weight: 700;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(13, 24, 34, 0.65);
  color: #fff;
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.mobile-cta-bar {
  display: none;
}

h2::after {
  content: "";
  display: block;
  width: 62px;
  height: 3px;
  margin-top: 0.55rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.floating-whatsapp:hover {
  filter: brightness(0.95);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  --section-progress: 0;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(10px);
  animation: heroItemIn 0.65s ease forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.08s; }
.hero-content > *:nth-child(2) { animation-delay: 0.12s; }
.hero-content > *:nth-child(3) { animation-delay: 0.17s; }
.hero-content > *:nth-child(4) { animation-delay: 0.22s; }
.hero-content > *:nth-child(5) { animation-delay: 0.27s; }
.hero-content > *:nth-child(6) { animation-delay: 0.32s; }
.hero-content > *:nth-child(7) { animation-delay: 0.37s; }
.hero-content > *:nth-child(8) { animation-delay: 0.42s; }
.hero-content > *:nth-child(9) { animation-delay: 0.47s; }

.hero-panel {
  animation: panelIn 0.7s ease 0.22s both;
}

main section {
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform: translateY(calc((1 - var(--section-progress)) * 6px));
}

main section[id] {
  scroll-margin-top: var(--header-offset);
}

main {
  display: flex;
  flex-direction: column;
}

main > .hero { order: 1; }
main > .section-compact { order: 2; }
#signature { order: 3; }
#about { order: 4; }
#mission { order: 5; }
#standards { order: 6; }
#services { order: 7; }
#experience { order: 8; }
#team { order: 9; }
#reviews { order: 10; }
#photos { order: 11; }
#hours { order: 12; }
#faq { order: 13; }
#contact { order: 14; }
.cta-band { order: 15; }
#instagram { order: 16; }

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .container {
    width: min(1080px, calc(100% - (var(--gutter) * 2)));
  }

  .nav-links a {
    font-size: 0.84rem;
    padding: 0.38rem 0.52rem;
  }

  .header-cta {
    display: none;
  }

  .tablet-booking-bar {
    display: block;
  }
}

@media (max-width: 1000px) {
  :root {
    --header-offset: 84px;
  }

  .hero-layout,
  .experience-layout,
  .instagram-layout,
  .hours-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 0.95rem;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .container {
    width: min(980px, calc(100% - (var(--gutter) * 2)));
  }

  .hero-content {
    padding: 1.4rem;
  }

  .hero-panel {
    padding: 0.9rem;
  }

  .instagram-embeds {
    grid-template-columns: 1fr;
  }

  .experience-visual img {
    min-height: 300px;
  }

  .instagram-embed-wrap {
    min-height: 460px;
  }

  .lightbox-figure {
    max-width: min(860px, 96vw);
  }
}

@media (max-width: 860px), (hover: none) and (pointer: coarse) and (max-width: 1024px), (max-device-width: 900px) {
  :root {
    --header-offset: 74px;
  }

  .top-strip {
    display: none;
  }

  .nav-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    position: relative;
    gap: 0.5rem;
  }

  .brand {
    max-width: 52vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  #main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    z-index: 20;
    max-height: min(75vh, 520px);
    overflow: auto;
  }

  #main-nav.open {
    display: block;
  }

  .nav-links {
    margin-top: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0.55rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff, #f7fbfd);
    box-shadow: 0 16px 28px rgba(10, 28, 42, 0.12);
  }

  .nav-links a {
    border-radius: 10px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-item-optional {
    display: none;
  }

  .nav-wrapper > .btn {
    display: none;
  }

  .theme-toggle {
    padding: 0.4rem 0.66rem;
    font-size: 0.8rem;
    min-width: 0;
  }

  .tablet-booking-bar {
    display: none;
  }

  .hero {
    padding-top: 3.1rem;
  }
}

@media (max-width: 680px), (hover: none) and (pointer: coarse) and (max-width: 900px), (max-device-width: 760px) {
  :root {
    --section-space: 1.6rem;
    --gutter: 0.8rem;
    --header-offset: 70px;
  }

  html,
  body {
    min-width: 0;
    width: 100%;
    overflow-x: hidden;
  }

  .hero-content,
  .hero-panel {
    padding: 0.88rem;
    border-radius: 14px;
  }

  .hero {
    padding-top: 2.2rem;
    padding-bottom: 1.8rem;
  }

  .hero-layout {
    gap: 0.72rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics article {
    padding: 0.75rem;
  }

  h1 {
    font-size: clamp(1.48rem, 6.7vw, 1.88rem);
    line-height: 1.16;
    margin: 0.6rem 0 0.5rem;
  }

  h2 {
    font-size: clamp(1.34rem, 5.6vw, 1.64rem);
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 0.8rem;
    gap: 0.5rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-storyline {
    margin-top: 0.62rem;
  }

  .hero-storyline span {
    font-size: 0.69rem;
    min-height: 26px;
  }

  .hero-copy-desktop {
    display: none;
  }

  .hero-copy-mobile {
    display: block;
  }

  .hero-points {
    margin-top: 0.55rem;
    font-size: 0.86rem;
  }

  .hero-trustline {
    font-size: 0.84rem;
    margin-top: 0.55rem;
  }

  .hero-badges {
    margin-top: 0.62rem;
  }

  .hero-badges span {
    font-size: 0.72rem;
    min-height: 28px;
  }

  .hero-points li:nth-child(n + 3) {
    display: none;
  }

  .section-heading {
    margin-bottom: 0.85rem;
  }

  #standards .section-heading,
  #team .section-heading,
  #services .section-heading {
    margin-bottom: 0.95rem;
  }

  .section-lead {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .team-note {
    font-size: 0.86rem;
    margin-bottom: 0.92rem;
  }

  .team-credentials span {
    font-size: 0.72rem;
    min-height: 28px;
  }

  .card,
  .hours-list,
  .hours-note,
  .contact-panel,
  .booking-form,
  .content-panel {
    border-radius: 12px;
    padding: 0.76rem;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .gallery-intro-band {
    margin-bottom: 0.75rem;
    padding: 0.68rem 0.78rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .signature-grid {
    grid-template-columns: 1fr;
  }

  .signature-card {
    min-width: 0;
  }

  .instagram-embed-wrap {
    padding: 0.45rem;
    min-height: auto;
    overflow: hidden;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .team-lead-card {
    grid-template-columns: 1fr;
  }

  .team-intro-metrics {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .team-intro-band {
    padding: 0.86rem 0.88rem;
    margin-bottom: 0.95rem;
  }

  .team-lead-photo {
    min-height: 300px;
  }

  .team-cards .team-card {
    gap: 0.75rem;
  }

  .team-member-photo-wrap {
    width: 100%;
    max-width: 120px;
    justify-self: start;
  }

  .team-member-photo {
    aspect-ratio: 4 / 5;
  }

  .team-card-body .team-bio + .team-bio {
    display: none;
  }

  .team-highlights li:nth-child(n + 3) {
    display: none;
  }

  .team-values-grid {
    grid-template-columns: 1fr;
    margin-top: 0.95rem;
  }

  .team-group-photo {
    max-height: 420px;
  }

  .service-thumb {
    width: 60px;
    height: 60px;
    margin-bottom: 0.62rem;
  }

  .service-card h3 {
    font-size: 1rem;
    line-height: 1.22;
  }

  .service-card p,
  .service-list {
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .service-list {
    margin-top: 0.55rem;
  }

  details {
    padding: 0.7rem 0.85rem;
  }

  details summary {
    font-size: 0.95rem;
  }

  .map-embed iframe {
    height: 210px;
  }

  .booking-form label {
    margin-top: 0.7rem;
    font-size: 0.84rem;
  }

  .booking-form input,
  .booking-form textarea {
    min-height: 46px;
    padding: 0.68rem 0.7rem;
    font-size: 16px;
  }

  .booking-form textarea {
    min-height: 120px;
  }

  .photo-card figcaption {
    padding: 0.55rem 0.58rem 0.62rem;
    min-height: 104px;
    gap: 0.24rem;
  }

  .photo-meta {
    font-size: 0.66rem;
  }

  .photo-card figcaption strong {
    font-size: 0.82rem;
  }

  .photo-tag {
    font-size: 0.63rem;
    min-height: 22px;
  }

  .hours-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .cta-band-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band-content .btn {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
    min-height: 40px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1250;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 0.55rem;
    padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(12px);
    box-shadow: 0 -8px 22px rgba(10, 28, 42, 0.12);
  }

  .mobile-cta-bar .btn {
    min-height: 42px;
    padding: 0.56rem 0.78rem;
    font-size: 0.8rem;
  }

  body {
    padding-bottom: 86px;
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .site-header {
    position: static;
  }

  .hero {
    padding-top: 1.35rem;
  }

  .mobile-cta-bar {
    position: static;
    box-shadow: none;
  }

  body {
    padding-bottom: 0;
  }
}

@media (max-width: 420px), (hover: none) and (pointer: coarse) and (max-width: 520px), (max-device-width: 460px) {
  .top-strip {
    display: none;
  }

  .brand {
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .theme-toggle {
    min-height: 36px;
    padding: 0.32rem 0.55rem;
    font-size: 0.72rem;
  }

  .hero-lead {
    font-size: 0.92rem;
  }

  h1 {
    font-size: clamp(1.32rem, 6.3vw, 1.56rem);
  }

  .hero-metrics strong {
    font-size: 1.06rem;
  }

  .hero-metrics span {
    font-size: 0.82rem;
  }

  .card,
  .hours-list,
  .hours-note,
  .contact-panel,
  .booking-form,
  .content-panel {
    padding: 0.7rem;
  }

  .brand {
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle,
  .theme-toggle {
    min-height: 34px;
    padding-inline: 0.5rem;
  }

  .mobile-cta-bar {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

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

  .photo-card figcaption {
    min-height: 92px;
  }

  .lightbox-figure figcaption {
    padding: 0.62rem 0.68rem;
    font-size: 0.84rem;
  }

  .team-cards .team-card {
    grid-template-columns: 1fr;
  }

  .team-member-photo-wrap {
    max-width: 132px;
  }

  .team-note {
    font-size: 0.82rem;
  }

  .service-card h3 {
    font-size: 0.95rem;
  }

  .service-card p,
  .service-list {
    font-size: 0.83rem;
  }
}

@keyframes meshFloat {
  0% {
    transform: translateY(0px) scale(1);
  }
  100% {
    transform: translateY(-10px) scale(1.04);
  }
}

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

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes spinLoader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
