/* ============================================================
   RARIFY BEAUTY - PREMIUM LANDING PAGE CSS
   Brand: #402c21 (warm dark brown) + Gold gradient
   ============================================================ */

/* === DESIGN TOKENS === */
:root {
  --primary: #402c21;
  --primary-light: #5a3d2b;
  --primary-dark: #2d1e16;
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --gold-dark: #9a7a4a;
  --gold-gradient: linear-gradient(135deg, #c9a96e 0%, #e8d5a3 40%, #c9a96e 60%, #9a7a4a 100%);
  --gold-gradient-alt: linear-gradient(135deg, #b8860b 0%, #daa520 30%, #f5d060 55%, #daa520 75%, #b8860b 100%);
  --cream: #faf6f1;
  --cream-dark: #f0e8dc;
  --white: #ffffff;
  --text-dark: #1a1008;
  --text-mid: #5a3d2b;
  --text-light: #9a8070;
  --shadow-sm: 0 2px 12px rgba(64, 44, 33, 0.08);
  --shadow-md: 0 8px 32px rgba(64, 44, 33, 0.14);
  --shadow-lg: 0 20px 60px rgba(64, 44, 33, 0.2);
  --shadow-gold: 0 8px 32px rgba(201, 169, 110, 0.35);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
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; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }
h1 { font-size: clamp(3rem, 6vw, 6rem); font-weight: 600; }
h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 500; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 500; }
em { font-style: italic; }

/* === LAYOUT === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-110%) skewX(-15deg);
  transition: transform 0.5s ease;
}
.btn:hover::before { transform: translateX(110%) skewX(-15deg); }

.btn-gold {
  background: var(--gold-gradient-alt);
  color: var(--primary-dark);
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.5);
  filter: brightness(1.05);
}
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-lg { padding: 17px 40px; font-size: 0.9rem; }
.btn-sm { padding: 10px 22px; font-size: 0.78rem; }
.btn-full { width: 100%; justify-content: center; }

/* === SECTION LABELS === */
.section-label {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 36px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 1px;
  background: var(--gold-gradient);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}
.section-header .section-label { padding-left: 0; }
.section-header .section-label::before { display: none; }
.section-title { color: var(--primary-dark); margin-bottom: 20px; }
.section-title em { color: var(--gold-dark); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* === PAGE LOADER === */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { text-align: center; }
.loader-logo { width: 220px; margin: 0 auto 32px; animation: loaderPulse 2s ease infinite; }
.loader-bar {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--gold-gradient);
  animation: loaderFill 1.8s ease forwards;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}
@keyframes loaderFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* === SCROLL REVEAL === */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 24px 0;
}
.site-header.scrolled {
  background: rgba(26, 16, 8, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  padding: 14px 0;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-logo img {
  height: 44px;
  width: auto;
  transition: var(--transition);
  filter: brightness(1);
}
.site-header.scrolled .header-logo img { height: 36px; }
.header-nav { flex: 1; }
.header-nav ul {
  display: flex;
  gap: 36px;
  justify-content: center;
}
.nav-link {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }

.header-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { text-align: center; }
.mobile-nav li { margin-bottom: 8px; }
.mobile-nav-link {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--cream);
  padding: 8px 0;
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-link.book-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  border: 1px solid var(--gold);
  padding: 14px 36px;
}
.mobile-close {
  position: absolute;
  top: 28px;
  right: 40px;
  font-size: 1.6rem;
  color: var(--cream);
  transition: color var(--transition-fast);
}
.mobile-close:hover { color: var(--gold); }

@media (max-width: 1024px) {
  .header-nav, .header-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .header-inner { gap: 16px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 60%, rgba(201, 169, 110, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(90, 61, 43, 0.25) 0%, transparent 45%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 16, 8, 0.98) 0%,
    rgba(26, 16, 8, 0.94) 38%,
    rgba(26, 16, 8, 0.5) 58%,
    rgba(26, 16, 8, 0.05) 75%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  grid-column: 1;
  padding: 140px 60px 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-badge {
  display: inline-flex;
  align-self: flex-start;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.35);
  padding: 9px 20px 9px 16px;
  border-radius: 4px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--gold-gradient);
  flex-shrink: 0;
}
.hero-title { margin-bottom: 24px; }
.hero-title-script {
  display: block;
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1.3;
}
.hero-title-main {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-subtitle em { color: var(--gold-light); font-style: italic; }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Hero Image Collage */
.hero-image-collage {
  position: relative;
  grid-column: 2;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  overflow: hidden;
  min-height: 100vh;
}
.hero-image-collage::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 160px;
  height: 100%;
  background: linear-gradient(to right, var(--primary-dark) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-img-frame {
  overflow: hidden;
  position: relative;
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
  transition: transform 8s ease, filter 0.8s ease;
}
.hero-img-frame:hover img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(1.1);
}
.hero-img-1 { grid-row: 1 / 3; }
.hero-img-2 { }
.hero-img-3 { }

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 27.5%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  opacity: 0.5;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease infinite;
}
.hero-scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 1024px) {
  .hero-image-collage { display: none; }
  .hero-section { grid-template-columns: 1fr; min-height: 100svh; }
  .hero-content { padding: 120px 20px 80px; grid-column: 1; justify-content: center; }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}
.marquee-track {
  display: flex;
  gap: 32px;
  animation: marquee 35s linear infinite;
  width: max-content;
  align-items: center;
}
.marquee-track span {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  white-space: nowrap;
}
.marquee-dot {
  color: var(--gold) !important;
  font-size: 0.5rem !important;
  opacity: 0.8;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: 'RARIFY';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20vw;
  font-weight: 700;
  color: rgba(201, 169, 110, 0.04);
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 1;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(26, 16, 8, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 40px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.badge-icon { color: var(--gold); font-size: 0.55rem; }

.about-img-secondary {
  position: absolute;
  bottom: -36px;
  right: -36px;
  width: 52%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}
.about-img-secondary img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-floating-card {
  position: absolute;
  top: 32px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 3px solid var(--gold);
  z-index: 2;
}
.fc-icon { font-size: 1.6rem; }
.fc-text { display: flex; flex-direction: column; gap: 2px; }
.fc-text strong { font-size: 0.85rem; color: var(--primary-dark); font-weight: 600; }
.fc-text span { font-size: 0.72rem; color: var(--text-light); letter-spacing: 0.05em; }

.about-content { padding-left: 20px; }
.about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 20px;
  font-style: italic;
}
.about-text {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 1rem;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.value-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.value-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-content { padding-left: 0; }
  .about-img-secondary { bottom: -24px; right: -16px; }
  .about-floating-card { right: 12px; top: 20px; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.services-bg-pattern {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 0% 100%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(64, 44, 33, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(201, 169, 110, 0.15);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 169, 110, 0.3);
}
.service-card-inner { height: 100%; display: flex; flex-direction: column; }
.service-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 16, 8, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover .service-img-overlay { opacity: 1; }
.service-book-btn {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--gold-gradient-alt);
  padding: 12px 28px;
  border-radius: 2px;
  transition: transform var(--transition);
}
.service-book-btn:hover { transform: scale(1.05); }

.service-img-skin {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  aspect-ratio: 16/9;
  position: relative;
}
.skin-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.skin-icon { font-size: 3rem; }
.skin-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gold);
  font-style: italic;
}

.service-content { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.2);
  line-height: 1;
  margin-bottom: -8px;
  display: block;
}
.service-title {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  flex: 1;
}
.service-list li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  top: 5px;
}
.service-link {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-dark);
  transition: color var(--transition), gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-link:hover { color: var(--primary); gap: 14px; }

.services-cta {
  text-align: center;
  margin-top: 64px;
  padding: 48px;
  background: var(--cream);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 169, 110, 0.2);
}
.services-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 24px;
}

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

/* ============================================================
   EXPERIENCE STRIP
   ============================================================ */
.experience-strip {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  overflow: hidden;
  position: relative;
}
.experience-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.experience-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}
.exp-text { padding: 100px 0; }
.exp-text .section-label { color: rgba(201, 169, 110, 0.8); }
.exp-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 24px;
}
.exp-text h2 em { color: var(--gold); }
.exp-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 480px;
}
.exp-image {
  position: relative;
  height: 600px;
}
.exp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.exp-image-accent {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(201, 169, 110, 0.3);
  pointer-events: none;
  transform: translate(12px, 12px);
}

@media (max-width: 1024px) {
  .experience-content { grid-template-columns: 1fr; gap: 0; }
  .exp-text { padding: 80px 0 40px; }
  .exp-image { height: 400px; }
  .exp-image-accent { display: none; }
}
@media (max-width: 480px) {
  .experience-content { padding: 0 20px; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  padding: 120px 0;
  background: var(--cream);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0 40px;
  margin-bottom: 48px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.4s ease;
  filter: brightness(0.95) saturate(0.95);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 16, 8, 0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.gallery-cta {
  text-align: center;
  padding: 0 40px;
}

@media (max-width: 640px) {
  .gallery-masonry { grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 20px; }
  .gallery-cta { padding: 0 20px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 120px 0;
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(90, 61, 43, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-desc { color: rgba(255,255,255,0.5); }

.testimonials-slider {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow: hidden;
}
.testimonial-track-outer {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.testimonial-track {
  display: flex;
  width: 100%;
  max-width: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  box-sizing: border-box;
  padding: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  word-break: break-word;
  overflow-wrap: break-word;
}
.testimonial-stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 32px;
  quotes: '\201C' '\201D';
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex: 1;
}
.testimonial-card blockquote::before { content: open-quote; }
.testimonial-card blockquote::after { content: close-quote; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--gold-gradient-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-dark);
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.author-info span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 0;
}
.testimonial-prev, .testimonial-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  transition: var(--transition);
}
.testimonial-prev:hover, .testimonial-next:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--gold);
}
.testimonial-dots { display: flex; gap: 8px; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: var(--transition);
}
.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .testimonials-section { padding: 80px 0; overflow-x: hidden; }
  .testimonials-slider { gap: 24px; }
  .testimonial-track-outer { border-radius: var(--radius-lg); }
  .testimonial-card {
    padding: 28px 20px;
    border-radius: var(--radius-lg);
  }
  .testimonial-stars { margin-bottom: 16px; font-size: 0.85rem; letter-spacing: 3px; }
  .testimonial-card blockquote {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .author-avatar { width: 42px; height: 42px; font-size: 1rem; }
  .author-info strong { font-size: 0.85rem; }
  .author-info span { font-size: 0.72rem; }
  .testimonial-controls { margin-top: 0; gap: 16px; }
  .testimonial-prev, .testimonial-next { width: 44px; height: 44px; font-size: 1rem; }
}

@media (max-width: 480px) {
  .testimonial-card { padding: 22px 16px; }
  .testimonial-card blockquote { font-size: 0.98rem; line-height: 1.55; }
}

/* ============================================================
   BOOKING CTA
   ============================================================ */
.booking-cta-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.booking-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
}
.booking-cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 45%);
}
.booking-cta-overlay {
  display: none;
}
.booking-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 40px;
  max-width: 640px;
}
.booking-cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin: 16px 0 24px;
}
.booking-cta-title em { color: var(--gold); }
.booking-cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 36px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 120px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}
.contact-item span, .contact-item a {
  font-size: 0.92rem;
  color: var(--primary-dark);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--gold-dark); }

.contact-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 40px;
  font-size: 0.8rem;
  color: var(--primary-dark);
  font-weight: 500;
  transition: var(--transition);
}
.social-pill:hover {
  background: var(--primary-dark);
  color: var(--gold-light);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 {
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(201, 169, 110, 0.25);
  border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  color: var(--primary-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-success {
  display: none;
  text-align: center;
  margin-top: 20px;
  padding: 16px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-sm);
  color: var(--gold-dark);
  font-size: 0.88rem;
  font-weight: 500;
}
.form-success.visible { display: block; animation: fadeIn 0.4s ease; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 36px 28px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--primary-dark); }
.footer-top { padding: 80px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.footer-logo { width: 160px; margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links li a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-contact-details {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-details a, .footer-contact-details span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-contact-details a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-top { padding: 60px 0; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* ============================================================
   RESPONSIVE GLOBAL
   ============================================================ */
@media (max-width: 768px) {
  .about-section, .services-section, .gallery-section,
  .testimonials-section, .contact-section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }
  .about-img-secondary { display: none; }
  .about-floating-card { display: none; }
  .hero-content { padding: 100px 20px 60px; }
  .experience-content { padding: 0 20px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
}
