/* ============================================================
   LUXE SALON - Premium Luxury Salon Website
   Style.css — Main Stylesheet
   Design: Black, Gold, White | Luxury Editorial Aesthetic
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&family=Great+Vibes&display=swap');

/* ── CSS Variables ── */
:root {
  --black:       #0a0a0a;
  --black-soft:  #111111;
  --black-card:  #161616;
  --gold:        #c9a84c;
  --gold-light:  #e2c47e;
  --gold-dark:   #9d7a2e;
  --white:       #ffffff;
  --white-soft:  #f8f5f0;
  --grey-light:  #e8e4de;
  --grey-mid:    #a89f92;
  --grey-dark:   #4a4540;

  --font-display: 'Cormorant Garamond', serif;
  --font-script:  'Great Vibes', cursive;
  --font-body:    'Jost', sans-serif;

  --shadow-gold:  0 4px 30px rgba(201, 168, 76, 0.2);
  --shadow-dark:  0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-soft:  0 2px 20px rgba(0, 0, 0, 0.08);

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 2px;

  --header-h: 90px;
}

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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 600;
}

.script-text {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 2rem;
  display: block;
  margin-bottom: 0.25rem;
}

/* ── Utility Classes ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }

.bg-black { background: var(--black); }
.bg-black-soft { background: var(--black-soft); }
.bg-white-soft { background: var(--white-soft); }
.bg-gold { background: var(--gold); }

/* ── Section Headers ── */
.section-header {
  margin-bottom: 60px;
}

.section-header.text-center { text-align: center; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
}

.section-tag::before,
.section-tag::after {
  content: '—';
  margin: 0 0.5rem;
  opacity: 0.6;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--black);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-title strong { font-weight: 600; }
.section-title em { font-style: italic; color: var(--gold-dark); }

.section-title--white { color: var(--white); }
.section-title--white em { color: var(--gold-light); }

.section-subtitle {
  font-size: 1rem;
  color: var(--grey-mid);
  max-width: 540px;
  line-height: 1.8;
}

.section-subtitle--center { margin: 0 auto; }

/* ── Divider ── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.gold-divider--center { justify-content: center; }

.gold-divider span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  max-width: 80px;
}

.gold-divider i {
  color: var(--gold);
  font-size: 0.6rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform var(--transition);
  z-index: 0;
}

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

.btn:hover::before { transform: translateX(0); }

/* Gold filled */
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn-gold::before { background: var(--black); }
.btn-gold:hover { color: var(--white); border-color: var(--black); }

/* Gold outlined */
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold::before { background: var(--gold); }
.btn-outline-gold:hover { color: var(--black); }

/* White outlined */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline-white::before { background: var(--gold); }
.btn-outline-white:hover { color: var(--black); border-color: var(--gold); }

/* Black */
.btn-black {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}
.btn-black::before { background: var(--gold); }
.btn-black:hover { color: var(--black); border-color: var(--gold); }

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
}

#site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  height: 70px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}

#site-header.scrolled .logo-main {
  color: var(--black);
}

#site-header.scrolled .logo-sub {
  color: var(--gold-dark);
}

#site-header.scrolled .main-nav a {
  color: var(--grey-dark);
}

#site-header.scrolled .main-nav a:hover,
#site-header.scrolled .main-nav a.active {
  color: var(--gold-dark);
}

#site-header.scrolled .header-cta {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

#site-header.scrolled .hamburger span {
  background: var(--black);
}

#site-header.header-transparent {
  background: transparent;
}

/* When the transparent-header page (index.html) is scrolled,
   keep a dark background so the white logo text stays readable.
   This rule has higher specificity than .scrolled alone. */
#site-header.header-transparent.scrolled {
  background: rgba(12, 12, 12, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.35);
}

#site-header.header-transparent.scrolled .logo-main {
  color: var(--white);
}

#site-header.header-transparent.scrolled .logo-sub {
  color: var(--gold);
}

#site-header.header-transparent.scrolled .main-nav a {
  color: rgba(255,255,255,0.78);
}

#site-header.header-transparent.scrolled .main-nav a:hover,
#site-header.header-transparent.scrolled .main-nav a.active {
  color: var(--gold);
}

#site-header.header-transparent.scrolled .hamburger span {
  background: var(--white);
}

#site-header.header-solid {
  background: var(--black);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 2.5rem;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  line-height: 1;
  text-decoration: none;
}

.logo-icon {
  height: 42px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 2.5rem; }

.main-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-cta {
  padding: 10px 22px;
  font-size: 0.72rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 90vw);
  height: 100vh;
  height: 100dvh;
  background: var(--black-soft);
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  padding: 0;
  border-left: 1px solid rgba(201,168,76,0.2);
  overflow-y: auto;
}

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

/* Sidebar header row: logo + close btn */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  flex-shrink: 0;
}

.mobile-close {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.mobile-close:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* Nav links */
.mobile-menu a:not(.logo):not(.btn) {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu a:not(.logo):not(.btn)::after {
  content: '→';
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-menu a:not(.logo):not(.btn):hover,
.mobile-menu a:not(.logo):not(.btn).active {
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.mobile-menu a:not(.logo):not(.btn):hover::after,
.mobile-menu a:not(.logo):not(.btn).active::after { opacity: 1; }

.mobile-menu-footer {
  margin-top: auto;
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-overlay.show { opacity: 1; pointer-events: all; }

/* ============================================================
   PAGE BANNER (Inner Pages)
   ============================================================ */
.page-banner {
  height: 420px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: var(--header-h);
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 50%),
    url('/images/salon_photos/img_9179.jpg') center/cover no-repeat;
  opacity: 0.4;
}

.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.6), rgba(10,10,10,0.8));
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 300;
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* Alias for new pages */
.page-banner-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.page-banner-breadcrumb a { color: var(--gold); }
.page-banner-breadcrumb span { color: rgba(255,255,255,0.3); font-size: 0.6rem; }

/* header-solid: always dark bg, so logo/nav must be light */
#site-header.header-solid .logo-main { color: var(--white); }
#site-header.header-solid .logo-sub  { color: var(--gold); }
#site-header.header-solid .main-nav a { color: rgba(255,255,255,0.75); }
#site-header.header-solid .main-nav a:hover,
#site-header.header-solid .main-nav a.active { color: var(--gold); }
#site-header.header-solid .hamburger span { background: var(--white); }

/* Mobile: ensure hamburger and logo are always visible on hero/solid header */
@media (max-width: 900px) {
  #site-header.header-transparent .header-inner {
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  }
  #site-header.header-transparent .hamburger span { background: var(--white); }
  #site-header.header-transparent .logo-main { color: var(--white); }
  #site-header.header-transparent .logo-sub  { color: var(--gold); }
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.15);
  color: rgba(255,255,255,0.6);
}

.footer-main {
  padding: 80px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
}

.footer-about .logo { margin-bottom: 1.5rem; }

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact-item .icon {
  width: 32px; height: 32px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

.footer-contact-item p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: var(--gold); }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/images/salon_photos/img_9179.jpg') center/cover no-repeat;
  opacity: 0.35;
  transform: scale(1.05);
  animation: heroZoom 10s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); opacity: 0.4; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.65) 50%,
    rgba(10,10,10,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: var(--header-h);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-eyebrow span {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  height: 1px;
  width: 40px;
  background: var(--gold);
  opacity: 0.6;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  display: block;
  font-family: var(--font-script);
  font-size: 1.3em;
  color: var(--gold-light);
  font-weight: 400;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
  cursor: pointer;
  text-decoration: none;
  animation: bounce 2s infinite;
  transition: color 0.3s;
}

.hero-scroll:hover {
  color: var(--gold);
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* Hero Stats */
.hero-stats {
  position: absolute;
  right: 0;
  bottom: 0;
  top: var(--header-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-stat {
  padding: 2rem 2.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(10px);
  border-left: 1px solid rgba(201,168,76,0.15);
}

.hero-stat:last-child { border-bottom: none; }

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.hero-stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── About Preview ── */
.about-preview {
  padding: 100px 0;
  background: var(--white);
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  width: 55%;
  height: 280px;
  object-fit: cover;
  bottom: -38px;
  right: -28px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-dark);
}

.about-badge {
  position: absolute;
  top: 30px;
  left: -10px;
  background: var(--gold);
  color: var(--black);
  padding: 1.5rem;
  text-align: center;
  min-width: 110px;
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.about-text .section-subtitle { max-width: none; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 4px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.about-feature:hover {
  background: rgba(201,168,76,0.07);
  transform: translateX(6px);
  box-shadow: -3px 0 0 var(--gold);
}

.about-feature-icon {
  width: 34px; height: 34px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.8rem;
  transition: background 0.3s, transform 0.3s;
}

.about-feature:hover .about-feature-icon {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.15) rotate(5deg);
}

.about-feature h5 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-feature p {
  font-size: 0.8rem;
  color: var(--grey-mid);
  line-height: 1.5;
}

/* ── Services Highlights ── */
.services-highlights {
  padding: 100px 0;
  background: var(--white-soft);
}

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

.service-card {
  background: var(--white);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.service-card-img {
  height: 280px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.service-card-body {
  padding: 2rem;
  position: relative;
}

.service-card-body::before {
  content: '';
  position: absolute;
  top: 0; left: 2rem;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}

.service-card:hover .service-card-body::before { width: calc(100% - 4rem); }

.service-icon {
  width: 48px; height: 48px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--black);
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--grey-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}

.service-link:hover { gap: 0.8rem; }

/* ── Why Choose Us ── */
.why-us {
  padding: 100px 0;
  background: var(--black);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.1);
}

.why-item {
  padding: 3rem 2rem;
  background: var(--black-soft);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 0;
  background: rgba(201,168,76,0.04);
  transition: height 0.5s ease;
}

.why-item:hover::before { height: 100%; }
.why-item:hover { transform: translateY(-4px); }

.why-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.why-item h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.why-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ── Bridal Section ── */
.bridal-section {
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bridal-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1800&q=85') center/cover no-repeat;
}

.bridal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.75) 55%,
    rgba(10,10,10,0.2) 100%
  );
}

.bridal-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.bridal-tag {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.bridal-content h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--white);
  font-weight: 300;
  margin-bottom: 1rem;
}

.bridal-content p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  max-width: 440px;
}

/* ── Gallery Preview ── */
.gallery-preview {
  padding: 100px 0;
}

/* gallery-masonry used on gallery.html full grid */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #111;
}

/* Uniform tile grid — no span overrides, clean equal tiles */
.gallery-full-grid .gallery-item { grid-column: auto; grid-row: auto; }

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
  display: block;
}

.gallery-item:hover img { transform: scale(1.07); }

/* Elegant gradient overlay with caption */
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.15) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1.1rem;
  opacity: 0;
  transition: opacity 0.38s ease;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* Caption text inside overlay */
.gallery-item-overlay span {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  display: block;
  transform: translateY(6px);
  transition: transform 0.38s ease;
  opacity: 1;
}

.gallery-item:hover .gallery-item-overlay span {
  transform: translateY(0);
  opacity: 1;
}

/* Gold bottom line on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold, #c9a84c);
  transition: width 0.42s ease;
  z-index: 2;
}
.gallery-item:hover::after { width: 100%; }

/* ── Testimonials ── */
.testimonials {
  padding: 100px 0;
  background: var(--black-soft);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 10%;
  text-align: center;
}

.testimonial-quote-icon {
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.testimonial-author strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  display: block;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.testimonial-nav button {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.testimonial-nav button:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: var(--transition);
  cursor: pointer;
}

.t-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

/* ── Booking Form ── */
.booking-section {
  padding: 100px 0;
  background: var(--white-soft);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.booking-form {
  background: var(--white);
  padding: 3rem;
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow-soft);
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--grey-light);
  background: var(--white-soft);
  font-size: 0.9rem;
  color: var(--black);
  transition: border-color var(--transition);
  outline: none;
  border-radius: var(--radius);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-error {
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 0.3rem;
  display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #c0392b; }

.form-group.error .form-error { display: block; }

/* ── Contact Preview ── */
.contact-preview {
  padding: 70px 0;
  background: var(--black);
}

.contact-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.contact-item {
  padding: 2.5rem;
  text-align: center;
  background: var(--black-soft);
  border: 1px solid rgba(201,168,76,0.08);
  transition: var(--transition);
}

.contact-item:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}

.contact-item-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-item h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.story-section {
  padding: 100px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-img {
  position: relative;
}

.story-img img {
  width: 100%; height: 580px; object-fit: cover;
}

.story-img-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--gold);
  color: var(--black);
  padding: 2rem;
  text-align: center;
}

.story-img-badge .big { font-family: var(--font-display); font-size: 3rem; font-weight: 700; line-height: 1; }
.story-img-badge .small { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; }

.mission-vision {
  padding: 80px 0;
  background: var(--white-soft);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.mv-card {
  padding: 4rem;
  background: var(--white);
  border-top: 3px solid var(--gold);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-top-width 0.35s ease;
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(201,168,76,0.18);
  border-top-width: 5px;
}

.mv-card:hover::before {
  opacity: 1;
}

.mv-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.mv-card p { color: var(--grey-mid); line-height: 1.8; }

.team-section { padding: 100px 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--grey-light);
  transition: var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-6px);
  border-color: var(--gold);
}

.team-card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.team-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-card-img img { transform: scale(1.06); }

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.team-card:hover .team-card-overlay { opacity: 1; }

.team-card-overlay a {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: background var(--transition);
}

.team-card-overlay a:hover { background: var(--white); }

.team-card-body {
  padding: 1.5rem;
  border-top: 2px solid var(--gold);
}

.team-card-body h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-card-body span {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Stats */
.stats-section {
  padding: 80px 0;
  background: var(--black);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.15);
}

.stat-item {
  padding: 3rem 2rem;
  background: var(--black-soft);
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   SERVICE TABS (Male / Female)
   ============================================================ */
.svc-tabs-wrap { margin: 1.5rem 0 0; }

.svc-tab-btns {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 2px solid var(--grey-light);
}

.svc-tab-btn {
  background: none;
  border: none;
  padding: 0.65rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-mid);
  cursor: pointer;
  position: relative;
  transition: color 0.25s;
}

.svc-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.svc-tab-btn.active { color: var(--black); }
.svc-tab-btn.active::after { transform: scaleX(1); }

.svc-tab-panel { display: none; padding-top: 0.25rem; }
.svc-tab-panel.active { display: block; }

.svc-sub-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 1.25rem 0 0.4rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--grey-light);
}
.svc-sub-label:first-child { margin-top: 0.75rem; }

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: var(--gold);
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black);
  font-weight: 300;
  margin-bottom: 1rem;
}

.cta-section p { color: rgba(10,10,10,0.65); margin-bottom: 2rem; }

/* Buttons on gold background — override so they remain visible */
.cta-section .btn-black {
  border-color: var(--black);
}
.cta-section .btn-black::before { background: var(--black); }
.cta-section .btn-black:hover { color: var(--white); border-color: var(--black); }

.cta-section .btn-gold {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.cta-section .btn-gold::before { background: var(--white); }
.cta-section .btn-gold:hover { color: var(--black); border-color: var(--black); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail-section { padding: 100px 0; }
.service-detail-section:nth-child(even) { background: var(--white-soft); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.service-detail-section:nth-child(even) .service-detail-grid { direction: rtl; }
.service-detail-section:nth-child(even) .service-detail-content { direction: ltr; }

.service-detail-img {
  height: 520px;
  overflow: hidden;
  position: relative;
}

.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }

.service-detail-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(201,168,76,0.3);
  transform: translate(8px, 8px);
  pointer-events: none;
}

.price-list { margin: 1.5rem 0; }

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--grey-light);
  font-size: 0.9rem;
}

.price-item:last-child { border-bottom: none; }
.price-item .price { color: var(--gold); font-weight: 600; font-family: var(--font-display); font-size: 1.1rem; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 9px 24px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--grey-light);
  color: var(--grey-dark);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-full-grid .gallery-item img { min-height: 280px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: fixed;
  top: 1.5rem; right: 2rem;
  font-size: 1.5rem;
  color: var(--white);
  z-index: 2001;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.lightbox-close:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--white);
  width: 50px; height: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  z-index: 2001;
  background: rgba(10,10,10,0.5);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-body { padding: 1.5rem; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.blog-cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  padding: 3px 10px;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--grey-mid);
}

.blog-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.blog-card:hover h3 { color: var(--gold-dark); }

.blog-card p {
  font-size: 0.85rem;
  color: var(--grey-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Blog Sidebar */
.blog-sidebar { }

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--grey-light);
  padding: 2rem;
  margin-bottom: 2rem;
}

.sidebar-widget h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-cats li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--grey-light);
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
  cursor: pointer;
}

.sidebar-cats li:hover { color: var(--gold); }
.sidebar-cats li span { background: var(--gold); color: var(--black); font-size: 0.72rem; padding: 1px 7px; font-weight: 600; }

.recent-post {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--grey-light);
}

.recent-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.recent-post img { width: 65px; height: 65px; object-fit: cover; flex-shrink: 0; }

.recent-post-info h5 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  line-height: 1.4;
  transition: color var(--transition);
}

.recent-post-info h5:hover { color: var(--gold); cursor: pointer; }
.recent-post-info span { font-size: 0.75rem; color: var(--grey-mid); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  padding: 100px 0;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
}

.contact-info-col { }

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
}

.contact-info-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-info-text p {
  font-size: 0.88rem;
  color: var(--grey-mid);
  line-height: 1.7;
}

.contact-form-wrap {
  background: var(--white);
  padding: 3rem;
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow-soft);
}

.contact-form-wrap h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.map-section { background: var(--black-soft); }

.map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
  filter: grayscale(30%) contrast(1.1);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right.visible { opacity: 1; transform: translateX(0); }

/* Delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { display: none; }
}

@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  /* Grids → single column */
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-preview-grid,
  .booking-grid,
  .story-grid,
  .service-detail-grid,
  .contact-main-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .service-detail-section:nth-child(even) .service-detail-grid { direction: ltr; }

  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 2; }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }

  .blog-layout { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-grid,
  .contact-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .mv-grid { grid-template-columns: 1fr; }

  /* About image — contained, no overflow */
  .about-img-accent { display: none; }
  .about-img-wrap { overflow: hidden; padding-bottom: 0; padding-right: 0; }
  .about-badge { left: 10px; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Map smaller on tablet */
  .map-section iframe { height: 320px; }

  /* Service detail image shorter */
  .service-detail-img { height: 320px; }
}

@media (max-width: 600px) {
  :root { --header-h: 65px; }

  /* ── Global spacing ── */
  .section-pad { padding: 55px 0; }
  .container { padding: 0 1.1rem; }

  /* ── All grids → single column ── */
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 0; }
  .team-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-preview-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .gallery-full-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }

  /* ── Hero ── */
  .hero-btns { flex-direction: column; gap: 0.75rem; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }
  .hero-content h1 { font-size: 2.6rem; }
  .hero-content p { font-size: 0.95rem; }

  /* ── Logo scaling ── */
  .logo-icon { height: 30px; }
  .logo-main { font-size: 1.2rem; }

  /* ── Brands strip ── */
  .brands-list { gap: 1rem 1.5rem; justify-content: center; }
  .brands-list span { font-size: 0.72rem; }

  /* ── About preview: fix accent image overflow whitespace ── */
  .about-img-main { height: 280px; }
  .about-img-wrap { margin-bottom: 0; }
  .about-badge { top: 15px; left: 10px; padding: 1rem; min-width: 90px; }
  .about-badge-num { font-size: 1.8rem; }

  /* ── Why choose us cards on dark bg ── */
  .why-us { padding: 55px 0; }
  .why-item { padding: 2rem 1.25rem; }
  .why-item h3 { font-size: 1.1rem; }
  .why-item p { color: rgba(255,255,255,0.65); font-size: 0.82rem; }

  /* ── Team section ── */
  .team-card-img { height: 260px; }
  .team-grid { gap: 1rem; }

  /* ── Testimonials ── */
  .testimonial-slide { padding: 0 1rem; }
  .testimonial-text { font-size: 1rem; }

  /* ── Page banners (inner pages) ── */
  .page-banner { height: 240px; }
  .page-banner h1 { font-size: 2rem; }

  /* ── Booking / forms ── */
  .booking-form { padding: 1.5rem 1.1rem; }

  /* ── Service detail ── */
  .service-detail-section { padding: 55px 0; }
  .service-detail-img { height: 240px; }
  .price-item { font-size: 0.85rem; }
  .price-item .price { font-size: 0.95rem; }

  /* ── Map ── */
  .map-section iframe { height: 240px; }

  /* ── Contact ── */
  .contact-info-item { flex-direction: column; gap: 0.5rem; }

  /* ── Footer ── */
  .footer-main { padding: 3rem 0 2rem; }
  .footer-grid { gap: 1.5rem; }

  /* ── Gallery page filters ── */
  .gallery-filters { gap: 0.35rem; }
  .filter-btn { padding: 7px 16px; font-size: 0.7rem; }

  /* ── Stats on about page ── */
  .stats-grid .stat-item { padding: 1.5rem 1rem; }
  .stat-num { font-size: 2.2rem; }

  /* ── Text content sections - prevent edge bleed ── */
  .service-detail-content,
  .about-text,
  .story-content { padding-left: 0; padding-right: 0; }
}