/* ==========================================================================
   ANNE BEAUTY STUDIO & ACADEMY — Luxury Design System v2.0
   Noir · Bordeaux · Walnut · Playfair Display · Inter
   Mobile-First · Scroll Animations · Hostinger Ready
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── CSS Custom Properties ─────────────────────────────────────────────── */
:root {
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Core Palette — Old Mahogany & Deep Black */
  --noir:           #0A0A0A;
  --noir-soft:      #111111;
  --noir-card:      #181818;
  --bordeaux:       #4A0100; /* Old Mahogany deep dark reddish-brown */
  --bordeaux-light: #680806;
  --bordeaux-pale:  #200202;
  --walnut:         #684B30;
  --walnut-light:   #8E6C4C;
  --walnut-pale:    #EAE3D2; /* Light cream tone */

  /* Light / Neutral */
  --offwhite:   #FAF9F6;
  --cream:      #F5F0E8;
  --parchment:  #EDE8DF;
  --parchment2: #E3DDD5;

  /* Text */
  --text-dark:  #1A1410;
  --text-mid:   #5C4A3A;
  --text-light: #F5F0E8;
  --text-muted: #9A8878;

  /* Accents — Light cream tone */
  --gold-line: #F5F0E8;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.18);
  --shadow-noir: 0 8px 40px rgba(0,0,0,0.5);

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:   0.2s var(--ease-in-out);
  --t-normal: 0.4s var(--ease-out);
  --t-slow:   0.7s var(--ease-out);

  /* Layout */
  --container-max: 1200px;
  --nav-height: 72px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--offwhite);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  padding-bottom: 72px; /* mobile bar space */
}

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; }
a { color: inherit; text-decoration: none; transition: var(--t-fast); }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; }

/* ─── Utility Classes ────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1200px) { .container { padding: 0 60px; } }

.hidden { display: none !important; }
.hidden-view { display: none !important; }
.active-view { display: block; }

.noir-section { background: var(--noir); color: var(--text-light); }
.cream-section { background: var(--cream); }
.parchment-section { background: var(--parchment); }

/* ─── Scroll Reveal Animations ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.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.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }
.reveal-left  { opacity:0; transform: translateX(-32px); transition: opacity var(--t-slow), transform var(--t-slow); }
.reveal-right { opacity:0; transform: translateX(32px);  transition: opacity var(--t-slow), transform var(--t-slow); }
.reveal-left.is-visible, .reveal-right.is-visible { opacity:1; transform: translateX(0); }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bordeaux);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.btn-primary:hover { background: var(--bordeaux-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(74, 1, 0,0.4); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 31px;
  border: 1px solid var(--text-dark);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.btn-ghost:hover { background: var(--text-dark); color: #fff; }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-light);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 31px;
  border: 1px solid rgba(245,240,232,0.5);
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.btn-ghost-light:hover { background: rgba(245,240,232,0.1); border-color: var(--text-light); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bordeaux);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.btn-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--bordeaux);
  transition: width var(--t-normal);
}
.btn-text:hover::after { width: 100%; }

/* ─── Section Labels & Eyebrows ──────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 12px;
}
.section-label.cream { color: var(--walnut-pale); }
.section-label.muted { color: var(--text-muted); }

.section-header { margin-bottom: 48px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section-header.centered { text-align: center; }
.section-header.centered .section-label { display: block; }
.section-header p {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 540px;
}
.section-header.centered p { margin: 16px auto 0; }

/* Decorative thin line */
.deco-line {
  width: 48px;
  height: 1px;
  background: var(--gold-line);
  margin: 20px 0;
}
.deco-line.centered { margin: 20px auto; }

/* ─── NAVIGATION ─────────────────────────────────────────────────────────── */
.main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  /* Solid black on start */
  background: #0A0A0A;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--t-normal), backdrop-filter var(--t-normal), box-shadow var(--t-normal), border-color var(--t-normal);
}
.main-header.scrolled {
  /* Blur reddish-brown mahogany on scroll */
  background: rgba(42, 4, 5, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
  border-bottom-color: rgba(116, 12, 14, 0.35);
}

.nav-wrap {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  flex-shrink: 0;
}
.logo-wordmark {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}
.logo-wordmark span { color: var(--bordeaux); }
.logo-sub {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.62); /* Light cream — matches other nav text */
  margin-top: 2px;
}

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 1024px) { .desktop-nav { display: flex; } }

.nav-link {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  padding: 8px 14px;
  position: relative;
  transition: color var(--t-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--bordeaux);
  transform: scaleX(0);
  transition: transform var(--t-normal);
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Dropdown nav item */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  padding: 8px 14px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--t-fast);
}
.nav-dropdown-btn:hover, .nav-dropdown-btn.active { color: #fff; }
.nav-dropdown-btn svg { transition: transform var(--t-fast); }
.nav-dropdown-btn.open svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -20px;
  background: var(--noir-soft);
  border: 1px solid rgba(255,255,255,0.08);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown-btn.open ~ .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-link {
  display: block;
  padding: 10px 24px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.65);
  transition: color var(--t-fast), background var(--t-fast);
}
.dropdown-link:hover { color: #fff; background: rgba(107,31,58,0.25); }

/* Nav CTA */
.nav-cta {
  display: none;
  background: var(--bordeaux);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: background var(--t-fast);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--bordeaux-light); }
@media (min-width: 768px) { .nav-cta { display: inline-block; } }

/* Hamburger */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 1024px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: transform var(--t-normal), opacity var(--t-fast);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE DRAWER ──────────────────────────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: var(--nav-height);
  right: 0;
  width: min(360px, 100vw);
  height: calc(100vh - var(--nav-height));
  background: var(--noir);
  transform: translateX(100%);
  transition: transform var(--t-normal);
  z-index: 999;
  overflow-y: auto;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-normal), visibility var(--t-normal);
  z-index: 998;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

.drawer-inner { padding: 32px 28px 40px; }

.drawer-section-title {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  margin-top: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.drawer-section-title:first-child { margin-top: 0; }

.drawer-link {
  display: block;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(245,240,232,0.75);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.drawer-link:hover { color: #fff; padding-left: 8px; }
.drawer-link.small {
  font-size: 0.8125rem;
  color: rgba(245,240,232,0.5);
  padding: 7px 0;
}

.drawer-cta {
  display: block;
  text-align: center;
  margin-top: 32px;
  background: var(--bordeaux);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px;
  transition: background var(--t-fast);
}
.drawer-cta:hover { background: var(--bordeaux-light); }

/* ─── HERO — HOME ────────────────────────────────────────────────────────── */
.hero-main {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--nav-height);
}
@media (max-width: 767px) { .hero-main { margin-top: var(--nav-height); height: calc(100svh - var(--nav-height)); } }

.hero-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.87) 0%,
    rgba(10,10,10,0.65) 50%,
    rgba(74, 1, 0,0.32) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 0;
}

.hero-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--walnut-pale);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--walnut-pale);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .italic { font-style: italic; color: var(--bordeaux); }

.hero-sub {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: rgba(245,240,232,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,240,232,0.4);
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.6); opacity: 0.8; }
}

/* ─── MARQUEE STRIP ──────────────────────────────────────────────────────── */
.marquee-strip {
  background: var(--bordeaux);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.marquee-item::after {
  content: '✦';
  opacity: 0.6;
  font-size: 0.5rem;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SERVICES GRID — HOME ───────────────────────────────────────────────── */
.section-services {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--parchment2);
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--offwhite);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--bordeaux);
  transform: scaleX(0);
  transition: transform var(--t-normal);
  transform-origin: left;
}
.service-card:hover { background: var(--cream); }
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 36px;
  height: 36px;
  color: var(--bordeaux);
}
.service-card-name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}
.service-card-desc {
  font-size: 0.8125rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
}
.service-card-cta {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bordeaux);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.service-card-cta svg { transition: transform var(--t-fast); }
.service-card:hover .service-card-cta svg { transform: translateX(4px); }

/* ─── ABOUT TEASER (dark strip) ──────────────────────────────────────────── */
.section-about-teaser {
  background: var(--noir);
  padding: 100px 0;
}
.about-teaser-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 768px) {
  .about-teaser-split { grid-template-columns: 1fr 1fr; }
}
.about-teaser-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.about-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.about-teaser-img:hover img { transform: scale(1.03); }
.about-teaser-text { padding: 0 0 0 0; }
.about-teaser-text h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}
.about-teaser-text h2 em { color: var(--bordeaux); font-style: italic; }
.about-teaser-text p {
  color: rgba(245,240,232,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.9375rem;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
  flex-wrap: wrap;
}
.about-stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.about-stat-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── INSTAGRAM SECTION ──────────────────────────────────────────────────── */
.section-instagram {
  padding: 100px 0;
  background: var(--parchment);
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 0 0 40px;
}
@media (min-width: 768px) {
  .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}
@media (min-width: 1024px) {
  .instagram-grid { grid-template-columns: repeat(6, 1fr); gap: 8px; }
}
.ig-item {
  aspect-ratio: 1;
  background: var(--parchment2);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.ig-item-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--noir-card), var(--bordeaux-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease-out);
}
.ig-item:hover .ig-item-inner { transform: scale(1.04); }
.ig-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 1, 0,0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--t-fast);
}
.ig-item:hover .ig-item-overlay { opacity: 1; }
.ig-item-overlay svg { color: #fff; }
.ig-placeholder-icon { color: rgba(255,255,255,0.1); }

.instagram-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.instagram-handle {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-mid);
  font-style: italic;
}
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--noir);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: background var(--t-fast), transform var(--t-fast);
}
.btn-instagram:hover { background: var(--bordeaux); transform: translateY(-1px); }

/* ─── TEAM SECTION ────────────────────────────────────────────────────────── */
.section-team {
  padding: 100px 0;
  background: var(--noir);
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
.team-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.team-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(20%) brightness(0.85);
  transition: transform 0.6s var(--ease-out), filter 0.4s ease;
}
.team-card:hover .team-card-img { transform: scale(1.04); filter: grayscale(0%) brightness(1); }
.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.2) 50%, transparent 100%);
}
.team-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  transform: translateY(8px);
  transition: transform var(--t-normal);
}
.team-card:hover .team-card-info { transform: translateY(0); }
.team-card-name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  color: #fff;
  margin-bottom: 4px;
}
.team-card-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  /* Cream tone — readable on dark photo backgrounds, warm against mahogany */
  color: var(--walnut-pale);
  margin-bottom: 8px;
}
.team-card-specialty {
  font-size: 0.8125rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-normal);
}
.team-card:hover .team-card-specialty { max-height: 80px; }

/* ─── STUDIO TEAM PROFILES ────────────────────────────────────────────── */
.team-profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 640px) {
  .team-profile-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .team-profile-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1280px) {
  .team-profile-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-profile-card {
  background: #171717;
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.team-profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  border-color: rgba(139, 26, 26, 0.4);
}
.team-profile-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #0d0d0d;
}
.team-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease-out);
}
.team-profile-card:hover .team-profile-img {
  transform: scale(1.03);
}
.team-profile-role-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(8px);
  color: var(--walnut-pale);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(245, 240, 232, 0.15);
}
.team-profile-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.team-profile-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 4px;
}
.team-profile-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bordeaux);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.team-profile-bio {
  font-size: 0.8125rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.6;
}

/* ─── HOME FAQ ────────────────────────────────────────────────────────────── */
.section-faq {
  padding: 100px 0;
  background: var(--offwhite);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--parchment2);
}
@media (min-width: 768px) {
  .faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
  .faq-layout .section-header { margin-bottom: 0; }
}
.faq-item {
  border-bottom: 1px solid var(--parchment2);
}
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: var(--text-dark);
  transition: color var(--t-fast);
}
.faq-btn:hover { color: var(--bordeaux); }
.faq-btn.open { color: var(--bordeaux); }
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  color: var(--bordeaux);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: currentColor;
  transition: transform var(--t-fast);
}
.faq-icon::before { width: 12px; height: 1px; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1px; height: 12px; transform: translate(-50%,-50%); }
.faq-btn.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-body.open { max-height: 240px; }
.faq-body p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.75;
  padding: 0 0 24px;
}

/* ─── SERVICE HERO ─────────────────────────────────────────────────────────── */
.svc-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  max-height: 520px;
  margin-top: var(--nav-height);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.svc-hero-bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.4) 60%, rgba(13,13,13,0.2) 100%);
}
.svc-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 56px;
}
.svc-hero-breadcrumb {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-hero-breadcrumb span { color: rgba(245,240,232,0.4); }
.svc-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  margin-bottom: 12px;
}
.svc-hero-tagline {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(245,240,232,0.6);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

/* ─── SERVICE BODY ────────────────────────────────────────────────────────── */
.svc-body {
  padding: 80px 0 60px;
}

.svc-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .svc-intro { grid-template-columns: 1fr 2fr; gap: 60px; }
}
.svc-intro-label .section-label { writing-mode: horizontal-tb; }
.svc-intro-text p {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}
.svc-intro-text p:last-child { margin-bottom: 0; }

/* Benefits */
.svc-benefits {
  background: var(--parchment);
  margin: 0 -20px 80px;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .svc-benefits { margin: 0 -40px 80px; padding: 60px 40px; }
}
@media (min-width: 1200px) {
  .svc-benefits { margin: 0 -60px 80px; padding: 60px 60px; }
}
.benefits-header {
  margin-bottom: 40px;
}
.benefits-header h2 {
  font-size: 1.75rem;
  color: var(--text-dark);
}
.benefits-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 768px) {
  .benefits-grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.benefit-item {}
.benefit-icon {
  display: block;
  font-size: 0.75rem;
  color: var(--bordeaux);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
.benefit-item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.benefit-item p {
  font-size: 0.8125rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Price Table on Service Page */
.svc-prices { margin-bottom: 80px; }
.svc-prices h2 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}
.price-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-style: italic;
}
.price-table-wrap {}
.price-category-block { margin-bottom: 32px; }
.price-category-name {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.price-category-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
}
.price-rows { border-top: 1px solid var(--parchment2); }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--parchment2);
  font-size: 0.9375rem;
}
.price-row-info {
  flex: 1;
  min-width: 0;
}
.price-row-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.price-row-name { 
  color: var(--text-dark); 
  font-weight: 500;
  line-height: 1.4;
}
.price-row-dur {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: 9999px;
  background: rgba(139, 26, 26, 0.07);
  color: var(--bordeaux);
  font-weight: 500;
  white-space: nowrap;
}
.price-row-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 5px;
  line-height: 1.45;
}
.price-row-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  flex-shrink: 0;
}
.price-row-val {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--bordeaux);
  white-space: nowrap;
  line-height: 1.2;
}
.price-row-anchored {
  font-size: 0.75rem;
  color: #7A6B5D;
  margin-top: 3px;
  white-space: nowrap;
}
.cjenik-notice-bar {
  background: var(--surface);
  border: 1px solid var(--parchment2);
  border-left: 3px solid var(--bordeaux);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.cjenik-notice-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cjenik-notice-badge {
  background: rgba(139, 26, 26, 0.1);
  color: var(--bordeaux);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.cjenik-notice-content p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}
.cjenik-notice-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bordeaux);
  text-decoration: none;
  transition: opacity 0.2s;
}
.cjenik-notice-link:hover {
  text-decoration: underline;
  opacity: 0.85;
}

/* Prep & Aftercare */
.svc-prep {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 80px;
}
@media (min-width: 640px) {
  .svc-prep { grid-template-columns: 1fr 1fr; }
}
.prep-card {
  background: var(--noir);
  color: var(--text-light);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.prep-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--bordeaux);
}
.prep-card h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 16px;
}
.prep-card p {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.75;
}

/* CTA Block */
.svc-cta-block {
  background: var(--bordeaux);
  margin: 0 -20px;
  padding: 64px 20px;
  text-align: center;
}
@media (min-width: 768px) { .svc-cta-block { margin: 0 -40px; padding: 80px 40px; } }
@media (min-width: 1200px) { .svc-cta-block { margin: 0 -60px; padding: 80px 60px; } }
.svc-cta-block h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 12px;
}
.svc-cta-block p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--bordeaux);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.btn-white:hover { background: var(--noir); color: #fff; transform: translateY(-1px); }

/* ─── PRICE LIST PAGE ────────────────────────────────────────────────────── */
.page-cjenik { padding: 100px 0; }
.cjenik-hero {
  background: var(--noir);
  padding: 100px 0 80px;
  margin-top: var(--nav-height);
  text-align: center;
}
.cjenik-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 12px;
}
.cjenik-hero p {
  font-size: 1rem;
  color: rgba(245,240,232,0.6);
  max-width: 480px;
  margin: 0 auto 32px;
}

.cjenik-body { padding: 80px 0; }
.cjenik-category {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--parchment2);
}
.cjenik-category:last-child { border-bottom: none; }
.cjenik-cat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.cjenik-cat-header h2 {
  font-size: 1.5rem;
  color: var(--text-dark);
}
.cjenik-cat-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 4px;
  display: block;
}

/* ─── STUDIO / ABOUT PAGE ────────────────────────────────────────────────── */
.studio-hero {
  background: var(--noir);
  margin-top: var(--nav-height);
  padding: 100px 0 80px;
}
.studio-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; margin-bottom: 16px; }
.studio-hero p { font-size: 1.0625rem; color: rgba(245,240,232,0.6); max-width: 540px; }

.studio-story {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 768px) {
  .studio-story { grid-template-columns: 1fr 1fr; align-items: start; }
}
.studio-story-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.studio-story-img img { width: 100%; height: 100%; object-fit: cover; }
.studio-story-text p {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}

.studio-values {
  background: var(--parchment);
  padding: 80px 0;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  padding: 32px;
  background: var(--offwhite);
}
.value-card-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--parchment2);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 700;
}
.value-card h3 { font-size: 1.125rem; margin-bottom: 10px; }
.value-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; }

/* ─── EDUCATION / EDUKACIJE PAGE ─────────────────────────────────────────── */
.edu-hero {
  background: var(--noir);
  margin-top: var(--nav-height);
  padding: 100px 0 80px;
}
.edu-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; margin-bottom: 16px; }
.edu-hero p { font-size: 1.0625rem; color: rgba(245,240,232,0.6); max-width: 540px; }

.edu-body { padding: 80px 0; }
.courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 960px) { .courses-grid { grid-template-columns: repeat(2, 1fr); } }

/* Filter Bar */
.edu-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  justify-content: center;
}
.edu-filter-btn {
  background: var(--surface);
  border: 1px solid var(--parchment2);
  color: var(--text-mid);
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--t-fast);
}
.edu-filter-btn:hover {
  border-color: var(--bordeaux);
  color: var(--bordeaux);
}
.edu-filter-btn.active {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: #fff;
  box-shadow: 0 4px 14px rgba(139, 26, 26, 0.25);
}

/* Course Card */
.course-card {
  background: var(--surface);
  border: 1px solid var(--parchment2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
}
.course-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(139, 26, 26, 0.3);
}
.course-card.highlight {
  border-color: var(--bordeaux);
  box-shadow: 0 8px 30px rgba(139, 26, 26, 0.08);
}

.course-card-header {
  margin-bottom: 16px;
}
.course-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.badge-bazna {
  background: rgba(139, 26, 26, 0.08);
  color: var(--bordeaux);
  border: 1px solid rgba(139, 26, 26, 0.25);
}
.badge-premium {
  background: #2a1114;
  color: #f7d5a5;
  border: 1px solid #c99351;
  box-shadow: 0 2px 10px rgba(74, 1, 0, 0.25);
}
.badge-master {
  background: var(--noir);
  color: var(--parchment);
  border: 1px solid rgba(245, 240, 232, 0.2);
}
.badge-online {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.course-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.course-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--parchment2);
}
.course-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.course-target-box {
  background: var(--offwhite);
  border-left: 3px solid var(--bordeaux);
  padding: 12px 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.84375rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.course-target-box strong {
  color: var(--text-dark);
  font-weight: 600;
}

.course-includes-block {
  margin-bottom: 20px;
}
.course-includes-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bordeaux);
  margin-bottom: 10px;
}
.course-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.course-includes-item {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.course-includes-item .check-icon {
  color: var(--bordeaux);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  line-height: 1.3;
}

.course-mentorship-banner {
  background: linear-gradient(135deg, rgba(74, 1, 0, 0.08) 0%, rgba(201, 147, 81, 0.15) 100%);
  border: 1px solid rgba(201, 147, 81, 0.35);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #5a1215;
  margin-bottom: 20px;
}
.course-mentorship-banner span.badge-star {
  color: #c99351;
  font-size: 1.1rem;
}

/* Collapsible Plan Drawer */
.course-plan-drawer {
  margin-top: 6px;
  margin-bottom: 24px;
}
.course-plan-toggle {
  width: 100%;
  background: var(--offwhite);
  border: 1px solid var(--parchment2);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all var(--t-fast);
}
.course-plan-toggle:hover {
  background: var(--parchment);
  border-color: rgba(139, 26, 26, 0.25);
  color: var(--bordeaux);
}
.course-plan-toggle.open {
  background: var(--parchment);
  border-color: var(--bordeaux);
  color: var(--bordeaux);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.course-plan-toggle-icon {
  transition: transform var(--t-fast);
  font-size: 0.75rem;
}
.course-plan-toggle.open .course-plan-toggle-icon {
  transform: rotate(180deg);
}

.course-plan-body {
  display: none;
  background: var(--offwhite);
  border: 1px solid var(--parchment2);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 16px;
  flex-direction: column;
  gap: 14px;
}
.course-plan-body.open {
  display: flex;
}
.course-day-card {
  background: var(--surface);
  border: 1px solid var(--parchment2);
  border-radius: var(--radius);
  padding: 14px;
}
.course-day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.course-day-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--bordeaux);
  letter-spacing: 0.05em;
}
.course-day-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}
.course-day-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.course-day-desc {
  font-size: 0.8125rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 8px;
}
.course-day-model-alert {
  background: rgba(139, 26, 26, 0.05);
  border: 1px dashed rgba(139, 26, 26, 0.25);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #4a0100;
}
.course-day-model-alert strong {
  color: var(--bordeaux);
}

/* Course Card Footer */
.course-card-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--parchment2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.course-pricing-wrap {
  display: flex;
  flex-direction: column;
}
.course-price-val {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--bordeaux);
  line-height: 1;
}
.course-anchored-note {
  font-size: 0.71875rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.course-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bordeaux);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 0.84375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--t-fast);
}
.course-apply-btn:hover {
  background: #6f1414;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.2);
}

/* Rules Section Grid Update */
.edu-rules {
  background: var(--parchment);
  padding: 80px 0;
  margin-top: 80px;
  border-top: 1px solid var(--parchment2);
  border-bottom: 1px solid var(--parchment2);
}
.edu-rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .edu-rules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .edu-rules-grid { grid-template-columns: repeat(3, 1fr); } }

.edu-rule-item {
  background: var(--surface);
  border: 1px solid var(--parchment2);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.edu-rule-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.edu-rule-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.edu-rule-item h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 12px;
}
.edu-rule-item p {
  font-size: 0.84375rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.edu-faq-section {
  margin-top: 80px;
}
  color: rgba(245,240,232,0.6);
  margin-top: 4px;
}

/* ─── CONTACT PAGE ────────────────────────────────────────────────────────── */
.contact-hero {
  background: var(--noir);
  margin-top: var(--nav-height);
  padding: 100px 0 80px;
}
.contact-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; margin-bottom: 16px; }

.contact-body {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 768px) {
  .contact-body { grid-template-columns: 1fr 1fr; }
}

.contact-info-block h3 {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 8px;
}
.contact-info-block { margin-bottom: 36px; }
.contact-info-val {
  font-size: 1.0625rem;
  color: var(--text-dark);
  line-height: 1.6;
}
.contact-info-val a:hover { color: var(--bordeaux); }

.hours-table { margin-top: 8px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--parchment2);
  font-size: 0.875rem;
}
.hours-row .day { color: var(--text-mid); font-weight: 500; }
.hours-row .time { color: var(--text-dark); font-weight: 400; }
.hours-row.closed .time { color: var(--text-muted); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-input, .form-textarea {
  background: var(--parchment);
  border: 1px solid var(--parchment2);
  padding: 14px 16px;
  font-size: 0.9375rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--t-fast);
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--bordeaux); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  align-self: flex-start;
}
.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── PRIVACY PAGE ───────────────────────────────────────────────────────── */
.privacy-body {
  padding: 80px 0;
  max-width: 760px;
  margin: 0 auto;
}
.privacy-body h2 {
  font-size: 1.375rem;
  margin: 40px 0 12px;
}
.privacy-body p, .privacy-body li {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 12px;
}
.privacy-body ul { padding-left: 20px; list-style: disc; }

/* ─── MOBILE STICKY BAR ──────────────────────────────────────────────────── */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 72px;
  display: flex;
  z-index: 990;
  background: var(--noir);
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 1024px) { .mobile-sticky-bar { display: none; } }

.sticky-bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  transition: color var(--t-fast), background var(--t-fast);
  text-decoration: none;
  padding: 0;
}
.sticky-bar-btn:hover { color: #fff; background: rgba(255,255,255,0.04); }
.sticky-bar-btn svg { width: 20px; height: 20px; }
.sticky-bar-divider { width: 1px; background: rgba(255,255,255,0.08); flex-shrink: 0; }
.sticky-bar-btn.primary {
  background: var(--bordeaux);
  color: #fff;
}
.sticky-bar-btn.primary:hover { background: var(--bordeaux-light); }

/* ─── PAGE VIEW TRANSITIONS ──────────────────────────────────────────────── */
.page-view-enter {
  animation: pageEnter 0.5s var(--ease-out) forwards;
}
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--noir);
  color: rgba(245,240,232,0.5);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand .logo-wordmark { font-size: 2rem; display: block; margin-bottom: 8px; }
.footer-brand p {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.4);
  max-width: 280px;
  margin-top: 12px;
}
.footer-col-title {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  font-size: 0.875rem;
  color: rgba(245,240,232,0.5);
  padding: 5px 0;
  transition: color var(--t-fast);
}
.footer-link:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  color: rgba(245,240,232,0.4);
  transition: color var(--t-fast);
}
.footer-social a:hover { color: #fff; }

/* ─── RESPONSIVE HELPERS ─────────────────────────────────────────────────── */
.desktop-only { display: none !important; }
@media (min-width: 1024px) {
  .desktop-only { display: block !important; }
  .mobile-only { display: none !important; }
}

/* ─── Toast / Feedback ───────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--noir);
  color: #fff;
  padding: 12px 24px;
  font-size: 0.8125rem;
  border-left: 3px solid var(--bordeaux);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast), transform var(--t-fast);
  z-index: 2000;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─── SALON INFO ─────────────────────────────────────────────────────────── */
.section-salon-info {
  background: var(--noir);
  padding: 80px 0 100px;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
}

.section-salon-gallery {
  background: var(--noir);
  padding: 80px 0 0;
}
.salon-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 48px;
}
@media (min-width: 640px) {
  .salon-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
}
@media (min-width: 1024px) {
  .salon-gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 4px; }
}
.salon-gallery-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--noir-card);
}
@media (min-width: 1024px) {
  .salon-gallery-item:first-child { aspect-ratio: 4/5; }
  .salon-gallery-item:last-child  { aspect-ratio: 4/5; }
}
.salon-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease-out), filter 0.4s ease;
  filter: brightness(0.88) saturate(0.9);
}
.salon-gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}
.salon-gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(10,10,10,0.75), transparent);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.salon-gallery-item:hover .salon-gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ─── LEGAL PAGES (Uvjeti, Kolačići) ─────────────────────────────────────── */
.legal-body {
  padding: 80px 0;
  max-width: 760px;
  margin: 0 auto;
}
.legal-body h2 { font-size: 1.375rem; margin: 36px 0 10px; }
.legal-body h3 { font-size: 1rem; margin: 20px 0 8px; color: var(--text-mid); }
.legal-body p, .legal-body li {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 10px;
}
.legal-body ul { padding-left: 20px; list-style: disc; }
.legal-hero {
  background: var(--noir);
  margin-top: var(--nav-height);
  padding: 80px 0 60px;
}
.legal-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 10px; }
.legal-hero p { font-size: 0.9rem; color: rgba(245,240,232,0.5); }

/* Cookie consent table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.875rem;
}
.cookie-table th, .cookie-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--parchment2);
  text-align: left;
}
.cookie-table th {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--parchment);
}
.cookie-table td { color: var(--text-mid); }

