/* Base Theme */
:root {
  --bg: #ffffff;
  --fg: #2d3748;
  --blue: #4b5563;
  --blue-dark: #374151;
  --teal: #14b8a6;
  --teal-dark: #0d9488;
  --purple: #8b5cf6;
  --purple-dark: #7c3aed;
  --orange: #f59e0b;
  --orange-dark: #d97706;
  --grey-50: #f9fafb;
  --grey-100: #f3f4f6;
  --grey-200: #e5e7eb;
  --grey-300: #d1d5db;
  --grey-400: #9ca3af;
  --grey-500: #6b7280;
  --grey-600: #4b5563;
  --grey-700: #374151;
  --grey-800: #1f2937;
  --grey-900: #111827;
  --shade: #f9fafb;
  --border: #e5e7eb;
  --radius: .65rem;
  --focus: 2px solid #4b5563;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.5;
  color: var(--fg);
  background: linear-gradient(rgba(255, 255, 255, .65), rgba(255, 255, 255, .75)), url('/images/bg.jpg') center/cover fixed no-repeat;
  perspective: 1000px;
}

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

a {
  color: var(--grey-700);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
  color: var(--teal);
}

:focus-visible {
  outline: var(--focus);
  outline-offset: 2px;
}

/* Layout Helpers */
.container {
  width: min(1180px, 100% - 2rem);
  margin: 0 auto;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: .5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--grey-50) 0%, #fff 70%);
  overflow: visible;
  box-shadow: 0 4px 12px rgba(107, 114, 128, .08), 0 2px 4px rgba(0, 0, 0, .06);
  height: 20mm;
}

/* Layout Helpers */
.container {
  width: min(1180px, 100% - 2rem);
  margin: 0 auto;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: .5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #eff6ff 0%, #fff 70%);
  overflow: visible;
  box-shadow: 0 4px 12px rgba(59, 130, 246, .08), 0 2px 4px rgba(0, 0, 0, .06);
  height: 20mm;
}

.site-header__bg {
  position: absolute;
  inset: 0;
  background: url('/images/header-bg.svg') center/cover no-repeat;
  opacity: .55;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.6rem;
  height: 100%;
}

.brand {
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 8px;
  border-radius: 10px;
  border: 1px solid rgba(17, 24, 39, .06);
  box-shadow: 0 10px 28px rgba(17, 24, 39, .06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.logo {
  display: block;
  width: 180px;
  height: auto;
  max-width: 100%;
  position: relative;
  z-index: 60;
  pointer-events: auto;
  border-radius: 10px;
  box-shadow: 0 14px 36px rgba(17, 24, 39, .18);
  border: 1px solid rgba(255, 255, 255, .65);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 245, 0.6));
  margin: 0 auto;
}

/* Keep header content vertically centered */
.brand,
.nav-toggle,
.primary-nav,
.nav-list {
  display: flex;
  align-items: center;
}

.nav-toggle {
  height: calc(20mm - 8px);
}

.nav-list a {
  line-height: 1;
}

.nav-toggle {
  background: none;
  border: 1px solid var(--border);
  padding: .45rem .7rem;
  border-radius: var(--radius);
  font-size: 1.05rem;
  cursor: pointer;
}

.nav-toggle:hover {
  background: var(--shade);
}

.primary-nav {
  position: fixed;
  inset: 0 0 auto 0;
  top: 3.4rem;
  background: #fff;
  transform: translateY(-120%);
  transition: .35s ease;
  padding: 1.25rem 1.25rem 3rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.primary-nav.open {
  transform: translateY(0);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .9rem;
}

.nav-list a {
  font-weight: 500;
  padding: .55rem .75rem;
  border-radius: .45rem;
}

.nav-list a:hover {
  background: var(--shade);
}

@media (min-width: 880px) {
  .primary-nav {
    position: static;
    transform: none;
    box-shadow: none;
    padding: 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav-list {
    display: flex;
    gap: 1.35rem;
  }

  .nav-list a {
    padding: .4rem .55rem;
  }
}

/* Ensure logo scales down on smaller screens */
@media (max-width: 880px) {
  .logo {
    width: 200px;
    height: auto;
  }

  .brand {
    max-width: 60%;
    width: auto;
    height: auto;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 120px;
    height: auto;
  }

  .brand {
    max-width: 70%;
    width: auto;
    height: auto;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 600;
  line-height: 1.15;
  border-radius: var(--radius);
  padding: .85rem 1.2rem;
  transition: .25s;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .1), 0 2px 4px rgba(0, 0, 0, .06);
  transform: translateZ(0);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .3), transparent);
  opacity: 0;
  transition: .3s;
}

.btn:hover::before {
  opacity: 1;
}

.btn-accent {
  background: linear-gradient(135deg, var(--grey-600), var(--grey-700));
  color: #fff;
  box-shadow: 0 6px 16px rgba(107, 114, 128, .35), 0 3px 6px rgba(0, 0, 0, .12), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.btn-accent:hover,
.btn-accent:focus {
  transform: translateY(-3px) translateZ(10px);
  box-shadow: 0 12px 28px rgba(107, 114, 128, .45), 0 6px 12px rgba(0, 0, 0, .15), inset 0 1px 0 rgba(255, 255, 255, .3);
}

.btn-outline {
  background: #fff;
  color: var(--grey-700);
  border: 2px solid var(--teal);
  box-shadow: 0 4px 8px rgba(20, 184, 166, .15), 0 2px 4px rgba(0, 0, 0, .06);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--teal);
  color: #fff;
  transform: translateY(-3px) translateZ(10px);
  box-shadow: 0 10px 24px rgba(20, 184, 166, .35), 0 5px 10px rgba(0, 0, 0, .12);
}

/* Hero */
.hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(249, 250, 251, .3) 0%, rgba(243, 244, 246, .4) 50%, rgba(255, 255, 255, .3) 100%);
  padding: 4.2rem 0 3.4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(107, 114, 128, .08), transparent 50%), radial-gradient(circle at 80% 80%, rgba(20, 184, 166, .06), transparent 50%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  letter-spacing: 2px;
  font-size: .72rem;
  text-transform: uppercase;
  font-weight: 600;
  background: linear-gradient(90deg, var(--grey-700), var(--teal), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 .75rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.35rem);
  margin: .5rem 0 1.05rem;
  line-height: 1.08;
  color: var(--grey-900);
}

.lead {
  max-width: 760px;
  margin: 0 auto 1.55rem;
  font-size: 1.15rem;
  color: var(--grey-600);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
}

/* Sections */
section {
  padding: 3.6rem 0;
}

section h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.05rem);
  margin: 0 0 1.4rem;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--grey-700), var(--teal), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 8px rgba(107, 114, 128, .15);
}

.card-grid {
  display: grid;
  gap: 1.4rem;
}

.card {
  background: linear-gradient(135deg, #fff 0%, var(--grey-50) 100%);
  border: 2px solid var(--grey-200);
  background-clip: padding-box;
  border-radius: var(--radius);
  padding: 1.25rem 1.1rem 1.35rem;
  position: relative;
  transition: .3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .08), inset 0 1px 0 rgba(255, 255, 255, .8);
  transform: translateZ(0) rotateX(2deg);
  transform-style: preserve-3d;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(135deg, var(--grey-600), var(--teal), var(--purple));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: .3s;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-8px) translateZ(20px) rotateX(-2deg);
  box-shadow: 0 16px 32px rgba(107, 114, 128, .2), 0 8px 16px rgba(0, 0, 0, .12), inset 0 1px 0 rgba(255, 255, 255, .9);
  border-color: var(--grey-600);
}

.card h3 {
  margin: .25rem 0 .6rem;
  font-size: 1.08rem;
  color: var(--grey-700);
}

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

.service-grid {
  display: grid;
  gap: 1.25rem;
}

.service-item {
  background: linear-gradient(135deg, #fff 0%, var(--grey-50) 100%);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 1rem .95rem 1.05rem;
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.service-item:nth-child(6n+1)::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(107, 114, 128, .15), transparent 70%);
  opacity: 0;
  transition: .4s;
}

.service-item:nth-child(6n+2)::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(20, 184, 166, .15), transparent 70%);
  opacity: 0;
  transition: .4s;
}

.service-item:nth-child(6n+3)::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(139, 92, 246, .15), transparent 70%);
  opacity: 0;
  transition: .4s;
}

.service-item:nth-child(6n+4)::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(245, 158, 11, .15), transparent 70%);
  opacity: 0;
  transition: .4s;
}

.service-item:nth-child(6n+5)::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(107, 114, 128, .15), transparent 70%);
  opacity: 0;
  transition: .4s;
}

.service-item:nth-child(6n+6)::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(20, 184, 166, .15), transparent 70%);
  opacity: 0;
  transition: .4s;
}

.service-item:hover::after {
  opacity: 1;
  top: 0;
  right: 0;
}

.service-item:hover {
  border-color: var(--teal);
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(20, 184, 166, .15);
}

.service-item h3 {
  margin: .25rem 0 .5rem;
  font-size: 1rem;
  color: var(--grey-700);
  position: relative;
  z-index: 1;
}

.service-item p {
  position: relative;
  z-index: 1;
  color: var(--grey-600);
}

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

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: .55rem .9rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}

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

.note {
  margin: 1rem 0 0;
  font-size: .9rem;
  color: #444;
}

.contact-inner {
  background: linear-gradient(135deg, #fff 0%, var(--grey-50) 50%, var(--grey-100) 100%);
  border: 2px solid var(--grey-200);
  background-clip: padding-box;
  border-radius: var(--radius);
  padding: 2.2rem 1.3rem;
  display: grid;
  gap: 1.1rem;
  position: relative;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .08), 0 4px 8px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .7);
  transform: translateZ(0);
}

.contact-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(135deg, var(--grey-600), var(--teal), var(--purple));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .6;
}

.contact-details p {
  margin: .35rem 0;
  color: var(--grey-700);
}

.contact-cta {
  margin-top: .35rem;
}

/* Gallery */
.gallery-intro {
  max-width: 680px;
  margin: 0 0 1.4rem;
  font-size: .95rem;
  color: var(--grey-600);
}

.gallery-grid {
  display: grid;
  gap: 1.1rem;
}

.gallery-item {
  background: linear-gradient(135deg, #fff 0%, var(--grey-50) 100%);
  border: 2px solid var(--grey-200);
  border-radius: var(--radius);
  padding: .6rem .6rem .9rem;
  display: flex;
  flex-direction: column;
  transition: .3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08), 0 2px 4px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .7);
  transform: translateZ(0) rotateY(0deg);
  transform-style: preserve-3d;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(107, 114, 128, .12), rgba(20, 184, 166, .12), rgba(139, 92, 246, .12));
  opacity: 0;
  transition: .3s;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover {
  transform: scale(1.05) rotateY(5deg) translateZ(30px);
  box-shadow: 0 20px 40px rgba(107, 114, 128, .25), 0 10px 20px rgba(0, 0, 0, .15), inset 0 1px 0 rgba(255, 255, 255, .9);
  border-color: var(--purple);
}

.gallery-item img {
  border-radius: .5rem;
  object-fit: cover;
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  background: linear-gradient(135deg, var(--grey-100), var(--grey-200));
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.gallery-item figcaption {
  margin: .55rem .25rem 0;
  font-size: .78rem;
  letter-spacing: .3px;
  text-transform: uppercase;
  font-weight: 600;
  background: linear-gradient(90deg, var(--grey-700), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

@media (min-width:660px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Footer */
.site-footer {
  background: #111;
  color: #e6e6e6;
  padding: 3.2rem 0 2.2rem;
  margin-top: 2.8rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-heading {
  font-size: 1.1rem;
  margin: .2rem 0 .9rem;
}

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

.footer-links a {
  color: #fff;
  font-size: .9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.social-list {
  display: flex;
  gap: .75rem;
}

.social-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--grey-700);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 50%;
  transition: .3s;
  box-shadow: 0 4px 8px rgba(107, 114, 128, .35), 0 2px 4px rgba(0, 0, 0, .2), inset 0 -2px 0 rgba(0, 0, 0, .15);
  transform: translateZ(0);
}

.social-btn:nth-child(1):hover {
  background: var(--grey-600);
  transform: scale(1.2) translateZ(15px);
  box-shadow: 0 8px 20px rgba(107, 114, 128, .5), 0 4px 10px rgba(0, 0, 0, .25), inset 0 -2px 0 rgba(0, 0, 0, .2);
}

.social-btn:nth-child(2):hover {
  background: var(--teal);
  transform: scale(1.2) translateZ(15px);
  box-shadow: 0 8px 20px rgba(20, 184, 166, .5), 0 4px 10px rgba(0, 0, 0, .25), inset 0 -2px 0 rgba(0, 0, 0, .2);
}

.social-btn:nth-child(3):hover {
  background: var(--purple);
  transform: scale(1.2) translateZ(15px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, .5), 0 4px 10px rgba(0, 0, 0, .25), inset 0 -2px 0 rgba(0, 0, 0, .2);
}

.footer-copy {
  margin: 2rem 0 0;
  font-size: .75rem;
  opacity: .8;
}

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

/* Gallery Page Styles */
.page-hero {
  padding: 6rem 0 3rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(249, 250, 251, .4) 0%, rgba(243, 244, 246, .5) 50%, rgba(255, 255, 255, .4) 100%);
  border-radius: var(--radius);
  margin: 2rem 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .08), inset 0 1px 0 rgba(255, 255, 255, .8);
  transform: translateZ(0) rotateX(1deg);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 1rem;
  background: linear-gradient(135deg, var(--grey-800) 0%, var(--grey-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero .lead {
  font-size: 1.25rem;
  color: var(--grey-600);
  margin: 0;
}

.gallery-section {
  padding: 3rem 0;
}

.instagram-feed {
  background: linear-gradient(135deg, rgba(249, 250, 251, .6) 0%, rgba(243, 244, 246, .7) 100%);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  margin-bottom: 4rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .08), inset 0 1px 0 rgba(255, 255, 255, .8);
  transform: translateZ(0) rotateX(1deg);
  transition: .3s;
}

.instagram-feed:hover {
  transform: translateY(-4px) translateZ(15px) rotateX(-1deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12), 0 6px 12px rgba(0, 0, 0, .08), inset 0 1px 0 rgba(255, 255, 255, .9);
}

.instagram-header h2 {
  font-size: 2rem;
  margin: 0 0 .5rem;
  color: var(--grey-800);
}

.instagram-header p {
  color: var(--grey-600);
  margin: 0 0 1.5rem;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #fff;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
  box-shadow: 0 4px 12px rgba(131, 58, 180, .3), 0 2px 6px rgba(0, 0, 0, .15);
  transform: translateZ(0);
}

.instagram-link:hover {
  transform: scale(1.05) translateZ(10px);
  box-shadow: 0 8px 20px rgba(131, 58, 180, .4), 0 4px 10px rgba(0, 0, 0, .2);
  text-decoration: none;
}

.instagram-embed-container {
  width: 100%;
  max-width: 100%;
  margin: 2rem auto 0;
}

.instagram-embed-container .instagram-media {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
}

.tiktok-feed {
  background: linear-gradient(135deg, rgba(249, 250, 251, .6) 0%, rgba(243, 244, 246, .7) 100%);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  margin-bottom: 4rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .08), inset 0 1px 0 rgba(255, 255, 255, .8);
  transform: translateZ(0) rotateX(1deg);
  transition: .3s;
}

.tiktok-feed:hover {
  transform: translateY(-4px) translateZ(15px) rotateX(-1deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12), 0 6px 12px rgba(0, 0, 0, .08), inset 0 1px 0 rgba(255, 255, 255, .9);
}

.tiktok-header h2 {
  font-size: 2rem;
  margin: 0 0 .5rem;
  color: var(--grey-800);
}

.tiktok-header p {
  color: var(--grey-600);
  margin: 0 0 1.5rem;
}

.tiktok-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  background: linear-gradient(135deg, #000000 0%, #25f4ee 100%);
  color: #fff;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .3), 0 2px 6px rgba(0, 0, 0, .15);
  transform: translateZ(0);
}

.tiktok-link:hover {
  transform: scale(1.05) translateZ(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .4), 0 4px 10px rgba(0, 0, 0, .2);
  text-decoration: none;
}

.tiktok-embed-container {
  width: 100%;
  max-width: 100%;
  margin: 2rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tiktok-embed-container .tiktok-embed {
  width: 100% !important;
  max-width: none !important;
  min-width: auto !important;
}

.gallery-manual {
  margin-bottom: 4rem;
}

.gallery-manual h2 {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 2rem;
  color: var(--grey-800);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.gallery-item {
  margin: 0;
  background: linear-gradient(135deg, rgba(249, 250, 251, .7) 0%, rgba(255, 255, 255, .8) 100%);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .08), inset 0 1px 0 rgba(255, 255, 255, .8);
  transform: translateZ(0) rotateX(2deg);
  transition: .3s;
  position: relative;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0;
  transition: .3s;
}

.gallery-item:hover {
  transform: translateY(-8px) rotateY(3deg) translateZ(25px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15), 0 8px 16px rgba(0, 0, 0, .1), inset 0 2px 0 rgba(255, 255, 255, .9);
}

.gallery-item:hover::before {
  opacity: .5;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: .3s;
}

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

.gallery-item figcaption {
  padding: 1rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--grey-700);
  text-align: center;
}

.gallery-cta {
  background: linear-gradient(135deg, rgba(75, 85, 99, .1) 0%, rgba(20, 184, 166, .1) 100%);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .08), inset 0 1px 0 rgba(255, 255, 255, .8);
  transform: translateZ(0) rotateX(1deg);
}

.gallery-cta h2 {
  font-size: 2rem;
  margin: 0 0 1rem;
  color: var(--grey-800);
}

.gallery-cta p {
  font-size: 1.1rem;
  color: var(--grey-600);
  margin: 0 0 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Dark Mode (Optional toggle if added later) */
/* FAQ readability improvements */
.faq-list {
  max-width: 980px;
  margin: 1.25rem auto 0;
  display: block;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: 0 6px 18px rgba(17, 24, 39, .04);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--grey-800);
  padding: 0;
  margin: 0;
}

.faq-list details[open] {
  background: linear-gradient(135deg, #fff 0%, var(--grey-50) 100%);
}

.faq-list details p {
  margin: .6rem 0 0;
  color: var(--grey-700);
  line-height: 1.7;
  font-size: 1rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:before {
  content: '\25B6';
  display: inline-block;
  margin-right: .6rem;
  transform: translateY(-1px);
  transition: transform .15s ease;
}

.faq-list details[open] summary:before {
  transform: rotate(90deg) translateY(1px);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f0f11;
    --fg: #ededee;
    --shade: #1d1d20;
    --border: #2a2a2e;
  }

  body {
    background: var(--bg);
    color: var(--fg);
  }

  .site-header {
    background: linear-gradient(135deg, #2a0d1b 0%, #151517 70%);
  }

  .site-header__bg {
    opacity: .35;
    filter: brightness(.7);
  }

  .primary-nav,
  .contact-inner,
  .service-item,
  .card {
    background: #151517;
  }

  .site-header,
  .card,
  .service-item,
  .contact-inner {
    border-color: var(--border);
  }

  .hours-list li {
    background: #151517;
  }

  .btn-outline {
    background: none;
  }

  .btn-outline:hover {
    background: var(--accent);
  }
}

/* Pricing / Contact page helpers */
.section.pad-y {
  padding: 3.6rem 0;
}

.page-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 0.75rem;
  color: var(--grey-900);
}

.page-intro {
  color: var(--grey-600);
  max-width: 780px;
  margin: 0 0 1.6rem;
}

.prices-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.price-group {
  background: linear-gradient(135deg, #fff 0%, var(--grey-50) 100%);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 1rem;
}

.price-group h2 {
  margin: 0 0 .5rem;
  color: var(--grey-800);
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  padding: .55rem 0;
  border-bottom: 1px dashed var(--grey-200);
  color: var(--grey-700);
}

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

.note-box {
  background: linear-gradient(135deg, rgba(249, 250, 251, .6), rgba(243, 244, 246, .6));
  border-radius: var(--radius);
  padding: 1rem;
  margin: 1.25rem 0;
  color: var(--grey-700);
}

.booking-cta {
  text-align: center;
  margin-top: 1.25rem;
}

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

.contact-card {
  background: linear-gradient(135deg, #fff 0%, var(--grey-50) 100%);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.contact-card h2 {
  margin-top: 0;
  color: var(--grey-800);
}

.map-embed iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: .5rem;
}

.contact-form label {
  display: block;
  margin-bottom: .6rem;
  font-size: .95rem;
  color: var(--grey-700);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: .6rem .7rem;
  border-radius: .45rem;
  border: 1px solid var(--border);
  margin-top: .35rem;
}

.contact-form button {
  margin-top: .6rem;
}

@media (min-width:760px) {
  .prices-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* Booking Options Section */
.booking-options {
  padding: 3.6rem 0;
  background: transparent;
}

.booking-options h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  text-align: center;
  margin: 0 0 2.4rem;
  color: var(--grey-900);
}

.booking-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 760px) {
  .booking-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

.booking-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, .92) 0%, rgba(249, 250, 251, .92) 100%);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08), 0 4px 8px rgba(0, 0, 0, .06);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .6), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}

.booking-card--online {
  border-color: var(--teal);
}

.booking-card--walkin {
  border-color: var(--orange);
}

.booking-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .12), 0 8px 16px rgba(0, 0, 0, .08);
}

.booking-card:hover::before {
  opacity: 1;
}

.booking-icon {
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
  display: block;
}

.booking-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: var(--grey-900);
  position: relative;
  z-index: 1;
}

.booking-card p {
  color: var(--grey-600);
  margin: 0 0 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
}

.booking-card .btn {
  position: relative;
  z-index: 1;
}

.booking-card--online .btn {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.booking-card--online .btn:hover,
.booking-card--online .btn:focus {
  box-shadow: 0 10px 24px rgba(20, 184, 166, .35), 0 5px 10px rgba(0, 0, 0, .12);
}

/* Review Modal Popup */
.review-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, .5);
  backdrop-filter: blur(4px);
  animation: fadeIn .3s ease;
  overflow: auto;
}

.review-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.review-modal-content {
  background: linear-gradient(135deg, #fff 0%, var(--grey-50) 100%);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3), 0 10px 20px rgba(0, 0, 0, .2);
  animation: slideUp .4s ease;
  position: relative;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.review-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--grey-600);
  transition: .2s;
}

.review-modal-close:hover {
  color: var(--grey-900);
  transform: rotate(90deg);
}

.review-modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.review-modal-header h2 {
  margin: 0 0 0.75rem;
  font-size: 1.8rem;
  color: var(--grey-900);
}

.review-modal-header p {
  margin: 0;
  color: var(--grey-600);
  font-size: 1rem;
}

.review-platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.review-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  transition: all .3s ease;
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
  gap: 0.5rem;
}

.review-btn svg {
  width: 32px;
  height: 32px;
  transition: transform .3s ease;
}

.review-btn:hover svg {
  transform: scale(1.1);
}

.review-btn-google {
  background: linear-gradient(135deg, #4285F4, #34A853);
  border-color: #4285F4;
}

.review-btn-google:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(66, 133, 244, .3);
}

.review-btn-facebook {
  background: linear-gradient(135deg, #1877F2, #0A66C2);
  border-color: #1877F2;
}

.review-btn-facebook:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(24, 119, 242, .3);
}

.review-btn-instagram {
  background: linear-gradient(135deg, #E4405F, #FD1D1D);
  border-color: #E4405F;
}

.review-btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(228, 64, 95, .3);
}

.review-btn-tiktok {
  background: linear-gradient(135deg, #000000, #25f4ee);
  border-color: #000;
}

.review-btn-tiktok:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, .3);
}

.review-modal-later {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: var(--shade);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--grey-700);
  font-weight: 600;
  cursor: pointer;
  transition: .2s;
}

.review-modal-later:hover {
  background: var(--grey-100);
  color: var(--grey-900);
}

@media (prefers-color-scheme: dark) {
  .review-modal-content {
    background: linear-gradient(135deg, #2a2a2e 0%, #1d1d20 100%);
  }

  .review-modal-header h2 {
    color: #fff;
  }

  .review-modal-header p {
    color: #aaa;
  }

  .review-modal-later {
    background: #3a3a3e;
    color: #ddd;
  }

  .review-modal-later:hover {
    background: #4a4a4e;
    color: #fff;
  }
}