/* ══════════════════════════════════════════════
   Caruso Hair & Esthetics
   Gold / Cream / Pastel Theme
   ══════════════════════════════════════════════ */

:root {
  /* Gold palette */
  --gold: #c9a96e;
  --gold-light: #dcc997;
  --gold-dark: #a68b4b;
  --gold-soft: rgba(201,169,110,0.10);

  /* Backgrounds — dark theme */
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --bg-card: #161616;
  --bg-elevated: #1a1a1a;
  --white: #fff;

  /* Text — light on dark */
  --text-dark: #f0ece6;
  --text: #d4cfc7;
  --text-mid: #a09888;
  --text-muted: #7a7268;
  --text-light: #4a4440;

  /* Borders / Shadows */
  --border: rgba(255,255,255,0.06);
  --border-gold: rgba(201,169,110,0.3);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);

  /* Nav/UI chrome — switches between themes */
  --nav-scrolled-bg: rgba(10,10,10,0.95);
  --nav-scrolled-border: rgba(255,255,255,0.04);
  --nav-link: rgba(255,255,255,0.55);
  --nav-link-hover: #fff;
  --nav-phone: rgba(255,255,255,0.5);
  --nav-toggle-border: rgba(255,255,255,0.12);
  --nav-toggle-color: rgba(255,255,255,0.4);
  --hamburger-color: rgba(255,255,255,0.7);
  --logo-filter: brightness(0) invert(1);
  --mobile-menu-bg: #111;
  --mobile-menu-border: rgba(255,255,255,0.06);
  --mobile-link-color: rgba(255,255,255,0.6);

  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light mode */
[data-theme="light"] {
  --bg: #eee8dd;
  --bg-alt: #e5ded2;
  --bg-card: #f5f0e8;
  --bg-elevated: #ece6da;
  --text-dark: #1a1510;
  --text: #2c2420;
  --text-mid: #4a3f35;
  --text-muted: #6b5e52;
  --text-light: #9e9082;
  --border: rgba(44,36,32,0.12);
  --border-gold: rgba(166,139,75,0.35);
  --shadow-sm: 0 2px 8px rgba(44,36,32,0.08);
  --shadow-md: 0 6px 24px rgba(44,36,32,0.12);
  --shadow-lg: 0 12px 40px rgba(44,36,32,0.15);
  --gold: #a68b4b;
  --gold-light: #c9a96e;
  --gold-dark: #8a7340;

  /* Nav/UI chrome for light mode */
  --nav-scrolled-bg: rgba(238,232,221,0.97);
  --nav-scrolled-border: rgba(44,36,32,0.08);
  --nav-link: #4a3f35;
  --nav-link-hover: var(--gold-dark);
  --nav-phone: #4a3f35;
  --nav-toggle-border: rgba(44,36,32,0.2);
  --nav-toggle-color: #6b5e52;
  --hamburger-color: #1a1510;
  --logo-filter: none;
  --mobile-menu-bg: #ece6da;
  --mobile-menu-border: rgba(44,36,32,0.1);
  --mobile-link-color: #4a3f35;
}
/* Light mode element overrides */
[data-theme="light"] .hero-overlay {
  background: linear-gradient(to bottom, rgba(30,24,18,0.35) 0%, rgba(30,24,18,0.55) 40%, rgba(30,24,18,0.7) 100%);
}
[data-theme="light"] .hero h1 { color: #fff; }
[data-theme="light"] .hero-est { color: var(--gold-light); }
[data-theme="light"] .hero-sub { color: rgba(255,255,255,0.6); }
[data-theme="light"] .stats-strip { background: rgba(30,24,18,0.7); }
[data-theme="light"] .stat-text { color: rgba(255,255,255,0.4); }
[data-theme="light"] .stat-num { color: var(--gold-light); }
[data-theme="light"] .footer { background: #1a1510; }
[data-theme="light"] .footer-logo { filter: brightness(0) invert(1); }
[data-theme="light"] .cta { background: #1a1510; }
[data-theme="light"] .cta h2 { color: #fff; }
[data-theme="light"] .cta p { color: rgba(255,255,255,0.45); }
[data-theme="light"] .page-hero { background: #1a1510; }
[data-theme="light"] .page-hero h1 { color: rgba(255,255,255,0.9); }
[data-theme="light"] .review-text { color: var(--text-dark); }
[data-theme="light"] .gold-rule { opacity: 0.5; }
[data-theme="light"] .card-link { color: var(--gold-dark); }
[data-theme="light"] .form-input { background: var(--bg-card); border-color: rgba(44,36,32,0.15); }
[data-theme="light"] .form-input:focus { border-color: var(--gold); }
[data-theme="light"] .contact-cta-item strong { color: var(--text-dark); }
[data-theme="light"] .why-card strong { color: var(--text-dark); }

/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--gold); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); }
::selection { background: var(--gold); color: #fff; }

/* ═══ TYPOGRAPHY ═══ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--text-mid); margin-bottom: 1rem; font-size: 1.05rem; line-height: 1.85; }

.label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
  display: block;
}
.divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1rem 0;
}
.divider-center {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1rem auto 2rem;
}
blockquote {
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
  margin: 1.5rem 0;
}

/* ═══ LAYOUT ═══ */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--bg-alt); padding: 100px 0; position: relative; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.wrap-narrow { max-width: 720px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Section divider wave/curve */
.section-divider {
  height: 60px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.section-divider::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 80px;
  background: var(--bg-alt);
  border-radius: 50% 50% 0 0;
}
.section-divider-reverse {
  height: 60px;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.section-divider-reverse::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 80px;
  background: var(--bg);
  border-radius: 50% 50% 0 0;
}
/* Gold accent line between sections */
.gold-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.4;
}

/* ═══ BUTTONS — all rounded solid gold ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  font-family: var(--font-sans);
  border-radius: 50px;
  border: none;
  background: var(--gold);
  color: #fff;
}
.btn:hover {
  background: var(--gold-light);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.35);
}
/* Dark variant for light backgrounds */
.btn-dark {
  background: var(--gold);
  color: #000;
}
.btn-dark:hover {
  background: var(--gold-light);
  color: #000;
}
/* Outline variant (still rounded) */
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #fff;
}
/* Aliases — all resolve to gold rounded */
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-light); color: #000; }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-outline-light { background: transparent; color: rgba(255,255,255,0.85); border: 1.5px solid rgba(255,255,255,0.3); border-radius: 50px; }
.btn-outline-light:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
/* btn-outline needs to work in both themes */
.btn-outline { color: var(--text-mid); border-color: var(--border-gold); }
.btn-outline:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-light); color: #000; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,169,110,0.35); }

/* ═══ SCROLL PROGRESS ═══ */
.scroll-progress {
  position: fixed;
  top: 32px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
}

/* ═══ ANNOUNCEMENT TICKER ═══ */
.ticker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  background: #0a0a0a;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  overflow: hidden;
  height: 32px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}
.ticker-track span {
  padding: 0 3rem;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   NAV
   ══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 32px;
  width: 100%;
  z-index: 100;
  background: var(--nav-scrolled-bg);
  box-shadow: 0 1px 0 var(--nav-scrolled-border);
  transition: padding 0.4s var(--ease);
  padding: 0.6rem 0;
}
.nav.scrolled {
  padding: 0.45rem 0;
}
.nav-inner {
  max-width: 100%;
  margin: 0;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo */
.nav-logo { flex-shrink: 0; }
.nav-logo img {
  height: 44px;
  width: auto;
  transition: height 0.4s var(--ease), filter 0.4s var(--ease);
}
.nav.scrolled .nav-logo img { height: 32px; }

.nav-logo img { filter: var(--logo-filter); }
.hamburger span { background: var(--hamburger-color); }

/* Nav links — all left */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 1rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--nav-link);
  padding: 0.5rem 0.85rem;
  transition: color 0.3s var(--ease);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }

/* Right group — phone + contact button */
.nav-right-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-right-group .btn {
  padding: 0.65rem 1.6rem;
  font-size: 0.7rem;
}
.nav-phone {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--nav-phone);
  transition: color 0.3s var(--ease);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--gold); }
.nav-phone strong { font-weight: 700; }

/* Theme toggle */
.theme-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--nav-toggle-border);
  background: none;
  color: var(--nav-toggle-color);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  margin-left: 0.5rem;
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  transition: all 0.35s var(--ease);
}
.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); }

/* ══════════════════════════════════════
   HERO — built from scratch
   ══════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Background photo */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/salon-floor.jpg') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
/* Dark overlay for text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,20,16,0.55) 0%,
    rgba(26,20,16,0.65) 40%,
    rgba(26,20,16,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 2rem 120px;
  max-width: 800px;
}
.hero-est {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s 0.5s var(--ease-out) forwards;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s 0.7s var(--ease-out) forwards;
}
.hero-actions {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s 0.9s var(--ease-out) forwards;
}
.hero-actions .btn-gold {
  background: var(--gold);
  color: #fff;
  padding: 0.9rem 2.5rem;
}
.hero-actions .btn { font-size: 0.62rem; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Page hero (inner pages) */
.page-hero {
  min-height: 32vh;
  padding-top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(201,169,110,0.06) 0%, transparent 60%);
}
.page-hero .hero-content { position: relative; z-index: 1; padding: 2rem; }
.page-hero h1,
.page-hero .hero-tagline {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: rgba(255,255,255,0.9);
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
}
.page-hero .page-hero-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.5rem;
}

/* ═══ STATS STRIP (inside hero) ═══ */
.stats-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  padding: 1.5rem 0;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s var(--ease-out) forwards;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.stat { padding: 0.5rem 1rem; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-text {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ═══ SERVICE CARDS ═══ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.service-card {
  background: var(--bg-card);
  padding: 0;
  text-align: center;
  transition: all 0.4s var(--ease);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.service-card-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
}
/* Icon overlay on image */
.service-card-img .img-icon {
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,169,110,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  transition: transform 0.3s var(--ease);
}
.service-card:hover .service-card-img .img-icon { transform: scale(1.1); }
.service-card-body { padding: 1.8rem 1.5rem; }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201,169,110,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  margin: -1.5rem auto 1rem;
  position: relative;
  z-index: 1;
  border: 2px solid var(--bg-card);
  transition: all 0.4s var(--ease);
}
.service-card:hover .card-icon {
  background: var(--gold);
  color: #fff;
}
.service-card h3 { margin-bottom: 0.5rem; color: var(--text-dark); }
.service-card p { font-size: 0.92rem; margin-bottom: 1.2rem; }
.card-link {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { text-shadow: none; }
  50% { text-shadow: 0 0 8px rgba(201,169,110,0.4); }
}
.card-link i {
  font-size: 0.45rem;
  transition: transform 0.3s var(--ease-out);
  animation: nudgeArrow 2.5s ease-in-out infinite;
}
.service-card:hover .card-link i { transform: translateX(6px); animation: none; }
@keyframes nudgeArrow {
  0%, 65%, 100% { transform: translateX(0); }
  75% { transform: translateX(5px); }
  85% { transform: translateX(2px); }
}

/* ═══ SERVICE OVERVIEW (services page) ═══ */
.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.service-overview-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s var(--ease);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.service-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.sov-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.3rem;
  transition: all 0.4s var(--ease);
}
.service-overview-card:hover .sov-icon {
  background: var(--gold);
  color: #fff;
  transform: scale(1.08);
}
.service-overview-card h3 { margin-bottom: 0.5rem; color: var(--text-dark); }
.service-overview-card p { font-size: 0.88rem; margin-bottom: 1.2rem; }
.service-overview-card .card-link {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
}
.service-overview-card .card-link i { font-size: 0.45rem; transition: transform 0.3s var(--ease-out); }
.service-overview-card:hover .card-link i { transform: translateX(4px); }

/* Service callout */
.service-callout-row { display: flex; flex-direction: column; gap: 1rem; }
.service-callout {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.8rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.4s var(--ease);
}
.service-callout:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
}
.service-callout-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.service-callout h3 { font-size: 1rem; margin-bottom: 0.2rem; color: var(--text-dark); }
.service-callout p { font-size: 0.85rem; margin: 0; }
.service-callout .card-link {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  white-space: nowrap;
  flex-shrink: 0;
}
.service-callout .card-link i { font-size: 0.45rem; transition: transform 0.3s var(--ease-out); }
.service-callout:hover .card-link i { transform: translateX(4px); }

/* ═══ IMAGE PLACEHOLDERS ═══ */
.img-styled {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--bg-alt), var(--bg-elevated));
}
.img-styled i { font-size: 2rem; color: var(--gold); opacity: 0.2; }
.img-styled span { font-family: var(--font-serif); font-style: italic; font-size: 1rem; color: var(--text-light); }
.img-styled-warm {
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-alt));
}
.img-placeholder {
  width: 100%;
  min-height: 280px;
  background: linear-gradient(135deg, var(--bg-alt), var(--bg-elevated));
  border-radius: 4px;
}

/* ═══ FEATURE BLOCK ═══ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  overflow: hidden;
}
/* Feature slide-in: image slides from its side, body from opposite */
.feature .feature-img {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.feature .feature-body {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s 0.15s var(--ease-out), transform 0.8s 0.15s var(--ease-out);
}
.feature.reverse .feature-img { transform: translateX(60px); }
.feature.reverse .feature-body { transform: translateX(-60px); }
.feature.visible .feature-img,
.feature.visible .feature-body {
  opacity: 1;
  transform: translateX(0);
}
.feature-img {
  background: var(--bg-alt);
  min-height: 100%;
  overflow: hidden;
}
.feature-img .img-placeholder,
.feature-img .img-styled { width: 100%; height: 100%; min-height: 480px; border-radius: 0; }
.feature-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}
.feature-body h2 { margin-bottom: 1rem; }
.feature-body p { margin-bottom: 0.8rem; }
.feature-body .btn { margin-top: 1.5rem; align-self: flex-start; }
.feature.reverse { direction: rtl; }
.feature.reverse > * { direction: ltr; }

/* ═══ WHY CARUSO CARDS ═══ */
.why-cards { display: flex; flex-direction: column; gap: 1rem; }
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.4rem 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.35s var(--ease);
}
.why-card:hover { border-color: var(--gold-light); transform: translateX(4px); }
.why-card i { font-size: 1rem; color: var(--gold); margin-top: 0.15rem; flex-shrink: 0; }
.why-card strong { display: block; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.2rem; }
.why-card p { font-size: 0.85rem; margin: 0; }

/* ═══ TESTIMONIALS ═══ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s var(--ease);
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--gold); font-size: 0.65rem; letter-spacing: 0.15em; margin-bottom: 1rem; }
.review-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.review-author { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); }

/* ═══ CTA STRIP ═══ */
.cta {
  background: var(--bg-alt);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.05) 0%, transparent 60%);
}
.cta * { position: relative; }
.cta h2 { color: #fff; margin-bottom: 0.6rem; }
.cta p { color: rgba(255,255,255,0.4); margin-bottom: 2rem; }
.cta .label { color: var(--gold); }

/* ═══ PRICING ═══ */
.price-section { margin-bottom: 2.5rem; }
.price-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--gold-soft);
  margin-bottom: 0.8rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.price-row:last-child { border-bottom: none; }
.price-name { font-size: 1.1rem; color: var(--text-dark); font-family: var(--font-sans); font-weight: 500; }
.price-detail { font-size: 0.9rem; color: var(--text-muted); display: inline; margin-left: 0.3rem; }
.price-amount { font-family: var(--font-sans); font-weight: 700; font-size: 1.1rem; color: var(--gold); white-space: nowrap; }
.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.price-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }

/* Clickable service row (opens process modal) */
.price-row-clickable {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: background-color 0.2s var(--ease), padding 0.2s var(--ease);
}
.price-row-clickable:hover,
.price-row-clickable:focus-visible {
  background-color: rgba(0,0,0,0.03);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  outline: none;
}
.price-row-clickable .price-name::after {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.65rem;
  color: var(--gold);
  margin-left: 0.5rem;
  opacity: 0.5;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  display: inline-block;
}
.price-row-clickable:hover .price-name::after,
.price-row-clickable:focus-visible .price-name::after {
  opacity: 1;
  transform: translateX(3px);
}

/* Service process modal */
.service-modal {
  position: fixed; inset: 0;
  background: rgba(44,36,32,0.85);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.3s var(--ease);
  padding: 1.5rem;
}
.service-modal.active { opacity: 1; visibility: visible; }
.service-modal-card {
  background: var(--cream);
  border-radius: 12px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s var(--ease);
}
.service-modal.active .service-modal-card { transform: translateY(0); }
.service-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem 0.6rem;
  transition: color 0.2s var(--ease);
}
.service-modal-close:hover { color: var(--text-dark); }
.service-modal-card h2 { margin: 0.3rem 0 0; }
.service-steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 1.5rem 0 0;
}
.service-steps li {
  counter-increment: step;
  padding: 1rem 0 1rem 3rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  font-family: var(--font-sans);
  color: var(--text-dark);
  line-height: 1.5;
}
.service-steps li:last-child { border-bottom: none; }
.service-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 1rem;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
}
.service-modal-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
@media (max-width: 600px) {
  .service-modal-card { padding: 2rem 1.25rem; }
}

/* Bridal downloadable docs */
.bridal-docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto;
}
.bridal-doc-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-dark);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.bridal-doc-card:not(.bridal-doc-card-disabled):hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.bridal-doc-card-disabled { cursor: not-allowed; opacity: 0.65; }
.bridal-doc-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.bridal-doc-body h4 { margin: 0 0 0.3rem; font-family: var(--font-serif); font-size: 1.15rem; }
.bridal-doc-body p { margin: 0 0 0.6rem; font-size: 0.88rem; color: var(--text-mid); line-height: 1.45; }
.bridal-doc-body .card-link i { margin-left: 0.3rem; }

/* Tabs */
.tabs { display: flex; gap: 0.35rem; justify-content: center; margin-bottom: 3rem; flex-wrap: wrap; }
.tab-btn {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  background: none;
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
  font-family: var(--font-sans);
}
.tab-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.tab-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ═══ GALLERY ═══ */
.gallery-filters { display: flex; gap: 0.35rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  background: none;
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
  font-family: var(--font-sans);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }

.gallery-grid { columns: 4 220px; gap: 6px; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-alt);
  border-radius: 4px;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  transition: background 0.3s var(--ease);
}
.gallery-item:hover .gallery-caption { background: rgba(44,36,32,0.45); }
.gallery-caption span {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s var(--ease);
}
.gallery-item:hover .gallery-caption span { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(44,36,32,0.95);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.3s var(--ease);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 88vw; max-height: 88vh; object-fit: contain; }
.lb-btn {
  position: absolute;
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.4);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-size: 0.8rem;
}
.lb-btn:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.lb-close { top: 1.5rem; right: 1.5rem; }
.lb-prev { top: 50%; left: 1.5rem; transform: translateY(-50%); }
.lb-next { top: 50%; right: 1.5rem; transform: translateY(-50%); }

/* ═══ CONTACT ═══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-item { margin-bottom: 1.8rem; }
.contact-item .label i { margin-right: 0.3rem; }
.contact-item p { margin: 0.2rem 0 0; font-size: 0.92rem; }
.contact-item a { color: var(--text-mid); }
.contact-item a:hover { color: var(--gold); }
/* Contact CTA compact layout */
.contact-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-cta-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-cta-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}
.contact-cta-item:last-child { border-bottom: none; }
.contact-cta-item:hover { transform: translateX(4px); }
.contact-cta-item i {
  font-size: 1rem;
  color: var(--gold);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.contact-cta-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.1rem;
}
.contact-cta-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Directions list */
.directions-list {
  list-style: decimal;
  padding-left: 1.3rem;
  margin: 0.3rem 0 0;
}
.directions-list li {
  font-size: 1rem;
  color: var(--text-mid);
  padding: 0.3rem 0;
  line-height: 1.7;
}

.contact-hours { margin-top: 0.3rem; }
.contact-hours-row {
  display: flex; justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-mid);
}
.contact-hours-row:last-child { border-bottom: none; }
.contact-hours-row .closed { color: var(--text-light); }
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.45rem;
}
.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 3px;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  outline: none;
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.form-input::placeholder { color: var(--text-light); }
select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239e9082' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
textarea.form-input { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ═══ ABOUT / TEAM ═══ */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); }
.team-card-img { aspect-ratio: 1/1; background: linear-gradient(135deg, var(--bg-alt), var(--bg-elevated)); overflow: hidden; }
.team-card-body { padding: 1.2rem 1.4rem; }
.team-card-body h3 { margin-bottom: 0.2rem; }
.team-card-role {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.team-card-body p { font-size: 0.88rem; margin-top: 0.7rem; }
.team-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.team-card-link i { font-size: 0.45rem; transition: transform 0.3s var(--ease-out); }
.team-card-link:hover i { transform: translateX(4px); }

/* ═══ TEAM MEMBER GRID (subpages) ═══ */
.team-member-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.team-member-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.team-member-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.team-member-img {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--bg-alt), var(--bg-elevated));
  overflow: hidden;
}
.team-member-img .img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
  min-height: 0;
}
.team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-member-body { padding: 1.2rem 1.4rem 1.5rem; }
.team-member-body h3 { margin-bottom: 0.2rem; font-size: 1.1rem; }
.team-member-body p { font-size: 0.85rem; margin-top: 0.5rem; }
.team-member-body .team-card-role { margin-top: 0; }

@media (max-width: 900px) { .team-member-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .team-member-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 420px) { .team-member-grid { grid-template-columns: 1fr; } }

/* ═══ TEAM CAROUSEL ═══ */
.team-carousel-wrap { position: relative; padding: 0 3rem; }
.team-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 0.5rem 0;
}
.team-carousel::-webkit-scrollbar { display: none; }
.team-carousel .team-card { flex: 0 0 290px; scroll-snap-align: start; }
a.team-card-link-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
a.team-card-link-card:hover { border-color: var(--gold); }
a.team-card-link-card h3, a.team-card-link-card p { color: inherit; }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  z-index: 2;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.carousel-btn:hover { border-color: var(--gold); color: var(--gold); }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* ═══ SOLUTION LIST (Hair Loss) ═══ */
.solution-list { list-style: none; margin: 1.2rem 0 0; padding: 0; }
.solution-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0;
  font-size: 0.92rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.solution-list li:last-child { border-bottom: none; }
.solution-list li i { color: var(--gold); font-size: 0.65rem; flex-shrink: 0; }

/* ═══ POLICIES ═══ */
.policy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 3rem;
  margin-bottom: 1.5rem;
}
.policy-card h3 {
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--gold-soft);
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 1.4rem;
}
.policy-card h3 i { color: var(--gold); font-size: 1rem; }
.policy-card > p { font-size: 1.1rem; }
.policy-list li {
  padding: 0.7rem 0 0.7rem 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.policy-list li:last-child { border-bottom: none; }
.policy-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.payment-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.2rem; }
.payment-tag {
  padding: 0.5rem 1.2rem;
  border: 1.5px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: var(--bg-alt);
}

/* Steps / Features */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.4s var(--ease);
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.step-card h3 { margin-bottom: 0.4rem; font-size: 1rem; }
.step-card p { font-size: 0.85rem; margin-bottom: 0; }

.feature-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.fcard {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.4s var(--ease);
}
.fcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.fcard-icon { font-size: 1.2rem; color: var(--gold); opacity: 0.5; margin-bottom: 0.8rem; }
.fcard h3, .fcard h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.fcard p { font-size: 0.85rem; margin-bottom: 0; }

/* Job cards */
.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 2.5rem;
  margin-bottom: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  transition: all 0.35s var(--ease);
}
.job-card:hover { border-color: var(--gold-light); box-shadow: var(--shadow-sm); }
.job-card h3 { margin-bottom: 0.2rem; }
.job-card .label { margin-bottom: 0.4rem; }
.job-card p { font-size: 0.88rem; margin: 0; }
.job-badge {
  padding: 0.4rem 1.2rem;
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* ═══ FOOTER (compact) ═══ */
.footer { background: #050505; padding: 1.5rem 0 0; }
.footer-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
}
.footer-brand { flex-shrink: 0; }
.footer-logo { height: 32px; width: auto; filter: brightness(0) invert(1); margin-bottom: 0.5rem; opacity: 0.7; }
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0; }
.footer-desc a { color: rgba(255,255,255,0.7); }
.footer-desc a:hover { color: var(--gold); }
.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s var(--ease);
}
.footer-nav a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 0.5rem; flex-shrink: 0; }
.footer-social a {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  transition: all 0.3s var(--ease);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  padding: 0.7rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.4rem;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-copy a { color: var(--gold); opacity: 0.75; }
.footer-copy a:hover { opacity: 1; }

/* Area pages links */
.footer-areas {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-areas-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.footer-areas a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s var(--ease);
}
.footer-areas a:hover { color: var(--gold); }

/* ═══ BRIDAL SUITE GALLERY ═══ */
.bridal-suite-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.bridal-suite-photo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.bridal-suite-photo .img-placeholder {
  border-radius: 0;
  min-height: auto;
}
.bridal-suite-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bridal-suite-label {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(0,0,0,0.6);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
@media (max-width: 768px) {
  .bridal-suite-gallery { grid-template-columns: 1fr; }
}

/* ═══ PHOTO BANNER ═══ */
.photo-banner {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}
.photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
  pointer-events: none;
}
@media (max-width: 768px) { .photo-banner { height: 220px; } }

/* ═══ RATING SHOWCASE ═══ */
.rating-showcase {
  margin-top: 1.5rem;
}
.rating-showcase .rating-stars {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.rating-showcase .rating-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.rating-showcase .rating-count {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}
.rating-showcase .rating-count strong {
  color: var(--text-dark);
}

/* Meevo embed wrapper */
.meevo-embed {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border: 1px solid rgba(201,169,110,0.15);
}
.meevo-embed iframe {
  display: block;
  margin: 0 auto;
}

/* ═══ TIMELINE PROGRESSION ═══ */
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.timeline-line {
  position: absolute;
  top: 2rem;
  left: 5%;
  right: 5%;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  z-index: 0;
  transform: translateY(18px);
}
.timeline-line-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 1.5s var(--ease-out);
}
.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.timeline-step.active {
  opacity: 1;
  transform: translateY(0);
}
.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.5s var(--ease);
}
.timeline-dot span {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-muted);
  transition: color 0.5s var(--ease);
}
.timeline-step.active .timeline-dot {
  border-color: var(--gold);
  background: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(201,169,110,0.3);
}
.timeline-step.active .timeline-dot span {
  color: #fff;
}
.timeline-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.timeline-content p {
  font-size: 0.88rem;
  max-width: 200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-top: 0;
    padding-left: 2.5rem;
  }
  .timeline-line {
    top: 0;
    bottom: 0;
    left: 0.9rem;
    right: auto;
    width: 3px;
    height: 100%;
    transform: none;
  }
  .timeline-step {
    text-align: left;
    padding: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .timeline-dot {
    margin: 0;
    flex-shrink: 0;
    position: absolute;
    left: -2.5rem;
  }
  .timeline-content { max-width: none; }
  .timeline-content p { max-width: none; }
}

/* ═══ ANIMATIONS ═══ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-20px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(20px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.fade-in-scale { opacity: 0; transform: scale(0.96); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-in-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.stagger-children > * { opacity: 0; transform: translateY(14px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }
.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.07s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.14s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.21s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.28s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.35s; }
.stagger-children.visible > * { opacity: 1; transform: translateY(0); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1000px) {
  .hamburger { display: flex; }
  .ticker { height: 28px; font-size: 0.65rem; }
  .nav { top: 28px; }
  .scroll-progress { top: 28px; }
  .nav-links, .nav-right-group { display: none; }
  .hamburger { position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%); z-index: 200; }
  .nav-links.open {
    display: flex;
    position: fixed; top: 0; right: 0;
    width: 300px; height: 100dvh;
    background: var(--mobile-menu-bg);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    border-left: 1px solid var(--mobile-menu-border);
    z-index: 99;
    animation: slideIn 0.3s var(--ease-out);
  }
  @keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
  .nav-links.open a {
    color: var(--mobile-link-color);
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
  }
  .nav-links.open ~ .nav-right-group {
    display: flex;
    position: fixed;
    bottom: 2rem; right: 0;
    width: 300px;
    flex-direction: column;
    padding: 0 2rem;
    z-index: 99;
    gap: 0.8rem;
  }
  .nav-links.open ~ .nav-right-group .btn { width: 100%; justify-content: center; }
  .nav-links.open ~ .nav-right-group .nav-phone { color: var(--nav-phone); text-align: center; }
  .section { padding: 70px 0; }
  .section-alt { padding: 70px 0; }
  .service-grid, .service-overview-grid { grid-template-columns: 1fr 1fr; padding: 0 2rem; }
  .feature { grid-template-columns: 1fr; }
  .feature.reverse { direction: ltr; }
  .feature-body { padding: 3rem 2rem; }
  .feature-img .img-placeholder, .feature-img .img-styled { min-height: 350px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-cta-grid { grid-template-columns: 1fr; gap: 2rem; }
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: 1fr; }
  .service-callout { flex-direction: column; text-align: center; }
  .service-callout .card-link { margin-left: 0; margin-top: 0.6rem; }
  .team-carousel-wrap { padding: 0 2.5rem; }
  .team-carousel .team-card { flex: 0 0 260px; }
  .footer-compact { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .feature-cards { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
}
@media (max-width: 768px) {
  .service-grid, .service-overview-grid { grid-template-columns: 1fr; }
  .price-cols { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2 160px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; align-items: flex-start; }
  .steps-grid, .feature-cards { grid-template-columns: 1fr; }
  .cta { padding: 60px 0; }
}
@media (max-width: 480px) {
  .wrap, .wrap-narrow { padding: 0 1.2rem; }
  .gallery-grid { columns: 2 120px; gap: 4px; }
  .feature-body { padding: 2rem 1.2rem; }
  .team-carousel-wrap { padding: 0 2rem; }
  .team-carousel .team-card { flex: 0 0 240px; }
  .carousel-btn { width: 32px; height: 32px; font-size: 0.6rem; }
  .nav-inner { padding: 0 1.2rem; }
  .service-grid, .service-overview-grid { padding: 0 1.2rem; }
}
