/* =========================================================
   THE SURREY LASH STUDIO — v6
   Glassmorphic luxury: frosted panels, luminous borders,
   magnetic buttons, marquee, tilt cards
   ========================================================= */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --espresso:     #3B2A1E;
  --chocolate:    #2A1D14;
  --walnut:       #5A4636;
  --caramel:      #9E7D5E;
  --stone:        #C4AD94;
  --cream:        #F5EDE4;
  --cream-dark:   #EDE3D7;
  --warm-white:   #FAF7F3;
  --black:        #1A1510;
  --accent:       #8B3A3A;

  --glass-light:  rgba(245, 237, 228, 0.45);
  --glass-dark:   rgba(26, 21, 16, 0.5);
  --glass-border: rgba(245, 237, 228, 0.15);
  --glass-glow:   rgba(158, 125, 94, 0.12);
  --glass-blur:   20px;

  --font:         'Jost', 'Futura', sans-serif;
  --serif:        'Cormorant', 'Georgia', serif;

  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--espresso);
  background: var(--cream);
  overflow-x: hidden;
  letter-spacing: 0.01em;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }
button { cursor: pointer; }




/* ===================== TYPOGRAPHY ===================== */

.mega {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--espresso);
}

.mega em {
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
}

/* Split text reveal */
.split-heading .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.split-heading.visible .char {
  opacity: 1;
  transform: translateY(0);
}


/* ===================== BUTTONS ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 18px 44px;
  border: 1px solid var(--espresso);
  background: transparent;
  color: var(--espresso);
  position: relative;
  overflow: hidden;
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.35s var(--ease);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--espresso);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
}

.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--cream); transform: translateY(-2px); }

.btn span, .btn svg { position: relative; z-index: 1; }

/* Magnetic effect applied via JS */
.btn--magnetic {
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.35s var(--ease);
}


/* ===================== GLASS UTILITY ===================== */

.glass {
  background: var(--glass-light);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(59, 42, 30, 0.06), inset 0 1px 0 rgba(255,255,255,0.3);
}

.glass--dark {
  background: var(--glass-dark);
  border-color: rgba(158, 125, 94, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.05);
}


/* ===================== LIGHTBOX ===================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.5s var(--ease);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox.active .lightbox__img {
  transform: scale(1);
  opacity: 1;
}

.lightbox__close {
  position: absolute;
  top: 28px; right: 32px;
  background: none;
  border: none;
  color: var(--stone);
  font-size: 2rem;
  font-weight: 200;
  line-height: 1;
  transition: color 0.3s, transform 0.3s var(--ease);
  z-index: 1;
  cursor: pointer;
}

.lightbox__close:hover {
  color: var(--cream);
  transform: scale(1.15);
}

.gallery__item {
  cursor: pointer;
}


/* ===================== NAVIGATION ===================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px clamp(24px, 5vw, 60px);
  transition: all 0.6s var(--ease);
}

.nav--scrolled {
  background: rgba(26, 21, 16, 0.45);
  backdrop-filter: blur(40px) saturate(1.2);
  -webkit-backdrop-filter: blur(40px) saturate(1.2);
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(158, 125, 94, 0.12);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255,255,255,0.04);
}

.nav--hidden {
  transform: translateY(-100%);
}

.nav__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav__logo img {
  height: 40px;
  width: auto;
  opacity: 0.95;
  transition: opacity 0.3s;
}

.nav__logo:hover img {
  opacity: 0.7;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav__links a {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 237, 228, 0.85);
  transition: color 0.3s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--caramel);
  transition: width 0.5s var(--ease);
}

.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--cream);
  transition: all 0.4s var(--ease);
  transform-origin: center;
}

.nav__toggle.active span:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}

.nav__toggle.active span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}


/* ===================== HERO ===================== */

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: var(--black);
}

.hero__image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
}

.hero.is-loaded .hero__image { opacity: 1; }

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  will-change: transform;
}

/* Soft scrim so the nav stays legible over the pale ceiling */
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 21, 16, 0.32) 0%, rgba(26, 21, 16, 0.08) 22%, transparent 40%),
    linear-gradient(0deg, rgba(26, 21, 16, 0.55) 0%, rgba(26, 21, 16, 0.25) 18%, transparent 38%);
  pointer-events: none;
}

/* Logo box + CTA, stacked and centred */
.hero__content {
  position: absolute;
  left: 50%;
  top: 15%;
  transform: translateX(-50%);
  width: min(50%, 520px);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

/* Faded box holding the logo — box and logo fade in as one */
.hero__panel {
  width: 100%;
  padding: 2% 3%;
  overflow: hidden;
  background: rgba(126, 116, 100, 0.66);
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}

.hero.is-loaded .hero__panel {
  opacity: 1;
  transition-delay: 0.7s;
}

.hero__logo {
  display: block;
  width: 100%;
  aspect-ratio: 2.55 / 1;
  object-fit: cover;
  object-position: center;
  transform: scale(1.28);
}

.hero__cta {
  position: absolute;
  left: 50%;
  bottom: clamp(44px, 8vh, 80px);
  transform: translateX(-50%) translateY(14px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.hero__cta:hover { opacity: 0.75; }

.hero.is-loaded .hero__cta {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition-delay: 1.9s, 1.9s;
}

.hero__cta-arrow {
  width: 11px;
  height: 11px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.35));
  animation: ctaBounce 2.2s var(--ease) infinite;
}

@keyframes ctaBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.6; }
  50%      { transform: rotate(45deg) translate(3px, 3px); opacity: 1; }
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  right: clamp(24px, 5vw, 60px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}

.hero__scroll span {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(158, 125, 94, 0.2);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--caramel);
  animation: scrollPulse 2.4s var(--ease-smooth) infinite;
}

.hero__scroll-arrow {
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--caramel);
  border-bottom: 1px solid var(--caramel);
  transform: rotate(45deg);
  animation: scrollBounce 2s var(--ease) infinite;
}

@keyframes scrollPulse {
  0%   { top: -100%; }
  50%  { top: 0; }
  100% { top: 100%; }
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50%      { transform: rotate(45deg) translateY(3px); opacity: 0.8; }
}


/* ===================== ABOUT ===================== */

.about {
  background: var(--cream);
  padding: clamp(80px, 10vw, 160px) clamp(24px, 5vw, 80px);
  position: relative;
}

.about::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/texture-plaster.jpg') center / cover no-repeat;
  opacity: 0.04;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about__heading {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.about__text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--espresso);
  margin-bottom: 24px;
  max-width: 440px;
  letter-spacing: 0.015em;
}

.about__images {
  align-self: center;
}

.about__images img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
}

.about__cta {
  display: inline-flex;
  width: fit-content;
  margin: 28px auto 0;
}

.about__images {
  display: flex;
  flex-direction: column;
}


/* ===================== TESTIMONIALS ===================== */

.testimonials {
  background: var(--black);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}

.testimonials::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/texture-plaster.jpg') center / cover no-repeat;
  opacity: 0.06;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.testimonials__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials__heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--cream);
  margin-bottom: clamp(48px, 6vw, 72px);
  text-align: center;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 36px);
}

/* Glassmorphic testimonial cards */
.testimonial-card {
  background: rgba(26, 21, 16, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(158, 125, 94, 0.1);
  border-radius: 2px;
  padding: clamp(28px, 3vw, 40px);
  transition: transform 0.6s var(--ease), border-color 0.4s, box-shadow 0.6s var(--ease);
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158, 125, 94, 0.3), transparent);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(158, 125, 94, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.8;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.testimonial-card cite {
  display: block;
  margin-top: 28px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--caramel);
}


/* ===================== TREATMENTS ===================== */

.treatments {
  background: var(--warm-white);
  padding: clamp(80px, 10vw, 160px) clamp(24px, 5vw, 80px);
  position: relative;
}

.treatments::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/texture-plaster.jpg') center / cover no-repeat;
  opacity: 0.04;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.treatments__header {
  max-width: 1200px;
  margin: 0 auto clamp(56px, 7vw, 100px);
  position: relative;
  z-index: 1;
}

.treatments__lead {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--espresso);
  max-width: 440px;
  margin-top: 24px;
  letter-spacing: 0.015em;
}

.treatments__grid {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
}

/* Service cards */
.t-card {
  background: var(--cream);
  border: 1px solid rgba(158, 125, 94, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.4s;
  position: relative;
  box-shadow: 0 4px 20px rgba(59, 42, 30, 0.06);
}

.t-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--caramel), var(--stone));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  border-radius: 12px 12px 0 0;
}

.t-card:hover::after {
  opacity: 1;
}

.t-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(59, 42, 30, 0.12);
  border-color: var(--caramel);
}

.t-card__img {
  overflow: hidden;
}

.t-card__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.t-card:hover .t-card__img img {
  transform: scale(1.08);
}

.t-card__body {
  padding: clamp(28px, 3vw, 44px);
  border-top: 1px solid rgba(158, 125, 94, 0.1);
}

.t-card__body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.12;
  color: var(--espresso);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.t-card__body h3 em {
  font-style: italic;
  font-weight: 400;
}

.t-card__body > p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--walnut);
  margin-bottom: 20px;
  letter-spacing: 0.015em;
}

.t-card__prices {
  border-top: 1px solid rgba(196, 173, 148, 0.25);
  padding-top: 14px;
}

.t-card__prices > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 5px 0;
}

.t-card__prices dt {
  font-size: 13px;
  font-weight: 300;
  color: var(--walnut);
  letter-spacing: 0.03em;
}

.t-card__prices dd {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--espresso);
  letter-spacing: -0.01em;
}


/* Image-free variant: add .treatments--plain to the section */
.treatments--plain .treatments__grid { counter-reset: treat; }
.treatments--plain .t-card__img { display: none; }

.treatments--plain .t-card__body {
  border-top: none;
  padding: clamp(32px, 3.4vw, 48px) clamp(28px, 3vw, 44px) clamp(28px, 3vw, 40px);
}

.treatments--plain .t-card__body::before {
  counter-increment: treat;
  content: counter(treat, decimal-leading-zero);
  display: block;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.32em;
  color: var(--caramel);
  margin-bottom: 20px;
}

.treatments--plain .t-card__body h3 { margin-bottom: 18px; }
.treatments--plain .t-card__prices { margin-top: auto; }
.t-card__cta {
  margin-top: 24px;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
}
.treatments--plain .t-card__body { display: flex; flex-direction: column; height: 100%; }


/* ===================== GALLERY ===================== */

.gallery {
  background: var(--cream);
  padding: clamp(80px, 10vw, 160px) clamp(24px, 5vw, 80px);
  position: relative;
}

.gallery::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/texture-plaster.jpg') center / cover no-repeat;
  opacity: 0.04;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.gallery__header {
  max-width: 1200px;
  margin: 0 auto clamp(40px, 5vw, 72px);
}

.gallery__mosaic {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 10px;
}

.gallery__item {
  overflow: hidden;
  position: relative;
}

/* Glass overlay on hover */
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 16, 0.12);
  transition: background 0.6s var(--ease);
  pointer-events: none;
}

.gallery__item:hover::after {
  background: transparent;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}


/* ===================== BOOKING ===================== */

.booking {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 80px);
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.booking::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/texture-plaster.jpg') center / cover no-repeat;
  opacity: 0.06;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

/* Glass orb behind booking */
.booking__orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158, 125, 94, 0.06) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

/* Booking CTA — no glass panel, full-width elegant layout */
.booking__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0;
}

.booking__content .mega {
  color: var(--cream);
  margin-bottom: 20px;
}

.booking__content .booking__label {
  display: block;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 24px;
}

.booking__content p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.booking__divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--caramel), transparent);
  margin: 36px auto 40px;
}

.booking__btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.booking .btn {
  border-color: rgba(158, 125, 94, 0.35);
  color: var(--cream);
  background: rgba(245, 237, 228, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 18px 48px;
  font-size: 11px;
  transition: all 0.5s var(--ease);
}

.booking .btn::before {
  background: var(--caramel);
  border-radius: 100px;
}

.booking .btn:hover {
  color: var(--black);
  border-color: var(--caramel);
  box-shadow: 0 8px 32px rgba(158, 125, 94, 0.2);
}

.booking__note {
  margin-top: 32px;
  font-size: 13px;
  font-weight: 300;
  color: var(--stone);
  letter-spacing: 0.01em;
}


/* ===================== FOOTER ===================== */

.footer {
  position: relative;
  background: var(--black);
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 80px) 28px;
  overflow: hidden;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.footer__logo {
  height: 44px;
  width: auto;
  margin-bottom: 24px;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.footer__logo:hover { opacity: 1; }

.footer__tagline {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--stone);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.footer__tagline em {
  font-weight: 400;
  font-style: italic;
  color: var(--caramel);
}

.footer__right {
  display: flex;
  gap: 56px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--cream);
  transition: color 0.3s, transform 0.3s var(--ease);
  display: inline-block;
}

.footer__col a:hover {
  color: var(--cream);
  transform: translateX(4px);
}

.footer__bar {
  position: relative; z-index: 1;
  max-width: 1200px;
  margin: clamp(48px, 6vw, 72px) auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(158, 125, 94, 0.12);
}

.footer__bar p {
  font-size: 11px;
  color: rgba(158, 125, 94, 0.5);
  letter-spacing: 0.04em;
}

.footer__watermark {
  position: absolute;
  bottom: -20px; right: -10px;
  font-family: var(--serif);
  font-size: clamp(100px, 16vw, 260px);
  font-weight: 300;
  font-style: italic;
  color: rgba(158, 125, 94, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 0.85;
}


/* ===================== ANIMATIONS ===================== */

.anim-fade {
  opacity: 0;
  transition: opacity 1s var(--ease);
}
.anim-fade.visible { opacity: 1; }

.anim-fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.anim-fade-up.visible { opacity: 1; transform: translateY(0); }

.anim-reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.anim-reveal.visible { opacity: 1; transform: translateY(0); }

/* Image reveal — clip-path wipe */
.img-reveal { overflow: hidden; }

.img-reveal.anim-img img {
  clip-path: inset(100% 0 0 0);
  transform: scale(1.15);
  transition: clip-path 1.3s var(--ease), transform 1.8s var(--ease);
}

.img-reveal.anim-img.visible img {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}


/* ===================== RESPONSIVE ===================== */

@media (min-width: 1025px) {
  .hero__content { top: 33%; }
}

@media (max-width: 1024px) {
  .hero__content { width: min(56%, 420px); }
}

@media (max-width: 900px) {
  /* Full-screen menu */
  .nav__links {
    position: fixed;
    inset: 0;
    height: 100vh;
    height: 100dvh;
    background: var(--cream);
    background-image: url('../assets/images/texture-plaster.jpg');
    background-size: cover;
    background-blend-mode: soft-light;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 80px 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.55s var(--ease), visibility 0.55s;
    z-index: 1;
  }

  .nav__links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__links li {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }

  .nav__links.open li { opacity: 1; transform: none; }
  .nav__links.open li:nth-child(1) { transition-delay: 0.18s; }
  .nav__links.open li:nth-child(2) { transition-delay: 0.26s; }
  .nav__links.open li:nth-child(3) { transition-delay: 0.34s; }
  .nav__links.open li:nth-child(4) { transition-delay: 0.42s; }

  .nav__links a {
    display: block;
    font-family: var(--serif);
    font-size: clamp(40px, 11vw, 60px);
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--espresso);
    padding: 10px 0;
    opacity: 1;
  }

  .nav__links a::after {
    bottom: 8px;
    height: 1px;
    background: var(--caramel);
  }

  .nav__links a:hover { color: var(--espresso); }

  /* Studio mark beneath the links */
  .nav__links::after {
    content: 'The Surrey Lash Studio  \00B7  Est 2009';
    position: absolute;
    bottom: 40px;
    left: 0; right: 0;
    text-align: center;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--caramel);
    opacity: 0;
    transition: opacity 0.8s var(--ease) 0.5s;
  }

  .nav__links.open::after { opacity: 1; }

  .nav__toggle { display: flex; }

  /* Nav chrome flips dark over the cream overlay */
  .nav__logo { position: relative; z-index: 2; }

  .nav--open,
  .nav--open.nav--scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
  }

  .nav--open .nav__logo img { filter: invert(1); opacity: 0.85; }
  .nav--open .nav__toggle span { background: var(--espresso); }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__images { max-width: 560px; margin: 0 auto; }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .treatments__grid { grid-template-columns: 1fr; }

  .gallery__mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 240px;
  }

  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--wide { grid-column: span 1; }

  .footer__inner { flex-direction: column; gap: 40px; }

}

@media (max-width: 560px) {
  body { font-size: 16px; }

  .hero { min-height: 100svh; }
  .hero__content { width: 60%; top: 17%; }
  .hero__panel { padding: 3% 4%; }
  .hero__cta { bottom: 14vh; }

  .gallery__mosaic { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery__item--tall { grid-row: span 1; }

  .booking__btns { flex-direction: column; align-items: stretch; }
  .booking__btns .btn { justify-content: center; }

  .footer__right { gap: 36px; }
  .footer__col a { padding: 3px 0; }

  .hero__scroll { display: none; }
}
