/* ================================================
   LaVie Nails — Complete Stylesheet
   Palette: warm cream / taupe / blush / charcoal
   ================================================ */

:root {
  --cream:        #faf6f1;
  --cream-dark:   #f3ece3;
  --taupe:        #e5d8ca;
  --taupe-mid:    #cbb9a4;
  --taupe-deep:   #a8927c;
  --blush:        #f0d0d8;
  --blush-mid:    #dba6b3;
  --blush-deep:   #c4839a;
  --charcoal:     #2a2320;
  --charcoal-mid: #3d3330;
  --text:         #48403b;
  --text-light:   #7a6e68;
  --white:        #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Jost', 'Segoe UI', system-ui, sans-serif;

  --max-w:   1180px;
  --radius:  16px;
  --radius-sm: 10px;
  --shadow:  0 24px 70px -28px rgba(42, 35, 32, 0.38);
  --shadow-sm: 0 8px 28px -14px rgba(42, 35, 32, 0.28);
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --dur:     0.45s;
}

/* ─── Reset ──────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; }

/* ─── Typography ─────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--charcoal);
  line-height: 1.18;
  letter-spacing: 0.01em;
  font-weight: 600;
}
h1 { font-weight: 700; }
em { font-style: italic; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: 0.75rem;
}

/* ─── Layout helpers ─────────────────────── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.75rem;
}
section { padding: clamp(5rem, 9vw, 8.5rem) 0; }

.section-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.75rem;
}
.section-heading h2 {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  margin-bottom: 0.9rem;
}
.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ─── Skip link ──────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  z-index: 9999;
  font-size: 0.9rem;
}
.skip-link:focus { left: 1rem; }

/* ─── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.4rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1.5px solid transparent;
  transition: transform var(--dur) var(--ease),
              background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blush-deep);
  color: var(--charcoal);
  box-shadow: 0 10px 30px -10px rgba(196, 131, 154, 0.55);
}
.btn-ghost {
  border-color: rgba(255,255,255,0.65);
  color: var(--white);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.9);
}

/* ────────────────────────────────────────────
   HEADER
────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 300;
  transition:
    background var(--dur) var(--ease),
    backdrop-filter var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 246, 241, 0.94);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 2px 24px -12px rgba(42,35,32,0.32);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.15rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--white);
  flex-shrink: 0;
  transition: color var(--dur) var(--ease);
}
.site-header.scrolled .logo { color: var(--charcoal); }
.logo span {
  color: var(--blush-mid);
  font-style: italic;
  margin-left: -0.03em;
}
.site-header.scrolled .logo span { color: var(--blush-deep); }

/* Nav */
.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
  position: relative;
  padding-bottom: 0.25rem;
  transition: color var(--dur) var(--ease);
}
.site-header.scrolled .main-nav a { color: var(--text); }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--dur) var(--ease);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--blush-deep) !important; }

/* Header phone CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
  padding: 0.55rem 1.3rem;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  transition: all var(--dur) var(--ease);
  flex-shrink: 0;
}
.header-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-1px);
}
.site-header.scrolled .header-cta {
  color: var(--charcoal);
  border-color: var(--taupe-mid);
}
.site-header.scrolled .header-cta:hover {
  background: var(--cream-dark);
  border-color: var(--blush-deep);
  color: var(--blush-deep);
}
.header-cta-icon { font-size: 1rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  z-index: 400;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.site-header.scrolled .nav-toggle span,
.nav-open .nav-toggle span { background: var(--charcoal); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ────────────────────────────────────────────
   HERO
────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--white);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-drift 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero-drift {
  from { transform: scale(1.07) translate(0, 0); }
  to   { transform: scale(1)    translate(-0.8%, 0.4%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(42,35,32,0.58) 0%,
      rgba(42,35,32,0.42) 40%,
      rgba(42,35,32,0.68) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 0 1.5rem;
  animation: hero-rise 1.2s var(--ease) both;
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { color: rgba(240, 208, 216, 0.9); }

.hero h1 {
  font-size: clamp(3.6rem, 10vw, 6.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.hero h1 em {
  color: var(--blush);
  font-style: italic;
}
.hero-tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 300;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 2.6rem;
  color: rgba(255,255,255,0.88);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 26px;
  height: 44px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-cue-dot {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--white);
  animation: scroll-drop 2.2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%   { opacity: 1; transform: translateY(0); }
  70%  { opacity: 0; transform: translateY(16px); }
  100% { opacity: 0; transform: translateY(0); }
}

/* ────────────────────────────────────────────
   TRUST BAR
────────────────────────────────────────────── */
.trust-bar {
  background: var(--charcoal);
  padding: 1.2rem 1.75rem;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.45rem 2rem;
}
.trust-icon {
  color: var(--blush-mid);
  font-size: 0.6rem;
}
.trust-divider {
  width: 1px;
  height: 1.4rem;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ────────────────────────────────────────────
   ABOUT
────────────────────────────────────────────── */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.about-badge {
  position: absolute;
  bottom: -1.4rem;
  right: -1.4rem;
  width: 110px;
  height: 110px;
  background: var(--charcoal);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  box-shadow: var(--shadow-sm);
  border: 4px solid var(--white);
}
.about-badge-stars {
  color: var(--blush-mid);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}
.about-badge-text {
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

.about-copy h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.4rem;
}
.about-copy p {
  color: var(--text);
  margin-bottom: 1.15rem;
  font-size: 1.01rem;
}
.about-copy p:last-of-type { margin-bottom: 0; }

.about-details {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--taupe);
}
.about-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.about-detail-item strong {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush-deep);
}
.about-detail-item span,
.about-detail-item a {
  font-size: 0.97rem;
  color: var(--text);
  font-weight: 500;
  transition: color var(--dur) var(--ease);
}
.about-detail-item a:hover { color: var(--blush-deep); }

/* ────────────────────────────────────────────
   SERVICES
────────────────────────────────────────────── */
.services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(203, 185, 164, 0.3);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--cream-dark);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(42,35,32,0.4) 100%);
}

.service-card-img--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream-dark) 100%);
}
.service-card-img--icon::after { display: none; }
.service-icon-large {
  width: 80px;
  height: 80px;
  color: var(--charcoal);
  opacity: 0.55;
}
.service-icon-large svg { width: 100%; height: 100%; }

.service-card-body {
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}
.service-card-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.price-tbd {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blush-deep);
  padding-top: 1.1rem;
  border-top: 1px solid var(--taupe);
}

/* Stagger reveals */
.services-grid .service-card:nth-child(2) { transition-delay: 0.07s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.14s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.21s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.28s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.35s; }

/* ────────────────────────────────────────────
   PULLQUOTE STRIPE
────────────────────────────────────────────── */
.pullquote-stripe {
  background: var(--charcoal-mid);
  padding: clamp(3rem, 6vw, 5rem) 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pullquote-stripe::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 22rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.pullquote-inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
}
.pullquote-text {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4vw, 2.5rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 1rem;
}
.pullquote-attr {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush-mid);
}

/* ────────────────────────────────────────────
   GALLERY
────────────────────────────────────────────── */
.gallery { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px 280px;
  grid-template-areas:
    "ga gb gc gd"
    "ga ge gf gd"
    "gg gh gh gh";
  gap: 1rem;
}
.gallery-item { overflow: hidden; border-radius: var(--radius-sm); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  will-change: transform;
}
.gallery-item:hover img { transform: scale(1.07); }

.gi-a { grid-area: ga; }
.gi-b { grid-area: gb; }
.gi-c { grid-area: gc; }
.gi-d { grid-area: gd; }
.gi-e { grid-area: ge; }
.gi-f { grid-area: gf; }
.gi-g { grid-area: gg; }
.gi-h { grid-area: gh; }

/* Stagger */
.gallery-item:nth-child(2)  { transition-delay: 0.06s; }
.gallery-item:nth-child(3)  { transition-delay: 0.12s; }
.gallery-item:nth-child(4)  { transition-delay: 0.18s; }
.gallery-item:nth-child(5)  { transition-delay: 0.24s; }
.gallery-item:nth-child(6)  { transition-delay: 0.30s; }
.gallery-item:nth-child(7)  { transition-delay: 0.36s; }
.gallery-item:nth-child(8)  { transition-delay: 0.42s; }

/* ────────────────────────────────────────────
   SHOWCASE STRIP
────────────────────────────────────────────── */
.showcase {
  background: var(--cream-dark);
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}
.showcase-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 0 1.75rem;
}
.showcase-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}

.showcase-track {
  display: flex;
  gap: 1.25rem;
  padding: 0 1.75rem;
  max-width: var(--max-w);
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.showcase-track::-webkit-scrollbar { display: none; }

.showcase-track figure {
  flex: 0 0 clamp(230px, 30vw, 310px);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.showcase-track img {
  width: 100%;
  height: clamp(270px, 35vw, 390px);
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.showcase-track figure:hover img { transform: scale(1.05); }
.showcase-track figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.25rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(42,35,32,0.7));
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ────────────────────────────────────────────
   TESTIMONIALS / REVIEW CAROUSEL
────────────────────────────────────────────── */
.testimonials { background: var(--cream); }

.review-summary-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.review-summary-stars {
  color: var(--blush-deep);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
}
.review-summary-text {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 400;
}

/* Carousel wrapper */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  --carousel-gap: 1.4rem;
}

.reviews-track {
  display: flex;
  gap: var(--carousel-gap);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  align-items: stretch;
}

/* Cards */
.review-card {
  flex: 0 0 calc((100% - 2 * var(--carousel-gap)) / 3);
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--taupe);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.review-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.av-1 { background: var(--blush); color: var(--charcoal); }
.av-2 { background: var(--taupe-deep); color: var(--white); }
.av-3 { background: var(--blush-deep); color: var(--white); }
.av-4 { background: var(--taupe-mid); color: var(--charcoal); }
.av-5 { background: var(--charcoal-mid); color: var(--white); }

.review-meta { flex: 1; min-width: 0; }
.review-name {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-stars {
  color: var(--blush-deep);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-top: 0.15rem;
}
.review-google {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.review-google svg { width: 20px; height: 20px; }

.review-text {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.72;
  font-style: italic;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Carousel controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--taupe-mid);
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease);
  flex-shrink: 0;
}
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-btn:hover:not(:disabled) {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
  transform: scale(1.08);
}
.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.carousel-progress-wrap {
  flex: 1;
  max-width: 280px;
  height: 3px;
  background: var(--taupe);
  border-radius: 999px;
  overflow: hidden;
}
.carousel-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--blush-deep);
  border-radius: 999px;
  transition: width 0.5s var(--ease);
}

/* Responsive card widths */
@media (max-width: 980px) {
  .review-card {
    flex: 0 0 calc((100% - var(--carousel-gap)) / 2);
  }
}
@media (max-width: 580px) {
  .review-card {
    flex: 0 0 100%;
  }
  .review-text { -webkit-line-clamp: 6; }
}

/* ────────────────────────────────────────────
   VISIT / HOURS / MAP
────────────────────────────────────────────── */
.visit { background: var(--white); }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: start;
}
.visit-info h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-bottom: 2rem;
}
.visit-block { margin-bottom: 2rem; }
.visit-block:last-child { margin-bottom: 0; }
.visit-block h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: 0.6rem;
}
.visit-block address a,
.visit-block p a {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.7;
  transition: color var(--dur) var(--ease);
}
.visit-block address a:hover,
.visit-block p a:hover { color: var(--blush-deep); }

.hours-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 380px;
}
.hours-table tr { border-bottom: 1px solid var(--taupe); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table th, .hours-table td {
  padding: 0.65rem 0;
  font-size: 0.97rem;
  font-weight: 400;
}
.hours-table th {
  text-align: left;
  color: var(--charcoal);
  font-weight: 500;
}
.hours-table td {
  text-align: right;
  color: var(--text-light);
}
.hours-table .closed-row th,
.hours-table .closed-row td {
  color: var(--taupe-mid);
}

.walk-in-note {
  margin-top: 1.1rem;
  font-size: 0.82rem;
  color: var(--blush-deep);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 440px;
  position: sticky;
  top: 6rem;
}
.visit-map iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: none;
}

/* ────────────────────────────────────────────
   CTA SECTION
────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  padding: clamp(5rem, 9vw, 8rem) 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(219,166,179,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-eyebrow { color: var(--blush-mid); }
.cta-inner h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 2.8rem;
  line-height: 1.65;
}
.cta-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cta-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.85rem 2rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  transition: all var(--dur) var(--ease);
  backdrop-filter: blur(4px);
}
.cta-contact-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
  transform: translateY(-2px);
}
.cta-contact-item span { font-size: 1.1rem; }

/* ────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  padding: clamp(3.5rem, 6vw, 5rem) 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr 0.8fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo {
  color: var(--white);
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-brand .logo span { color: var(--blush-mid); }
.footer-address {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}
.footer-address a {
  color: rgba(255,255,255,0.55);
  transition: color var(--dur) var(--ease);
}
.footer-address a:hover { color: var(--blush-mid); }

.footer-section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-mid);
  margin-bottom: 1.1rem;
}
.footer-hours ul { display: flex; flex-direction: column; gap: 0.42rem; }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  gap: 1rem;
  padding: 0.28rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-hours li:last-child { border-bottom: none; }
.footer-hours li span:first-child {
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  white-space: nowrap;
}
.footer-hours li span:last-child { white-space: nowrap; }
.footer-hours-closed span:first-child { color: rgba(255,255,255,0.3) !important; }
.footer-hours-closed span:last-child { color: rgba(255,255,255,0.3); font-style: italic; }

.footer-nav ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-nav a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--dur) var(--ease);
}
.footer-nav a:hover { color: var(--blush-mid); }

.footer-bottom-bar {
  padding: 1.4rem 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem;
}
.footer-bottom {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  font-style: italic;
}
.footer-credit {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.footer-credit:hover { color: var(--blush-mid); }

/* ────────────────────────────────────────────
   FAQ ACCORDION
────────────────────────────────────────────── */
.faq { background: var(--cream); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--taupe);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.faq-item[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--blush-mid);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color var(--dur) var(--ease);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; }
.faq-item[open] .faq-q { color: var(--blush-deep); }

.faq-q-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.faq-q-icon svg {
  width: 12px; height: 12px;
  stroke: var(--taupe-deep);
  transition: stroke var(--dur) var(--ease);
}
.faq-item[open] .faq-q-icon {
  background: var(--blush);
  transform: rotate(180deg);
}
.faq-item[open] .faq-q-icon svg { stroke: var(--blush-deep); }

.faq-a {
  padding: 0 1.5rem 1.25rem;
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.75;
  animation: faqSlideIn 0.32s var(--ease);
}
@keyframes faqSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

/* ────────────────────────────────────────────
   SOCIAL LINKS (footer)
────────────────────────────────────────────── */
.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.6rem 0 0.2rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color var(--dur) var(--ease);
}
.social-link:hover { color: var(--blush-mid); }
.social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ────────────────────────────────────────────
   FLOATING CALL BUTTON (mobile)
────────────────────────────────────────────── */
.float-call {
  display: none;
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 900;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.35rem 0.8rem 1.1rem;
  background: var(--blush-deep);
  color: var(--white);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 28px -6px rgba(196, 131, 154, 0.6);
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  pointer-events: none;
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease),
    background 0.25s var(--ease);
}
.float-call.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.float-call:hover { background: var(--charcoal); }
.float-call svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media (max-width: 780px) {
  .float-call { display: flex; }
  .back-to-top { bottom: 5.5rem; }
}

/* ────────────────────────────────────────────
   BACK TO TOP
────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 1.4rem;
  left: 1.4rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(42,35,32,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease),
    background 0.25s var(--ease);
}
.back-to-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.back-to-top:hover { background: var(--blush-deep); }
.back-to-top svg { width: 20px; height: 20px; }

/* ────────────────────────────────────────────
   SCROLL REVEAL
────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  0.85s var(--ease),
    transform 0.85s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ────────────────────────────────────────────
   RESPONSIVE — Tablet
────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px 240px;
    grid-template-areas:
      "ga gb gc"
      "ga gd ge"
      "gf gh gh";
  }
  .gi-f { grid-area: gf; }
  .gi-g { grid-area: gg; display: none; }
  .gi-h { grid-area: gh; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { position: static; min-height: 360px; }
  .visit-map iframe { height: 360px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ────────────────────────────────────────────
   RESPONSIVE — Mobile nav
────────────────────────────────────────────── */
@media (max-width: 780px) {
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 360px);
    height: 100dvh;
    background: var(--cream);
    box-shadow: -16px 0 50px -20px rgba(0,0,0,0.35);
    transform: translateX(100%);
    transition: transform var(--dur) var(--ease);
    display: flex;
    align-items: center;
    z-index: 350;
    overflow-y: auto;
  }
  .nav-open .main-nav { transform: translateX(0); }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 2rem 0;
    width: 100%;
  }
  .main-nav li a {
    display: block;
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
    color: var(--charcoal) !important;
    border-bottom: 1px solid var(--taupe);
  }
  .main-nav a::after { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas: none;
    display: grid;
  }
  .gallery-item {
    grid-area: auto !important;
    height: 200px;
  }
  .trust-bar-inner { flex-direction: column; gap: 0.5rem; }
  .trust-divider { width: 40px; height: 1px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-bar { flex-direction: column; align-items: center; text-align: center; }
}

/* ────────────────────────────────────────────
   RESPONSIVE — Small mobile
────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; }
  .cta-contact { width: 100%; }
  .cta-contact-item { width: 100%; justify-content: center; }
  .about-details { flex-direction: column; gap: 1.25rem; }
  .gallery-item { height: 165px; }
  .showcase-track { padding: 0 1rem; }
}
