/* ============================================
   HYTHE HAIR STUDIO — Main Stylesheet
   Modern Editorial Design
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --black: #0D0D0D;
  --dark: #1A1A1A;
  --dark-2: #232323;
  --gold: #B8956A;
  --gold-light: #D4B896;
  --gold-dark: #96784F;
  --cream: #FAF7F4;
  --warm-gray: #E8E2DC;
  --warm-gray-2: #D5CEC7;
  --white: #FFFFFF;
  --text: #2D2D2D;
  --text-light: #6B6B6B;
  --text-muted: #999999;
  --border: rgba(0,0,0,0.08);
  --border-dark: rgba(255,255,255,0.1);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1280px;
  --container-narrow: 960px;
  --container-wide: 1440px;
  --gutter: 24px;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.10);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.14);

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --header-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
}

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

h4 {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 680px;
}

.text-gold { color: var(--gold); }
.text-dark { color: var(--dark); }
.text-light { color: var(--text-light); }

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

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

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

section {
  padding: 100px 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transition: transform var(--transition);
  transform: scaleX(0);
  transform-origin: right;
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn i {
  position: relative;
  z-index: 1;
  transition: transform var(--transition-fast);
}

.btn:hover i {
  transform: translateX(4px);
}

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

.btn--primary::before {
  background: var(--gold-dark);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
}

.btn--dark::before {
  background: var(--black);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}

.btn--outline:hover {
  color: var(--white);
}

.btn--outline::before {
  background: var(--dark);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn--outline-light:hover {
  border-color: var(--white);
}

.btn--outline-light::before {
  background: rgba(255,255,255,0.15);
}

.btn--sm {
  padding: 12px 24px;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 20px 48px;
  font-size: 0.9rem;
}

/* --- Decorative Elements --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1.5px;
  background: var(--gold);
}

.section-header {
  margin-bottom: 60px;
}

.section-header p {
  margin-top: 20px;
}

.divider {
  width: 60px;
  height: 1.5px;
  background: var(--gold);
  margin: 30px 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  height: 70px;
}

.header.scrolled .header__logo {
  color: var(--dark);
}

.header.scrolled .header__nav a {
  color: var(--text);
}

.header.scrolled .header__nav a:hover,
.header.scrolled .header__nav a.active {
  color: var(--gold);
}

.header.scrolled .header__cta .btn--outline-light {
  color: var(--dark);
  border-color: var(--dark);
}

.header.scrolled .header__cta .btn--outline-light::before {
  background: var(--dark);
}

.header.scrolled .header__cta .btn--outline-light:hover {
  color: var(--white);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 40px;
}

.header__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--white);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__phone {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast);
}

.header__phone:hover {
  color: var(--gold);
}

.header.scrolled .header__phone {
  color: var(--text-light);
}

.header.scrolled .header__phone:hover {
  color: var(--gold);
}

/* Mobile Menu Toggle */
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.header.scrolled .header__toggle span {
  background: var(--dark);
}

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

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

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

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transition: right var(--transition-slow);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  opacity: 0.8;
  transition: all var(--transition-fast);
}

.mobile-nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.mobile-nav__contact {
  margin-top: 40px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 2;
}

.mobile-nav__contact a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gold);
}

/* Page headers for inner pages (light background) */
.header--light {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}

.header--light .header__logo,
.header--light .header__nav a,
.header--light .header__phone {
  color: var(--text);
}

.header--light .header__nav a:hover,
.header--light .header__nav a.active {
  color: var(--gold);
}

.header--light .header__toggle span {
  background: var(--dark);
}

.header--light .header__cta .btn--outline-light {
  color: var(--dark);
  border-color: var(--dark);
}

.header--light .header__cta .btn--outline-light::before {
  background: var(--dark);
}

.header--light .header__cta .btn--outline-light:hover {
  color: var(--white);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.7) 0%,
    rgba(13,13,13,0.3) 50%,
    rgba(184,149,106,0.15) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 40px;
  padding-top: var(--header-height);
  width: 100%;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero__label::before {
  content: '';
  width: 40px;
  height: 1.5px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeUp 0.8s 1.2s forwards;
  opacity: 0;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

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

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

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

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

.page-banner .section-label {
  color: var(--gold);
}

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

.page-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
}

.page-banner .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-top: 24px;
}

.page-banner .breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}

.page-banner .breadcrumb a:hover {
  color: var(--gold);
}

.page-banner .breadcrumb i {
  font-size: 0.65rem;
}

/* ============================================
   INTRO / ABOUT SECTION
   ============================================ */
.intro {
  background: var(--cream);
  position: relative;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.intro__image:hover img {
  transform: scale(1.03);
}

.intro__image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.intro__text h2 {
  margin-bottom: 24px;
}

.intro__text p {
  margin-bottom: 16px;
}

.intro__text .btn {
  margin-top: 24px;
}

/* ============================================
   KNOWN FOR / FEATURES
   ============================================ */
.features {
  background: var(--white);
  position: relative;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.feature-card {
  padding: 48px 36px;
  background: var(--cream);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 1.2rem;
  transition: all var(--transition);
}

.feature-card:hover .feature-card__icon {
  background: var(--gold);
  color: var(--white);
}

.feature-card h4 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.feature-card p {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================
   SERVICES CARDS
   ============================================ */
.services-section {
  background: var(--cream);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 80%, rgba(184,149,106,0.06), transparent 60%);
  pointer-events: none;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 2;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card__image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

.service-card:hover .service-card__image img {
  transform: scale(1.08);
}

.service-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
}

.service-card__body {
  padding: 28px;
}

.service-card__body h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-card__body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  transition: all var(--transition-fast);
}

.service-card__link:hover {
  color: var(--gold-dark);
  gap: 12px;
}

/* ============================================
   CLIENT EXPERIENCE
   ============================================ */
.experience {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.experience::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,106,0.1), transparent 70%);
}

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

.experience__content h2 {
  color: var(--white);
  margin-bottom: 28px;
}

.experience__content p {
  color: rgba(255,255,255,0.65);
  margin: 0 auto 20px;
  font-size: 1.05rem;
}

.experience .btn {
  margin-top: 16px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact {
  background: var(--white);
  position: relative;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact__info {
  padding-top: 20px;
}

.contact__info h2 {
  margin-bottom: 20px;
}

.contact__info > p {
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.contact__detail-text {
  padding-top: 4px;
}

.contact__detail-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--dark);
}

.contact__detail-text span,
.contact__detail-text a {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact__detail-text a:hover {
  color: var(--gold);
}

.contact__socials {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

.contact__social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.contact__social:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Form */
.contact__form {
  background: var(--cream);
  padding: 48px;
  border-radius: var(--radius-lg);
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__group label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 8px;
}

.form__group input,
.form__group textarea,
.form__group select {
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color var(--transition-fast);
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  border-color: var(--gold);
}

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

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

.form__submit {
  margin-top: 8px;
}

.form__status {
  margin-top: 16px;
  font-size: 0.9rem;
  display: none;
}

.form__status--success {
  color: #2ecc71;
  display: block;
}

.form__status--error {
  color: #e74c3c;
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer__logo .header__logo-icon {
  width: 36px;
  height: 36px;
  font-size: 0.7rem;
}

.footer__brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 0;
}



.footer__column h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__column ul li {
  margin-bottom: 8px;
}

.footer__column ul a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: all var(--transition-fast);
}

.footer__column ul a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer__column address {
  font-style: normal;
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
}

.footer__column address a {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.75rem;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a:hover {
  color: var(--gold);
}

/* ============================================
   COOKIES POPUP
   ============================================ */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--dark);
  z-index: 9999;
  padding: 28px 0;
  transition: bottom var(--transition-slow);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cookie-popup.active {
  bottom: 0;
}

.cookie-popup__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 40px;
}

.cookie-popup__text {
  flex: 1;
}

.cookie-popup__text h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.cookie-popup__text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  max-width: 640px;
  line-height: 1.6;
}

.cookie-popup__text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-popup__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================
   COURSES PAGE
   ============================================ */
.courses__intro {
  max-width: 700px;
  margin-bottom: 60px;
}

.courses__intro p {
  margin-bottom: 12px;
}

.courses__ideal {
  margin-top: 28px;
}

.courses__ideal li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.courses__ideal li i {
  color: var(--gold);
  font-size: 0.8rem;
}

.courses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  margin-bottom: 80px;
}

.course-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.course-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}

.course-card:hover::after {
  transform: scaleY(1);
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.course-card__number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--warm-gray);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 300;
}

.course-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.course-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light);
}

.course-format {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 60px;
  color: var(--white);
  margin-bottom: 60px;
}

.course-format h3 {
  color: var(--white);
  margin-bottom: 36px;
}

.course-format__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}

.course-format__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.course-format__item i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 4px;
}

.course-format__item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.course-format__item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.course-disclaimers {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
}

.course-disclaimers h4 {
  margin-bottom: 16px;
}

.course-disclaimers li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.6;
}

.course-disclaimers li i {
  color: var(--gold);
  margin-top: 5px;
  font-size: 0.7rem;
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.pricing-card--featured {
  border-color: var(--gold);
  position: relative;
}

.pricing-card--featured::before {
  content: 'Popular';
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 50px;
  z-index: 2;
}

.pricing-card__header {
  padding: 36px 32px 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-card__header i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.pricing-card__header h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.pricing-card__header span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-card__body {
  padding: 28px 32px 36px;
}

.pricing-card__body p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.pricing-card__body .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px 0;
  cursor: pointer;
  text-align: left;
}

.faq-item__question h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  padding-right: 20px;
  transition: color var(--transition-fast);
}

.faq-item__question:hover h4 {
  color: var(--gold);
}

.faq-item__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  transition: all var(--transition-fast);
}

.faq-item.active .faq-item__icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-item__answer p {
  padding-bottom: 28px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.active .faq-item__answer {
  max-height: 400px;
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking__content {
  max-width: 700px;
}

.booking__content h3 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.booking__content p {
  margin-bottom: 16px;
}

.booking__note {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0;
}

.booking__note p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

.booking__note strong {
  color: var(--dark);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
  background: var(--cream);
}

.about-content__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content__text h2 {
  margin-bottom: 24px;
}

.about-content__text p {
  margin-bottom: 16px;
}

.about-approach {
  background: var(--white);
}

.about-approach__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.approach-card {
  padding: 36px;
  background: var(--cream);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.approach-card i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.approach-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.approach-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.about-studio {
  background: var(--dark);
  color: var(--white);
  text-align: center;
}

.about-studio h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.about-studio p {
  color: rgba(255,255,255,0.6);
  margin: 0 auto;
  max-width: 560px;
}

.about-studio .btn {
  margin-top: 36px;
}

/* ============================================
   SERVICES PAGE (Full)
   ============================================ */
.service-detail {
  background: var(--cream);
  position: relative;
}

.service-detail:nth-child(even) {
  background: var(--white);
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail:nth-child(even) .service-detail__grid {
  direction: rtl;
}

.service-detail:nth-child(even) .service-detail__grid > * {
  direction: ltr;
}

.service-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-detail__image:hover img {
  transform: scale(1.05);
}

.service-detail__text h3 {
  margin-bottom: 16px;
}

.service-detail__text p {
  margin-bottom: 20px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  background: var(--cream);
}

.legal-content__inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.4rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 16px;
  max-width: 100%;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 0;
}

.legal-content ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============================================
   IMAGE PARALLAX
   ============================================ */
.parallax-img {
  will-change: transform;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .header__nav {
    gap: 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  section {
    padding: 80px 0;
  }

  .header__nav,
  .header__cta {
    display: none;
  }

  .header__toggle {
    display: flex;
  }

  .intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro__image {
    max-width: 500px;
    margin: 0 auto;
  }

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

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about-content__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-detail:nth-child(even) .service-detail__grid {
    direction: ltr;
  }

  .cookie-popup__inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 20px;
  }

  section {
    padding: 64px 0;
  }

  .hero__content {
    padding: 0 20px;
    padding-top: var(--header-height);
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .form__grid {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 32px 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .page-banner {
    padding: 140px 0 60px;
  }

  .about-approach__grid {
    grid-template-columns: 1fr;
  }

  .courses__grid {
    grid-template-columns: 1fr;
  }

  .course-format {
    padding: 40px 28px;
  }

  .course-format__grid {
    grid-template-columns: 1fr;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .hero__scroll {
    display: none;
  }

  .header__inner {
    padding: 0 20px;
  }

  .cookie-popup__inner {
    padding: 0 20px;
  }

  .cookie-popup__actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-popup__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero__title {
    font-size: 2.6rem;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.8rem;
  }

  .btn--lg {
    padding: 16px 32px;
  }

  .feature-card {
    padding: 32px 24px;
  }

  .service-card__body {
    padding: 24px 20px;
  }
}

/* ============================================
   UTILITY ANIMATIONS
   ============================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Smooth image loading */
img {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img.loaded {
  opacity: 1;
}

/* For images that should show immediately */
.no-lazy {
  opacity: 1 !important;
}
