/* ── Design Tokens ── */
:root {
  --color-bg: #FAF8F5;
  --color-bg-alt: #F3EDE8;
  --color-bg-dark: #1A1618;
  --color-text: #1A1618;
  --color-text-secondary: #5D5553;
  --color-text-muted: #8A8280;
  --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;
  /* Elegant display serif for accent words & quotes (wide, refined, has Cyrillic) */
  --font-display: 'Playfair Display', 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;

  /* Dark hero gradient (used by .hero and .page-hero accents) */
  --color-hero-1: #2d2b3a;
  --color-hero-2: #3d2b4a;

  /* Elevation scale — consistent shadows across cards/overlays */
  --shadow-xs: 0 1px 3px rgba(26, 22, 24, 0.04);
  --shadow-sm: 0 4px 20px rgba(26, 22, 24, 0.05);
  --shadow-md: 0 12px 32px rgba(26, 22, 24, 0.08);
  --shadow-lg: 0 20px 50px rgba(212, 120, 176, 0.16);
  --shadow-accent: 0 12px 32px rgba(212, 120, 176, 0.35);

  /* Radius scale */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 100px;
}

/* ── 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; overflow-x: clip; }
/* Keep anchor / skip-link targets clear of the fixed navigation bar. */
:target, #main-content, main > section[id] { scroll-margin-top: 6rem; }
/* ── Reveal Animations ── */
/* No-JS / no-IntersectionObserver fallback: never hide content from users
   who can't run the reveal observer (SEO, screen readers, disabled JS). */
html:not(.js) .reveal,
html:not(.js) .reveal-left,
html:not(.js) .reveal-right,
html:not(.js) .reveal-scale,
html:not(.js) .reveal-stagger > * {
  opacity: 1 !important;
  transform: none !important;
}
.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; }
  html { cursor: auto; background: var(--color-bg); }
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  overflow-wrap: break-word;
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  width: 100%;
  position: relative;
  overflow-x: clip;
}
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, transform .45s var(--ease-out-expo);
  background: transparent;
  will-change: transform;
}
/* Auto-hide on scroll down, reveal on scroll up / stop */
nav.nav-hidden { transform: translateY(-100%); }
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(50px, 6vw, 76px); width: auto; display: block; transition: height .4s; }
nav.scrolled .logo img { height: clamp(46px, 5vw, 64px); }
.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-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width .3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--color-accent); }
.nav-links a.active::after { width: 100%; }
.nav-links .btn-primary::after { display: none; }
.nav-links a.active { color: var(--color-accent); }
/* The primary CTA keeps white text even on its own (active) page — never pink-on-pink */
.nav-links .btn-primary.active,
.nav-links .nav-contact-btn.active { color: #fff; }
@media (min-width: 768px) {
  .nav-hero:not(.scrolled) .nav-links .btn-primary.active { color: #fff; }
}
.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);
  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); }
@media (min-width: 768px) {
  nav:not(.scrolled) .nav-toggle span { background: #fff; }
}
@media (min-width: 768px) {
  .nav-hero:not(.scrolled) .nav-links a { color: rgba(255,255,255,.9); }
}
@media (min-width: 768px) {
  .nav-hero:not(.scrolled) .lang-item .lang-btn { color: rgba(255,255,255,.9); }
}
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: var(--color-hero-1);
  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: background .3s var(--ease-spring), color .3s var(--ease-spring), box-shadow .3s var(--ease-spring), border-color .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;
  will-change: transform;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:disabled {
  background: var(--color-text-muted);
  cursor: not-allowed;
  box-shadow: none;
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  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);
}

/* ── 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, var(--color-hero-1) 0%, var(--color-hero-2) 50%, var(--color-hero-1) 100%);
}
.hero-video-bg {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity .8s;
  background: linear-gradient(135deg, var(--color-hero-1) 0%, var(--color-hero-2) 50%, var(--color-hero-1) 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%);
  /* Must stay above every video layer: the crossfade juggles clips between
     z-index 1 and 2, so the overlay sits above both to keep them all darkened. */
  z-index: 5;
}

/* ── Services Preview (homepage) ── */
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  max-width: 1180px;
  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-display);
  font-style: normal;
  font-weight: 600;
  font-size: 1.06em;
  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(6rem, 8vw, 8rem) 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-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  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;
}
.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  margin-top: 2rem;
  color: var(--color-accent);
  text-decoration: none;
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: color .25s, opacity .4s ease, transform .4s ease;
  animation: scrollCueBounce 1.9s ease-in-out infinite;
}
.scroll-cue:hover { color: var(--color-accent-hover); }
.scroll-cue svg { width: 22px; height: 22px; }
.scroll-cue.cue-hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}
@keyframes scrollCueBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue { animation: none; }
}

/* ── 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);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(212,120,176, 0.15);
  position: relative;
  aspect-ratio: 3/4;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-orientation: none;
  border-radius: 20px;
}
.about-text blockquote {
  margin: 1.5rem 0 0;
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--color-accent);
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg-alt);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ── Stats grid ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
}
.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(212,120,176, 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: var(--color-text-secondary);
  font-size: .85rem;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}
.service-icon {
  width: 52px; height: 52px;
  margin: 0 auto .8rem;
  color: var(--color-accent);
}
.service-price {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--color-accent);
  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(212,120,176, 0.2);
}
.service-card h3 { margin-bottom: .8rem; font-size: 1.3rem; }
.service-card p {
  color: var(--color-text-secondary);
  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(212,120,176, 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: var(--color-text);
}
.service-image-content p {
  color: var(--color-text-secondary);
  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: var(--color-accent);
  font-weight: 600;
}

/* ── Gallery ── */
.gallery-grid {
  column-count: 4;
  column-gap: 1rem;
  margin-top: 3rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.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;
}
@keyframes galleryPulse {
  0% { opacity: .5; transform: scale(1); }
  50% { opacity: .8; transform: scale(1.02); }
  100% { opacity: .5; transform: scale(1); }
}
.gallery-item:not(:has(img.loaded))::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  animation: galleryPulse 1.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(212,120,176, 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 picture {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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-error-msg {
  display: none;
  position: absolute; inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--color-text-muted);
  font-size: .75rem;
  background: var(--color-bg-alt);
  z-index: 2;
}
.gallery-item.gallery-error .gallery-error-msg { display: flex; }
.gallery-item.gallery-error img { opacity: 0.3; }

/* ── 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-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  outline: none;
  scrollbar-width: none;
  max-width: 100%;
}
.testimonials-slider::-webkit-scrollbar { display: none; }
.testimonial-card {
  position: relative;
  width: min(560px, 88vw);
  min-width: 0;
  flex: 0 0 auto;
  scroll-snap-align: center;
  background: var(--color-card);
  border-radius: 24px;
  padding: 2.2rem 2rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
  border: 1px solid var(--color-border);
  transition: transform .35s var(--ease-out-expo), box-shadow .35s var(--ease-out-expo), border-color .35s var(--ease-out-expo);
  overflow: hidden;
}
/* Decorative quote mark in the corner */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -.4rem; right: 1.2rem;
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: .14;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(212,120,176,0.14);
  border-color: var(--color-accent-light);
}
.testimonial-card-top {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: .2rem;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.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-display);
  font-style: normal;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.5;
  font-size: 1.12rem;
}

.testimonial-reply {
  margin-top: 1rem;
  padding: .85rem 1rem;
  border-left: 3px solid var(--color-accent);
  border-radius: 0 12px 12px 0;
  background: rgba(212, 120, 176, .08);
}
.testimonial-reply-author {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .3px;
  color: var(--color-accent);
  margin-bottom: .3rem;
}
.testimonial-reply-author::before {
  content: '\21A9';
  font-size: .9rem;
  opacity: .85;
}
.testimonial-reply p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: .92rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: stretch;
  gap: 2rem;
  margin-top: 3rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, var(--color-accent-light) 0%, var(--color-bg-alt) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.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.75rem;
}
.contact-detail {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.1rem;
}
.contact-detail .icon-wrap {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-xs);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-foot {
  margin-top: auto;
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-border);
}
.contact-info-foot-label {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  margin-bottom: .75rem;
}
.social-links--start {
  justify-content: flex-start;
  gap: 1rem;
  margin: 0;
}
.social-links--start a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-xs);
  color: var(--color-accent);
  transition: transform .25s var(--ease-out-expo), box-shadow .25s;
}
.social-links--start a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: var(--color-accent-hover);
}
.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;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.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: var(--color-text); }
.terms-content p { color: var(--color-text-secondary); line-height: 1.8; font-weight: 300; margin-bottom: 1rem; }
.terms-content ul { color: var(--color-text-secondary); 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: rgba(250,248,245,.6); text-decoration: underline; }
.footer-terms-link:hover { color: var(--color-accent-light); }

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

/* ── Toast ── */
.toast {
  position: fixed; top: 1.5rem; left: 50%; transform: translateX(-50%) translateY(-20px);
  background: var(--color-bg-dark);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: .9rem;
  z-index: 9999;
  opacity: 0;
  transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
  max-width: 90vw;
  white-space: nowrap;
}
.toast-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-error { background: #c0392b; }

/* ── Back to top ── */
.back-to-top {
  position: fixed; bottom: 2rem; left: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all .4s;
  box-shadow: 0 4px 15px rgba(212,120,176,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(212,120,176,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); }
  .services-preview-grid { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
}
/* Tablet landscape: 1024–1279 */
@media (min-width: 1024px) and (max-width: 1279px) {
  .gallery-grid { column-count: 3; }
  /* 8 service squares divide evenly into 4 columns (2×4) — 3 cols leaves an
     uneven, off-looking last row. */
  .services-grid-squares { grid-template-columns: repeat(4, 1fr); }
  section { padding: 3rem 2rem; }
}
/* Mobile: 320–767 */
@media (max-width: 767px) {
  /* Navigation */
  nav { position: sticky; top: 0; padding: .6rem 1rem; background: rgba(250,248,245,.95); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
  nav.scrolled { padding: .6rem 1rem; }
  .nav-hero { background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .nav-hero.scrolled { background: rgba(250,248,245,.95); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
  .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 span { background: var(--color-text); }
  .nav-hero:not(.scrolled) .nav-toggle span { background: #fff; }
  .nav-toggle {
    display: flex;
    z-index: 1001;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
  }
  .nav-hero:not(.scrolled) .nav-links a,
  .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: 3rem 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 - square cards, 2 per row on mobile */
  .services-preview-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  /* min-width:0 stops the aspect-ratio from forcing the grid tracks wider
     than their 1fr share, which pushed the right column past the screen. */
  .service-preview-card { min-width: 0; padding: 1.2rem 1rem; aspect-ratio: 1; gap: .6rem; justify-content: center; text-align: center; align-items: center; }
  .service-preview-card .service-preview-body { align-items: center; }
  .service-preview-card .service-preview-tag { display: none; } /* duplicates the title on mobile */
  .service-preview-card .service-preview-summary { display: none; }
  .service-preview-icon { width: 36px; height: 36px; }
  .service-preview-body h3 { font-size: .95rem; }
  .service-preview-cta { font-size: .7rem; }

  /* 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: 1rem 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-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: 75vw; flex: 0 0 75vw; padding: 1.2rem; }
  .testimonial-card blockquote { font-size: 1.02rem; }
  .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,
  .contact-form { padding: 1.5rem 1.25rem; }
  .contact-info-foot { padding-top: 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 { top: auto; bottom: 1rem; left: 1rem; right: 1rem; transform: translateY(20px); text-align: center; font-size: .85rem; padding: .85rem 1.2rem; white-space: normal; justify-content: center; }
  .toast.show { transform: translateY(0); }
}
/* 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: 1.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(4, 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: 2rem .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: 1.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; }
  .contact-info,
  .contact-form { padding: 1.25rem 1rem; }
  .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; }

/* ────────────────────────────────────────────────────────────
   Interaction polish — tactile feedback, focus, micro-states
   ──────────────────────────────────────────────────────────── */

/* Consistent, visible keyboard focus ring on every interactive element */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline-offset: 4px;
}

/* Tactile press feedback — buttons & link-buttons gently depress */
.btn { transition: background .3s var(--ease-spring), color .3s var(--ease-spring), box-shadow .3s var(--ease-spring), border-color .3s var(--ease-spring), transform .15s var(--ease-out-expo); }
.btn:active { transform: translateY(1px) scale(.985); }
.filter-btn:active { transform: scale(.96); }
.back-to-top:active { transform: translateY(0) scale(.94); }
.service-preview-card:active { transform: translateY(-3px) scale(.995); }

/* Button loading spinner (replaces the bare "…") */
.btn .btn-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnSpin .7s linear infinite;
  margin: 0 auto;
}
.btn.is-loading { pointer-events: none; }
.btn.is-loading .btn-text { display: none; }
.btn.is-loading .btn-spinner { display: block; }
.btn-outline .btn-spinner,
.btn-outline-light .btn-spinner { border-color: rgba(26,22,24,.25); border-top-color: var(--color-text); }
@keyframes btnSpin { to { transform: rotate(360deg); } }

/* Gallery items are keyboard-operable (role=button, tabindex=0 in markup) */
.gallery-item:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}
.gallery-item:focus-visible .gallery-item-overlay,
.gallery-item:focus-visible .gallery-overlay { opacity: 1; }
.gallery-item:focus-visible .gallery-item-label,
.gallery-item:focus-visible .gallery-overlay-label { transform: translateY(0); opacity: 1; }
.gallery-item:focus-visible .gallery-item-arrow,
.gallery-item:focus-visible .gallery-overlay-icon { transform: translateX(0); opacity: 1; }

/* Lightbox controls — real, focusable buttons */
.lightbox-close, .lightbox-prev, .lightbox-next {
  border: none; background: transparent; font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}
.lightbox-prev, .lightbox-next { background: rgba(255,255,255,.1); }
.lightbox-close:focus-visible, .lightbox-prev:focus-visible, .lightbox-next:focus-visible {
  outline: 2px solid #fff; outline-offset: 2px; opacity: 1;
}

/* Language menu — focusable items get the same affordance */
.lang-dropdown button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

/* Subtle, premium entrance for the hero copy (respects reduced-motion via global rule) */
.hero-content > * { animation: heroRise .9s var(--ease-out-expo) both; }
.hero-eyebrow { animation-delay: .05s; }
.hero h1 { animation-delay: .15s; }
.hero p { animation-delay: .28s; }
.hero-buttons { animation-delay: .4s; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-content > * { animation: none; }
}


/* ============================ Live chat widget ============================ */
.pt-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9000;
  font-family: var(--font-sans);
}

.pt-chat-fab {
  position: relative;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-accent);
  transition: transform 0.25s var(--ease-spring), background 0.2s ease;
}
.pt-chat-fab:hover { background: var(--color-accent-hover); transform: translateY(-2px) scale(1.04); }
.pt-chat-fab:active { transform: scale(0.96); }
.pt-chat.is-open .pt-chat-fab { transform: scale(0.9); opacity: 0.92; }

.pt-chat-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  background: #E5484D;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  box-shadow: 0 0 0 2px var(--color-bg);
}

.pt-chat-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: 384px;
  max-width: calc(100vw - 32px);
  height: 560px;
  max-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transform-origin: bottom right;
  animation: ptChatIn 0.28s var(--ease-out-expo);
}
.pt-chat-panel[hidden] { display: none; }
.pt-chat-teaser[hidden] { display: none; }
@keyframes ptChatIn {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.pt-chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--color-hero-1), var(--color-hero-2));
  color: var(--color-text-inverse);
}
.pt-chat-head-ava {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.25);
}
.pt-chat-head-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
.pt-chat-title { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; }
.pt-chat-status { display: flex; align-items: center; gap: 6px; font-size: var(--text-xs); opacity: 0.85; }
.pt-chat-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-text-muted);
  flex: none;
}
.pt-chat-status.is-online .pt-chat-dot {
  background: #57d38c;
  box-shadow: 0 0 0 0 rgba(87, 211, 140, 0.6);
  animation: ptChatPulse 2s infinite;
}
@keyframes ptChatPulse {
  0% { box-shadow: 0 0 0 0 rgba(87, 211, 140, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(87, 211, 140, 0); }
  100% { box-shadow: 0 0 0 0 rgba(87, 211, 140, 0); }
}
.pt-chat-close {
  flex: none;
  width: 32px; height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-text-inverse);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.pt-chat-close:hover { background: rgba(255, 255, 255, 0.22); }

.pt-chat-body {
  flex: 1;
  min-height: 0; /* let the flex item shrink so overflow-y:auto actually scrolls (instead of the page) */
  overflow-y: auto;
  overscroll-behavior: contain; /* keep wheel/touch scrolling inside the chat, don't chain to the page */
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--color-bg);
}

.pt-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.9375rem; /* 15px — roomier than the site's --text-sm, easier to read in the panel */
  line-height: 1.5;
  word-wrap: break-word;
  white-space: pre-wrap;
}
.pt-msg-visitor {
  align-self: flex-end;
  background: var(--color-accent);
  color: #fff;
  border-bottom-right-radius: 5px;
}
.pt-msg-manager {
  align-self: flex-start;
  background: var(--color-card);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-bottom-left-radius: 5px;
}
.pt-msg-system {
  align-self: center;
  max-width: 92%;
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  padding: 7px 12px;
  border-radius: var(--radius-pill);
}

/* "Typing…" indicator — three shimmering dots, WhatsApp style (no label). */
.pt-typing {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 14px;
  min-height: 0;
}
.pt-typing i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-text-muted);
  opacity: 0.3;
  animation: pt-typing-wave 1.3s ease-in-out infinite;
}
.pt-typing i:nth-child(2) { animation-delay: 0.18s; }
.pt-typing i:nth-child(3) { animation-delay: 0.36s; }
@keyframes pt-typing-wave {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%          { opacity: 1;   transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
  .pt-typing i { animation-duration: 0.001ms; opacity: 0.6; }
}

.pt-chat-input {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--color-border);
  background: var(--color-card);
}
.pt-chat-input-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.pt-chat-name {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 9px 12px;
  font-family: inherit;
  font-size: 16px; /* 16px keeps iOS Safari from zooming the page when the field is focused */
  color: var(--color-text);
  background: var(--color-bg);
  outline: none;
  transition: border-color 0.2s ease;
}
.pt-chat-name:focus { border-color: var(--color-accent); }
.pt-chat-name[hidden] { display: none; }
.pt-chat-text {
  flex: 1;
  resize: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  font-family: inherit;
  font-size: 16px; /* 16px keeps iOS Safari from zooming the page when the field is focused */
  line-height: 1.4;
  color: var(--color-text);
  background: var(--color-bg);
  max-height: 120px;
  outline: none;
  transition: border-color 0.2s ease;
}
.pt-chat-text:focus { border-color: var(--color-accent); }
.pt-chat-send {
  flex: none;
  width: 42px; height: 42px;
  border: none;
  border-radius: var(--radius-md);
  background: var(--color-accent);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.15s ease;
}
.pt-chat-send:hover { background: var(--color-accent-hover); }
.pt-chat-send:active { transform: scale(0.92); }

/* First (proactive) message — looks like it's written by a real person */
.pt-msg-greeting {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  align-self: flex-start;
  max-width: 90%;
}
/* The greeting bubble lines up flush-left with every other manager reply.
   Natalia's avatar already lives in the panel header, so we don't repeat it
   here (an extra avatar gutter only pushed her messages to the right). */
.pt-msg-ava { display: none; }
.pt-msg-greeting-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.pt-msg-greeting-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  padding-left: 2px;
}
.pt-msg-greeting .pt-msg-manager { align-self: flex-start; }

/* Proactive teaser bubble next to the launcher */
.pt-chat-teaser {
  position: absolute;
  right: 4px;
  bottom: 74px;
  width: 290px;
  max-width: calc(100vw - 40px);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 30px 14px 14px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo);
}
.pt-chat-teaser.is-in { opacity: 1; transform: translateY(0) scale(1); }
.pt-chat-teaser:hover { border-color: var(--color-accent-light); }
.pt-chat-teaser-ava {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
}
.pt-chat-teaser-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.pt-chat-teaser-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
}
.pt-chat-teaser-text {
  font-size: var(--text-sm);
  line-height: 1.4;
  color: var(--color-text);
}
.pt-chat-teaser-close {
  position: absolute;
  top: 6px; right: 6px;
  width: 22px; height: 22px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.pt-chat-teaser-close:hover { background: var(--color-bg-alt); color: var(--color-text); }
.pt-chat-teaser-close svg { width: 14px; height: 14px; }

@media (max-width: 480px) {
  .pt-chat { right: 14px; bottom: 14px; }
  /* Dimmed backdrop: the site stays visible behind the chat window, just muted.
     A tap on it closes the chat (wired in chat.js — taps on this ::before
     target the .pt-chat root). */
  .pt-chat.is-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(31, 21, 40, 0.45);
    animation: ptChatDim 0.25s ease;
  }
  /* Windowed chat on phones: a floating card with margins, not fullscreen.
     Fixed to the viewport (not the launcher), so JS can pin it to the visual
     viewport when the on-screen keyboard opens — keeping the header
     (name + status) visible above the keyboard. */
  .pt-chat-panel {
    position: fixed;
    top: calc(10px + env(safe-area-inset-top, 0px));
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    width: auto;
    max-width: none;
    height: auto;
    max-height: none;
    transform-origin: center bottom;
  }
  .pt-chat-head { flex: none; }
  .pt-chat-input { flex: none; }
  /* Freeze the page behind the chat so the keyboard can't scroll it */
  body.pt-chat-open { overflow: hidden; }
  .pt-chat-teaser { width: calc(100vw - 40px); }
}
@keyframes ptChatDim { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .pt-chat-panel { animation: none; }
  .pt-chat-status.is-online .pt-chat-dot { animation: none; }
  .pt-chat-fab { transition: background 0.2s ease; }
  .pt-chat-teaser { transition: opacity 0.2s ease; transform: none; }
  .pt-chat-teaser.is-in { transform: none; }
}




/* ── Away notice: Natalia's seasonal note (04.07–12.08.2026) ── */
.away-note {
  position: fixed;
  left: 2rem;
  bottom: 2rem;
  z-index: 8900; /* under the chat widget (9000), above back-to-top (999) */
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  max-width: 400px;
  padding: 1.15rem 2.6rem 1.15rem 1.15rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease-out-expo), transform .6s var(--ease-out-expo);
  pointer-events: none;
}
.away-note.is-in { opacity: 1; transform: translateY(0); pointer-events: auto; }
.away-note-ava {
  position: relative;
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  border: 2px solid var(--color-accent-light);
}
/* The source photo is full-height — zoom the circle in on Natalia's face */
.away-note-ava img {
  position: absolute;
  width: 400%;
  max-width: none;
  left: -140%;
  top: -126%;
}
.away-note-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--color-accent);
  margin-bottom: .35rem;
}
.away-note-text {
  margin: 0 0 .5rem;
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--color-text-secondary);
}
.away-note-cta {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
}
.away-note-cta:hover { color: var(--color-accent-hover); }
.away-note-close {
  position: absolute;
  top: .55rem; right: .55rem;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.away-note-close:hover { background: var(--color-bg-alt); color: var(--color-text); }
.away-note-close svg { width: 14px; height: 14px; }
/* Keep back-to-top clear of the note (desktop shares the bottom-left corner) */
body.has-away-note .back-to-top { bottom: calc(2rem + var(--away-note-h, 0px) + .75rem); }
@media (max-width: 767px) {
  /* Sits above the chat bubble zone (fab: 60px at bottom/right 14px), full width */
  .away-note { left: 14px; right: 14px; bottom: 86px; max-width: none; padding: 1rem 2.4rem 1rem 1rem; }
  .away-note-ava { width: 44px; height: 44px; }
  /* On phones back-to-top (48px at bottom 1rem) fits under the note — no shift */
  body.has-away-note .back-to-top { bottom: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .away-note { transition: opacity .2s ease; transform: none; }
}
/* Away-period note above the contact form fields (also 04.07–12.08.2026) */
.away-form-note {
  margin: 0 0 1.5rem;
  padding: .85rem 1.1rem;
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
}

/* ── FAQ (contacts) ── */
.faq-list {
  max-width: 720px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--color-accent-light); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  position: relative;
  border-radius: 50%;
  background: var(--color-accent-light);
  transition: transform .3s var(--ease-out-expo), background .25s;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 2px;
  border-radius: 1px;
  background: var(--color-accent-hover);
  transform: translate(-50%, -50%);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .3s var(--ease-out-expo); }
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-item > p {
  margin: 0;
  padding: 0 1.3rem 1.2rem;
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.65;
}
@media (max-width: 767px) {
  .faq-item summary { padding: 1rem 1.1rem; font-size: var(--text-sm); }
  .faq-item > p { padding: 0 1.1rem 1.05rem; }
}

/* ── How it works (homepage steps) ── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  counter-reset: how-step;
}
.how-step {
  position: relative;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.4rem 1.8rem 2rem;
  text-align: left;
  box-shadow: var(--shadow-xs);
  transition: transform .35s var(--ease-out-expo), box-shadow .35s ease;
}
.how-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: var(--color-accent-light);
  color: var(--color-accent-hover);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
}
.how-step h3 { font-size: var(--text-lg); margin-bottom: .6rem; }
.how-step p { color: var(--color-text-secondary); font-size: var(--text-sm); line-height: 1.65; margin: 0; }
/* Connector arrows between steps (desktop only) */
.how-step:not(:last-child)::after {
  content: '\2192';
  position: absolute;
  top: 50%;
  right: -1.65rem;
  transform: translateY(-50%);
  color: var(--color-accent);
  font-size: 1.3rem;
  opacity: .55;
}
@media (max-width: 991px) {
  .how-grid { grid-template-columns: 1fr; gap: 1.25rem; max-width: 480px; margin-left: auto; margin-right: auto; }
  .how-step:not(:last-child)::after { content: '\2193'; top: auto; bottom: -1.25rem; right: 50%; transform: translateX(50%); }
}

/* ── Google Maps link under testimonials ── */
.testimonials-google {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.1rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color .2s;
}
.testimonials-google:hover { color: var(--color-accent-hover); }
.testimonials-google svg { width: 16px; height: 16px; flex: 0 0 auto; }

/* ── Gallery video items ── */
.gallery-item.gallery-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-video-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(26, 22, 24, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform .3s var(--ease-out-expo), background .25s;
}
.gallery-item.gallery-video:hover .gallery-video-badge {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(212, 120, 176, 0.85);
}
.gallery-video-badge svg { width: 22px; height: 22px; margin-left: 3px; color: #fff; }

/* ── Lightbox video ── */
.lightbox-video {
  display: none;
  max-width: min(90vw, 1100px);
  max-height: 82vh;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
}
.lightbox.is-video .lightbox-video { display: block; }
.lightbox.is-video .lightbox-content { display: none; }

/* ── Поле даты: маска ДД.ММ.ГГГГ + собственный календарь ── */
.date-field { position: relative; }
.contact-form .date-field input {
  width: 100%;
  padding-right: 3.2rem;
}
.date-toggle {
  position: absolute;
  top: 50%;
  right: .55rem;
  transform: translateY(-50%);
  width: 2.3rem;
  height: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color .2s, background .2s;
}
.date-toggle:hover,
.date-toggle[aria-expanded="true"] {
  color: var(--color-accent);
  background: var(--color-accent-light);
}
.date-toggle svg { width: 1.15rem; height: 1.15rem; }
.date-picker {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  width: min(19.5rem, 100%);
  background: var(--color-card);
  border: 1.5px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: .9rem;
  z-index: 40;
  animation: datePickerIn .18s ease;
}
@keyframes datePickerIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Разворот вверх, когда снизу не хватает места (мобильная клавиатура) */
.date-picker.is-above {
  top: auto;
  bottom: calc(100% + .5rem);
  animation-name: datePickerInUp;
}
@keyframes datePickerInUp {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.date-picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .6rem;
}
.date-picker-title {
  font-weight: 600;
  font-size: .88rem;
  color: var(--color-text);
  text-transform: capitalize;
  text-align: center;
  flex: 1;
}
.date-picker-nav {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.date-picker-nav:hover:not(:disabled) {
  background: var(--color-accent-light);
  color: var(--color-accent);
}
.date-picker-nav:disabled { opacity: .3; cursor: default; }
.date-picker-nav svg { width: 1rem; height: 1rem; }
.date-picker-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  justify-items: center;
}
.dp-wd {
  font-size: .6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--color-text-muted);
  padding: .3rem 0 .4rem;
}
.dp-day {
  width: 2.15rem;
  height: 2.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: transparent;
  font-family: var(--font-sans);
  font-size: .82rem;
  color: var(--color-text);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.dp-day:hover:not(:disabled) { background: var(--color-accent-light); }
.dp-day:disabled { color: var(--color-text-muted); opacity: .4; cursor: default; }
.dp-day.is-today { box-shadow: inset 0 0 0 1.5px var(--color-accent); }
.dp-day.is-selected { background: var(--color-accent); color: #fff; }
.dp-day.is-selected:hover:not(:disabled) { background: var(--color-accent-hover); }
