/* ── Design Tokens ── */
:root {
  --color-bg: #FAF8F5;
  --color-bg-alt: #F3EDE8;
  --color-bg-dark: #1A1618;
  --color-text: #1A1618;
  --color-text-secondary: #7A7270;
  --color-text-muted: #B0A8A5;
  --color-text-inverse: #FAF8F5;
  --color-accent: #D478B0;
  --color-accent-hover: #C05E9A;
  --color-accent-light: #F0D6E5;
  --color-border: #E5DDD8;
  --color-card: #FFFFFF;
  --color-success: #4A9D7A;

  --font-sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --glass-bg: rgba(250, 248, 245, 0.7);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(26, 22, 24, 0.08);
  --glass-blur: 12px;
}

/* ── Skip to content (accessibility) ── */
.skip-link {
  position: fixed; top: -100%; left: 1rem; z-index: 100000;
  background: var(--color-accent); color: #fff;
  padding: .75rem 1.5rem; border-radius: 0 0 8px 8px;
  font-size: .9rem; font-weight: 500;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── Reset & base ── */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
html { scroll-behavior: smooth; }
/* ── Reveal Animations ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.95); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo); }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .hero-video-bg, .hero-video-grid, .hero-video-single { display: none !important; }
  .cursor-follower { display: none !important; }
  html { cursor: auto !important; background: var(--color-bg); }
}
@media (hover: none) and (pointer: coarse) {
  .cursor-follower { display: none !important; }
  html { cursor: auto !important; }
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  overflow-x: hidden;
  overflow-wrap: break-word;
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: #faf8f5;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity .6s, visibility .6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  width: min(450px, 80vw);
  animation: floatLoader 1s ease-in-out infinite alternate;
}
.loader-logo img { width: 100%; height: auto; display: block; }
@keyframes floatLoader {
  from { transform: translateY(0); }
  to { transform: translateY(-15px); }
}

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 1.2rem 3rem;
  padding: 1.2rem calc(3rem + env(safe-area-inset-right)) 1.2rem calc(3rem + env(safe-area-inset-left));
  display: flex; justify-content: space-between; align-items: center;
  transition: background .4s, padding .4s, box-shadow .4s;
  background: transparent;
}
nav.scrolled {
  background: rgba(250, 248, 245, .95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,.06);
  padding: .8rem 3rem;
}
.logo { display: flex; align-items: center; }
.logo img { height: clamp(60px, 10vw, 100px); width: auto; display: block; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color .3s;
  color: var(--color-text);
  padding: .5rem .75rem;
}
nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,.9); }
nav:not(.scrolled) .nav-toggle span { background: #fff; }
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #de87cd;
  transition: width .3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: #de87cd; }
.nav-links a.active::after { width: 100%; }
.nav-links .btn-primary::after { display: none; }
.nav-links a.active { color: #de87cd; }
.lang-item { margin-left: 2rem; position: relative; }
.lang-item .lang-select { display: none; }
.lang-item .lang-btn {
  font-size: .7rem; font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer; padding: .4rem 0;
  border: none;
  background: transparent;
  color: var(--color-text-inverse);
  text-transform: uppercase;
  letter-spacing: .5px; outline: none;
  transition: color .3s;
  display: flex; align-items: center; gap: 4px;
  min-width: 32px;
  justify-content: center;
}
.lang-item .lang-btn:hover,
.lang-item .lang-btn:focus { color: var(--color-accent); }
nav.scrolled .lang-item .lang-btn { color: var(--color-text); }
nav.scrolled .lang-item .lang-btn:hover,
nav.scrolled .lang-item .lang-btn:focus { color: var(--color-accent); }
nav:not(.scrolled) .lang-dropdown { background: rgba(26,22,24,.9); }
nav.scrolled .lang-dropdown { background: rgba(250,248,245,.95); border-color: var(--color-border); }
nav.scrolled .lang-dropdown button { color: var(--color-text-secondary); }
nav.scrolled .lang-dropdown button:hover,
nav.scrolled .lang-dropdown button:focus { color: var(--color-accent); background: rgba(212,120,176,.1); }
nav.scrolled .lang-dropdown button.is-active { color: var(--color-accent); }
.lang-item .lang-btn::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.lang-item:hover .lang-btn::after,
.lang-item:focus-within .lang-btn::after { transform: scaleX(1); }

.lang-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(26,22,24,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: .25rem;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 100;
  min-width: 64px;
}
.lang-dropdown.open {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.lang-dropdown button {
  display: block; width: 100%;
  padding: .5rem .75rem;
  font-size: .7rem; font-weight: 500;
  font-family: var(--font-sans);
  color: rgba(255,255,255,.7);
  background: transparent;
  border: none; border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .2s, color .2s;
  text-align: center;
}
.lang-dropdown button:hover,
.lang-dropdown button:focus {
  background: rgba(212,120,176,.15);
  color: var(--color-accent);
}
.lang-dropdown button.is-active {
  color: var(--color-accent);
  font-weight: 600;
}
nav.scrolled ~ .lang-dropdown,
nav.scrolled + * .lang-dropdown { /* handled by data attribute */ }

.lang-arrow {
  display: inline-block;
  width: 8px; height: 6px;
  transition: transform .25s;
}
.lang-btn.open .lang-arrow { transform: rotate(180deg); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: #2d2b3a;
  transition: .3s;
  display: block;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .9rem 2.2rem;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 500;
  transition: all .3s var(--ease-spring);
  letter-spacing: .3px;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
  word-break: keep-all;
  overflow-wrap: break-word;
  hyphens: auto;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(212,120,176,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-text);
}
.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-text-inverse);
  transform: translateY(-2px);
}

/* ── Hero ── */
.hero {
  min-height: 100dvh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: 6rem 1.5rem 3rem;
  padding: 6rem calc(1.5rem + env(safe-area-inset-right)) calc(3rem + env(safe-area-inset-bottom)) calc(1.5rem + env(safe-area-inset-left));
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2d2b3a 0%, #3d2b4a 50%, #2d2b3a 100%);
}
.hero-video-bg {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity .8s;
  background: linear-gradient(135deg, #2d2b3a 0%, #3d2b4a 50%, #2d2b3a 100%);
}
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video-grid {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 2px;
}
.hero-video {
  flex: 1;
  min-width: 0;
  height: 100%;
  object-fit: cover;
}
.hero-video-single {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,22,24,.78) 0%, rgba(26,22,24,.7) 30%, rgba(26,22,24,.7) 100%);
  z-index: 1;
}

/* ── Services Preview (homepage) ── */
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.service-preview-card {
  background: var(--color-card);
  border-radius: 20px;
  padding: 2.5rem 1.8rem;
  text-align: left;
  transition: all .4s var(--ease-out-expo);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.service-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(212,120,176,0.12);
  border-color: var(--color-accent-light);
}
.service-preview-icon {
  width: 44px; height: 44px;
  color: var(--color-accent);
}
.service-preview-body { display: flex; flex-direction: column; gap: .4rem; }
.service-preview-tag {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-secondary);
  font-weight: 500;
}
.service-preview-body h3 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}
.service-preview-summary {
  font-size: .85rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
  font-weight: 300;
  margin: .2rem 0 .4rem;
}
.service-preview-cta {
  font-size: .8rem;
  font-weight: 500;
  color: var(--color-accent);
  transition: gap .3s;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.service-preview-card:hover .service-preview-cta {
  gap: .6rem;
}

/* ── Services with Images (services.html, also used in about.html) ── */
.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent-light);
  font-weight: 500;
  margin-bottom: 1.2rem;
  padding: .3rem 1rem;
  border-radius: 30px;
  background: rgba(212, 120, 176, 0.15);
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1.2rem;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero-emphasis {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent-light);
}
.hero p {
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  margin-bottom: 2.2rem;
  font-weight: 400;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }
.hero-buttons .btn { min-width: 160px; text-align: center; }
.hero-buttons .btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.hero-buttons .btn-primary:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 10px 30px rgba(212,120,176,0.4);
}
.hero-buttons .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.hero-buttons .btn-outline:hover {
  background: #fff;
  color: var(--color-text);
  border-color: #fff;
}
.cta-buttons { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }
.cta-buttons .btn { min-width: 160px; text-align: center; }

/* ── Experience Section (homepage) ── */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.experience-item {
  text-align: center;
  padding: 2rem 1rem;
}
.experience-icon {
  width: 48px; height: 48px;
  margin: 0 auto 1.2rem;
  color: var(--color-accent);
}
.experience-item h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .6rem;
  color: var(--color-text);
}
.experience-item p {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  font-weight: 300;
  max-width: 280px;
  margin: 0 auto;
}

/* ── Section common ── */
section { padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 4vw, 3rem); }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: .6rem;
}
.section-title {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-desc {
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  color: var(--color-text-secondary);
  max-width: 580px;
  line-height: 1.7;
  font-weight: 300;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 4vw, 3rem) clamp(2rem, 4vw, 4rem);
  background: linear-gradient(135deg, #faf8f5 0%, #f5edf0 50%, #faf8f5 100%);
  text-align: center;
}
.page-hero-sm {
  padding: clamp(4rem, 6vw, 6rem) clamp(1.5rem, 4vw, 3rem) clamp(2rem, 3vw, 3rem);
}
.page-hero-eyebrow {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: .75rem;
  font-weight: 500;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: .8rem;
}
.page-hero-desc {
  color: var(--color-text-secondary);
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  max-width: 540px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.about-image {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5edf0, #faf8f5);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(222, 135, 205, 0.15);
  position: relative;
}
.about-image .deco-balloon {
  position: absolute;
  width: 80px; height: 100px;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  opacity: .6;
}
.about-image .deco-balloon:nth-child(1) {
  background: #de87cd;
  top: 20%; left: 15%;
  width: 100px; height: 130px;
}
.about-image .deco-balloon:nth-child(2) {
  background: #b85ea8;
  top: 40%; right: 20%;
  width: 70px; height: 90px;
}
.about-image .deco-balloon:nth-child(3) {
  background: #f0a8d8;
  bottom: 25%; left: 40%;
  width: 60px; height: 80px;
}
.about-image .deco-balloon::after {
  content: '';
  position: absolute;
  width: 20px; height: 8px;
  bottom: -8px; left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.about-image .deco-balloon:nth-child(1)::after { background: #b85ea8; }
.about-image .deco-balloon:nth-child(2)::after { background: #b07a8e; }
.about-image .deco-balloon:nth-child(3)::after { background: #d48a9e; }
.about-image .deco-string {
  position: absolute;
  width: 1px; height: 30px;
  background: #ccc;
}
.about-image .deco-balloon:nth-child(1) .deco-string { top: calc(100% + 8px); left: 50%; }

/* ── Stats grid ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--color-bg-alt);
  transition: transform .3s, box-shadow .3s;
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.stat-number {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1.2;
  margin-bottom: .25rem;
}
.stat-card p {
  font-size: .85rem;
  color: var(--color-text-secondary);
  font-weight: 400;
  margin: 0;
}

/* ── Values grid ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--color-bg-alt);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  border: 1px solid transparent;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.06);
  border-color: rgba(212,120,176,.15);
}
.value-icon {
  width: 40px; height: 40px;
  margin: 0 auto .8rem;
  color: var(--color-accent);
}
.value-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--color-text);
}
.value-card p {
  font-size: .85rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}
.about-text p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 300;
}
.about-stats {
  display: flex; gap: 2.5rem; margin-top: 2rem;
}
.stat h4 {
  font-size: 2.2rem;
  color: var(--color-accent);
}
.stat p {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-secondary);
  margin: 0;
}

/* ── Services ── */
.bg-soft { background: #f5edf0; }
.services-grid-squares {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card-sq {
  background: #fff;
  border-radius: 20px;
  text-align: center;
  transition: all .4s;
  cursor: default;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card-sq:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(222, 135, 205, 0.2);
}
.service-card-front {
  padding: 2.5rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service-card-front h3 {
  margin: 0 0 .3rem;
  font-size: 1.2rem;
}
.service-card-back {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  flex: 1;
}
.service-card-back p {
  color: #6b6578;
  font-size: .85rem;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}
.service-icon {
  width: 52px; height: 52px;
  margin: 0 auto .8rem;
  color: #de87cd;
}
.service-price {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #de87cd;
  font-weight: 700;
  margin-top: .2rem;
}
.service-card-back .btn {
  align-self: center;
  font-size: .8rem;
  padding: .6rem 1.4rem;
}

/* Old service cards (index.html preview, about.html values) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all .4s;
  cursor: default;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(222, 135, 205, 0.2);
}
.service-card h3 { margin-bottom: .8rem; font-size: 1.3rem; }
.service-card p {
  color: #6b6578;
  font-size: .9rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ── Services with Images (services.html) ── */
.services-grid-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-image-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all .4s;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  cursor: default;
}
.service-image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(222, 135, 205, 0.2);
}
.service-image-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #f5edf0, #e8dde3);
}
.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-image-card:hover .service-image-wrapper img {
  transform: scale(1.05);
}
.service-image-content {
  padding: 1.8rem 1.5rem;
  text-align: center;
}
.service-image-content h3 {
  margin-bottom: .6rem;
  font-size: 1.2rem;
  color: #2d2b3a;
}
.service-image-content p {
  color: #6b6578;
  font-size: .85rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1rem;
}
.service-image-price {
  display: inline-block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  color: #de87cd;
  font-weight: 600;
}

/* ── Gallery ── */
.gallery-grid {
  column-count: 4;
  column-gap: 1rem;
  margin-top: 3rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5edf0, #e8dde3);
  cursor: pointer;
  position: relative;
  transition: transform .5s cubic-bezier(.2,.9,.4,1.1), box-shadow .5s;
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(222, 135, 205, 0.25);
}
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,22,24,.7) 100%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  z-index: 1;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  color: var(--color-text-inverse);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .5px;
  transform: translateY(8px);
  transition: transform .35s, opacity .35s;
  opacity: 0;
}
.gallery-item:hover .gallery-item-label { transform: translateY(0); opacity: 1; }
.gallery-item-arrow {
  display: inline-flex;
  margin-top: .3rem;
  color: var(--color-accent-light);
  width: 20px; height: 20px;
  transform: translateX(-8px);
  transition: transform .35s, opacity .35s;
  opacity: 0;
}
.gallery-item:hover .gallery-item-arrow { transform: translateX(0); opacity: 1; }
.gallery-item-featured {
  grid-row-end: span 2;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .6s, opacity .5s;
  opacity: 0;
}
.gallery-item img.loaded { opacity: 1; }
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item.hidden { display: none; }
.gallery-item.reveal {
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-item.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Gallery filters ── */
.gallery-filters {
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: -1.5rem;
}
.filter-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: .4rem 1rem;
  border-radius: 100px;
  cursor: pointer;
  transition: background .3s, color .3s;
}
.filter-btn:hover { color: var(--color-text); background: var(--color-bg-alt); }
.filter-btn.active {
  background: var(--color-accent);
  color: #fff;
}

/* ── Gallery overlay (dynamic items) ── */
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,22,24,.75) 100%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1.2rem;
  z-index: 1;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-label {
  color: #fff;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: transform .35s, opacity .35s;
  opacity: 0;
}
.gallery-item:hover .gallery-overlay-label { transform: translateY(0); opacity: 1; }
.gallery-overlay-icon {
  color: var(--color-accent-light);
  transform: translateX(-8px);
  transition: transform .35s, opacity .35s;
  opacity: 0;
  margin-top: .15rem;
}
.gallery-item:hover .gallery-overlay-icon { transform: translateX(0); opacity: 1; }

/* ── Final CTA ── */
#cta-final {
  background: var(--color-bg-dark);
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-final-inner .section-label { color: var(--color-accent-light); }
.cta-final-title {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--color-text-inverse);
  line-height: 1.15;
  margin-bottom: .8rem;
  letter-spacing: -0.02em;
}
.cta-final-desc {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: rgba(250,248,245,.7);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
@media (max-width: 767px) {
  .btn-lg { padding: .85rem 1.8rem; font-size: .9rem; white-space: normal; }
}
@media (max-width: 374px) {
  .btn-lg { padding: .7rem 1.2rem; font-size: .8rem; }
}
/* Prevent iOS zoom on input focus */
select, textarea, input { font-size: 16px !important; }
.btn-outline-light {
  background: transparent;
  color: var(--color-text-inverse);
  border: 1.5px solid rgba(250,248,245,.4);
}
.btn-outline-light:hover {
  background: var(--color-text-inverse);
  color: var(--color-text);
  border-color: var(--color-text-inverse);
}

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-content {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-caption {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: #fff; font-size: .9rem;
  background: rgba(0,0,0,.5); padding: .5rem 1.5rem;
  border-radius: 30px;
  font-weight: 300;
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 2.5rem; color: #fff; cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .3s; opacity: .7;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 2.5rem; color: #fff; cursor: pointer;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .3s; opacity: .6;
  background: rgba(255,255,255,.1); border-radius: 50%;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; background: rgba(255,255,255,.2); }

/* ── Review Modal ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 20000;
  background: rgba(0,0,0,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
  padding: 1rem;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--color-bg);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 480px; width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
@media (max-width: 767px) {
  .modal { padding: 1.5rem; }
  .modal-title { font-size: 1rem; margin-bottom: 1rem; }
  .star-rating .star { font-size: 1.4rem; }
  .modal input, .modal textarea { padding: .7rem .85rem; font-size: 16px; }
}
.modal-close {
  position: absolute; top: 1rem; right: 1.25rem;
  font-size: 2rem; line-height: 1;
  color: var(--color-text-secondary);
  background: none; border: none; cursor: pointer;
  transition: color .2s;
}
.modal-close:hover { color: var(--color-text); }
.modal-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}
.star-rating {
  display: flex; gap: .25rem;
}
.star-rating .star {
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--color-border);
  transition: color .15s;
  line-height: 1;
}
.star-rating .star.is-active { color: #e8a838; }
.star-rating .star.is-hover { color: #f5c542; }

/* ── Testimonials ── */
.bg-alt { background: var(--color-bg-alt); }
.testimonials-slider {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  overflow: hidden;
  padding-bottom: 1rem;
  outline: none;
}
.testimonial-card {
  min-width: 380px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--color-card);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  border: 1px solid var(--color-border);
  transition: all .3s var(--ease-out-expo);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(212,120,176,0.1);
}
.testimonial-card-top {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.2rem;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}
.testimonial-card-top div {
  display: flex;
  flex-direction: column;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 500;
  font-size: .9rem;
  color: var(--color-text);
}
.testimonial-event {
  font-size: .75rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}
.testimonial-stars {
  margin: .6rem 0 .8rem;
  font-size: .9rem;
  letter-spacing: 3px;
  color: #e8a838;
  line-height: 1;
}
.modal input,
.modal textarea {
  padding: .85rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: .9rem;
  background: var(--color-bg);
  transition: border .25s;
  outline: none;
  color: var(--color-text);
}
.modal input:focus,
.modal textarea:focus {
  border-color: var(--color-accent);
}
.modal input.error,
.modal textarea.error {
  border-color: #e74c3c;
}
.modal textarea { min-height: 100px; resize: vertical; }
.modal textarea::placeholder {
  color: var(--color-text-secondary);
  opacity: .55;
  font-style: italic;
  font-size: .85rem;
}
.modal .btn { width: 100%; }

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: .95rem;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.contact-info p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem;
}
.contact-detail .icon-wrap {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail .icon-wrap svg {
  width: 18px; height: 18px;
  color: var(--color-accent);
}
.contact-detail div { font-size: .9rem; }
.contact-detail div strong {
  display: block; font-size: .8rem; color: var(--color-accent);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 1rem 1.2rem;
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: .9rem;
  background: var(--color-bg);
  transition: border .3s;
  outline: none;
  color: var(--color-text);
}
.contact-form input:-webkit-autofill,
.contact-form textarea:-webkit-autofill,
.contact-form select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px var(--color-bg) inset !important;
  -webkit-text-fill-color: var(--color-text) !important;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--color-accent);
}
.contact-form input.error,
.contact-form textarea.error,
.contact-form select.error {
  border-color: #e74c3c;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .btn { align-self: flex-start; }
.phone-row { display: flex; gap: .5rem; }
.phone-row select {
  width: auto;
  min-width: 100px;
  max-width: 220px;
  flex-shrink: 0;
  padding: 1rem 2rem 1rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: .9rem;
  background: var(--color-bg);
  outline: none;
  color: var(--color-text);
  transition: border .3s, box-shadow .3s;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M1.41.59 6 5.17 10.59.59 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
}
.phone-row select:hover { border-color: var(--color-accent); }
.phone-row select:focus { border-color: var(--color-accent); }
.phone-row select.error { border-color: #e74c3c; }
.phone-row input { flex: 1; min-width: 0; }
.form-error {
  font-size: .75rem;
  color: #e74c3c;
  display: none;
  margin-top: 2px;
}
.form-error.show { display: block; }

/* ── Footer ── */
footer {
  background: var(--color-bg-dark);
  color: var(--color-text-muted);
  padding: 3rem;
  padding: 3rem calc(3rem + env(safe-area-inset-right)) calc(3rem + env(safe-area-inset-bottom)) calc(3rem + env(safe-area-inset-left));
  text-align: center;
}
footer .logo { justify-content: center; margin-bottom: .8rem; }
footer .logo img { height: 90px; }
footer p { font-size: .85rem; font-weight: 300; }
.social-links {
  display: flex; justify-content: center; gap: 1.5rem;
  margin: 1.2rem 0;
}
.social-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color .3s;
}
.social-links a svg {
  width: 22px; height: 22px;
  display: block;
}
.social-links a:hover { color: var(--color-accent); }

/* ── Terms page ── */
.terms-content { max-width: 800px; margin: 3rem auto; }
.terms-content h3 { font-size: 1.3rem; margin-top: 2.5rem; margin-bottom: .8rem; color: #2d2b3a; }
.terms-content p { color: #6b6578; line-height: 1.8; font-weight: 300; margin-bottom: 1rem; }
.terms-content ul { color: #6b6578; line-height: 1.8; font-weight: 300; padding-left: 1.5rem; margin-bottom: 1rem; }
.terms-content ul li { margin-bottom: .4rem; }

/* ── Footer terms link ── */
.footer-terms { margin-top:.5rem; font-size:.75rem; }
.footer-terms-link { color: #b8b0c4; text-decoration: underline; }

/* ── Nav contact button override ── */
.nav-contact-btn { padding:.6rem 1.6rem; font-size:.8rem; }

/* ── Toast ── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--color-bg-dark);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: .9rem;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all .4s;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ── Back to top ── */
.back-to-top {
  position: fixed; bottom: 2rem; left: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #de87cd;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all .4s;
  box-shadow: 0 4px 15px rgba(222,135,205,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(222,135,205,0.4);
}
.back-to-top svg {
  width: 18px; height: 18px;
}

/* ── Responsive ── */
/* Tablet portrait: 576–767 */
@media (min-width: 576px) and (max-width: 767px) {
  .hero { min-height: 60dvh; }
  .services-grid-squares { grid-template-columns: repeat(2, 1fr); }
}
/* Tablet: 768–1023 */
@media (max-width: 1023px) {
  .hero { padding: 5rem 1.5rem 2.5rem; }
  .hero-content { max-width: 90%; }
  .hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
  .hero p { font-size: clamp(.85rem, 2vw, 1rem); }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats { gap: 2rem; }
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: .7rem 1.5rem; }
  .page-hero { padding: 5rem 1.5rem 2rem; }
  .page-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
  footer { padding: 2.5rem 1.5rem; }
  .lightbox-prev { left: 1rem; }
  .lightbox-next { right: 1rem; }
  .testimonial-card { min-width: 280px; }
  .gallery-grid { column-count: 3; column-gap: .8rem; }
  .gallery-item { margin-bottom: .8rem; }
  .services-grid-squares { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 2.5rem 1.5rem; }
  .services-grid-images { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
/* Tablet landscape: 1024–1279 */
@media (min-width: 1024px) and (max-width: 1279px) {
  .gallery-grid { column-count: 3; }
  .services-grid-squares { grid-template-columns: repeat(3, 1fr); }
  section { padding: 3rem 2rem; }
}
/* Mobile: 320–767 */
@media (max-width: 767px) {
  /* Navigation */
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 80%; max-width: 300px; height: 100dvh; height: 100svh;
    background: rgba(250,248,245,.98);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transition: right .4s;
    box-shadow: -10px 0 40px rgba(0,0,0,.06);
    padding: 1.5rem;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-toggle {
    display: flex;
    z-index: 1001;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
  }
  .nav-links a {
    font-size: 1.1rem;
    padding: .6rem 1rem;
    color: var(--color-text);
  }
  .lang-item { margin-left: 0; }
  .lang-item .lang-btn {
    font-size: .85rem;
    padding: .5rem 0;
  }
  .lang-dropdown {
    position: static;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    border: none;
    padding: 0;
    margin-top: .5rem;
  }
  .lang-dropdown.open {
    transform: none;
  }
  .lang-dropdown button {
    padding: .6rem .75rem;
    font-size: .85rem;
  }

  /* Hero - Single video on mobile */
  .hero { padding: 4rem 1rem 1.5rem; min-height: 70dvh; }
  .hero-content { max-width: 100%; }
  .hero-eyebrow { font-size: .6rem; letter-spacing: 2px; padding: .2rem .7rem; margin-bottom: .8rem; }
  .hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); margin-bottom: .6rem; }
  .hero p { font-size: clamp(.8rem, 3vw, .9rem); margin-bottom: 1.5rem; }
  .hero-buttons .btn,
  .cta-buttons .btn { min-width: 130px; padding: .7rem 1.2rem; font-size: .8rem; }
  .hero-video-grid { display: none; }
  .hero-video-single { display: block; }
  .hero-video[data-slot="1"] { display: none; }
  .hero-video[data-slot="2"] { display: none; }

  /* Experience grid - stacked on mobile */
  .experience-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .experience-item { padding: 1.5rem .5rem; }
  .experience-item p { max-width: 100%; }

  /* Services preview - stacked on mobile */
  .services-preview-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-preview-card { padding: 1.8rem 1.2rem; }

  /* Services with images - stacked on mobile */
  .services-grid-images { grid-template-columns: 1fr; gap: 1.2rem; }
  .service-image-wrapper { aspect-ratio: 16/10; }
  .service-image-content { padding: 1.2rem 1rem; }
  .service-image-content h3 { font-size: 1.1rem; }
  .service-image-content p { font-size: .8rem; }

  /* Section common */
  section { padding: 2rem 1rem; }

  /* Page hero */
  .page-hero { padding: 4rem 1rem 1.5rem; }
  .page-hero h1 { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .page-hero-desc { font-size: clamp(.8rem, 3.5vw, .9rem); }

  /* About */
  .about-grid { gap: 1.5rem; }
  .about-image { aspect-ratio: 3/2; }
  .about-text h3 { font-size: 1.4rem; }
  .about-stats { flex-direction: column; gap: 1rem; }
  .stat { display: flex; align-items: baseline; gap: .6rem; }
  .stat h4 { font-size: 1.4rem; }
  .stat p { font-size: .75rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-number { font-size: 1.6rem; }
  .values-grid { grid-template-columns: 1fr; }

  /* Services - squares (services.html) */
  .services-grid-squares { grid-template-columns: 1fr; gap: 1rem; }
  .service-card-front { padding: 1.8rem 1rem 1rem; }
  .service-card-back { padding: 0 1rem 1rem; }
  .service-card-front h3 { font-size: 1.1rem; }
  .service-price { font-size: 1.2rem; }

  /* Services - old cards (index.html, about.html) */
  .services-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .service-card { padding: 1.8rem 1.2rem; }
  .service-card h3 { font-size: 1.15rem; }

  /* Gallery */
  .gallery-grid { column-count: 2; column-gap: .6rem; }
  .gallery-item { margin-bottom: .6rem; }
  .gallery-item .label, .gallery-item-overlay { opacity: 1; }
  .gallery-item-label { opacity: 1; transform: none; font-size: .7rem; }
  .gallery-filters { gap: .3rem; margin-top: -1rem; }
  .filter-btn { font-size: .7rem; padding: .3rem .75rem; }
  .gallery-overlay,
  .gallery-overlay-label,
  .gallery-overlay-icon { opacity: 1; }
  .gallery-overlay-label { transform: none; font-size: .65rem; }
  .gallery-overlay-icon { transform: none; }

  /* Testimonials */
  .testimonial-card { min-width: 240px; padding: 1.2rem; }
  .testimonial-card blockquote { font-size: .85rem; }
  .testimonial-card-top { gap: .6rem; margin-bottom: .8rem; }
  .testimonial-avatar { width: 36px; height: 36px; }
  .testimonial-stars { margin: .4rem 0 .6rem; font-size: .8rem; letter-spacing: 2px; }
  .testimonials-slider { gap: 1rem; margin-top: 1.5rem; }

  /* Contact */
  .contact-grid { gap: 1.5rem; }
  .contact-info h3 { font-size: 1.3rem; }
  .phone-row { flex-direction: column; gap: .5rem; }
  .phone-row select { width: 100%; }
  .contact-form .btn { align-self: stretch; text-align: center; }
  .contact-form input,
  .contact-form textarea,
  .contact-form select { padding: .85rem 1rem; font-size: 16px; }
  .contact-form input,
  .contact-form textarea,
  .contact-form select { -webkit-text-size-adjust: 100%; }
  .contact-detail { gap: .75rem; }

  /* Footer */
  footer { padding: 2rem 1rem; }
  footer .logo img { height: clamp(50px, 14vw, 80px); }
  .social-links { gap: 1rem; }
  .social-links a svg { width: 26px; height: 26px; }

  /* Lightbox - keep interface visible */
  .lightbox { align-items: flex-start; padding-top: 10vh; }
  .lightbox-content { max-width: 90vw; max-height: 80vh; }
  .lightbox-close { top: .6rem; right: .8rem; font-size: 1.8rem; width: 48px; height: 48px; }
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; font-size: 1.5rem; }
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
  .lightbox-caption { bottom: 1rem; font-size: .8rem; padding: .4rem 1rem; max-width: 90%; text-align: center; }

  /* Back to top */
  .back-to-top { bottom: 1rem; left: 1rem; width: 48px; height: 48px; }

  /* Toast */
  .toast { bottom: 1rem; right: 1rem; left: 1rem; text-align: center; font-size: .85rem; padding: .85rem 1.2rem; }
}
/* Large phones: 480–575 */
@media (min-width: 480px) and (max-width: 575px) {
  .services-grid-squares { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 65dvh; }
}
/* Landscape phones */
@media (max-height: 480px) and (orientation: landscape) {
  .hero { min-height: 100svh; padding: 3rem 1rem 1rem; }
  .hero h1 { font-size: clamp(1.2rem, 4vw, 1.6rem); margin-bottom: .4rem; }
  .hero p { font-size: .75rem; margin-bottom: 1rem; display: none; }
  .hero-eyebrow { margin-bottom: .4rem; font-size: .55rem; }
  .hero-buttons .btn,
  .cta-buttons .btn { min-width: 110px; padding: .5rem .8rem; font-size: .7rem; }
  .hero-content { max-width: 100%; }
  .hero-video-overlay { background: linear-gradient(180deg, rgba(26,22,24,.78) 0%, rgba(26,22,24,.7) 30%, rgba(26,22,24,.7) 100%); }
  section { padding: 1.5rem .75rem; }
  .page-hero { padding: 3.5rem .75rem 1rem; }
  .page-hero h1 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
  .page-hero-desc { font-size: .75rem; }
  .gallery-grid { column-count: 3; }
  .nav-links { padding: 1rem; gap: 1rem; }
  .nav-links a { font-size: .85rem; padding: .3rem .5rem; }
  .services-grid-squares { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .service-card-front { padding: 1rem .5rem .5rem; }
  .service-card-front h3 { font-size: .85rem; }
  .service-icon { width: 30px; height: 30px; }
  .service-price { font-size: .9rem; }
  .service-card-back { display: none; }
  .testimonial-card { min-width: 200px; padding: 1rem; }
  .testimonial-card blockquote { font-size: .75rem; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: .4rem; }
  .stat-card { padding: .6rem; }
  .stat-number { font-size: 1.1rem; }
  .stat-card p { font-size: .6rem; }
  footer { padding: 1.5rem .75rem; }
  .social-links a svg { width: 18px; height: 18px; }
}
/* iPad landscape */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .hero { min-height: 70svh; }
  .services-grid-squares { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { column-count: 4; }
  section { padding: 2.5rem 2rem; }
}
/* Mid-range phones: 375–479 */
@media (min-width: 375px) and (max-width: 479px) {
  .services-grid-squares { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .service-card-front { padding: 1.2rem .6rem .6rem; }
  .service-card-front h3 { font-size: .85rem; }
  .service-price { font-size: clamp(.9rem, 3vw, 1.1rem); }
  .service-icon { width: 36px; height: 36px; }
  .service-card-back p { font-size: .75rem; }
  .service-card-back .btn { font-size: .7rem; padding: .4rem .8rem; }
  .stats-grid { gap: .6rem; }
  .stat-card { padding: 1rem .6rem; }
  .stat-number { font-size: clamp(1.2rem, 5vw, 1.5rem); }
  .stat-card p { font-size: .7rem; }
}
/* Small phones: 320–374 */
@media (max-width: 374px) {
  .hero { padding: 3.5rem .75rem 1rem; min-height: 60dvh; }
  .hero h1 { font-size: clamp(1.3rem, 6vw, 1.6rem); }
  .hero p { font-size: .75rem; }
  .hero-buttons .btn,
  .cta-buttons .btn { min-width: 110px; padding: .6rem 1rem; font-size: .75rem; }
  .section-title { font-size: clamp(1.3rem, 6vw, 1.6rem); }
  .gallery-grid { column-count: 2; column-gap: .4rem; }
  .gallery-item { margin-bottom: .4rem; }
  .testimonial-card { min-width: 200px; padding: 1rem; }
  section { padding: 1.5rem .75rem; }
  .page-hero { padding: 3.5rem .75rem 1rem; }
  .nav-links { width: 85%; max-width: 260px; padding: 1rem; gap: 1.2rem; }
  .nav-links a { font-size: .95rem; padding: .4rem .6rem; }
  footer { padding: 1.5rem .75rem; }
  footer .logo img { height: 50px; }
  .lightbox-content { max-width: 95vw; max-height: 70vh; }
  .contact-form input,
  .contact-form textarea,
  .contact-form select { padding: .7rem .85rem; font-size: 16px; }
  .btn-lg { padding: .7rem 1.4rem; font-size: .8rem; }
}
/* Tablet/Desktop: 768+ - show grid, hide single */
@media (min-width: 768px) {
  .hero-video-grid { display: flex; }
  .hero-video-single { display: none; }
}

/* Desktop: 1024–1439 */
@media (min-width: 1024px) and (max-width: 1439px) {
  .hero-content { max-width: 640px; }
}
/* Wide: 1440+ */
@media (min-width: 1440px) {
  .container { max-width: 1320px; }
  .hero-content { max-width: 800px; }
  section { padding: 6rem clamp(3rem, 8vw, 8rem); }
}
/* Ultrawide: 1920+ */
@media (min-width: 1920px) {
  .container { max-width: 1440px; }
  section { padding: 6rem clamp(4rem, 12vw, 12rem); }
  .hero-content { max-width: 900px; }
  .page-hero-desc { max-width: 640px; }
}
/* 2560+ */
@media (min-width: 2560px) {
  .container { max-width: 1600px; }
  section { padding: 7rem clamp(6rem, 16vw, 16rem); }
}
/* 3440+ ultrawide */
@media (min-width: 3440px) {
  .container { max-width: 1800px; }
  section { padding: 7rem clamp(8rem, 20vw, 20rem); }
}
/* 4K */
@media (min-width: 3840px) {
  html { font-size: 1.1vw; }
  .container { max-width: 70vw; }
  .hero-content { max-width: 60vw; }
  .hero h1 { font-size: 3.5rem; }
  .hero p { font-size: 1.2rem; }
}
@media (min-width: 5120px) {
  html { font-size: 0.9vw; }
}

/* ── Custom scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 100px;
}
::-webkit-scrollbar-thumb:hover { background: var(--color-text-muted); }
* { scrollbar-width: thin; scrollbar-color: var(--color-border) transparent; }

/* ── Custom cursor (desktop only) ── */
@media (pointer: fine) and (min-width: 1025px) and (prefers-reduced-motion: no-preference) {
  *, html { cursor: none !important; }
}
@media (pointer: fine) and (min-width: 1025px) {
  .cursor-follower {
    position: fixed; top: 0; left: 0;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--color-accent);
    pointer-events: none; z-index: 99999;
    transition: width .3s, height .3s, background .3s;
  }
  .cursor-follower.cursor-hover {
    width: 36px; height: 36px;
    background: var(--color-accent-light);
  }
}

