/* ============================================================
   NYQSE — style.css
   Luxury beauty website — elegant, minimal, feminine
   ============================================================ */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  /* Colours */
  --bg:            #f5efec;
  --bg-2:          #f8f4f2;
  --surface:       rgba(255, 255, 255, 0.52);
  --surface-mid:   rgba(255, 255, 255, 0.64);
  --surface-strong:rgba(255, 255, 255, 0.78);
  --text:          #5e4a43;
  --text-dark:     #2d1f1b;
  --muted:         rgba(80, 60, 53, 0.72);
  --line:          rgba(120, 89, 76, 0.13);
  --accent:        #b89686;
  --accent-dark:   #8f6f62;
  --accent-light:  #d8c4bb;
  --accent-soft:   rgba(184, 150, 134, 0.15);

  /* Shadows */
  --shadow-sm:  0 8px 24px rgba(89, 63, 53, 0.07);
  --shadow:     0 20px 56px rgba(89, 63, 53, 0.1);
  --shadow-lg:  0 32px 80px rgba(89, 63, 53, 0.14);

  /* Radii */
  --r-xs:  12px;
  --r-sm:  18px;
  --r-md:  24px;
  --r-lg:  32px;
  --r-xl:  40px;

  /* Layout */
  --container: min(1180px, calc(100% - 40px));
  --container-sm: min(860px, calc(100% - 40px));

  /* Transitions */
  --t: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-slow: 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Jost", sans-serif;
  background: linear-gradient(175deg, #ede5e1 0%, #f7f3f0 50%, #ede7e3 100%);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   BACKGROUND DECORATION
   ============================================================ */
.bg-blur {
  position: fixed;
  z-index: -3;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.blur-1 {
  width: 440px;
  height: 440px;
  top: 60px;
  left: -120px;
  background: radial-gradient(circle, #e8d5cb, #f0e6e0);
}

.blur-2 {
  width: 380px;
  height: 380px;
  bottom: 120px;
  right: -80px;
  background: radial-gradient(circle, #e2d3cc, #ede7e3);
}

.blur-3 {
  width: 280px;
  height: 280px;
  top: 55%;
  left: 40%;
  background: radial-gradient(circle, #f0e4de, transparent);
  opacity: 0.3;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.14) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, transparent 80%);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: var(--container);
  margin: 0 auto;
}

.container--sm {
  width: var(--container-sm);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 100px 0;
}

.section-small {
  padding: 0 0 48px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.0;
  letter-spacing: 0.01em;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--accent-dark);
}

.section-text {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 680px;
}

.section-text.narrow {
  max-width: 560px;
}

.section-heading {
  margin-bottom: 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  backdrop-filter: blur(12px);
  font-family: "Jost", sans-serif;
  font-weight: 500;
}

/* ============================================================
   GLASS CARD BASE
   ============================================================ */
.glass-card {
  background: linear-gradient(160deg, var(--surface-strong), var(--surface));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  background: rgba(247, 243, 240, 0.7);
  border-bottom: 1px solid rgba(180, 140, 120, 0.1);
  transition: background var(--t), box-shadow var(--t);
}

.site-header.scrolled {
  background: rgba(247, 243, 240, 0.92);
  box-shadow: 0 4px 24px rgba(89, 63, 53, 0.07);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.brand-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  font-weight: 600;
}

.brand-sub {
  margin-top: 3px;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-dark);
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
  transition: color var(--t);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--accent-dark);
  transition: width var(--t);
}

.nav-links a:hover {
  color: var(--text-dark);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 11px 22px !important;
  border-radius: 999px !important;
  background: var(--text-dark) !important;
  color: #fff !important;
  font-size: 0.86rem !important;
  transition: background var(--t), transform var(--t) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px) !important;
  color: #fff !important;
}

/* Hamburger */
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
  border-radius: var(--r-sm);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background var(--t);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.72);
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 1.5px;
  background: var(--text-dark);
  transition: var(--t);
}

.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child  { top: 26px; }

.menu-toggle.open span:first-child {
  transform: rotate(45deg) translate(4px, 4px);
}
.menu-toggle.open span:last-child {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
  will-change: transform;
}

.btn span {
  position: relative;
  z-index: 2;
}

/* Sheen animation */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255,255,255,0.15) 45%,
    rgba(255,255,255,0.3) 50%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  z-index: 1;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-dark) 0%, #7a5f54 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(143, 111, 98, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 40px rgba(143, 111, 98, 0.32);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.56);
  border-color: var(--line);
  color: var(--accent-dark);
}

.btn-ghost:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(89, 63, 53, 0.08);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: 64px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 8vw, 7.2rem);
  line-height: 0.92;
  color: var(--text-dark);
  font-weight: 600;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}

.hero-copy h1 em {
  display: block;
  font-style: italic;
  color: var(--accent-dark);
}

.hero-copy > p {
  max-width: 500px;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 620px;
  box-shadow: 0 32px 80px rgba(73, 53, 46, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04) 0%,
    rgba(245,239,236,0.12) 40%,
    rgba(245,239,236,0.72) 100%
  );
  z-index: 1;
}

.hero-card-overlay {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 2;
}

.mini-card {
  max-width: 300px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(88, 61, 52, 0.1);
}

.mini-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-dark);
  margin-bottom: 6px;
  font-weight: 500;
}

.mini-card strong {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
}

/* Decorative ring behind hero image */
.hero-ring {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(184, 150, 134, 0.22);
  top: -40px;
  right: -60px;
  z-index: -1;
  pointer-events: none;
}

/* Scroll indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 52px;
  opacity: 0.5;
}

.scroll-indicator span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent-dark), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* Floating animation */
.floating {
  animation: floating 7s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  padding: 48px 0;
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, var(--surface-strong), var(--surface));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px 40px;
  flex-wrap: wrap;
}

.trust-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 8px 20px;
}

.trust-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.trust-stars {
  color: var(--accent-dark);
  font-size: 1rem;
  letter-spacing: 2px;
}

.trust-rating strong,
.trust-number {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
}

.trust-number span {
  font-size: 1.8rem;
  color: var(--accent-dark);
}

.trust-label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.trust-divider {
  width: 1px;
  height: 52px;
  background: var(--line);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 580px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dark), #7a5a4f);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.3;
  box-shadow: 0 12px 32px rgba(143, 111, 98, 0.35);
  border: 3px solid rgba(255,255,255,0.6);
}

.about-badge-icon {
  font-size: 1.1rem;
  opacity: 0.8;
}

.about-content {
  padding: 12px 0;
}

.about-content > p + p {
  margin-top: 14px;
}

.about-sigs {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.about-sig {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 400;
}

.sig-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-dark);
  flex-shrink: 0;
}

.info-strip {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.info-item {
  padding: 18px 16px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}

.info-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.info-item span {
  display: block;
  font-size: 0.72rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  font-weight: 500;
}

.info-item strong {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: linear-gradient(160deg, var(--surface-strong), var(--surface));
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-inner {
  padding: 34px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-accent-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-light));
  border-radius: 999px;
  margin-bottom: 20px;
}

.service-icon {
  font-size: 1.4rem;
  color: var(--accent-dark);
  opacity: 0.6;
  margin-bottom: 14px;
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
  flex: 1;
}

.service-card ul {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.service-card li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-dark);
  letter-spacing: 0.04em;
  transition: gap var(--t), color var(--t);
}

.service-link:hover {
  gap: 10px;
  color: var(--text-dark);
}

.service-link span {
  transition: transform var(--t);
}

.service-link:hover span {
  transform: translateX(3px);
}

/* ============================================================
   BEFORE & AFTER SLIDESHOW
   ============================================================ */
/* ============================================================
   BEFORE & AFTER — VIDEO SECTION
   ============================================================ */
.ba-section {
  overflow: visible;
}

/* Each before/after pair block */
.ba-pair-block {
  margin-bottom: 56px;
}

.ba-pair-block:last-of-type {
  margin-bottom: 0;
}

/* Small label row above each pair: "01 — Treatment name" */
.ba-pair-label {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
}

.ba-pair-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--accent-light);
  line-height: 1;
  letter-spacing: -0.02em;
}

.ba-pair-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--accent-dark);
  font-weight: 400;
}

/* The row that holds before card + arrow + after card */
.ba-pair-videos {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

/* Arrow divider between before and after */
.ba-divider-arrow {
  font-size: 1.4rem;
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.7;
  user-select: none;
}

/* Individual video card */
.ba-video-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: linear-gradient(160deg, var(--surface-strong), var(--surface));
  box-shadow: var(--shadow);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  position: relative;
}

.ba-video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* After card gets a very subtle warm tint to feel "brighter" */
.ba-video-card--after {
  box-shadow: 0 20px 56px rgba(143, 111, 98, 0.14);
}

.ba-video-card--after:hover {
  box-shadow: 0 32px 80px rgba(143, 111, 98, 0.2);
}

/* Video wrapper — enforces portrait aspect ratio (9:16 typical phone footage) */
.ba-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #ede5e1;
  overflow: hidden;
}

.ba-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Label strip at the bottom of each card */
.ba-video-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.ba-video-label--after {
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.65);
}

.ba-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-light);
  flex-shrink: 0;
}

.ba-label-dot--after {
  background: var(--accent-dark);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .ba-pair-videos {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  /* Hide the arrow on small screens, the layout speaks for itself */
  .ba-divider-arrow {
    display: none;
  }

  .ba-pair-block {
    margin-bottom: 44px;
  }
}

@media (max-width: 560px) {
  .ba-pair-videos {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ba-pair-number {
    font-size: 2rem;
  }

  .ba-pair-title {
    font-size: 1.1rem;
  }

  .ba-video-label {
    padding: 10px 14px;
    font-size: 0.7rem;
  }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  overflow: hidden;
}

.reviews-carousel {
  position: relative;
  margin-top: 0;
}

.reviews-track {
  display: flex;
  gap: 22px;
  padding: 0 calc((100% - var(--container)) / 2);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card {
  min-width: 360px;
  max-width: 360px;
  padding: 32px 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--surface-strong), var(--surface));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  flex-shrink: 0;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.review-stars {
  color: var(--accent-dark);
  font-size: 1rem;
  letter-spacing: 3px;
}

.review-card blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-dark);
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

.review-author span {
  font-size: 0.78rem;
  color: var(--muted);
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 32px;
}

.reviews-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.reviews-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-light);
  cursor: pointer;
  transition: width var(--t), background var(--t);
}

.reviews-dot.active {
  width: 22px;
  background: var(--accent-dark);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  padding: 32px 26px;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--surface-strong), var(--surface));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.why-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.why-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.price-card {
  padding: 34px 30px;
  border-radius: var(--r-lg);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.price-card--featured {
  border-color: rgba(143, 111, 98, 0.3);
  background: linear-gradient(160deg, rgba(255,255,255,0.9), rgba(255,255,255,0.65));
}

.price-card-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.price-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.price-card-icon {
  font-size: 1.2rem;
  color: var(--accent-dark);
  opacity: 0.7;
}

.price-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.price-items {
  display: grid;
  gap: 2px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.price-item:last-child {
  border-bottom: none;
}

.price-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.price-item strong {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.price-item--highlight {
  background: var(--accent-soft);
  margin: 0 -6px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: var(--r-xs);
  border-bottom: none !important;
}

/* ============================================================
   COURSES
   ============================================================ */
.course-stack {
  display: grid;
  gap: 16px;
}

.course-card {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 32px;
  border-radius: var(--r-lg);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.course-card--all {
  background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.6));
  border-color: rgba(143, 111, 98, 0.25);
}

.course-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent-light);
  line-height: 1;
  min-width: 60px;
  flex-shrink: 0;
}

.course-content {
  flex: 1;
}

.course-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.course-price {
  font-size: 1rem;
  color: var(--accent-dark);
  font-weight: 400;
  font-style: italic;
}

.course-content p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ============================================================
   POLICY
   ============================================================ */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.policy-card {
  padding: 30px;
  border-radius: var(--r-lg);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}

.policy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.policy-icon {
  font-size: 1.3rem;
  color: var(--accent-dark);
  opacity: 0.55;
  margin-bottom: 14px;
}

.policy-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.policy-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.policy-card li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.policy-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ============================================================
   BOOKING CTA
   ============================================================ */
.booking-cta {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.booking-cta-inner {
  position: relative;
  text-align: center;
  padding: 72px 48px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #8f6f62 0%, #7a5a4f 50%, #6a4d43 100%);
  overflow: hidden;
}

.booking-cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.booking-cta-orb--1 {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
}

.booking-cta-orb--2 {
  width: 300px;
  height: 300px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
}

.booking-cta-inner .eyebrow {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
}

.booking-cta-inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  color: #fff;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 16px;
}

.booking-cta-inner h2 em {
  font-style: italic;
  opacity: 0.85;
}

.booking-cta-inner p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 36px;
}

.booking-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.booking-cta-inner .btn-primary {
  background: rgba(255,255,255,0.95);
  color: var(--accent-dark);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.booking-cta-inner .btn-primary:hover {
  background: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-card,
.cta-panel {
  border-radius: var(--r-xl);
  padding: 38px 36px;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}

.contact-card:hover,
.cta-panel:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact-list {
  margin-top: 28px;
  display: grid;
  gap: 4px;
}

.contact-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item span {
  display: block;
  font-size: 0.72rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
  font-weight: 500;
}

.contact-item strong {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.cta-panel {
  position: relative;
  overflow: hidden;
}

.cta-panel-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -80px;
  top: -80px;
  background: radial-gradient(circle, rgba(216,196,187,0.5), transparent 70%);
  pointer-events: none;
}

.cta-panel-inner {
  position: relative;
  z-index: 1;
}

.cta-panel h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 14px;
}

.cta-panel p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 40px 0 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 32px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  font-weight: 600;
}

.footer-left p {
  font-size: 0.84rem;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.86rem;
  color: var(--muted);
  transition: color var(--t);
}

.footer-nav a:hover {
  color: var(--text-dark);
}

.back-to-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  transition: opacity var(--t);
}

.back-to-top:hover {
  opacity: 0.7;
}

.back-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform var(--t), background var(--t);
}

.back-to-top:hover .back-arrow {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.8);
}

.footer-line {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  text-align: center;
}

.footer-line p {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.7;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card {
    min-height: 480px;
  }

  .about-image {
    height: 420px;
  }

  .about-badge {
    right: 20px;
    bottom: -16px;
  }

  .course-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .trust-divider {
    display: none;
  }

  .trust-grid {
    gap: 12px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: 88px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 18px 22px;
    border-radius: var(--r-md);
    background: rgba(248, 244, 242, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.96rem;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-cta {
    width: 100% !important;
    text-align: center !important;
    padding: 13px 22px !important;
    justify-content: center !important;
    margin-top: 4px !important;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .hero-ring {
    display: none;
  }

  .info-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }

  .booking-cta-inner {
    padding: 52px 30px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 560px) {
  :root {
    --container: min(100% - 24px, 1180px);
  }

  .section {
    padding: 60px 0;
  }

  .hero-copy h1 {
    font-size: 3.6rem;
  }

  .section-title {
    font-size: 2.6rem;
  }

  .hero-card {
    min-height: 360px;
    border-radius: var(--r-lg);
  }

  .service-grid,
  .pricing-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 16px;
  }

  .trust-divider { display: none; }

  .trust-item {
    padding: 16px;
    background: rgba(255,255,255,0.48);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: var(--r-md);
  }

  .review-card {
    min-width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .booking-cta-inner {
    padding: 44px 24px;
    border-radius: var(--r-lg);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .footer-nav {
    gap: 18px;
  }
}