/* =========================================================
   CALORE — Luxury Beauty Salon  |  styles.css
   Design: Olive Green + Champagne Gold luxury spa theme
   ========================================================= */

/* ── CSS Custom Properties ── */
:root {
  /* Warm amber-brown palette extracted from hero image */
  --bg-deep:      #1a1508;
  --bg-dark:      #2b2a1a;
  --bg-mid:       #4a4a2a;
  --bg-card:      #221d0c;

  --amber-mid:    #7a6a2f;
  --amber-light:  #9a8840;

  --gold-light:   #f1e6c5;
  --gold:         #c2a85a;
  --gold-dark:    #9a7e2a;
  --gold-glow:    rgba(194, 168, 90, 0.50);

  --text-white:   #f5ead0;
  --text-muted:   rgba(245, 234, 208, 0.70);
  --text-dim:     rgba(245, 234, 208, 0.35);

  --border:       rgba(194, 168, 90, 0.20);
  --border-hover: rgba(194, 168, 90, 0.50);

  --radius-sm:    6px;
  --radius-md:    14px;
  --radius-lg:    28px;

  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold:  0 0 32px rgba(194, 168, 90, 0.32);
  --shadow-card:  0 12px 48px rgba(0,0,0,0.60);

  --nav-h:        80px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Raleway', 'Helvetica Neue', sans-serif;
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -8%,  rgba(122, 106, 47, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 55% 40% at 92% 108%, rgba(194, 168, 90, 0.09) 0%, transparent 58%),
    radial-gradient(ellipse 40% 30% at 8%  85%,  rgba(74,  74,  42, 0.18) 0%, transparent 55%);
  color: var(--text-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-eyebrow {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
}
.section-heading em { font-style: italic; color: var(--gold-light); }
.section-heading.centered { text-align: center; }

/* ── Particles Canvas ── */
#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.75;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===============================================================
   NAVBAR
   =============================================================== */
.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  padding: 0 48px;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 21, 8, 0.97);
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 2px 28px rgba(0,0,0,0.60), 0 1px 0 rgba(194,168,90,0.14);
}

.navbar__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.navbar__logo {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.navbar__logo:hover { color: #fff; }

/* Nav links */
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar__link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.85);
  position: relative;
  transition: color var(--transition);
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.navbar__link:hover { color: var(--gold-light); }
.navbar__link:hover::after { width: 100%; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1100;
}
.navbar__hamburger span {
  display: block;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===============================================================
   HERO
   =============================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background image — the full model photo fills the whole hero,
   positioned toward the right half */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../Public/Image.jpeg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1.06); }

/* Ambient glow blobs layered behind content */
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__glow::before {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 90, 30, 0.32) 0%, transparent 70%);
  top: -80px;
  left: -100px;
  filter: blur(60px);
  animation: blobDrift 14s ease-in-out infinite alternate;
}
.hero__glow::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 168, 90, 0.18) 0%, transparent 70%);
  bottom: 60px;
  left: 180px;
  filter: blur(80px);
  animation: blobDrift 18s ease-in-out infinite alternate-reverse;
}

@keyframes blobDrift {
  0%   { transform: translate(0px, 0px) scale(1); }
  50%  { transform: translate(40px, 25px) scale(1.08); }
  100% { transform: translate(-20px, 40px) scale(0.96); }
}

/* Dark left-side overlay so text is readable over the warm photo */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    /* Deep amber-brown left panel */
    linear-gradient(
      108deg,
      rgba(26, 21, 8, 0.97)  0%,
      rgba(43, 38, 18, 0.92) 28%,
      rgba(43, 38, 18, 0.55) 52%,
      rgba(43, 38, 18, 0.06) 70%,
      transparent 80%
    ),
    /* Bottom feather to blend into next section */
    linear-gradient(
      to bottom,
      rgba(26, 21, 8, 0.10) 0%,
      rgba(26, 21, 8, 0.0)  55%,
      rgba(26, 21, 8, 0.94) 100%
    );
}

/* Warm mid-glow across the left text area */
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 22% 55%, rgba(122, 90, 30, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 30% 25% at 40% 80%, rgba(194, 168, 90, 0.09) 0%, transparent 55%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  padding-top: var(--nav-h);
  /* prevent text being clipped by hero overflow:hidden */
  box-sizing: border-box;
}

.hero__text {
  max-width: 620px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInLeft 0.9s ease 0.3s forwards;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.hero__eyebrow::before { left: 0; }
.hero__eyebrow::after  { right: 0; }

.hero__heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 28px;
}

.hero__line {
  display: block;
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  color: var(--text-white);
  opacity: 0;
  transform: translateX(-24px);
  letter-spacing: -0.01em;
}
.hero__line:nth-child(1) { animation: fadeInLeft 0.85s ease 0.5s forwards; }
.hero__line:nth-child(2) {
  animation: fadeInLeft 0.85s ease 0.7s forwards;
  /* First letter gold treatment */
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--text-white) 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__line:nth-child(3) { animation: fadeInLeft 0.85s ease 0.9s forwards; }

.hero__sub {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 400px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.85s ease 1.1s forwards;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 38px;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: #1a1508;
  box-shadow: 0 4px 22px rgba(194,168,90,0.42), 0 0 0 0 rgba(194,168,90,0);
  opacity: 0;
  animation: fadeInUp 0.85s ease 1.25s forwards;
}
.btn--gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 42px rgba(194,168,90,0.65), 0 0 0 4px rgba(194,168,90,0.18);
}
.btn--gold:active { transform: translateY(-1px); }

.btn--outline {
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 14px 36px;
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--bg-deep);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }

/* ── Keyframes ── */
@keyframes fadeInLeft {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===============================================================
   SERVICES STRIP
   =============================================================== */
.services-strip {
  position: relative;
  z-index: 10;
  padding: 0 48px;
  margin-top: -80px;
}

.services-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.scard {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.scard__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.scard:hover .scard__img { transform: scale(1.08); }

/* Gradient overlay */
.scard::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 21, 8, 0.96) 0%,
    rgba(26, 21, 8, 0.45) 48%,
    transparent 72%
  );
  transition: background var(--transition);
}
.scard:hover::after {
  background: linear-gradient(
    to top,
    rgba(26, 21, 8,  0.98) 0%,
    rgba(43, 38, 18, 0.62) 55%,
    rgba(122, 90, 30, 0.14) 100%
  );
}

.scard__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}

.scard__number {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 6px;
}

.scard__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 6px;
  transition: color var(--transition);
}
.scard:hover .scard__title { color: var(--gold-light); }

.scard__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.scard:hover .scard__desc { opacity: 1; transform: translateY(0); }

/* Golden border on hover */
.scard::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: border-color var(--transition);
  z-index: 3;
  pointer-events: none;
}
.scard:hover::before { border-color: rgba(194,168,90,0.42); }

/* ===============================================================
   ABOUT
   =============================================================== */
.about {
  padding: 120px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__img-wrap {
  position: relative;
}

.about__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: brightness(0.92) saturate(1.1);
}

.about__img-badge {
  position: absolute;
  bottom: 32px;
  left: -28px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--bg-deep);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(194,168,90,0.46);
  text-align: center;
}
.about__badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.about__badge-text {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about__text .section-heading { margin-bottom: 24px; }
.about__text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.about__list {
  margin: 8px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}
.about__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 3px;
}

/* ===============================================================
   SERVICES GRID
   =============================================================== */
.services-grid {
  padding: 100px 0;
  background:
    linear-gradient(180deg,
      var(--bg-deep)  0%,
      var(--bg-dark)  50%,
      var(--bg-deep)  100%
    ),
    radial-gradient(ellipse 70% 40% at 50% 50%, rgba(122, 90, 30, 0.08) 0%, transparent 70%);
  position: relative;
}
.services-grid .container { padding-top: 0; }
.services-grid .section-eyebrow { text-align: center; }
.services-grid .section-heading { margin-bottom: 60px; }

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

.sg-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.sg-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122,90,30,0.14) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.sg-item:hover {
  border-color: rgba(194,168,90,0.50);
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.55), 0 0 28px rgba(122,90,30,0.18);
}
.sg-item:hover::before { opacity: 1; }

.sg-item__icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.sg-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}
.sg-item p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ===============================================================
   GALLERY
   =============================================================== */
.gallery {
  padding: 100px 0;
}
.gallery .section-eyebrow { text-align: center; }
.gallery .section-heading { margin-bottom: 56px; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item:hover img { transform: scale(1.08); }

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

.gallery__hover {
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 8, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.gallery__item:hover .gallery__hover { opacity: 1; }

/* ── Gallery Videos ── */
.gallery__videos {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 8px;
}

.gallery__video-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.gallery__video-card--reverse {
  direction: rtl;
}
.gallery__video-card--reverse > * {
  direction: ltr;
}

.gallery__video-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

.gallery__video {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.gallery__video-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(26, 21, 8, 0.72);
  backdrop-filter: blur(6px);
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(194, 168, 90, 0.30);
}

.gallery__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(26,21,8,0.62) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery__video-wrap:hover .gallery__video-overlay { opacity: 1; }

.gallery__video-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(194, 168, 90, 0.90);
  color: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
  cursor: pointer;
}
.gallery__video-btn:hover {
  transform: scale(1.12);
  background: var(--gold-light);
}
.gallery__video-btn svg {
  width: 14px;
  height: 14px;
  pointer-events: none;
}

/* Video description text */
.gallery__video-desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery__video-desc .section-eyebrow {
  margin-bottom: 0;
}

.gallery__video-desc h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
}
.gallery__video-desc h3 em {
  font-style: italic;
  color: var(--gold-light);
}

.gallery__video-desc p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.gallery__video-desc ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gallery__video-desc ul li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.gallery__video-desc ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.55rem;
  top: 4px;
}

.gallery__video-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0;
}

@media (max-width: 900px) {
  .gallery__video-card,
  .gallery__video-card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
  }
  .gallery__video-card--reverse > * { direction: ltr; }
}

/* ===============================================================
   TESTIMONIALS
   =============================================================== */
.testimonials {
  padding: 100px 0;
  background:
    linear-gradient(180deg,
      var(--bg-deep) 0%,
      var(--bg-dark) 60%,
      var(--bg-deep) 100%
    ),
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(122, 90, 30, 0.07) 0%, transparent 70%);
  position: relative;
}
.testimonials .section-eyebrow { text-align: center; }
.testimonials .section-heading { margin-bottom: 56px; }

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

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
}
.testi-card::after {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.12;
  pointer-events: none;
}
.testi-card:hover {
  border-color: rgba(194,168,90,0.48);
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.58), 0 0 24px rgba(122,90,30,0.12);
}

.testi-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.testi-card blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  flex-shrink: 0;
}
.testi-card__author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-white);
}
.testi-card__author span {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ===============================================================
   BRANDS
   =============================================================== */
.brands {
  padding: 100px 0;
  position: relative;
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 50%, var(--bg-deep) 100%);
}
.brands .section-eyebrow { text-align: center; }
.brands .section-heading  { margin-bottom: 20px; }

.brands__intro {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 60px;
}

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

.brands__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.brands__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.55), 0 0 28px rgba(194,168,90,0.12);
}

.brands__card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.brands__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.brands__card:hover .brands__card-img img { transform: scale(1.07); }

.brands__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,21,8,0.70) 0%, transparent 60%);
  pointer-events: none;
}

.brands__card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brands__card-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(194, 168, 90, 0.10);
  border: 1px solid rgba(194, 168, 90, 0.22);
  padding: 4px 12px;
  border-radius: 50px;
  width: fit-content;
}

.brands__card-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  transition: color var(--transition);
}
.brands__card:hover .brands__card-body h3 { color: var(--gold-light); }

.brands__card-body p {
  font-size: 0.85rem;
  line-height: 1.72;
  color: var(--text-muted);
}

/* ===============================================================
   BOOKING
   =============================================================== */
.booking {
  padding: 100px 0;
}
.booking .section-eyebrow { text-align: center; }
.booking .section-heading { margin-bottom: 60px; }

.booking__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.booking__info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 48px 36px;
}
.booking__info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.booking__info p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.booking__info strong { color: var(--gold); font-weight: 600; }

.booking__socials {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(194,168,90,0.12);
}

/* Form */
.booking__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(34, 29, 12, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  color: var(--text-white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(194,168,90,0.16);
}

.form-group select option {
  background: var(--bg-dark);
  color: var(--text-white);
}


.form-group textarea { resize: vertical; }

/* Input date color fix for dark */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(1) saturate(2) hue-rotate(5deg);
  cursor: pointer;
}

.form-success {
  text-align: center;
  color: var(--gold-light);
  font-size: 0.9rem;
  padding: 14px;
  border: 1px solid rgba(194,168,90,0.44);
  border-radius: var(--radius-sm);
  background: rgba(122,90,30,0.14);
}

/* ===============================================================
   FOOTER
   =============================================================== */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 80px 48px 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.footer__logo {
  font-family: 'Dancing Script', cursive;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.footer__nav h4,
.footer__services h4,
.footer__contact h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__nav a,
.footer__services a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color var(--transition), padding-left var(--transition);
}
.footer__nav a:hover,
.footer__services a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}
.footer__contact p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.65;
}

.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 0 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: var(--text-dim);
}
.footer__socials {
  display: flex;
  gap: 12px;
}

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

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .navbar { padding: 0 28px; }
  .hero__content { padding: 0 28px; padding-top: var(--nav-h); }

  .services-strip { padding: 0 28px; }
  .services-strip__inner { grid-template-columns: repeat(2, 1fr); }

  .about { padding: 80px 28px; }
  .about__inner { gap: 48px; }
  .about__img-badge { left: -12px; }

  .sg-grid { grid-template-columns: repeat(2, 1fr); }
  .brands__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .booking__layout { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {

  /* Nav */
  .navbar__hamburger { display: flex; }
  .navbar__menu {
    position: fixed;
    inset: 0;
    background: rgba(26, 21, 8, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.77,0,0.18,1);
    z-index: 1050;
  }
  .navbar__menu.open { transform: translateX(0); }
  .navbar__link { font-size: 1.1rem; letter-spacing: 0.15em; }

  /* Hero */
  .hero__content { padding: 0 24px; padding-top: calc(var(--nav-h) + 16px); }
  .hero__text { max-width: 100%; }
  .hero__bg { background-position: 65% center; }

  /* Services */
  .services-strip { padding: 0 20px; margin-top: -40px; }
  .services-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* About */
  .about { padding: 70px 24px; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__img-badge { left: 12px; bottom: 12px; }

  /* Services grid */
  .services-grid { padding: 70px 0; }
  .sg-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery { padding: 70px 0; }
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery__item--tall, .gallery__item--wide { grid-row: auto; grid-column: auto; }

  /* Testimonials */
  .testimonials { padding: 70px 0; }
  .testi-grid { grid-template-columns: 1fr; }
  .brands__grid { grid-template-columns: 1fr; }

  /* Booking */
  .booking { padding: 70px 0; }
  .booking__layout { gap: 36px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 60px 24px 0; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ── Small Mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .hero__line { font-size: clamp(3rem, 14vw, 4.8rem); }
  .services-strip__inner { grid-template-columns: 1fr; }
  .scard { aspect-ratio: 4/3; }
}
