/* =====================================================================
   BETTER SHOP VENTURES — Public stylesheet
   ---------------------------------------------------------------------
   1.  Design tokens
   2.  Reset & base
   3.  Layout primitives
   4.  Buttons
   5.  Header / navigation
   6.  Hero
   7.  Services
   8.  Why choose us
   9.  Team
   10. Achievements gallery + lightbox
   11. Video reviews carousel
   12. Booking form
   13. Availability
   14. Footer
   15. Floating actions
   16. Animations
   17. Error pages
   18. Responsive
   ===================================================================== */

/* =====================================================================
   1. DESIGN TOKENS
   ===================================================================== */
:root {
  /* Brand — change these five values to re-skin the whole site */
  --accent:        #00D08A;
  --accent-strong: #00B075;
  --accent-soft:   rgba(0, 208, 138, 0.12);
  --ink:           #0B1220;
  --ink-deep:      #070C17;

  /* Neutral scale */
  --ink-700:  #131C2E;
  --ink-600:  #1C2740;
  --ink-500:  #2A3752;
  --text:     #0E1626;
  --text-mid: #46536B;
  --text-dim: #6B778C;
  --border:   #E3E8EF;
  --border-strong: #CFD7E3;
  --surface:     #FFFFFF;
  --surface-alt: #F6F8FB;
  --surface-tint:#EFF3F8;

  /* On-dark text */
  --on-dark:      #FFFFFF;
  --on-dark-mid:  rgba(255, 255, 255, 0.74);
  --on-dark-dim:  rgba(255, 255, 255, 0.52);
  --on-dark-line: rgba(255, 255, 255, 0.13);

  /* Status */
  --success: #12B76A;
  --danger:  #E5484D;
  --warning: #F79009;

  /* Shape & depth */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.06), 0 1px 3px rgba(11, 18, 32, 0.04);
  --shadow:    0 4px 6px -1px rgba(11, 18, 32, 0.07), 0 12px 24px -8px rgba(11, 18, 32, 0.10);
  --shadow-lg: 0 18px 40px -12px rgba(11, 18, 32, 0.20), 0 4px 12px rgba(11, 18, 32, 0.06);
  --shadow-accent: 0 10px 30px -8px rgba(0, 208, 138, 0.45);

  /* Type */
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: 24px;
  --header-h: 76px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 220ms var(--ease);
}

/* =====================================================================
   2. RESET & BASE
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: inherit;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-strong); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--accent); color: var(--ink-deep); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* =====================================================================
   3. LAYOUT PRIMITIVES
   ===================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(64px, 8vw, 112px) 0; position: relative; }
.section-light  { background: var(--surface); }
.section-alt    { background: var(--surface-alt); }
.section-tinted { background: var(--surface-alt); }
.section-dark   { background: var(--ink); color: var(--on-dark); }
.section-dark h2, .section-dark h3 { color: var(--on-dark); }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  max-width: none;
  text-align: left;
}
.section-head-row .section-subtitle { margin-left: 0; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--accent-soft);
}
.section-dark .section-eyebrow {
  color: var(--accent);
  background: rgba(0, 208, 138, 0.14);
}

.section-title {
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--text-mid);
  margin: 0 auto;
  max-width: 640px;
}
.section-dark .section-subtitle { color: var(--on-dark-mid); }
.section-subtitle-left { margin-left: 0; }

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: clamp(40px, 5vw, 60px);
}

.empty-note {
  text-align: center;
  color: var(--text-dim);
  padding: 48px 0;
}

/* =====================================================================
   4. BUTTONS
   ===================================================================== */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: var(--ink-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  min-height: 48px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: transform var(--transition), box-shadow var(--transition),
              background-color var(--transition), border-color var(--transition),
              color var(--transition);
}
.btn:hover { transform: translateY(-2px); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }

.btn-icon { font-size: 0.8em; transition: transform var(--transition); }
.btn:hover .btn-icon { transform: translateX(3px); }

.btn-primary { box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--accent-strong); box-shadow: 0 14px 34px -8px rgba(0, 208, 138, 0.55); }

.btn-dark { --btn-bg: var(--ink); --btn-fg: #fff; box-shadow: var(--shadow); }
.btn-dark:hover { --btn-bg: var(--ink-700); }

.btn-outline {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover { border-color: var(--ink); background: var(--ink); --btn-fg: #fff; }

.btn-outline-light {
  --btn-bg: rgba(255, 255, 255, 0.06);
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-quiet {
  --btn-bg: var(--surface-alt);
  --btn-fg: var(--text-mid);
  border-color: var(--border);
}
.btn-quiet:hover { --btn-bg: var(--surface-tint); --btn-fg: var(--text); }

.btn-sm { padding: 10px 20px; min-height: 42px; font-size: 0.875rem; }
.btn-lg { padding: 16px 34px; min-height: 56px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn[disabled], .btn.is-loading { opacity: 0.7; pointer-events: none; }

.btn-spinner { display: none; width: 17px; height: 17px; }
.btn.is-loading .btn-spinner {
  display: inline-block;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn.is-loading .btn-icon { display: none; }

@keyframes spin { to { transform: rotate(360deg); } }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--text-mid);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  font-size: 1.05rem;
  transition: all var(--transition);
}
.icon-btn:hover { color: var(--accent-strong); border-color: var(--accent); background: var(--accent-soft); }

/* =====================================================================
   5. HEADER / NAVIGATION
   ===================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background-color var(--transition), border-color var(--transition),
              box-shadow var(--transition);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(11, 18, 32, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

/* --- Brand --- */
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); flex-shrink: 0; }
.brand:hover { color: var(--text); }

.brand-logo {
  width: 44px; height: 44px;
  object-fit: contain;
  border-radius: 10px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--accent), var(--accent-strong));
  color: var(--ink-deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: -0.03em;
  box-shadow: var(--shadow-accent);
  flex-shrink: 0;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.brand-tagline {
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}

/* --- Nav links --- */
.site-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 4px; }

.nav-link {
  position: relative;
  display: block;
  padding: 9px 15px;
  border-radius: var(--radius-full);
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: color var(--transition), background-color var(--transition);
}
.nav-link:hover { color: var(--text); background: var(--surface-alt); }
.nav-link.is-active { color: var(--accent-strong); background: var(--accent-soft); }

.nav-mobile-actions { display: none; }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* --- Hamburger --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 0 11px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
}
.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity 150ms linear;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(7, 12, 23, 0.5);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-backdrop.is-visible { opacity: 1; }

.scroll-progress {
  position: absolute;
  left: 0; bottom: -1px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: width 80ms linear;
}

body.nav-open { overflow: hidden; }

/* =====================================================================
   6. HERO
   ===================================================================== */
.hero {
  position: relative;
  isolation: isolate;
  padding-top: calc(var(--header-h) + clamp(56px, 9vw, 104px));
  padding-bottom: 0;
  background: var(--ink);
  color: var(--on-dark);
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; z-index: -3; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.hero-overlay {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(7, 12, 23, 0.82) 0%, rgba(7, 12, 23, 0.90) 55%, rgba(7, 12, 23, 0.97) 100%),
    radial-gradient(80% 60% at 15% 0%, rgba(0, 208, 138, 0.14) 0%, transparent 60%);
}
.hero:not(.hero-has-image) .hero-overlay {
  background:
    radial-gradient(75% 55% at 12% -5%, rgba(0, 208, 138, 0.16) 0%, transparent 62%),
    radial-gradient(60% 50% at 95% 10%, rgba(63, 122, 255, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, var(--ink-deep) 0%, var(--ink) 100%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 620px; height: 620px;
  right: -180px; top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 208, 138, 0.18) 0%, transparent 68%);
  filter: blur(30px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  padding-bottom: clamp(56px, 8vw, 92px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px 8px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--on-dark-line);
  backdrop-filter: blur(8px);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--on-dark-mid);
  margin: 0 0 26px;
}

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(0, 208, 138, 0.7);
  animation: pulse 2.2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 208, 138, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(0, 208, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 208, 138, 0); }
}

.hero-title {
  font-size: clamp(2.1rem, 5.6vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  max-width: 16ch;
  margin: 0 auto 22px;
  color: #fff;
  text-wrap: balance;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.19rem);
  color: var(--on-dark-mid);
  max-width: 62ch;
  margin: 0 auto 38px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 780px;
  margin: 0 auto;
  background: var(--on-dark-line);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.hero-stat {
  background: rgba(255, 255, 255, 0.04);
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1.1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--on-dark-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* --- Marketplace strip --- */
.marketplace-strip {
  position: relative;
  border-top: 1px solid var(--on-dark-line);
  background: rgba(0, 0, 0, 0.22);
  padding: 22px 0;
}
.marketplace-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 34px;
}
.marketplace-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
  font-weight: 600;
}
.marketplace-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 30px;
}
.marketplace-list li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--on-dark-mid);
  transition: color var(--transition);
}
.marketplace-list li:hover { color: #fff; }
.marketplace-list i { font-size: 1.1rem; color: var(--accent); }

/* =====================================================================
   7. SERVICES
   ===================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 26px;
  align-items: start;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 208, 138, 0.4);
  box-shadow: var(--shadow-lg);
}

.service-media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--surface-alt); }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.service-card:hover .service-media img { transform: scale(1.05); }

.service-body { padding: 30px 28px 24px; flex: 1; }

.service-icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border: 1px solid rgba(0, 208, 138, 0.22);
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--ink-deep);
  border-color: var(--accent);
  transform: rotate(-6deg) scale(1.05);
}

.service-title { font-size: 1.32rem; margin-bottom: 12px; letter-spacing: -0.025em; }

.service-lead {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.6;
}

.service-detail {
  font-size: 0.945rem;
  line-height: 1.78;
  color: var(--text-mid);
  overflow: hidden;
  transition: max-height 380ms var(--ease);
}
.service-detail.is-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  max-height: 12.7em;
}
.service-detail.is-open {
  display: block;
  -webkit-line-clamp: unset;
  max-height: 200em;
}

.service-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding: 6px 0;
  font-family: var(--font-display);
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--accent-strong);
  transition: gap var(--transition);
}
.service-toggle:hover { gap: 10px; }
.service-toggle i { font-size: 0.7em; transition: transform var(--transition); }
.service-toggle .toggle-less { display: none; }
.service-toggle[aria-expanded="true"] .toggle-more { display: none; }
.service-toggle[aria-expanded="true"] .toggle-less { display: inline; }
.service-toggle[aria-expanded="true"] i { transform: rotate(180deg); }

.service-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.service-footer .btn { flex: 1 1 auto; }
.service-footer .btn-quiet { flex: 0 0 auto; }

/* =====================================================================
   8. WHY CHOOSE US
   ===================================================================== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.highlight-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--on-dark-line);
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition);
}
.highlight-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(0, 208, 138, 0.38);
}

.highlight-icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 1.25rem;
  color: var(--accent);
  background: rgba(0, 208, 138, 0.13);
  border: 1px solid rgba(0, 208, 138, 0.24);
}

.highlight-title { font-size: 1.15rem; margin-bottom: 10px; }
.highlight-text { color: var(--on-dark-mid); font-size: 0.945rem; line-height: 1.72; }

/* =====================================================================
   9. TEAM
   ===================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 208, 138, 0.35);
}

.team-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(150deg, var(--ink-600), var(--ink));
  display: grid;
  place-items: center;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 550ms var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.06); }

.team-initials {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: rgba(0, 208, 138, 0.55);
  letter-spacing: -0.04em;
}

.team-socials {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  gap: 8px;
  padding: 16px;
  background: linear-gradient(0deg, rgba(7, 12, 23, 0.86), transparent);
  transform: translateY(102%);
  transition: transform 300ms var(--ease);
}
.team-card:hover .team-socials,
.team-card:focus-within .team-socials { transform: translateY(0); }

.team-socials a {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.88rem;
  backdrop-filter: blur(6px);
  transition: all var(--transition);
}
.team-socials a:hover { background: var(--accent); color: var(--ink-deep); }

.team-body { padding: 24px 24px 28px; }
.team-name { font-size: 1.2rem; margin-bottom: 4px; }
.team-role {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-strong);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}

.team-specialization {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  border-left: 3px solid var(--accent);
  margin-bottom: 14px;
}
.team-spec-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}
.team-spec-value { font-size: 0.9rem; font-weight: 600; color: var(--text); }

.team-bio { font-size: 0.925rem; color: var(--text-mid); line-height: 1.72; }

/* =====================================================================
   10. ACHIEVEMENTS GALLERY
   ===================================================================== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  min-height: 42px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: all var(--transition);
}
.filter-chip:hover { border-color: var(--accent); color: var(--text); }
.filter-chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.filter-count {
  font-size: 0.72rem;
  padding: 1px 7px;
  border-radius: var(--radius-full);
  background: var(--surface-alt);
  color: var(--text-dim);
}
.filter-chip.is-active .filter-count { background: rgba(255, 255, 255, 0.16); color: #fff; }

.gallery { columns: 3; column-gap: 22px; }

.gallery-item {
  break-inside: avoid;
  margin: 0 0 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 208, 138, 0.4);
}
.gallery-item.is-hidden { display: none; }

.gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  background: var(--surface-alt);
  overflow: hidden;
}
.gallery-trigger img { width: 100%; transition: transform 500ms var(--ease); }
.gallery-item:hover .gallery-trigger img { transform: scale(1.04); }

.gallery-zoom {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(7, 12, 23, 0.55);
  color: #fff;
  font-size: 1.35rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-trigger:hover .gallery-zoom,
.gallery-trigger:focus-visible .gallery-zoom { opacity: 1; }

.gallery-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  font-size: 2.4rem;
  color: rgba(0, 208, 138, 0.5);
  background:
    radial-gradient(70% 70% at 50% 0%, rgba(0, 208, 138, 0.14), transparent 70%),
    linear-gradient(150deg, var(--ink-600), var(--ink));
}

.gallery-caption { padding: 20px 22px 22px; }
.gallery-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}
.gallery-title { font-size: 1.06rem; margin-bottom: 7px; letter-spacing: -0.02em; }
.gallery-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

.gallery-empty { text-align: center; color: var(--text-dim); padding: 40px 0; }

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 6vw;
  background: rgba(7, 12, 23, 0.94);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; pointer-events: auto; }

.lightbox-figure {
  margin: 0;
  max-width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.lightbox-figure img {
  max-height: 76vh;
  max-width: 100%;
  width: auto;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.lightbox-caption {
  text-align: center;
  color: #fff;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.lightbox-caption strong { font-family: var(--font-display); font-size: 1.05rem; }
.lightbox-caption span { color: var(--on-dark-mid); font-size: 0.9rem; line-height: 1.6; }

.lightbox-close, .lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.1rem;
  transition: background-color var(--transition), transform var(--transition);
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--accent); color: var(--ink-deep); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 16px; }
.lightbox-next  { right: 16px; }

body.lightbox-open { overflow: hidden; }

/* =====================================================================
   11. VIDEO REVIEWS CAROUSEL
   ===================================================================== */
.section-reviews { overflow: hidden; }

.carousel-controls { display: flex; gap: 10px; flex-shrink: 0; }

.carousel-btn {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--on-dark-line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: all var(--transition);
}
.carousel-btn:hover:not([disabled]) {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink-deep);
}
.carousel-btn[disabled] { opacity: 0.32; cursor: default; }

.carousel { position: relative; margin-top: 8px; }

.carousel-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter))) 30px;
  cursor: grab;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.is-dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.carousel-track.is-dragging * { pointer-events: none; }

.review-card {
  flex: 0 0 clamp(280px, 30%, 380px);
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.review-card:hover { border-color: rgba(0, 208, 138, 0.4); transform: translateY(-3px); }

.review-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink-deep);
  overflow: hidden;
}
.review-video img, .review-video video, .review-video iframe {
  width: 100%; height: 100%;
  object-fit: cover;
  border: 0;
  display: block;
}

.review-thumb-fallback {
  display: grid;
  place-items: center;
  width: 100%; height: 100%;
  background: linear-gradient(140deg, var(--ink-600), var(--ink-deep));
}
.review-thumb-fallback span {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: rgba(0, 208, 138, 0.6);
}

.review-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  background: linear-gradient(180deg, rgba(7, 12, 23, 0.18), rgba(7, 12, 23, 0.58));
  transition: background-color var(--transition);
}
.review-play:hover { background: linear-gradient(180deg, rgba(7, 12, 23, 0.05), rgba(7, 12, 23, 0.45)); }

.review-play-icon {
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink-deep);
  font-size: 1.15rem;
  padding-left: 4px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition), background-color var(--transition);
}
.review-play:hover .review-play-icon { transform: scale(1.09); background: var(--accent); }

/* Testimonial with no video source — the quote still carries the card. */
.review-card-text {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(0, 208, 138, 0.07), rgba(255, 255, 255, 0.04));
}
.review-quote-mark {
  padding: 26px 22px 0;
  font-size: 1.9rem;
  color: rgba(0, 208, 138, 0.45);
  line-height: 1;
}
.review-card-text .review-body { padding-top: 16px; flex: 1; display: flex; flex-direction: column; }
.review-card-text .review-title { font-size: 1.12rem; }
.review-card-text .review-client { margin-top: auto; padding-top: 8px; }

.review-body { padding: 22px 22px 24px; }
.review-title {
  font-size: 1.03rem;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.4;
}
.review-text {
  font-size: 0.9rem;
  color: var(--on-dark-mid);
  line-height: 1.68;
  margin-bottom: 18px;
}

.review-client { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(0, 208, 138, 0.16);
  border: 1px solid rgba(0, 208, 138, 0.3);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  flex-shrink: 0;
}
.review-client-meta { display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.review-client-meta strong { font-size: 0.925rem; color: #fff; font-weight: 600; }
.review-client-meta small { font-size: 0.8rem; color: var(--on-dark-dim); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.carousel-dot {
  width: 9px; height: 9px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.24);
  transition: all var(--transition);
  padding: 0;
}
.carousel-dot.is-active { width: 28px; background: var(--accent); }

/* =====================================================================
   12. BOOKING FORM
   ===================================================================== */
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.booking-form-wrap {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.4vw, 42px);
  box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.855rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.req { color: var(--danger); margin-left: 2px; }
.optional { font-weight: 500; color: var(--text-dim); font-size: 0.8rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  min-height: 50px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text);
  background: var(--surface-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group textarea { min-height: 118px; resize: vertical; line-height: 1.6; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); opacity: 0.75; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.select-wrap { position: relative; }
.select-caret {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-dim);
  font-size: 0.78rem;
}

.field-error {
  display: none;
  font-size: 0.82rem;
  color: var(--danger);
  margin-top: 6px;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--danger);
  background: rgba(229, 72, 77, 0.04);
}
.form-group.has-error .field-error { display: block; }
.field-error:not(:empty) { display: block; }

.form-alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 20px;
  background: rgba(229, 72, 77, 0.08);
  border: 1px solid rgba(229, 72, 77, 0.28);
  color: #A32126;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Success panel */
.form-success {
  display: none;
  text-align: center;
  padding: 30px 20px;
}
.form-success.is-visible { display: block; animation: fadeUp 400ms var(--ease); }
.booking-form.is-hidden { display: none; }

.form-success-icon {
  display: grid;
  place-items: center;
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
  color: var(--accent-strong);
  font-size: 1.7rem;
  animation: popIn 450ms var(--ease);
}
.form-success h3 { font-size: 1.6rem; margin-bottom: 10px; }
.form-success p { color: var(--text-mid); max-width: 44ch; margin: 0 auto 22px; }

@keyframes popIn { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes fadeUp { from { transform: translateY(14px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* Side panel */
.booking-side { display: flex; flex-direction: column; gap: 20px; }

.contact-card, .promise-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
}
.contact-card-title, .promise-title { font-size: 1.16rem; margin-bottom: 10px; }
.contact-card-text { font-size: 0.925rem; color: var(--text-mid); margin-bottom: 22px; }

.contact-list { display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }

.contact-icon {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--accent-strong);
  flex-shrink: 0;
}
.contact-icon-wa { background: rgba(37, 211, 102, 0.1); border-color: rgba(37, 211, 102, 0.3); color: #1DA851; }

.contact-meta { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.contact-meta small {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}
.contact-meta a, .contact-meta span:not(small) {
  font-size: 0.94rem;
  color: var(--text);
  font-weight: 500;
  word-break: break-word;
}
.contact-meta a:hover { color: var(--accent-strong); }

.promise-card { background: var(--ink); border-color: var(--ink); color: #fff; }
.promise-card .promise-title { color: #fff; margin-bottom: 20px; }
.promise-list { display: flex; flex-direction: column; gap: 18px; }
.promise-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.92rem; color: var(--on-dark-mid); line-height: 1.6; }
.promise-list strong { color: #fff; font-weight: 600; }
.promise-step {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(0, 208, 138, 0.16);
  border: 1px solid rgba(0, 208, 138, 0.34);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* =====================================================================
   13. AVAILABILITY
   ===================================================================== */
.availability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.availability-intro .section-eyebrow { margin-bottom: 16px; }
.availability-note {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-top: 18px;
}
.availability-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.availability-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow);
}
.availability-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  padding-bottom: 18px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.availability-card-title i { color: var(--accent-strong); }

.hours-list { display: flex; flex-direction: column; }
.hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 15px 12px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border);
  transition: background-color var(--transition);
}
.hours-row:last-child { border-bottom: 0; }
.hours-row:hover { background: var(--surface-alt); }
.hours-row.is-today { background: var(--accent-soft); }
.hours-row.is-closed .hours-time { color: var(--text-dim); }

.hours-day {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.today-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: var(--ink-deep);
}

.hours-time {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.status-open   { background: var(--success); box-shadow: 0 0 0 3px rgba(18, 183, 106, 0.16); }
.status-closed { background: var(--border-strong); }

.hours-note {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
}

/* =====================================================================
   14. FOOTER
   ===================================================================== */
.site-footer {
  background: var(--ink-deep);
  color: var(--on-dark-mid);
  padding: clamp(56px, 7vw, 84px) 0 0;
  border-top: 1px solid var(--on-dark-line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 40px 32px;
  padding-bottom: 52px;
}

.brand-footer { color: #fff; margin-bottom: 20px; }
.brand-footer:hover { color: #fff; }
.brand-footer .brand-name { color: #fff; font-size: 1.1rem; }

.footer-about { font-size: 0.925rem; line-height: 1.75; max-width: 40ch; margin-bottom: 24px; }

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--on-dark-line);
  color: var(--on-dark-mid);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink-deep);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 0.925rem;
  color: var(--on-dark-mid);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: 5px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.9rem; line-height: 1.6; }
.footer-contact i { color: var(--accent); margin-top: 5px; flex-shrink: 0; width: 15px; }
.footer-contact a { color: var(--on-dark-mid); word-break: break-word; }
.footer-contact a:hover { color: var(--accent); }

.footer-cta { margin-top: 4px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--on-dark-line);
  font-size: 0.86rem;
}
.footer-bottom p { margin: 0; }
.footer-credit a { color: var(--on-dark-dim); }
.footer-credit a:hover { color: var(--accent); }

/* =====================================================================
   15. FLOATING ACTIONS
   ===================================================================== */
.floating-wa {
  position: fixed;
  left: 22px; bottom: 22px;
  z-index: 180;
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 56px;
  padding: 0 16px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.42);
  overflow: hidden;
  transition: all var(--transition);
}
.floating-wa:hover { color: #fff; transform: translateY(-3px); }
.floating-wa i { font-size: 1.6rem; }
.floating-wa-label {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  transition: max-width 320ms var(--ease), opacity 200ms linear, margin-left 320ms var(--ease);
}
.floating-wa:hover .floating-wa-label { max-width: 130px; opacity: 1; margin-left: 10px; }

.back-to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 180;
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), background-color var(--transition);
}
.back-to-top[hidden] { display: none; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); color: var(--ink-deep); }

/* =====================================================================
   16. SCROLL REVEAL
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* =====================================================================
   17. ERROR PAGES
   ===================================================================== */
.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 60px var(--gutter);
  text-align: center;
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(0, 208, 138, 0.12), transparent 65%),
    var(--ink);
  color: #fff;
}
.error-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(140deg, var(--accent), #3F7AFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.error-title { font-size: clamp(1.5rem, 3.6vw, 2.2rem); margin-bottom: 14px; }
.error-text { color: var(--on-dark-mid); max-width: 50ch; margin: 0 auto 32px; }
.error-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* =====================================================================
   18. RESPONSIVE
   ===================================================================== */

/* --- Large tablets / small laptops --- */
@media (max-width: 1100px) {
  .gallery { columns: 2; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-side { flex-direction: row; flex-wrap: wrap; }
  .booking-side > * { flex: 1 1 320px; }
}

/* --- Tablet: collapse navigation --- */
@media (max-width: 940px) {
  :root { --header-h: 68px; }

  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    z-index: 195;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    padding: 18px var(--gutter) 30px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(11, 18, 32, 0.14);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: transform 260ms var(--ease), opacity 200ms linear, visibility 260ms;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }

  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-link {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }

  .nav-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
  }

  .availability-layout { grid-template-columns: 1fr; }
  .section-head-row { flex-direction: column; align-items: flex-start; gap: 22px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 28px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .review-card { flex: 0 0 min(78vw, 400px); }
}

/* --- Phones --- */
@media (max-width: 640px) {
  :root { --gutter: 18px; }

  .brand-tagline { display: none; }
  .brand-name { font-size: 0.95rem; }

  .section { padding: 56px 0; }
  .section-head { margin-bottom: 34px; }

  .hero-inner { text-align: left; }
  .hero-title { max-width: none; margin-left: 0; }
  .hero-subtitle { margin-left: 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { padding: 20px; flex-direction: row; align-items: baseline; gap: 12px; }
  .hero-stat-label { text-align: left; }

  .marketplace-strip .container { justify-content: flex-start; }
  .marketplace-list { justify-content: flex-start; gap: 12px 22px; }

  .services-grid, .team-grid, .highlights-grid { grid-template-columns: 1fr; gap: 18px; }
  .gallery { columns: 1; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .booking-side { flex-direction: column; }
  .booking-form-wrap, .contact-card, .promise-card, .availability-card { padding: 24px 20px; }

  .review-card { flex: 0 0 86vw; }
  .carousel-track { gap: 16px; padding-left: var(--gutter); padding-right: var(--gutter); }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .service-footer { padding: 18px 20px 22px; }
  .service-body { padding: 26px 20px 20px; }

  .floating-wa { left: 16px; bottom: 16px; height: 52px; padding: 0 14px; }
  .floating-wa-label { display: none; }
  .back-to-top { right: 16px; bottom: 16px; }

  .lightbox { padding: 16px; }
  .lightbox-nav { width: 42px; height: 42px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; }

  .hours-row { padding: 13px 8px; }
}

/* --- Very small phones (320px) --- */
@media (max-width: 380px) {
  .hero-title { font-size: 1.85rem; }
  .section-title { font-size: 1.6rem; }
  .btn { padding: 12px 18px; font-size: 0.875rem; }
  .btn-lg { padding: 14px 20px; font-size: 0.94rem; }
  .brand-mark, .brand-logo { width: 38px; height: 38px; }
  .filter-chip { padding: 8px 13px; font-size: 0.8rem; }
}

/* --- Print --- */
@media print {
  .site-header, .floating-wa, .back-to-top, .carousel-controls,
  .nav-toggle, .booking-form-wrap, .lightbox { display: none !important; }
  body { color: #000; background: #fff; }
  .section-dark, .site-footer, .hero { background: #fff !important; color: #000 !important; }
}
