/* =========================================================
   INoiré Day Spa — Main Styles
   Brand: Black, Champagne Gold, Soft Pink, White
   Background image: Place hero-bg.jpeg in the same folder as index.html
   ========================================================= */

:root {
  --black: #0f0f0f;
  --charcoal: #1c1c1c;
  --champagne-gold: #c8b08a;
  --soft-pink: #d8a7a7;
  --white: #ffffff;
}

/* Base */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  background: var(--black);
  color: var(--white);
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
}

/* Hero */

.logo-glow {
  filter: drop-shadow(0 0 12px rgba(200, 176, 138, 0.5));
}
.site-logo {
   height: 180px;
  width: auto;
  object-fit: contain;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-bg.jpeg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.58);
  z-index: 1;
}

nav,
.hero-content {
  position: relative;
  z-index: 5;
}

.hero-content {
   min-height: 100vh;
  padding: 170px 2rem 80px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: white;
  margin: 0 auto;
}

.hero-trust {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: #c8b08a;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-location,
.hero-highlights {
  color: #c8b08a;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1.05;
  font-weight: 400;
  color: white;
  margin: 1rem 0;
}

.hero-subtitle {
  max-width: 650px;
  color: rgba(255,255,255,.85);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  text-decoration: none;
}

.btn-primary {
  background: #c8b08a;
  color: #0f0f0f;
}

.btn-secondary {
  border: 1px solid white;
  color: white;
}

.btn-primary:hover {
  background: #d8a7a7;
  color: #0f0f0f;
}

/* Navigation Links */
.site-nav {
   position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 24px 60px;
  transition: all 0.35s ease;
}

.site-nav.scrolled {
  background: rgba(15,15,15,.92);

  border-bottom:
  1px solid rgba(200,176,138,.15);

  backdrop-filter: blur(10px);

  padding-top: 18px;
  padding-bottom: 18px;
}

.site-nav.scrolled .site-logo {
  height: 95px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 42px;

}


.nav-links {
   display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  position: relative;
}

.nav-links a:hover {
  color: #d8a7a7;
}

/* Luxury Underline Animation */

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #c8b08a;
  transition: width .3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Highlight Shop */

.nav-shop {
  color: #c8b08a;
}

.nav-shop:hover {
  color: #d8a7a7;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 220px;

    background: rgba(15,15,15,.98);

    border: 1px solid rgba(200,176,138,.18);

    padding: 10px 0;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: all .3s ease;

    z-index: 9999;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 14px 24px;

    color: rgba(255,255,255,.85);
    text-decoration: none;

    transition: .3s ease;
}

.dropdown-menu a:hover {
    color: #d8a7a7;
    background: rgba(216,167,167,.08);
}


/* Luxury Divider */
.luxury-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--champagne-gold);
  font-size: 0.9rem;
}

.luxury-divider strong {
  color: #d8a7a7;
}

.divider-line {
  width: 2.5rem;
  height: 1px;
  background: var(--champagne-gold);
  opacity: 0.6;
}

/* Buttons */
.luxury-button-primary {
  transition: all 0.3s ease;
}

.luxury-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(200, 176, 138, 0.25);
}

.luxury-button-secondary {
  transition: all 0.3s ease;
}

.luxury-button-secondary:hover {
  box-shadow: 0 0 12px rgba(216, 167, 167, 0.45);
  border-color: var(--soft-pink);
}

.book-now-btn {
    margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 145px;
  padding: 12px 24px;

  border: 1px solid #c8b08a;
  color: #c8b08a;
  background: rgba(200, 176, 138, 0.08);

  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;

  transition: all 0.3s ease;
}
}

.book-now-btn:hover {
  background: #c8b08a;
  color: #0f0f0f;
  box-shadow: 0 0 18px rgba(200, 176, 138, 0.25);
}

.about-section {
  background: #0f0f0f;
  padding: 120px 8%;
  color: #ffffff;
}

.about-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-image-wrap {
  border: 1px solid rgba(200,176,138,.35);
  padding: 14px;
}

.about-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.about-content .section-label {
  color: #d8a7a7;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-size: .75rem;
  margin-bottom: 18px;
}

.about-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 28px;
}

.about-content p {
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-content strong {
  color: #c8b08a;
  font-weight: 500;
}

.about-signature {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-signature span {
  color: #c8b08a;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
}

.about-signature small {
  color: #d8a7a7;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .7rem;
}

.about-btn {
  display: inline-flex;
  padding: 14px 28px;
  border: 1px solid #c8b08a;
  color: #c8b08a;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  transition: .3s ease;
}

.about-btn:hover {
  background: #c8b08a;
  color: #0f0f0f;
}

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    height: 420px;
  }
}

/* Slideshow */
.slideshow-container {
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  position: relative;
}

```css
/* ==========================
   SERVICES SECTION
========================== */

.services-section {
    background: #0f0f0f;
    padding: 120px 8%;
    color: #ffffff;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.services-header .section-label {
    color: #E8C7C8;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .75rem;
    margin-bottom: 18px;
}

.services-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 400;
    margin-bottom: 24px;
}

.services-header p {
    color: rgba(255,255,255,.72);
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: #111111;
    overflow: hidden;
    border: 1px solid rgba(232,199,200,.15);
    transition: .35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(232,199,200,.35);
}

.service-image {
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 16px;
    color: white;
}

.service-content p {
    color: rgba(255,255,255,.72);
    line-height: 1.8;
}

/* CLIENT FAVORITE */

.service-highlight {
    margin-top: 60px;
    text-align: center;
    padding: 50px;
    border: 1px solid rgba(232,199,200,.15);
    background: #111111;
}

.highlight-badge {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #E8C7C8;
    color: #E8C7C8;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .75rem;
    margin-bottom: 20px;
}

.service-highlight h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 18px;
}

.service-highlight p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255,255,255,.72);
    line-height: 1.8;
}

/* CTA */

.services-footer {
    text-align: center;
    margin-top: 50px;
}

.services-footer p {
    color: rgba(255,255,255,.65);
    margin-bottom: 24px;
}

.services-btn {
    display: inline-block;
    padding: 16px 32px;
    border: 1px solid #E8C7C8;
    color: #E8C7C8;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .12em;
    transition: .3s ease;
}

.services-btn:hover {
    background: #E8C7C8;
    color: #0f0f0f;
}

@media (max-width: 950px) {

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

    .service-image img {
        height: 280px;
    }

    .service-highlight {
        padding: 35px 25px;
    }

}
/* ==========================
   SECTION TRANSITION
========================== */

.section-transition {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    padding: 40px 8%;

    background: #0f0f0f;
}

.transition-line {
    width: 140px;
    height: 1px;

    background: linear-gradient(
        to right,
        transparent,
        rgba(232,199,200,.45),
        transparent
    );
}

.transition-icon {
    color: #E8C7C8;
    font-size: 1.2rem;
    letter-spacing: .1em;
}

@media (max-width: 768px) {

    .transition-line {
        width: 80px;
    }

}
/* =========================
   GALLERY SECTION
========================= */

.gallery-section {
  background: #050505;
  padding: 120px 8%;
  color: #ffffff;
  overflow: hidden;
}

.gallery-container {
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.gallery-header .section-label {
  color: #d8a7a7;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-size: .75rem;
  margin-bottom: 18px;
}

.gallery-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 22px;
}

.gallery-header p {
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}

.gallery-slider {
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 10px;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  flex: 0 0 calc(33.333% - 19px);
  background: #111111;
  border: 1px solid rgba(200,176,138,.22);
  overflow: hidden;
}

.gallery-slide img,
.gallery-slide video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  padding: 24px;
}

.gallery-caption h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 8px;
}

.gallery-caption p {
  color: rgba(255,255,255,.68);
  line-height: 1.6;
  font-size: .95rem;
}

.gallery-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 5;

  width: 46px;
  height: 46px;

  border: 1px solid rgba(200,176,138,.45);
  background: rgba(15,15,15,.85);
  color: #c8b08a;

  font-size: 2rem;
  cursor: pointer;

  transition: .3s ease;
}

.gallery-arrow:hover {
  background: #c8b08a;
  color: #0f0f0f;
}

.gallery-arrow.prev {
  left: -20px;
}

.gallery-arrow.next {
  right: -20px;
}

.gallery-button-wrap {
  text-align: center;
  margin-top: 60px;
}

.gallery-btn {
  display: inline-flex;
  padding: 14px 30px;
  border: 1px solid #c8b08a;
  color: #c8b08a;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  transition: .3s ease;
}

.gallery-btn:hover {
  background: #c8b08a;
  color: #0f0f0f;
}

@media (max-width: 950px) {
  .gallery-slide {
    flex: 0 0 85%;
  }

  .gallery-arrow.prev {
    left: 5px;
  }

  .gallery-arrow.next {
    right: 5px;
  }

  .gallery-slide img,
  .gallery-slide video {
    height: 360px;
  }
}

.reviews-section {
  background: #0f0f0f;
  color: #ffffff;
  padding: 120px 8%;
  border-top: 1px solid rgba(200,176,138,.12);
}

.reviews-container {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.reviews-section .section-label {
  color: #d8a7a7;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-size: .75rem;
  margin-bottom: 18px;
}

.reviews-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 400;
  max-width: 850px;
  margin: 0 auto 24px;
}

.reviews-intro {
  max-width: 650px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}

.reviews-stats {
  margin-bottom: 60px;
}

.reviews-stats span {
  color: #c8b08a;
  letter-spacing: .12em;
}

.reviews-stats p {
  color: #d8a7a7;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  margin-top: 8px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: #111111;
  border: 1px solid rgba(200,176,138,.22);
  padding: 42px 34px;
  text-align: left;
  transition: .3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,167,167,.45);
  box-shadow: 0 20px 45px rgba(0,0,0,.28);
}

.review-stars {
  color: #c8b08a;
  letter-spacing: .12em;
  margin-bottom: 22px;
}

.review-title {
  color: #d8a7a7;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  margin-bottom: 16px;
}

.review-text {
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  margin-bottom: 24px;
}

.review-author {
  color: #c8b08a;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
}

.reviews-cta {
  margin-top: 55px;
}

.reviews-cta a {
  display: inline-flex;
  padding: 14px 28px;
  border: 1px solid #c8b08a;
  color: #c8b08a;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  transition: .3s ease;
}

.reviews-cta a:hover {
  background: #c8b08a;
  color: #0f0f0f;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   FAQ SECTION
========================== */

.faq-section {
  background: #0a0a0a;
  color: #ffffff;
  padding: 120px 8%;
  border-top: 1px solid rgba(200,176,138,.12);
}

.faq-container {
  max-width: 980px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.faq-header .section-label {
  color: #d8a7a7;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-size: .75rem;
  margin-bottom: 18px;
}

.faq-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 22px;
}

.faq-header p {
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}

.faq-list {
  border-top: 1px solid rgba(200,176,138,.22);
}

.faq-item {
  border-bottom: 1px solid rgba(200,176,138,.22);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 28px 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  color: #ffffff;
  cursor: pointer;

  font-family: "Raleway", sans-serif;
  text-align: left;
}

.faq-question span:first-child {
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.faq-icon {
  color: #c8b08a;
  font-size: 1.5rem;
  transition: .3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer p {
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  padding: 0 0 28px;
  max-width: 760px;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #d8a7a7;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 90px 6%;
  }

  .faq-question span:first-child {
    font-size: .86rem;
  }
}


/* ==========================
   CONTACT SECTION
========================== */

.contact-section {
    background: #0a0a0a;
    padding: 120px 8%;
    color: #ffffff;
}

.contact-container {
    max-width: 1180px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.contact-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 400;
    margin-bottom: 24px;
}

.contact-header p {
    color: rgba(255,255,255,.72);
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item h3 {
    margin: 0 0 8px;
    color: #E8C7C8;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.contact-item p {
    color: rgba(255,255,255,.72);
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #111111;
    border: 1px solid rgba(232,199,200,.18);
    padding: 16px;
    color: white;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #E8C7C8;
}

.contact-submit {
    background: #E8C7C8;
    color: #0f0f0f;
    border: none;
    padding: 16px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600;
}

.contact-submit:hover {
    opacity: .9;
}

.contact-link {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    transition: .3s ease;
}

.contact-link:hover {
    color: #E8C7C8;
}
.booking-cta {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 50px;
}

.book-btn {
    display: inline-block;
    background: #E8C7C8;
    color: #0f0f0f;
    text-decoration: none;
    padding: 16px 36px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.booking-note {
    margin-top: 18px;
    color: rgba(255,255,255,.65);
}

.booking-disclaimer {
    margin-top: 14px;
    font-size: .85rem;
    color: rgba(255,255,255,.5);
}

.booking-disclaimer a {
    color: #E8C7C8;
    text-decoration: none;
}

@media (max-width: 900px) {

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

}

```css
/* ==========================
   FOOTER
========================== */

.footer {
    background: #050505;
    border-top: 1px solid rgba(232,199,200,.12);
    padding-top: 80px;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;

    padding: 0 8% 60px;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-column h3 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 18px;
}

.footer-column h4 {
    color: #E8C7C8;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: .8rem;
    margin-bottom: 20px;
}

.footer-column p {
    color: rgba(255,255,255,.65);
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: .3s ease;
}

.footer-column a:hover {
    color: #E8C7C8;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer-social a {
    color: #E8C7C8;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    padding: 30px 8%;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-legal a {
    color: #E8C7C8;
    text-decoration: none;
    font-size: .85rem;
}

.footer-bottom p {
    color: rgba(255,255,255,.55);
    margin: 8px 0;
}

.site-credit a {
    color: #C9A84C;
    text-decoration: none;
}

.site-credit a:hover {
    color: #E8C7C8;
}

@media (max-width: 950px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }

}

/* Mobile refinements */
@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    background-position: center;
  }

  .logo-glow {
    filter: drop-shadow(0 0 8px rgba(200, 176, 138, 0.45));
  }
}

@media (max-width: 768px) {
  .site-logo {
    height: 90px;
  }
  .hero-content {
    transform: translateX(0);
  }
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10001;
}

.mobile-menu-btn span {
  width: 28px;
  height: 2px;
  background: #c8b08a;
  display: block;
}

.mobile-menu {
  display: none;
}

@media (max-width: 900px) {
  .nav-links,
  .book-now-btn {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    height: 100vh;
    background: #0a0a0a;
    z-index: 10000;
    padding: 120px 34px 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: right .35s ease;
    border-left: 1px solid rgba(200,176,138,.2);
  }

  .mobile-menu.active {
    right: 0;
  }

  .mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .8rem;
  }

  .mobile-menu a:hover {
    color: #d8a7a7;
  }

  .mobile-book-btn {
    margin-top: 20px;
    color: #0f0f0f !important;
    background: #c8b08a;
    padding: 14px 18px;
    text-align: center;
  }
}

.mobile-menu-btn {
  position: relative;
  width: 32px;
  height: 32px;
  z-index: 10002;
}

.mobile-menu-btn span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #c8b08a;
  transition: all .3s ease;
}

.mobile-menu-btn span:nth-child(1) {
  top: 8px;
}

.mobile-menu-btn span:nth-child(2) {
  top: 15px;
}

.mobile-menu-btn span:nth-child(3) {
  top: 22px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 15px;
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 15px;
}

.mobile-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
@media (max-width: 900px) {

  .services-grid,
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    gap: 22px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 18px;
  }

  .services-grid::-webkit-scrollbar,
  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card,
  .review-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

}