/* ========================================
   LUMIERE - Hair Studio CSS
   ======================================== */

:root {
  --gold: #c9a96e;
  --gold-light: #dfc08a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --mid: #2c2c2c;
  --light: #f5f3ef;
  --white: #ffffff;
  --text-body: #555555;
  --text-light: #888888;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", sans-serif;
  --script: "Great Vibes", cursive;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/*  UTILITIES  */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.gold-word {
  color: var(--gold);
}
.gold-script {
  color: var(--gold);
}

/*  NAV  */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: transparent;
  transition:
    background var(--transition),
    padding var(--transition);
}
.nav.scrolled {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.8rem 3rem;
}
.nav-social,
.nav-links,
.nav-icons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav-social a,
.nav-icons a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
  display: flex;
}
.nav-social a:hover,
.nav-icons a:hover {
  color: var(--gold);
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-logo {
  text-align: center;
  color: var(--white);
}
.nav-logo .script-tag {
  font-family: var(--script);
  font-size: 1.3rem;
  color: var(--gold);
}
.nav-logo em {
  font-family: var(--sans);
  font-size: 0.5rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-style: normal;
  color: rgba(255, 255, 255, 0.6);
}

/*  HERO  */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1008 0%, #0d0d0d 40%, #1a1208 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
}
/* Decorative hair silhouette effect */
.hero-model-placeholder {
  position: absolute;
  right: 5%;
  top: 0;
  bottom: 0;
  width: 55%;
  background:
    radial-gradient(
      ellipse 60% 90% at 70% 30%,
      rgba(201, 169, 110, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 60% 70%,
      rgba(139, 90, 43, 0.12) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
}
/* Flowing hair lines */
.hero-model-placeholder::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 10%;
  width: 70%;
  height: 55%;
  background: repeating-linear-gradient(
    -25deg,
    transparent,
    transparent 3px,
    rgba(201, 169, 110, 0.04) 3px,
    rgba(201, 169, 110, 0.04) 4px
  );
  border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  animation: heroIn 1.2s ease both;
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-script {
  font-family: var(--script);
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  animation: heroIn 1.2s 0.2s ease both;
}
.hero-logo {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  line-height: 1;
  animation: heroIn 1.2s 0.4s ease both;
}
.hero-logo .dot {
  color: var(--gold);
  font-size: 0.4em;
  vertical-align: middle;
}
.hero-tagline {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
  animation: heroIn 1.2s 0.6s ease both;
}
.hero-divider {
  margin-top: 1.5rem;
  opacity: 0.4;
  animation: heroIn 1.2s 0.8s ease both;
}
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/*  BOOKING BAR  */
.booking-bar {
  background: var(--dark-2);
  padding: 1.5rem 3rem;
}
.booking-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.booking-inner input,
.booking-inner select {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.6rem 0;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  outline: none;
  transition: border-color var(--transition);
}
.booking-inner input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.booking-inner select option {
  background: var(--dark);
  color: var(--white);
}
.booking-inner input:focus,
.booking-inner select:focus {
  border-color: var(--gold);
}

/*  BUTTONS  */
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 0.7rem 2rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-gold-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.6rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: all var(--transition);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--dark);
}
.btn-outline-white {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  padding: 0.75rem 2.5rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 2rem;
  transition: all var(--transition);
}
.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.service-link {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 1.5rem;
  display: inline-block;
  position: relative;
  padding-bottom: 3px;
}
.service-link.gold {
  color: var(--gold);
}
.service-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-link:hover::after {
  transform: scaleX(1);
}

/*  SERVICES 3-COL  */
.services {
  padding: 0;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.service-card {
  padding: 4rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition);
}
.service-card.light {
  background: var(--white);
}
.service-card.dark {
  background: var(--dark);
  color: var(--white);
}
.service-card.featured {
  position: relative;
  z-index: 1;
  transform: scaleY(1.04);
}
.service-eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.service-card.dark .service-eyebrow {
  color: rgba(255, 255, 255, 0.4);
}
.service-script-title {
  font-family: var(--script);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.service-card.dark .service-script-title {
  color: var(--gold);
}
.service-heading {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.service-card.dark .service-heading {
  color: var(--white);
}
.service-sub {
  font-size: 0.68rem;
  color: var(--text-body);
  letter-spacing: 0.05em;
}
.service-card.dark .service-sub {
  color: rgba(255, 255, 255, 0.5);
}

/*  QUOTE BAND  */
.quote-band {
  position: relative;
  padding: 8rem 3rem;
  background: linear-gradient(135deg, #0e0c09 0%, #1a1710 50%, #0a0a0a 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.quote-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--script);
  font-size: 16rem;
  color: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
.quote-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.quote-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.quote-body {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  font-weight: 300;
}

/*  GALLERY  */
.gallery {
  position: relative;
  background: var(--light);
  padding: 3rem;
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  transition: transform var(--transition);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background var(--transition);
}
.gallery-item:hover {
  transform: scale(1.02);
}
.gallery-item:hover::after {
  background: rgba(201, 169, 110, 0.15);
}
.gallery-item.tall {
  grid-row: 1 / 3;
}
.gallery-item.wide {
  grid-column: 2 / 4;
}
.gallery-nav {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
  display: flex;
  gap: 0.5rem;
}
.gnav-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.gnav-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/*  IMPRESS / READY TO TRANSFORM  */
.impress-section {
  position: relative;
  background: var(--dark-2);
  padding: 0;
  overflow: hidden;
  min-height: 500px;
}
.impress-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1200&q=60")
    center/cover;
  opacity: 0.08;
}
.impress-bg-text {
  position: absolute;
  bottom: -2rem;
  left: -1rem;
  font-family: var(--script);
  font-size: 14rem;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  line-height: 1;
}
.impress-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.impress-text {
  padding: 5rem 4rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.impress-heading {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.impress-text p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.9;
  font-weight: 300;
}
.impress-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
}
.impress-img-top,
.impress-img-bot {
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.8s ease;
}
.impress-img-top:hover,
.impress-img-bot:hover {
  transform: scale(1.03);
}

/*  PRICE LIST  */
.prices {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  min-height: 400px;
  background: var(--white);
}
.prices-left {
  position: relative;
  background: var(--light);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.prices-bg-text {
  position: absolute;
  top: 50%;
  left: -1rem;
  transform: translateY(-50%);
  font-family: var(--script);
  font-size: 10rem;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  pointer-events: none;
}
.prices-heading {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
.prices-right {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  gap: 1rem;
}
.price-row:last-child {
  border-bottom: none;
}
.price-name {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2rem;
}
.price-desc {
  font-size: 0.7rem;
  color: var(--text-body);
}
.price-val {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  white-space: nowrap;
}
.price-val::before {
  content: "\00A3";
  font-size: 0.9rem;
  vertical-align: super;
}

/*  SHOP  */
.shop {
  background: var(--dark);
  padding: 5rem 3rem;
}
.shop-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.shop-card {
  background: var(--dark-3);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: transform var(--transition);
}
.shop-card:hover {
  transform: translateY(-4px);
}
.shop-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.6rem;
}
.shop-badge.new {
  background: var(--gold);
  color: var(--dark);
}
.shop-badge.sale {
  background: #e05252;
  color: var(--white);
}
.shop-img-wrap {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
/* Product placeholders drawn in CSS */
.shop-img-placeholder {
  border-radius: 4px;
}
.shop-img-placeholder.serum {
  width: 60px;
  height: 130px;
  background: linear-gradient(180deg, #d4c5a0 0%, #b89a6a 100%);
  border-radius: 30px 30px 10px 10px;
  position: relative;
  box-shadow: 4px 8px 24px rgba(0, 0, 0, 0.4);
}
.shop-img-placeholder.serum::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 20px;
  background: #888;
  border-radius: 4px 4px 0 0;
}
.shop-img-placeholder.spray {
  width: 50px;
  height: 140px;
  background: linear-gradient(180deg, #c0c0c0 0%, #888 100%);
  border-radius: 8px 8px 4px 4px;
  position: relative;
  box-shadow: 4px 8px 24px rgba(0, 0, 0, 0.4);
}
.shop-img-placeholder.spray::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 22px;
  background: #777;
  border-radius: 4px;
}
.shop-img-placeholder.brush {
  width: 30px;
  height: 140px;
  background: linear-gradient(180deg, #c87941 0%, #8b4513 100%);
  border-radius: 6px;
  position: relative;
  box-shadow: 4px 8px 24px rgba(0, 0, 0, 0.4);
}
.shop-img-placeholder.brush::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10px;
  width: 50px;
  height: 40px;
  background: #5a3010;
  border-radius: 0 0 4px 4px;
}
.shop-category {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.shop-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.shop-price {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/*  BRANDS  */
.brands {
  background: var(--white);
  padding: 3.5rem 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.brands-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.brand-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.3);
  letter-spacing: 0.05em;
  transition: color var(--transition);
  cursor: default;
  text-align: center;
}
.brand-logo:hover {
  color: var(--gold);
}
.script-brand {
  font-family: var(--script);
  font-size: 1.3rem;
  line-height: 1.1;
}

/*  NEWSLETTER  */
.newsletter {
  background: var(--light);
  padding: 5rem 3rem;
  text-align: center;
}
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
}
.newsletter h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  line-height: 1.4;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-right: none;
  font-family: var(--sans);
  font-size: 0.7rem;
  outline: none;
  background: var(--white);
}
.newsletter-form input:focus {
  border-color: var(--gold);
}

/*  TESTIMONIALS  */
.testimonials {
  position: relative;
  background: var(--dark-2);
  padding: 7rem 3rem;
  text-align: center;
  overflow: hidden;
}
.testimonials-bg-text {
  position: absolute;
  bottom: -4rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--script);
  font-size: 16rem;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  pointer-events: none;
}
.testimonials-inner {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
}
.quote-icon {
  display: block;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1.5rem;
}
.section-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--white);
  margin-bottom: 3rem;
}
.testimonial {
  display: none;
  animation: fadeTestimonial 0.6s ease;
}
.testimonial.active {
  display: block;
}
@keyframes fadeTestimonial {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.testimonial p {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}
.testimonial-author em {
  color: rgba(255, 255, 255, 0.4);
  font-style: normal;
}
.testimonial-dots {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}
.tdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background var(--transition);
}
.tdot.active {
  background: var(--gold);
}

/*  CONTACT  */
.contact {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-map {
  background: #e8e4dd;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* Decorative map grid */
.contact-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
/* Road lines */
.contact-map::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 10%;
  right: 10%;
  height: 3px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow:
    0 40px 0 rgba(255, 255, 255, 0.6),
    0 -50px 0 rgba(255, 255, 255, 0.4);
}
.map-placeholder {
  position: relative;
  z-index: 1;
  text-align: center;
}
.map-pin {
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.map-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--dark);
  margin-top: 0.5rem;
  background: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.contact-info {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-heading {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.contact-info > p {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-body);
  line-height: 1.5;
}
.contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/*  FOOTER  */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 3rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.footer-col p,
.footer-col li {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}
.footer-col ul {
  list-style: none;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}
.footer-social a {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.5rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  padding: 1.5rem 0;
}
.footer-bottom p {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.05em;
}

/*  SIDE NAV DOTS  */
.side-nav {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.snav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: block;
  transition: all var(--transition);
}
.snav-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

/*  REVEAL ANIMATION  */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/*  RESPONSIVE  */
@media (max-width: 900px) {
  .nav-social,
  .nav-icons {
    display: none;
  }
  .nav {
    padding: 1rem 1.5rem;
  }
  .hero-logo {
    font-size: clamp(2.5rem, 12vw, 5rem);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card.featured {
    transform: none;
  }
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.tall {
    grid-row: auto;
  }
  .gallery-item.wide {
    grid-column: auto;
  }
  .impress-grid {
    grid-template-columns: 1fr;
  }
  .impress-images {
    display: none;
  }
  .prices {
    grid-template-columns: 1fr;
  }
  .shop-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-map {
    min-height: 250px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .booking-inner {
    flex-wrap: wrap;
  }
  .booking-inner input,
  .booking-inner select {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  .shop-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .side-nav {
    display: none;
  }
  .quote-bg-text {
    font-size: 8rem;
  }
}
