/*
  ÉLORA Luxury Salon Website
  Author-ready front-end structure: reusable components, shared animation classes, responsive design.
*/

:root {
  --bg: #0a0a0a;
  --bg-2: #101010;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --surface-dark: rgba(10, 10, 10, 0.72);
  --gold: #d4af37;
  --gold-2: #f4d56f;
  --gold-soft: rgba(212, 175, 55, 0.22);
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.88);
  --muted: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --glow: 0 0 44px rgba(212, 175, 55, 0.18);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 84px;
  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(212, 175, 55, 0.13), transparent 26rem),
    radial-gradient(circle at 88% 0%, rgba(255, 255, 255, 0.07), transparent 22rem),
    linear-gradient(135deg, #050505 0%, #0a0a0a 42%, #14100a 100%);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section.compact {
  padding: 76px 0;
}

.section-header {
  width: min(760px, 100%);
  margin: 0 auto 54px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title,
.hero-title,
.page-title {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.section-copy,
.hero-copy,
.page-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.gold-text {
  background: linear-gradient(135deg, #f6e39a, #d4af37 48%, #8d6814);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Header */
.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 90;
  pointer-events: none;
}

.nav-shell {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 18px 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.62);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.logo-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #fff7c9, #d4af37 42%, #6d4b05 100%);
  color: #090909;
  font-family: var(--font-display);
  font-size: 1.22rem;
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.09), 0 0 36px rgba(212, 175, 55, 0.24);
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: inherit;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateX(-50%);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.72);
}

.nav-cta {
  display: inline-flex;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.menu-toggle span {
  position: relative;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.nav-open .menu-toggle span {
  background: transparent;
}

.nav-open .menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Buttons */
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035));
  opacity: 1;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -80% auto auto -40%;
  z-index: -1;
  width: 110px;
  height: 220px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: rotate(24deg) translateX(-110px);
  transition: transform 0.6s var(--ease);
}

.btn:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32), var(--glow);
}

.btn:hover::after {
  transform: rotate(24deg) translateX(360px);
}

.btn-primary {
  border-color: rgba(212, 175, 55, 0.56);
  color: #090909;
  box-shadow: 0 18px 48px rgba(212, 175, 55, 0.17);
}

.btn-primary::before {
  background: linear-gradient(135deg, #fff3b0, #d4af37 48%, #936f16);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
}

.btn-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 160px 0 90px;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.58) 100%),
    url("../assets/hero-salon.svg") center/cover no-repeat;
  transform: scale(1.08);
  animation: heroZoom 14s var(--ease) forwards;
}

.home-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 42%;
  background: linear-gradient(0deg, var(--bg), transparent);
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: 56px;
}

.hero-content {
  max-width: 790px;
}

.hero-title {
  font-size: clamp(4rem, 10vw, 9.8rem);
}

.hero-copy {
  max-width: 620px;
  font-size: clamp(1.04rem, 1.55vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-note .avatars {
  display: flex;
}

.avatar-dot {
  width: 38px;
  height: 38px;
  margin-left: -10px;
  border: 2px solid rgba(10, 10, 10, 0.85);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(255, 255, 255, 0.68));
}

.avatar-dot:first-child {
  margin-left: 0;
}

.floating-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.floating-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 28% 10%, rgba(212, 175, 55, 0.32), transparent 30%), transparent;
}

.appointment-preview {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.28);
}

.appointment-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.appointment-top strong {
  color: var(--white);
  font-size: 1.08rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
}

.preview-lines {
  display: grid;
  gap: 11px;
}

.preview-line {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.line-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.preview-line strong {
  display: block;
  color: var(--white);
}

.hero-orbit {
  position: absolute;
  inset: auto 8% 8% auto;
  display: grid;
  place-items: center;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  animation: spin 18s linear infinite;
}

.hero-orbit::before {
  content: "✦";
  position: absolute;
  top: -9px;
  color: var(--gold);
  text-shadow: 0 0 22px rgba(212, 175, 55, 0.8);
}

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

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: wheel 1.6s ease-in-out infinite;
}

@keyframes wheel {
  0% { transform: translateY(-12px); opacity: 0; }
  30%, 70% { opacity: 1; }
  100% { transform: translateY(13px); opacity: 0; }
}

/* Page Hero */
.page-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 62svh;
  overflow: hidden;
  padding: 160px 0 78px;
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 50% 8%, rgba(212, 175, 55, 0.22), transparent 24rem),
    linear-gradient(135deg, rgba(255,255,255,0.07), transparent 35%),
    url("../assets/hero-salon.svg") center/cover no-repeat;
  opacity: 0.86;
  transform: scale(1.05);
  animation: heroZoom 12s var(--ease) forwards;
}

.page-title {
  width: min(900px, 100%);
  margin-inline: auto;
  font-size: clamp(3.5rem, 8vw, 8rem);
}

.page-copy {
  width: min(720px, 100%);
  margin-inline: auto;
}

/* Cards / Grids */
.feature-grid,
.services-preview-grid,
.services-grid,
.team-grid,
.values-grid,
.contact-grid,
.pricing-grid,
.story-grid {
  display: grid;
  gap: 22px;
}

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

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

.glass-card,
.service-card,
.price-card,
.team-card,
.contact-card,
.timeline-item,
.value-card,
.testimonial-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.45s var(--ease);
}

.glass-card::before,
.service-card::before,
.price-card::before,
.team-card::before,
.contact-card::before,
.timeline-item::before,
.value-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 0%, rgba(212, 175, 55, 0.22), transparent 34%), transparent;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

.glass-card:hover,
.service-card:hover,
.price-card:hover,
.team-card:hover,
.contact-card:hover,
.timeline-item:hover,
.value-card:hover,
.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36), 0 0 54px rgba(212, 175, 55, 0.13);
}

.glass-card:hover::before,
.service-card:hover::before,
.price-card:hover::before,
.team-card:hover::before,
.contact-card:hover::before,
.timeline-item:hover::before,
.value-card:hover::before,
.testimonial-card:hover::before {
  opacity: 1;
}

.feature-card {
  min-height: 238px;
  padding: 28px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 18px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-2);
  font-size: 1.55rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.card-title {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.card-copy {
  margin: 0;
  color: var(--muted);
}

/* Stats */
.stats-section {
  overflow: hidden;
  padding: 76px 0;
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.14), rgba(255, 255, 255, 0.04), rgba(212, 175, 55, 0.12)),
    rgba(255, 255, 255, 0.025);
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  position: relative;
  padding: 30px 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.24);
  text-align: center;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.07), transparent);
  transform: translateX(-100%);
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  100% { transform: translateX(100%); }
}

.stat-number {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  min-height: 62px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4.6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  text-shadow: 0 0 28px rgba(212, 175, 55, 0.18);
}

.stat-label {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

/* Services */
.service-card {
  min-height: 310px;
  padding: 28px;
}

.service-card.large {
  min-height: 360px;
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 255, 255, 0.07));
  color: var(--gold-2);
  font-size: 1.9rem;
}

.service-price {
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 800;
}

.service-card h3 {
  margin: 28px 0 12px;
  color: var(--white);
  font-size: 1.42rem;
  letter-spacing: -0.035em;
}

.service-card p {
  margin: 0 0 24px;
  color: var(--muted);
}

.service-card ul,
.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.74);
}

.service-card li,
.price-card li {
  display: flex;
  gap: 9px;
}

.service-card li::before,
.price-card li::before {
  content: "✦";
  color: var(--gold);
}

/* Testimonials */
.testimonial-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.testimonial-track {
  display: flex;
  transition: transform 0.8s var(--ease);
}

.testimonial-slide {
  min-width: 100%;
  padding: clamp(34px, 6vw, 72px);
}

.stars {
  color: var(--gold-2);
  letter-spacing: 0.18em;
  font-size: 1.05rem;
}

.quote {
  margin: 28px 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.3rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.client-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.client-name {
  color: var(--white);
  font-weight: 900;
}

.client-role {
  color: var(--muted);
}

.testimonial-controls {
  display: flex;
  gap: 10px;
}

.slider-btn {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.slider-btn:hover {
  transform: translateY(-3px);
  background: rgba(212, 175, 55, 0.18);
}

/* CTA */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 8vw, 92px);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 42px;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.26), transparent 23rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow), 0 0 100px rgba(212, 175, 55, 0.09);
  text-align: center;
}

.cta-box::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  pointer-events: none;
}

.cta-box h2 {
  margin: 0 auto 18px;
  width: min(820px, 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.cta-box p {
  width: min(660px, 100%);
  margin: 0 auto 32px;
  color: var(--muted);
}

/* Pricing */
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  padding: 32px;
}

.price-card.recommended {
  border-color: rgba(212, 175, 55, 0.58);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.16), rgba(255, 255, 255, 0.055));
  transform: translateY(-14px);
}

.price-card.recommended:hover {
  transform: translateY(-24px) scale(1.02);
}

.price-badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.5rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 24px 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-family: var(--font-main);
  font-size: 0.95rem;
}

.price-card .btn {
  width: 100%;
  margin-top: 28px;
}

/* About */
.story-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.story-visual {
  min-height: 520px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.55)),
    url("../assets/about-studio.svg") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.story-panel {
  padding: clamp(30px, 5vw, 56px);
}

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

.value-card {
  padding: 32px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  width: min(880px, 100%);
  margin-inline: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(var(--gold), transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 24px;
}

.timeline-year {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #090909;
  font-weight: 900;
  box-shadow: 0 0 0 7px rgba(212, 175, 55, 0.1);
}

.timeline-item h3 {
  margin: 0 0 8px;
  color: var(--white);
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

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

.team-card {
  padding: 18px;
}

.team-photo {
  display: grid;
  place-items: center;
  height: 310px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(255, 255, 255, 0.07));
  color: rgba(255,255,255,0.86);
  font-family: var(--font-display);
  font-size: 5rem;
}

.team-card h3 {
  margin: 22px 10px 4px;
  color: var(--white);
}

.team-card p {
  margin: 0 10px 14px;
  color: var(--muted);
}

/* Contact */
.contact-grid {
  grid-template-columns: 0.86fr 1.14fr;
  align-items: start;
}

.contact-card {
  padding: 32px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-list a,
.contact-list div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--muted);
}

.contact-list strong {
  display: block;
  color: var(--white);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-2);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  font-weight: 900;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.social-link:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.12);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  position: relative;
}

.field label {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 16px 18px;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(212, 175, 55, 0.55);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.095);
  transform: translateY(-2px);
}

.form-status {
  min-height: 28px;
  color: var(--gold-2);
  font-weight: 800;
}

.map-card {
  margin-top: 22px;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.16)),
    url("../assets/map-placeholder.svg") center/cover no-repeat;
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 76px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.75fr);
  gap: 34px;
}

.footer-brand p {
  width: min(380px, 100%);
  color: var(--muted);
}

.footer-title {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.footer-links a:hover {
  color: var(--gold-2);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.9rem;
}

/* Cursor + load animation */
.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 200;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.42), transparent 68%);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  background: #050505;
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  pointer-events: none;
  transition: opacity 0.75s var(--ease), visibility 0.75s var(--ease);
}

body.loaded .page-transition {
  opacity: 0;
  visibility: hidden;
}

.split-line,
.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.split-word span {
  display: inline-block;
}

.js .reveal,
.js .reveal-up,
.js .reveal-scale {
  opacity: 0;
}

/* Utility */
.muted {
  color: var(--muted);
}

.center {
  text-align: center;
}

.stack {
  display: grid;
  gap: 18px;
}

.divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

/* Responsive */
@media (max-width: 1080px) {
  .nav-cta { display: none; }
  .hero-grid,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .floating-card {
    max-width: 520px;
  }
  .feature-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-preview-grid,
  .services-grid,
  .pricing-grid,
  .team-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-card.recommended {
    transform: none;
  }
}

@media (max-width: 820px) {
  :root { --header-height: 70px; }
  .site-header { inset: 12px 0 auto; }
  .nav-shell { padding: 0 12px 0 16px; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 96px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 28px;
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  }
  .nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .nav-link {
    justify-content: center;
    min-height: 54px;
  }
  .hero {
    padding: 132px 0 84px;
  }
  .page-hero {
    min-height: 56svh;
    padding: 132px 0 70px;
  }
  .hero-title {
    font-size: clamp(3.6rem, 16vw, 7rem);
  }
  .section {
    padding: 84px 0;
  }
  .section.compact {
    padding: 58px 0;
  }
  .hero-orbit,
  .cursor-glow {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .brand span:last-child {
    display: none;
  }
  .feature-grid,
  .stats-grid,
  .services-preview-grid,
  .services-grid,
  .pricing-grid,
  .team-grid,
  .values-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions,
  .client-row,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-actions .btn,
  .cta-box .btn {
    width: 100%;
  }
  .floating-card {
    padding: 16px;
    border-radius: 26px;
  }
  .preview-line {
    grid-template-columns: 40px 1fr;
  }
  .preview-line .pill {
    grid-column: 2;
    width: max-content;
  }
  .story-visual,
  .map-card {
    min-height: 320px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
  }
  .timeline::before {
    display: none;
  }
  .team-photo {
    height: 240px;
  }
  .quote {
    font-size: clamp(1.8rem, 11vw, 3.1rem);
  }
}

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