:root {
  --color-bg: #f7f4f0;
  --color-bg-alt: #efe9e2;
  --color-ink: #171614;
  --color-ink-soft: #4a4640;
  --color-accent: #6b5744;
  --color-accent-light: #a3876a;
  --color-line: #ddd5cb;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0s linear 0s;
}
.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0s linear 0.6s;
}
.preloader-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  letter-spacing: 0.18em;
  color: var(--color-ink);
  line-height: 1;
}
.preloader-logo small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-align: center;
  color: var(--color-ink-soft);
  margin-top: 8px;
}
.preloader-bar {
  width: 120px;
  height: 2px;
  background: var(--color-line);
  margin-top: 1.8rem;
  overflow: hidden;
  position: relative;
}
.preloader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: var(--color-accent);
  animation: preloader-sweep 1.1s ease-in-out infinite;
}
@keyframes preloader-sweep {
  0% { left: -40%; }
  100% { left: 100%; }
}
body.preloading { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .preloader-bar::after { animation: none; left: 0; width: 100%; }
}

body {
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: #fff;
  font-size: 1rem;
  line-height: 1.6;
}

h1, h2, h3, .font-serif {
  font-family: var(--font-serif);
  color: var(--color-ink);
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-ink);
  font-weight: 500;
}

.eyebrow-accent {
  color: var(--color-accent);
}

.text-accent { color: var(--color-accent); }
.italic-accent {
  font-style: italic;
  color: var(--color-accent-light);
}

.bg-cream { background: var(--color-bg); }
.bg-cream-alt { background: var(--color-bg-alt); }

.section-pad { padding: 30px 0; }

/* Buttons */
.btn-kami {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-ink);
  color: #fff;
  border: 1px solid var(--color-ink);
  padding: 0.9rem 1.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .2s ease, color .2s ease;
}
.btn-kami:hover {
  background: transparent;
  color: var(--color-ink);
}
.btn-kami svg { width: 16px; height: 16px; flex-shrink: 0; }

.link-underline {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-ink);
  padding-bottom: 4px;
  white-space: nowrap;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink);
  width:fit-content;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow.text-white { color: #fff; }
.link-arrow[aria-expanded="true"] svg { transform: rotate(90deg); }
.link-arrow[aria-expanded="true"]:hover svg { transform: rotate(90deg); }
.link-arrow-up[aria-expanded="true"] svg { transform: rotate(-90deg); }
.link-arrow-up[aria-expanded="true"]:hover svg { transform: rotate(-90deg); }
.link-arrow-underline {
  position: relative;
  gap: 2.5rem;
  border-bottom: 1px solid transparent;
  /* padding-bottom: 10px; */
}
.link-arrow-underline:hover {
  color:var(--color-accent-light);
}
.link-arrow-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.link-arrow-underline:hover::after {
  transform: scaleX(1);
}

/* Navbar */
.navbar-kami {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 1.3rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
@media (max-width: 991.98px) {
  .navbar-kami.nav-menu-open { padding-bottom: 0; background: transparent !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; box-shadow: none !important; }
  .navbar-kami.nav-menu-open .brand-logo { color: var(--color-ink); }
  .navbar-kami.nav-menu-open .brand-logo small { color: var(--color-ink-soft); }
  .navbar-kami.nav-menu-open .navbar-toggler-icon { filter: none; }
  .navbar-kami.nav-menu-open .navbar-toggler { border-color: var(--color-line); }
}
.navbar-kami .navbar-nav .nav-link {
  position: relative;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding-left: 0;
  padding-right: 0;
  margin: 0 0.9rem;
  transition: color 0.3s ease;
}
@media (max-width: 991.98px) {
  .navbar-kami .navbar-nav .nav-link { margin: 0; }
}
.navbar-kami .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.navbar-kami .navbar-nav .nav-link:hover::after,
.navbar-kami .navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}
.navbar-kami .navbar-toggler {
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  box-shadow: none !important;
  transition: border-color 0.3s ease;
}
@media (max-width: 991.98px) {
  .navbar-kami .navbar-toggler { display: flex; }
}
.navbar-kami.scrolled .navbar-toggler { border-color: var(--color-line); }
.navbar-kami .navbar-toggler-icon {
  width: 20px;
  height: 20px;
  filter: invert(1);
  transition: filter 0.3s ease;
}
.navbar-kami.scrolled .navbar-toggler-icon { filter: none; }
@media (max-width: 991.98px) {
  .navbar-kami .navbar-brand,
  .navbar-kami .navbar-toggler {
    position: relative;
    z-index: 1002;
  }
  .navbar-kami .navbar-collapse.show,
  .navbar-kami .navbar-collapse.collapsing {
    background: rgba(247,244,240,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    height: 100vh !important;
    margin-top: 0;
    padding: 6.5rem 1.5rem 2rem;
    border-radius: 0;
    box-shadow: none;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .navbar-kami .navbar-collapse.show,
  .navbar-kami .navbar-collapse.collapsing {
    justify-content: flex-start !important;
  }
  .navbar-kami .navbar-collapse .navbar-nav {
    flex: 1;
    padding-left: 0;
    margin-left: 0;
    width: 100%;
  }
  .navbar-kami .navbar-collapse .nav-extra {
    padding: 1.5rem 0 0 !important;
    margin: 2rem 0 0 !important;
    width: 100%;
  }
  .navbar-kami .navbar-collapse.is-hiding,
  .navbar-kami .navbar-collapse.is-showing {
    opacity: 0;
    transform: translateY(-12px);
  }
  .navbar-kami .navbar-collapse .navbar-nav .nav-link {
    color: var(--color-ink);
    display: block;
    padding: 0.6rem 0;
  }
  .navbar-kami .navbar-collapse .navbar-nav .nav-link::after {
    display: none;
  }
  .navbar-kami .navbar-collapse .btn-kami {
    width: 100%;
    justify-content: center;
  }
  .navbar-kami .nav-extra {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-line);
  }
  .navbar-kami .nav-extra h5 {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-ink);
    margin-bottom: 0.7rem;
  }
  .navbar-kami .nav-extra h5:not(:first-child) { margin-top: 1.4rem; }
  .navbar-kami .nav-extra p {
    font-size: 0.85rem;
    color: var(--color-ink-soft);
    margin-bottom: 0.3rem;
  }
}
.brand-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  line-height: 1;
  color: #fff;
  transition: color 0.3s ease;
}
.brand-logo small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-align: center;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
  transition: color 0.3s ease;
}
.navbar-kami.scrolled {
  background: rgba(247,244,240,0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 0.9rem 0;
}
.navbar-kami.scrolled .navbar-nav .nav-link { color: var(--color-ink); }
.navbar-kami.scrolled .brand-logo { color: var(--color-ink); }
.navbar-kami.scrolled .brand-logo small { color: var(--color-ink-soft); }
.navbar-kami .navbar-nav .nav-link.active { color: var(--color-accent-light); }
body { padding-top: 0; }
html { scroll-padding-top: 90px; scroll-behavior: smooth; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23,22,20,0.75) 0%, rgba(23,22,20,0.45) 45%, rgba(23,22,20,0.15) 75%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 6rem 0;
}
.hero-content > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-content.hero-in > * { opacity: 1; transform: translateY(0); }
.hero-content > *:nth-child(1) { transition-delay: 0.1s; }
.hero-content > *:nth-child(2) { transition-delay: 0.2s; }
.hero-content > *:nth-child(3) { transition-delay: 0.32s; }
.hero-content > *:nth-child(4) { transition-delay: 0.42s; }
.hero-content > *:nth-child(5) { transition-delay: 0.55s; }
@media (prefers-reduced-motion: reduce) {
  .hero-content > * { opacity: 1; transform: none; transition: none; }
}
.hero h1 {
  font-size: 2.9rem;
  line-height: 1.15;
  color: #fff;
}
.hero .eyebrow { color: #fff; }
.hero p { color: rgba(255,255,255,0.9); }
.hero-divider {
  width: 46px;
  height: 2px;
  background: #fff;
  margin: 1.4rem 0;
}

/* Services */
.services-grid {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 10px;
}
#services.reveal { transform: none; }
#services .services-grid > div {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
#services.revealed .services-grid > div { opacity: 1; transform: translateY(0); }
#services .services-grid > div:nth-child(1) { transition-delay: 0.05s; }
#services .services-grid > div:nth-child(2) { transition-delay: 0.18s; }
#services .services-grid > div:nth-child(3) { transition-delay: 0.31s; }
#services .services-grid > div:nth-child(4) { transition-delay: 0.44s; }
@media (prefers-reduced-motion: reduce) {
  #services .services-grid > div { opacity: 1; transform: none; transition: none; }
}
.service-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 0.9rem;
  stroke: var(--color-ink);
}
.service-split h3 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
}
.service-divider {
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  margin: 0.7rem 0;
}
.service-split p {
  font-size: 0.86rem;
  margin-bottom: 1rem;
}

.service-split {
  display: flex;
  height: 300px;
  overflow: hidden;
  color: #fff;
  background: #7f6f62;
}
.service-split .service-photo {
  width: 46%;
  align-self: stretch;
  flex-shrink: 0;
  overflow: hidden;
}
.service-split .service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-split:hover .service-photo img { transform: scale(1.08); }
.service-split .service-body {
  flex: 1;
  min-width: 0;
  padding: 1.6rem 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}
.service-split .service-icon { stroke: #fff; align-self: flex-start; }
.service-split h3 { color: #fff; }
.service-split p { color: rgba(255,255,255,0.8); }

.service-split.tone-warm { background: #b3ada4; color: var(--color-ink); }
.service-split.tone-warm .service-icon { stroke: var(--color-ink); }
.service-split.tone-warm h3 { color: var(--color-ink); }
.service-split.tone-warm p { color: var(--color-ink-soft); }

.service-split.tone-cream { background: #faf8f5; color: var(--color-ink); }
.service-split.tone-cream .service-icon { stroke: var(--color-accent); }
.service-split.tone-cream h3 { color: var(--color-ink); }
.service-split.tone-cream p { color: var(--color-ink-soft); }

/* Stylists */
.stylist-photo {
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.stylist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.stylist-card:hover .stylist-photo img { transform: scale(1.06); }
.stylist-card h3 { font-size: 1.05rem; }
.stylist-role {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}
#stylists.reveal { transform: none; }
#stylists .row > div {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
#stylists.revealed .row > div { opacity: 1; transform: translateY(0); }
#stylists .row > div:nth-child(1) { transition-delay: 0.05s; }
#stylists .row > div:nth-child(2) { transition-delay: 0.18s; }
#stylists .row > div:nth-child(3) { transition-delay: 0.31s; }
#stylists .row > div:nth-child(4) { transition-delay: 0.44s; }
#stylists .row > div:nth-child(5) { transition-delay: 0.57s; }
#stylists .row > div:nth-child(6) { transition-delay: 0.7s; }
@media (prefers-reduced-motion: reduce) {
  #stylists .row > div { opacity: 1; transform: none; transition: none; }
}

/* Signature + transformations */
.gallery-photo img,
.transform-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.signature-product-col {
  padding-top: 0 !important;
  margin-top: 0 !important;
  align-self: stretch !important;
}
.signature-swiper,
.signature-swiper .swiper-wrapper,
.signature-swiper .swiper-slide {
  height: 100%;
}
.signature-product {
  height: 100%;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.signature-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.2rem 1rem;
  background: linear-gradient(0deg, rgba(23,22,20,0.65) 0%, rgba(23,22,20,0) 100%);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
}
.signature-swiper-nav {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  gap: 0.4rem;
}
.signature-swiper-nav .testimonial-nav-btn {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.85);
  border-color: transparent;
}
.signature-swiper-nav .testimonial-nav-btn:hover { background: #fff; color: var(--color-ink); }
.story-photo {
  min-height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.testimonial-collage {
  min-height: 200px;
  overflow: hidden;
}
.testimonial-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.about-grid > * { min-width: 0; }
@media (min-width: 992px) {
  .about-grid { grid-template-columns: repeat(3, 1fr); }
}

/* About modal */
#aboutModal .modal-content,
#privacyModal .modal-content,
#termsModal .modal-content { border: none; border-radius: 2px; }
#aboutModal .modal-header,
#privacyModal .modal-header,
#termsModal .modal-header { border-bottom: none; align-items: center; padding: 2rem 2rem 0; }
#aboutModal .modal-body,
#privacyModal .modal-body,
#termsModal .modal-body { padding: 1rem 2rem 2.5rem; max-height: 65vh; overflow-y: auto; }
#aboutModal .modal-body p,
#privacyModal .modal-body p,
#termsModal .modal-body p { line-height: 1.75; margin-bottom: 1rem; }
#aboutModal .btn-close:focus,
#privacyModal .btn-close:focus,
#termsModal .btn-close:focus { box-shadow: none; }

/* Care modal */
#careModal .modal-content { border: none; border-radius: 2px; }
#careModal .modal-header { border-bottom: none; align-items: center; padding: 2rem 2rem 0; }
#careModal .modal-body { padding: 1rem 2rem 2.5rem; }
.care-product {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-line);
}
.care-product:first-of-type { padding-top: 0.5rem; }
.care-product-img {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
}
.care-product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.care-product-body p { line-height: 1.6; }
.care-product[data-product-trigger] { cursor: pointer; transition: opacity 0.2s ease; }
.care-product[data-product-trigger]:hover { opacity: 0.7; }
.signature-product[data-product-trigger] { cursor: pointer; }

/* Product detail modal */
#productModal .modal-content { position: relative; border: none; border-radius: 2px; overflow: hidden; }
.product-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background-color: rgba(255,255,255,0.85);
  border-radius: 50%;
  padding: 8px;
}
.product-modal-body { display: flex; flex-direction: column; }
.product-modal-img { height: 260px; }
.product-modal-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-modal-info { padding: 2rem; }
@media (min-width: 768px) {
  .product-modal-body { flex-direction: row; }
  .product-modal-img { width: 45%; height: auto; }
  .product-modal-info { width: 55%; padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
}

/* Before/after slider */
.transform-row { display: flex; gap: 10px; height: 500px; }
.ba-slider {
  position: relative;
  flex: 1;
  height: 100%;
  overflow: hidden;
  border-radius: 2px;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
  background: var(--color-bg);
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-slider .ba-before { clip-path: inset(0 50% 0 0); transition: clip-path 0.25s ease; }
.ba-slider.dragging .ba-before { transition: none; }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  transition: left 0.25s ease;
}
.ba-slider.dragging .ba-handle { transition: none; }
.ba-handle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-ink);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
.ba-tag {
  position: absolute;
  bottom: 10px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(23,22,20,0.65);
  color: #fff;
  padding: 3px 9px;
  border-radius: 20px;
  pointer-events: none;
}
.ba-tag-before { left: 10px; }
.ba-tag-after { right: 10px; }
@media (max-width: 575.98px) {
  .transform-row { flex-direction: column; height: auto; }
  .ba-slider { height: 260px; }
}
.ba-slider-modal { height: 630px; }
#transformationsModal .modal-content { border: none; border-radius: 2px; }
#transformationsModal .modal-header { border-bottom: none; align-items: center; padding: 2rem 2rem 0; }
#transformationsModal .modal-body { padding: 1rem 2rem 2.5rem; }
#transformationsModal .swiper-slide { height: auto; }
@media (min-width: 992px) {
  #transformationsModal .modal-dialog { max-width: 480px; }
  .ba-slider-modal { height: 550px; }
}
@media (max-width: 575.98px) {
  .ba-slider-modal { height: 320px; }
}
#mapModal .modal-content { border: none; border-radius: 2px; }
#mapModal .modal-header { border-bottom: none; align-items: center; padding: 2rem 2rem 0; }
#mapModal .modal-body { padding: 1rem 2rem 2rem; }
.map-embed { height: 400px; border-radius: 2px; overflow: hidden; }
.map-embed iframe { width: 100%; height: 100%; display: block; }

/* Testimonial */
.quote-mark {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  color: var(--color-accent-light);
  line-height: 1;
}
.stars { color: var(--color-accent); letter-spacing: 2px; font-size: 0.85rem; }
.testimonial-swiper .swiper-slide { height: auto; }
.testimonial-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: transparent;
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.testimonial-nav-btn svg { width: 16px; height: 16px; }
.testimonial-nav-btn:hover {
  background: var(--color-ink);
  border-color: var(--color-ink);
  color: #fff;
}
.testimonial-nav-btn.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Google block */
.google-rating {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.google-score { font-size: 1.3rem; font-weight: 600; }

/* Guarantee bar */
.guarantee-bar { background: var(--color-bg-alt); }
.guarantee-item { display: flex; gap: 1.4rem; align-items: flex-start; }
.guarantee-item svg { width: 90px; height: 90px; flex-shrink: 0; stroke: var(--color-accent); margin-top: 2px; }
.guarantee-col { position: relative; }
.guarantee-col + .guarantee-col::before {
  content: "";
  position: absolute;
  left: -0.75rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-line);
}
.guarantee-item h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.guarantee-item p { font-size: 0.82rem; padding-right:20px; color: var(--color-ink-soft); margin-bottom: 0.2rem; }
.guarantee-item .fine-print { font-size: 0.72rem; color: #948a7d; }

/* Footer */
.site-footer { background: var(--color-bg); font-size: 0.86rem; padding: 4.5rem 0 0; }
.footer-brand-logo { font-size: 1.3rem; }
@media (max-width: 767.98px) {
  .site-footer .row.g-4 { --bs-gutter-y: 2.75rem; }
  .footer-brand-logo { font-size: 1.6rem; }
}
.site-footer h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}
.site-footer p { color: var(--color-ink-soft); margin-bottom: 0.3rem; line-height: 1.7; }
.site-footer .brand-logo { color: var(--color-ink); }
.site-footer .brand-logo small { color: var(--color-ink-soft); }
.social-icons { display: flex; gap: 0.7rem; margin-bottom: 0.9rem; }
.social-icons a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-ink);
  color: #fff;
  border-radius: 50%;
}
.social-icons svg { width: 15px; height: 15px; }

.whatsapp-line {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-ink-soft);
}
.whatsapp-line-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-ink);
  color: #fff;
  border-radius: 50%;
}
.whatsapp-line-icon svg { width: 15px; height: 15px; }

.footer-gallery { display: flex; gap: 3px; border-radius: 2px; overflow: hidden; cursor: pointer; position: relative; aspect-ratio: 3.2 / 1; }
.footer-gallery-col { flex: 1; min-width: 0; height: 100%; overflow: hidden; }
.footer-gallery img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 20%; transition: transform 0.3s ease; }
.footer-gallery-col:hover img { transform: scale(1.08); }
#galleryModal .modal-content { border: none; border-radius: 2px; }
#galleryModal .modal-header { border-bottom: none; align-items: center; padding: 2rem 2rem 0; }
#galleryModal .modal-body { padding: 1rem 2rem 2rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.gallery-grid-item { border-radius: 2px; overflow: hidden; aspect-ratio: 1 / 1; cursor: zoom-in; }
.gallery-grid-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.gallery-grid-item:hover img { transform: scale(1.06); }
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10,9,8,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0s linear 0s;
}
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 2px;
  transform: scale(0.92);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.lightbox.active img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-close svg { width: 18px; height: 18px; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 1;
}
.lightbox-nav svg { width: 20px; height: 20px; }
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
@media (max-width: 575.98px) {
  .lightbox-nav { width: 38px; height: 38px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
.footer-bottom {
  border-top: 1px solid var(--color-line);
  margin-top: 3rem;
  padding: 1.2rem 0;
  font-size: 0.78rem;
  color: var(--color-ink-soft);
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: var(--color-ink);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  cursor: grab;
  touch-action: none;
  -webkit-user-drag: none;
  user-select: none;
}
.whatsapp-float.dragging {
  cursor: grabbing;
  transition: none;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
}
.whatsapp-float svg { width: 26px; height: 26px; position: relative; z-index: 1; }
.whatsapp-float::before,
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-ink);
  animation: whatsapp-ripple 2s ease-out infinite;
  z-index: 0;
}
.whatsapp-float::after {
  animation-delay: 1s;
}
@keyframes whatsapp-ripple {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::before,
  .whatsapp-float::after { animation: none; display: none; }
}

@media (max-width: 991.98px) {
  .hero h1 { font-size: 2.1rem; }
  .hero { min-height: 70vh; }
  .hero-content { max-width: 100%; padding: 4rem 0; }
  .hero-overlay { background: linear-gradient(180deg, rgba(23,22,20,0.55) 0%, rgba(23,22,20,0.75) 100%); }
  .service-split { height: auto; min-height: 250px; }
  .section-pad { padding: 3rem 0; }
}
@media (max-width: 767.98px) {
  .hero { min-height: 100vh; }
}
