/* ============================================================
   FLORIDA PASSION BEAUTY ACADEMY - Design System & Styles
   ============================================================ */

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

/* --- Design Tokens --- */
:root {
  /* Brand Colors */
  --gold: #AF843C;
  --gold-dark: #8B6914;
  --gold-light: #C9A35C;
  --gold-glow: #D4B06A;
  --cream: #FCFAE9;
  --cream-deep: #F5F0DC;
  --beige: #E2D6B7;
  --beige-light: #EDE6D4;
  --white: #FFFFFF;
  --off-white: #FAF8F3;
  --warm-bg: #FBF9F4;

  /* Extended palette */
  --dark: #1A1410;
  --dark-soft: #2C2418;
  --text-primary: #1A1410;
  --text-secondary: #5C4F3A;
  --text-muted: #8A7D6B;
  --text-on-gold: #FFFFFF;
  --text-on-dark: #E2D6B7;

  /* Functional */
  --success: #5B8C5A;
  --error: #C45B4A;
  --link: #AF843C;
  --link-hover: #8B6914;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Alegreya Sans', 'Helvetica Neue', sans-serif;
  --font-body: 'Roboto', 'Helvetica Neue', sans-serif;

  /* Type Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width: 1280px;
  --content-width: 1080px;
  --narrow-width: 768px;
  --nav-height: 80px;

  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26, 20, 16, 0.06);
  --shadow-md: 0 4px 12px rgba(26, 20, 16, 0.08);
  --shadow-lg: 0 8px 30px rgba(26, 20, 16, 0.1);
  --shadow-xl: 0 16px 50px rgba(26, 20, 16, 0.12);
  --shadow-gold: 0 4px 20px rgba(175, 132, 60, 0.2);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--gold-dark);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Focus states */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 600;
}

.display-heading {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, var(--text-7xl));
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2, .h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, var(--text-5xl));
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h3, .h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, var(--text-2xl));
  font-weight: 700;
  letter-spacing: 0.01em;
}

h4, .h4 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
}

.subtitle {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-lg {
  font-size: var(--text-lg);
  line-height: 1.8;
}

.overline {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--content-width);
}

.section {
  padding: var(--space-24) 0;
}

.section--sm {
  padding: var(--space-16) 0;
}

.section--cream {
  background-color: var(--cream);
}

.section--beige {
  background-color: var(--off-white);
}

.section--dark {
  background-color: var(--dark);
  color: var(--text-on-dark);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.grid {
  display: grid;
  gap: var(--space-8);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.flex {
  display: flex;
}

.flex--center {
  align-items: center;
  justify-content: center;
}

.flex--between {
  align-items: center;
  justify-content: space-between;
}

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

/* --- Gold Decorative Line --- */
.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border: none;
  margin: var(--space-6) 0;
}

.gold-line--center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Top Bar --- */
.top-bar {
  background-color: var(--dark);
  color: var(--beige);
  font-size: var(--text-sm);
  padding: var(--space-2) 0;
}

.top-bar a {
  color: var(--gold-light);
  font-weight: 500;
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__contact {
  display: flex;
  gap: var(--space-6);
  align-items: center;
}

.top-bar__contact span {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 214, 183, 0.3);
  transition: box-shadow var(--duration-base) var(--ease-out);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(26, 20, 16, 0.08);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.nav__logo img {
  height: 55px;
  width: auto;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.nav__logo-tagline {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav__link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-out);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
}

.nav__link:hover {
  color: var(--gold);
  background: rgba(175, 132, 60, 0.06);
}

.nav__link.active {
  color: var(--gold);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav__dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.nav__dropdown:hover .nav__dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--white);
  border: 1px solid rgba(226, 214, 183, 0.4);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-fast) var(--ease-out);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-out);
  letter-spacing: 0.02em;
}

.nav__dropdown-item:hover {
  background: var(--cream);
  color: var(--gold-dark);
}

.nav__dropdown-item span {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
  text-transform: none;
  letter-spacing: 0;
}

/* CTA Button in nav */
.nav__cta {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--gold-dark);
  color: var(--white);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease-out);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--nav-height) + var(--space-8)) var(--space-8) var(--space-8);
    gap: var(--space-1);
    transform: translateX(100%);
    transition: transform var(--duration-slow) var(--ease-out);
    box-shadow: -8px 0 30px rgba(0,0,0,0.1);
    overflow-y: auto;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: var(--text-base);
    padding: var(--space-4);
    border-bottom: 1px solid var(--beige-light);
  }

  .nav__dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0 0 0 var(--space-4);
    min-width: auto;
    display: none;
  }

  .nav__dropdown.open .nav__dropdown-menu {
    display: block;
  }

  .nav__cta {
    margin-top: var(--space-4);
    text-align: center;
    display: block;
  }
}

/* Mobile overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 16, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-base) var(--ease-out);
}

.nav__overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  transition: all var(--duration-base) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn--secondary:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
}

.btn--dark:hover {
  background: var(--dark-soft);
  border-color: var(--dark-soft);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--gold-dark);
  border: 2px solid var(--white);
}

.btn--white:hover {
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-base);
  min-height: 56px;
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero--full {
  min-height: 100vh;
  min-height: 100dvh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(26, 20, 16, 0.75) 0%,
    rgba(26, 20, 16, 0.45) 50%,
    rgba(26, 20, 16, 0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: var(--space-20) 0;
}

.hero__content .overline {
  color: var(--gold-light);
  margin-bottom: var(--space-4);
}

.hero__content h1 {
  color: var(--white);
  margin-bottom: var(--space-6);
}

.hero__content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-lg);
  line-height: 1.8;
  margin-bottom: var(--space-10);
  max-width: 550px;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Decorative gold corner */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 4;
}

/* --- Page Banner (inner pages) --- */
.page-banner {
  position: relative;
  padding: var(--space-32) 0 var(--space-20);
  background: var(--dark);
  overflow: hidden;
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(26, 20, 16, 0.85), rgba(26, 20, 16, 0.6));
}

.page-banner__content {
  position: relative;
  z-index: 3;
}

.page-banner h1 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.page-banner p {
  color: var(--beige);
  font-size: var(--text-lg);
  max-width: 600px;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 4;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.breadcrumb a {
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
}

.breadcrumb span {
  color: var(--beige);
  font-size: var(--text-sm);
}

.breadcrumb .sep {
  color: var(--text-muted);
  font-size: var(--text-xs);
}

/* --- Program Cards --- */
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--duration-slow) var(--ease-out);
  border: 1px solid rgba(226, 214, 183, 0.3);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.program-card__image {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream), var(--beige));
}

.program-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.program-card:hover .program-card__image img {
  transform: scale(1.05);
}

.program-card__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.program-card__body {
  padding: var(--space-8);
}

.program-card__meta {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.program-card__meta span {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.program-card__meta svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.program-card h3 {
  margin-bottom: var(--space-3);
  color: var(--dark);
}

.program-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.program-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--beige-light);
}

.program-card__price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gold-dark);
}

.program-card__link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: all var(--duration-fast) var(--ease-out);
}

.program-card__link:hover {
  color: var(--gold-dark);
  gap: var(--space-3);
}

.program-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.program-card__link:hover svg {
  transform: translateX(4px);
}

/* --- Feature / Stats Grid --- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.stat {
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.stat__number {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat__label {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Services Price Table --- */
.price-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 214, 183, 0.3);
}

.price-table__header {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: var(--space-6) var(--space-8);
}

.price-table__header h3 {
  color: var(--white);
  margin: 0;
}

.price-table__body {
  padding: var(--space-4) var(--space-8);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--beige-light);
  gap: var(--space-4);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row__name {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-primary);
  flex: 1;
  min-width: 0;
}

.price-row__prices {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  flex-shrink: 0;
}

.price-row__amount {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold-dark);
  min-width: 45px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.price-row__gel {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-muted);
  font-size: var(--text-sm);
  min-width: 60px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* --- Course Table --- */
.course-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.course-table thead {
  background: var(--dark);
}

.course-table th {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: var(--space-4) var(--space-6);
  text-align: left;
}

.course-table td {
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--beige-light);
  vertical-align: top;
}

.course-table tbody tr:last-child td {
  border-bottom: none;
}

.course-table tbody tr:hover {
  background: var(--cream);
}

.course-table .course-code {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
}

.course-table .course-hours {
  font-weight: 500;
  white-space: nowrap;
  color: var(--text-secondary);
}

/* --- Tuition Card --- */
.tuition-card {
  background: linear-gradient(135deg, var(--dark), var(--dark-soft));
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.tuition-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(175, 132, 60, 0.15), transparent 70%);
  border-radius: 50%;
}

.tuition-card h3 {
  color: var(--gold-light);
  margin-bottom: var(--space-8);
  position: relative;
}

.tuition-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(226, 214, 183, 0.15);
  position: relative;
}

.tuition-row:last-of-type {
  border-bottom: none;
  padding-top: var(--space-4);
  margin-top: var(--space-2);
  border-top: 2px solid var(--gold);
}

.tuition-row__label {
  font-family: var(--font-heading);
  color: var(--beige);
}

.tuition-row__amount {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  font-size: var(--text-lg);
}

.tuition-row:last-of-type .tuition-row__amount {
  color: var(--gold-light);
  font-size: var(--text-2xl);
}

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
  border-radius: 50%;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

/* --- Contact Form --- */
.form-group {
  margin-bottom: var(--space-6);
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--white);
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-out);
  min-height: 48px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(175, 132, 60, 0.15);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: var(--space-20) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: var(--space-12);
  padding-bottom: var(--space-16);
}

.footer__brand p {
  color: var(--beige);
  font-size: var(--text-sm);
  line-height: 1.8;
  margin-top: var(--space-4);
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer__logo img {
  height: 50px;
  filter: brightness(10);
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--white);
  font-weight: 600;
}

.footer h4 {
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.footer__links li {
  margin-bottom: var(--space-3);
}

.footer__links a {
  color: var(--beige);
  font-size: var(--text-sm);
  transition: all var(--duration-fast) var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.footer__links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  color: var(--beige);
  font-size: var(--text-sm);
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(175, 132, 60, 0.15);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  transition: all var(--duration-base) var(--ease-out);
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  border-top: 1px solid rgba(226, 214, 183, 0.15);
  padding: var(--space-6) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 100ms; }
.stagger > *:nth-child(3) { transition-delay: 200ms; }
.stagger > *:nth-child(4) { transition-delay: 300ms; }
.stagger > *:nth-child(5) { transition-delay: 400ms; }
.stagger > *:nth-child(6) { transition-delay: 500ms; }

/* --- Placeholder Images --- */
.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.placeholder-img--nails {
  background: linear-gradient(135deg, #F8E8D4, #E8C9A0, #D4A873);
}

.placeholder-img--facial {
  background: linear-gradient(135deg, #E8DDD4, #D4C4B0, #C9B89E);
}

.placeholder-img--full {
  background: linear-gradient(135deg, #E0D5C4, #D1C1AB, #C5B598);
}

.placeholder-img--hero {
  background: linear-gradient(135deg, #2C2418, #3D3226, #4E4234);
}

.placeholder-img--lash {
  background: linear-gradient(135deg, #D4C4B8, #C8B5A5, #BCA797);
}

.placeholder-img--service {
  background: linear-gradient(135deg, #F0E6D8, #E8D9C6, #DFCDB5);
}

/* --- Info Card --- */
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 214, 183, 0.3);
}

.info-card h4 {
  margin-bottom: var(--space-4);
  color: var(--dark);
}

.info-card__icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--gold);
}

.info-card__icon svg {
  width: 24px;
  height: 24px;
}

/* --- Workshop Card --- */
.workshop-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 214, 183, 0.3);
}

.workshop-card__image {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream), var(--beige));
}

.workshop-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workshop-card__content {
  padding: var(--space-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

  .workshop-card__image {
    min-height: 250px;
  }

  .workshop-card__content {
    padding: var(--space-8);
  }
}

/* --- Miscellaneous --- */
.divider {
  border: none;
  height: 1px;
  background: var(--beige-light);
  margin: var(--space-8) 0;
}

.badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: var(--cream);
  color: var(--gold-dark);
}

.badge--gold {
  background: var(--gold);
  color: var(--white);
}

/* Two-column content layout */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.content-split--reverse {
  direction: rtl;
}

.content-split--reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .content-split,
  .content-split--reverse {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    direction: ltr;
  }
}

/* Image with decorative frame */
.framed-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.framed-image::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(175, 132, 60, 0.3);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.framed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* List with gold bullets */
.gold-list li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--text-secondary);
  line-height: 1.7;
}

.gold-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* Schedule grid */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
}

.schedule-item {
  background: var(--cream);
  padding: var(--space-6);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
}

.schedule-item h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}

.schedule-item p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: var(--text-sm);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   RESPONSIVE - Tablet (1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --nav-height: 70px;
  }

  .stats {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
  }

  .stat {
    padding: var(--space-6) var(--space-2);
  }

  .stat__number {
    font-size: var(--text-4xl);
  }

  .tuition-card {
    padding: var(--space-8);
  }

  .course-table th,
  .course-table td {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
  }
}

/* ============================================================
   RESPONSIVE - Tablet Portrait / Large Phone (768px)
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }

  .hero__content {
    padding: var(--space-12) 0;
  }

  .hero__content h1 {
    font-size: var(--text-4xl);
  }

  .section {
    padding: var(--space-12) 0;
  }

  .section--sm {
    padding: var(--space-8) 0;
  }

  .page-banner {
    padding: var(--space-20) 0 var(--space-10);
  }

  .container {
    padding: 0 var(--space-4);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .stat {
    padding: var(--space-4) var(--space-2);
  }

  .stat__number {
    font-size: var(--text-3xl);
  }

  /* Price tables - full width on tablet */
  .price-table {
    border-radius: var(--radius-md);
  }

  .price-table__header {
    padding: var(--space-4) var(--space-6);
  }

  .price-table__body {
    padding: var(--space-2) var(--space-4);
  }

  .price-row {
    padding: var(--space-3) 0;
  }

  .price-row__name {
    font-size: var(--text-sm);
    flex: 1;
    min-width: 0;
  }

  .price-row__prices {
    gap: var(--space-3);
    flex-shrink: 0;
  }

  .price-row__amount {
    font-size: var(--text-sm);
    min-width: 40px;
  }

  .price-row__gel {
    font-size: var(--text-xs);
    min-width: 50px;
  }

  /* Course table scroll */
  .course-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
  }

  .course-table {
    min-width: 500px;
  }

  /* CTA banner */
  .cta-banner {
    padding: var(--space-12) 0;
  }

  .cta-banner h2 {
    font-size: var(--text-3xl);
  }

  /* Workshop card stack */
  .workshop-card {
    grid-template-columns: 1fr;
  }

  .workshop-card__image {
    min-height: 250px;
  }

  .workshop-card__content {
    padding: var(--space-8);
  }

  /* Tuition card */
  .tuition-card {
    padding: var(--space-6);
  }

  .tuition-row__amount {
    font-size: var(--text-base);
  }

  .tuition-row:last-of-type .tuition-row__amount {
    font-size: var(--text-xl);
  }

  /* Info cards */
  .info-card {
    padding: var(--space-6);
  }

  /* Footer */
  .footer {
    padding: var(--space-12) 0 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__brand p {
    max-width: 100%;
  }
}

/* ============================================================
   RESPONSIVE - Mobile (480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero {
    min-height: 60vh;
  }

  .hero__content h1 {
    font-size: var(--text-3xl);
  }

  .hero__content p {
    font-size: var(--text-base);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  h2, .h2 {
    font-size: var(--text-2xl);
  }

  .section {
    padding: var(--space-10) 0;
  }

  .page-banner {
    padding: var(--space-16) 0 var(--space-8);
  }

  .page-banner h1 {
    font-size: var(--text-3xl);
  }

  /* Program cards compact */
  .program-card__image {
    height: 200px;
  }

  .program-card__body {
    padding: var(--space-5);
  }

  .program-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  /* Price rows more compact */
  .price-table__header {
    padding: var(--space-3) var(--space-4);
  }

  .price-table__header h3 {
    font-size: var(--text-base);
  }

  .price-table__body {
    padding: var(--space-1) var(--space-3);
  }

  .price-row {
    padding: var(--space-2) 0;
    gap: var(--space-2);
  }

  .price-row__name {
    font-size: var(--text-sm);
  }

  .price-row__amount {
    font-size: var(--text-sm);
  }

  .price-row__gel {
    font-size: var(--text-xs);
    min-width: 45px;
  }

  /* Buttons full width */
  .btn--lg {
    width: 100%;
    justify-content: center;
  }

  /* Stats ultra compact */
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
  }

  .stat {
    padding: var(--space-3);
  }

  .stat__number {
    font-size: var(--text-2xl);
  }

  .stat__label {
    font-size: var(--text-xs);
  }

  /* CTA banner */
  .cta-banner {
    padding: var(--space-10) 0;
  }

  .cta-banner h2 {
    font-size: var(--text-2xl);
  }

  .cta-banner p {
    font-size: var(--text-base);
  }

  /* Footer compact */
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }

  /* Map */
  .map-placeholder {
    height: 250px;
  }

  /* Content split */
  .content-split,
  .content-split--reverse {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    direction: ltr;
  }

  .framed-image {
    height: 280px !important;
  }

  /* Schedule grid */
  .schedule-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE - Small Mobile (375px)
   ============================================================ */
@media (max-width: 375px) {
  .container {
    padding: 0 var(--space-3);
  }

  .hero__content h1 {
    font-size: var(--text-2xl);
  }

  .nav__logo-name {
    font-size: var(--text-base);
  }

  .nav__logo-tagline {
    display: none;
  }

  .price-row__gel {
    display: none;
  }

  /* Show gel price inline */
  .price-row__amount::after {
    content: none;
  }
}

/* ============================================================
   Touch optimization
   ============================================================ */
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 48px;
  }

  .nav__link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .program-card__link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .footer__social a {
    width: 44px;
    height: 44px;
  }

  /* Prevent hover-dependent dropdown on touch */
  .nav__dropdown:hover .nav__dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }

  .nav__dropdown.open .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 var(--space-4);
  }
}

/* ============================================================
   Print styles
   ============================================================ */
@media print {
  .nav, .top-bar, .cta-banner, .footer__social, .hero__overlay {
    display: none;
  }

  .hero {
    min-height: auto;
    background: var(--white);
  }

  .hero__content h1 {
    color: var(--dark);
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .section {
    padding: 1rem 0;
  }
}
