/* ====================================================================
   Infinite Glow — Modern Beauty & Wellness
   ==================================================================== */

:root {
  --bg: #FAF6F1;
  --bg-alt: #F2EBE1;
  --bg-dark: #1F1A16;
  --cream: #EFE5D6;
  --champagne: #C4A484;
  --rose-taupe: #B8927A;
  --blush: #E8D5C4;
  --gold: #C9A961;
  --gold-dark: #A8893E;
  --text: #2D2520;
  --text-muted: #6B5D52;
  --text-light: #9C8B7E;
  --line: #E5DCD0;
  --white: #FFFFFF;
  --success: #6B8E5A;
  --error: #B85450;

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(45, 37, 32, 0.06);
  --shadow: 0 8px 24px rgba(45, 37, 32, 0.08);
  --shadow-lg: 0 20px 48px rgba(45, 37, 32, 0.12);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1280px;
  --container-narrow: 960px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { color: var(--text-muted); }

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

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

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

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 32px;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--rose-taupe);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
}
.btn-ghost:hover { color: var(--rose-taupe); }

.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 12px; }

/* ----- Tag / Eyebrow ----- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-taupe);
  margin-bottom: 20px;
}

/* ====================================================================
   NAVIGATION
   ==================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(250, 246, 241, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  padding: 14px 0;
  border-bottom-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1;
}
.logo span {
  color: var(--rose-taupe);
  font-style: italic;
}
.logo-mark {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav.scrolled .logo-mark { height: 30px; transition: height var(--transition); }
.footer .logo-mark,
.auth-side .logo-mark { height: 40px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rose-taupe);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}

/* ====================================================================
   HERO
   ==================================================================== */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg) 0%, var(--cream) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  min-height: calc(100vh - 220px);
}

.hero-content {
  max-width: 600px;
  animation: fadeUp 1s ease-out;
}

.hero h1 {
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--rose-taupe);
}

.hero p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.hero-visual {
  position: relative;
  height: 600px;
  animation: fadeIn 1.2s ease-out;
}

.hero-img-wrap {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-size: cover;
  background-position: center;
}
.hero-img-wrap.main {
  width: 70%;
  height: 75%;
  top: 0;
  right: 0;
  background-image: url('https://images.unsplash.com/photo-1630228462324-e29eec6e3f26?w=1200&q=80&auto=format&fit=crop');
}
.hero-img-wrap.accent {
  width: 55%;
  height: 55%;
  bottom: 0;
  left: 0;
  background-image: url('https://images.unsplash.com/photo-1629380108574-40c083555579?w=900&q=80&auto=format&fit=crop');
  border: 8px solid var(--bg);
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(45,37,32,0.15));
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--bg);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.hero-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 20px;
}
.hero-badge-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--text);
}
.hero-badge-text span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ====================================================================
   SECTIONS
   ==================================================================== */
section {
  padding: 100px 0;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-head p {
  font-size: 17px;
  margin-top: 16px;
}

.section-head.left {
  text-align: left;
  margin-left: 0;
}

/* ====================================================================
   SERVICES
   ==================================================================== */
.services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  position: relative;
  padding: 48px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  border: 1px solid var(--line);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-taupe), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--cream));
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  font-size: 28px;
  transition: transform var(--transition);
}
.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-4deg);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  margin-bottom: 24px;
  font-size: 15px;
}

.service-list {
  list-style: none;
  margin-bottom: 28px;
}
.service-list li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-list li:last-child { border-bottom: none; }
.service-list li .price {
  font-family: var(--serif);
  color: var(--rose-taupe);
  font-size: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.service-link::after {
  content: '→';
  transition: transform var(--transition);
}
.service-card:hover .service-link::after {
  transform: translateX(6px);
}

/* ====================================================================
   ABOUT
   ==================================================================== */
.about {
  background: var(--bg-alt);
  position: relative;
}

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

.about-visual {
  position: relative;
  height: 540px;
}
.about-visual .img-1,
.about-visual .img-2 {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.about-visual .img-1 {
  width: 70%;
  height: 70%;
  top: 0;
  left: 0;
  background-image: url('https://images.unsplash.com/photo-1643684391140-c5056cfd3436?w=1100&q=80&auto=format&fit=crop');
}
.about-visual .img-2 {
  width: 55%;
  height: 55%;
  bottom: 0;
  right: 0;
  background-image: url('https://images.unsplash.com/photo-1693004926638-d2e47d705229?w=800&q=80&auto=format&fit=crop');
  border: 6px solid var(--bg-alt);
}

.about-content h2 {
  margin-bottom: 24px;
}
.about-content > p {
  font-size: 17px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.about-features {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--rose-taupe);
  font-size: 18px;
  box-shadow: var(--shadow-sm);
}
.about-feature h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.about-feature p {
  font-size: 14px;
  margin: 0;
}

/* ====================================================================
   TESTIMONIALS
   ==================================================================== */
.testimonials {
  background: var(--bg);
}

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

.testimonial {
  padding: 36px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: all var(--transition);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 4px;
  font-size: 16px;
}

.testimonial-quote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--rose-taupe));
  display: grid;
  place-items: center;
  font-family: var(--serif);
  color: var(--white);
  font-size: 18px;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.testimonial-author span {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ====================================================================
   CTA BLOCK
   ==================================================================== */
.cta-block {
  background: var(--bg-dark);
  color: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(184, 146, 122, 0.15), transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(201, 169, 97, 0.1), transparent 50%);
}
.cta-block > * { position: relative; z-index: 1; }

.cta-block h2 {
  color: var(--bg);
  margin-bottom: 20px;
}
.cta-block h2 em {
  font-style: italic;
  color: var(--gold);
}
.cta-block p {
  font-size: 18px;
  color: rgba(250, 246, 241, 0.7);
  max-width: 540px;
  margin: 0 auto 36px;
}

.cta-block .btn-primary {
  background: var(--bg);
  color: var(--text);
}
.cta-block .btn-primary:hover {
  background: var(--gold);
  color: var(--text);
}

/* ====================================================================
   FOOTER
   ==================================================================== */
.footer {
  background: var(--bg-dark);
  color: var(--bg);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(250, 246, 241, 0.1);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: var(--bg);
  margin-bottom: 16px;
  display: inline-block;
}
.footer-brand p {
  color: rgba(250, 246, 241, 0.65);
  font-size: 14px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col a {
  color: rgba(250, 246, 241, 0.65);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(250, 246, 241, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  color: rgba(250, 246, 241, 0.5);
  font-size: 13px;
}

/* ====================================================================
   FORMS
   ==================================================================== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text);
  transition: all var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--rose-taupe);
  box-shadow: 0 0 0 3px rgba(184, 146, 122, 0.1);
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B5D52' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

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

.form-error {
  color: var(--error);
  font-size: 13px;
  margin-top: 6px;
  display: none;
}
.form-control.error {
  border-color: var(--error);
}
.form-control.error + .form-error {
  display: block;
}

/* ====================================================================
   AUTH PAGES (Login / Register)
   ==================================================================== */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.auth-side {
  background:
    linear-gradient(135deg, rgba(184, 146, 122, 0.72) 0%, rgba(31, 26, 22, 0.88) 100%),
    url('https://images.unsplash.com/photo-1643684460412-76908d8e5a25?w=1400&q=80&auto=format&fit=crop') center/cover;
  color: var(--bg);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.auth-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(201, 169, 97, 0.2), transparent 50%);
}
.auth-side > * { position: relative; z-index: 1; }

.auth-side .logo { color: var(--bg); }

.auth-side-content h2 {
  color: var(--bg);
  margin-bottom: 20px;
  font-size: 2.5rem;
}
.auth-side-content h2 em {
  font-style: italic;
  color: var(--gold);
}
.auth-side-content p {
  color: rgba(250, 246, 241, 0.8);
  font-size: 17px;
  line-height: 1.7;
  max-width: 420px;
}

.auth-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.auth-form {
  width: 100%;
  max-width: 420px;
}

.auth-form h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.auth-form > p {
  margin-bottom: 36px;
  font-size: 15px;
}

.auth-toggle {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
}
.auth-toggle a {
  color: var(--rose-taupe);
  font-weight: 500;
  border-bottom: 1px solid var(--rose-taupe);
}

/* ====================================================================
   BOOKING PAGE
   ==================================================================== */
.page-header {
  padding: 160px 0 60px;
  background: var(--bg-alt);
  text-align: center;
}
.page-header h1 {
  margin-bottom: 16px;
}
.page-header h1 em {
  font-style: italic;
  color: var(--rose-taupe);
}
.page-header p {
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto;
}

.booking-section {
  padding: 80px 0;
}

.booking-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.booking-steps {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.step-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  font-size: 13px;
  color: var(--text-light);
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(50% + 18px);
  right: calc(-50% + 18px);
  height: 1px;
  background: var(--line);
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--text-light);
  flex-shrink: 0;
  border: 1px solid var(--line);
  transition: all var(--transition);
}
.step.active .step-num,
.step.completed .step-num {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.step.active { color: var(--text); font-weight: 500; }
.step.completed { color: var(--text-muted); }

.booking-step-content {
  display: none;
  animation: fadeUp 0.4s ease-out;
}
.booking-step-content.active { display: block; }

.booking-step-content h3 {
  margin-bottom: 8px;
}
.booking-step-content > p {
  margin-bottom: 28px;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.option-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--bg);
  position: relative;
}
.option-card:hover {
  border-color: var(--rose-taupe);
  transform: translateY(-2px);
}
.option-card.selected {
  border-color: var(--text);
  background: var(--white);
  box-shadow: var(--shadow);
}
.option-card.selected::after {
  content: '✓';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-size: 14px;
}
.option-card.option-card-free {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-alt), var(--bg));
  border-color: var(--gold);
}
.option-card.option-card-free::before {
  content: 'COMPLIMENTARY';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  background: rgba(201, 169, 97, 0.15);
  padding: 4px 10px;
  border-radius: 99px;
}
.option-card.option-card-free.selected::before { display: none; }
.option-card.option-card-free .price {
  color: var(--gold-dark);
  font-weight: 500;
}
@media (max-width: 768px) {
  .option-card.option-card-free { grid-column: span 1; }
}
.option-card h4 {
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 6px;
}
.option-card .option-meta {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.option-card .option-meta .price {
  color: var(--rose-taupe);
  font-weight: 500;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.time-slot {
  padding: 12px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--bg);
}
.time-slot:hover:not(.disabled) {
  border-color: var(--rose-taupe);
}
.time-slot.selected {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.time-slot.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.booking-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.booking-summary {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.booking-summary h3 {
  font-size: 22px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  font-size: 14px;
}
.summary-item .label {
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 11px;
}
.summary-item .value {
  color: var(--text);
  font-weight: 500;
  text-align: right;
  max-width: 60%;
}
.summary-item.empty .value {
  color: var(--text-light);
  font-weight: 400;
  font-style: italic;
}

.summary-total {
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.summary-total .label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.summary-total .value {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--rose-taupe);
}

/* ====================================================================
   DASHBOARD
   ==================================================================== */
.dashboard {
  padding: 140px 0 80px;
  background: var(--bg);
  min-height: 100vh;
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 20px;
}
.dashboard-head h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}
.dashboard-head h1 em {
  font-style: italic;
  color: var(--rose-taupe);
}
.dashboard-head p {
  color: var(--text-muted);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
}
.dash-stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.dash-stat-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.dash-stat-value {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--text);
}

.dashboard-tabs {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.dash-tab {
  padding: 14px 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
}
.dash-tab.active {
  color: var(--text);
  border-bottom-color: var(--rose-taupe);
}

.bookings-list {
  display: grid;
  gap: 16px;
}

.booking-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 28px;
  align-items: center;
  transition: all var(--transition);
}
.booking-card:hover {
  box-shadow: var(--shadow);
}

.booking-date {
  text-align: center;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}
.booking-date .day {
  font-family: var(--serif);
  font-size: 32px;
  display: block;
  line-height: 1;
  color: var(--text);
}
.booking-date .month {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-taupe);
  margin-top: 4px;
  display: block;
}
.booking-date .year {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}

.booking-info h4 {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 4px;
}
.booking-info .booking-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.booking-status {
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.status-confirmed {
  background: #E8F0E2;
  color: var(--success);
}
.status-completed {
  background: var(--bg-alt);
  color: var(--text-muted);
}
.status-cancelled {
  background: #F5E0DF;
  color: var(--error);
}
.status-review {
  background: #F8EFD9;
  color: var(--gold-dark);
}
.status-no-show {
  background: #F8EFD9;
  color: var(--gold-dark);
}

.empty-state {
  text-align: center;
  padding: 80px 40px;
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}
.empty-state .empty-icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.4;
}
.empty-state h3 {
  margin-bottom: 12px;
}
.empty-state p {
  margin-bottom: 24px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

/* ====================================================================
   LOYALTY CARD
   ==================================================================== */
.loyalty-card {
  background: var(--bg-dark);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.loyalty-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(184, 146, 122, 0.18), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(201, 169, 97, 0.12), transparent 50%);
}
.loyalty-card > * { position: relative; z-index: 1; }
.loyalty-header {
  text-align: center;
  margin-bottom: 36px;
}
.loyalty-logo {
  height: 56px;
  width: auto;
  display: block;
  margin: 0 auto 12px;
}
.loyalty-brand {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.32em;
  color: var(--bg);
  text-transform: uppercase;
  padding-left: 0.32em;
}
.loyalty-title-wrap {
  text-align: center;
  margin-bottom: 28px;
}
.loyalty-title {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bg);
  margin: 0 0 10px;
}
.loyalty-subtitle {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 246, 241, 0.7);
  margin: 0;
}
.stamp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.stamp {
  aspect-ratio: 1;
  background: rgba(250, 246, 241, 0.03);
  border: 1px solid rgba(250, 246, 241, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 26px;
  color: rgba(250, 246, 241, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.stamp.earned {
  background: linear-gradient(135deg, var(--rose-taupe), var(--champagne));
  border-color: var(--rose-taupe);
  color: var(--bg-dark);
  box-shadow: 0 4px 14px rgba(184, 146, 122, 0.3);
}
.stamp.earned .stamp-num { display: none; }
.stamp.earned::after {
  content: '✓';
  font-size: 24px;
  font-weight: 600;
  font-family: var(--sans);
}
.stamp.reward {
  background: rgba(201, 169, 97, 0.06);
  border-color: rgba(201, 169, 97, 0.2);
  color: rgba(201, 169, 97, 0.5);
  font-size: 18px;
  letter-spacing: 0.05em;
}
.stamp.reward.unlocked {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  color: var(--bg-dark);
  box-shadow: 0 4px 18px rgba(201, 169, 97, 0.45);
  animation: stampPulse 2.4s ease-in-out infinite;
}
@keyframes stampPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
.loyalty-progress { margin-bottom: 28px; }
.loyalty-progress-text {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(250, 246, 241, 0.7);
  margin-bottom: 10px;
  text-align: center;
}
.loyalty-progress-text strong { color: var(--gold); font-weight: 500; }
.loyalty-progress-bar {
  height: 2px;
  background: rgba(250, 246, 241, 0.1);
  border-radius: 1px;
  overflow: hidden;
}
.loyalty-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rose-taupe), var(--gold));
  width: 0%;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.loyalty-terms {
  list-style: none;
  padding: 22px 0 0;
  margin: 0;
  border-top: 1px solid rgba(250, 246, 241, 0.1);
  text-align: center;
}
.loyalty-terms li {
  font-size: 11.5px;
  color: rgba(250, 246, 241, 0.55);
  line-height: 1.7;
}
.loyalty-terms li::before {
  content: '·';
  color: var(--gold);
  margin-right: 6px;
}
@media (max-width: 600px) {
  .loyalty-card { padding: 28px 20px; }
  .stamp-grid { gap: 8px; }
  .stamp { font-size: 18px; }
  .stamp.reward { font-size: 14px; }
  .loyalty-brand { font-size: 18px; letter-spacing: 0.24em; padding-left: 0.24em; }
  .loyalty-title { font-size: 12px; letter-spacing: 0.22em; }
  .loyalty-subtitle { font-size: 10px; }
  .loyalty-terms li { font-size: 10.5px; }
}

/* ====================================================================
   ADMIN SUB-NAV
   ==================================================================== */
.admin-subnav {
  display: flex;
  gap: 4px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.admin-subnav a {
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
  text-decoration: none;
}
.admin-subnav a:hover { color: var(--text); }
.admin-subnav a.active {
  color: var(--text);
  border-bottom-color: var(--rose-taupe);
}

/* ====================================================================
   CLIENT PHOTOS (dashboard)
   ==================================================================== */
.client-photos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.client-photo-pair-date {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-taupe);
  margin-bottom: 10px;
}
.client-photo-pair-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.client-photo-empty-slot {
  aspect-ratio: 1;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--bg-alt);
}
.client-photo-empty-slot small {
  display: block;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
  font-size: 10.5px;
  margin-top: 4px;
  font-weight: 400;
}
.client-photo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  cursor: zoom-in;
  transition: transform var(--transition);
}
.client-photo-card:hover { transform: translateY(-2px); }
.client-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.client-photo-chip {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 11px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(31, 26, 22, 0.85);
  color: var(--bg);
  border-radius: 99px;
  backdrop-filter: blur(4px);
}
.client-photo-chip.after { background: rgba(184, 146, 122, 0.95); }
.client-photo-date {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 11px;
  color: var(--bg);
  background: rgba(31, 26, 22, 0.7);
  padding: 4px 10px;
  border-radius: 99px;
  backdrop-filter: blur(4px);
}
.client-photo-note {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 11px;
  color: var(--bg);
  background: rgba(31, 26, 22, 0.7);
  padding: 4px 10px;
  border-radius: 99px;
  max-width: 55%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.client-photos-empty {
  padding: 60px 40px;
  text-align: center;
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  color: var(--text-light);
}
.client-photos-empty .empty-icon { font-size: 48px; margin-bottom: 18px; opacity: 0.4; }
.client-photos-empty h3 { margin-bottom: 10px; }
.client-photos-empty p { max-width: 380px; margin: 0 auto; }

.photo-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 12, 10, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  padding: 24px;
  cursor: zoom-out;
}
.photo-lightbox.show { display: flex; }
.photo-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  border-radius: var(--radius);
}

/* ====================================================================
   CLIENT PRODUCTS (dashboard)
   ==================================================================== */
.client-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.my-product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.my-product-card:hover {
  border-color: var(--rose-taupe);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.my-product-image {
  aspect-ratio: 1;
  background: var(--bg-alt);
  overflow: hidden;
}
.my-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.my-product-image.empty {
  display: grid;
  place-items: center;
  color: var(--text-light);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.my-product-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.my-product-brand {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-taupe);
}
.my-product-body h4 {
  font-family: var(--serif);
  font-size: 20px;
  margin: 0;
}
.my-product-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 2px;
}
.my-product-note {
  margin-top: 8px;
  padding: 12px 14px;
  background: var(--bg-alt);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13px;
  color: var(--text);
  line-height: 1.55;
}
.my-product-note strong {
  color: var(--rose-taupe);
  font-weight: 600;
}
.my-product-price {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--rose-taupe);
  margin-top: 4px;
}
.my-product-assigned {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

/* ====================================================================
   TOAST / NOTIFICATIONS
   ==================================================================== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--text);
  color: var(--bg);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 360px;
  font-size: 14px;
}
.toast.show { transform: translateY(0); }
.toast.success { background: var(--success); }
.toast.error { background: var(--error); }

/* ====================================================================
   MODAL
   ==================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 26, 22, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.show { display: flex; animation: fadeIn 0.3s; }

.modal {
  background: var(--bg);
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  padding: 40px;
  text-align: center;
  animation: fadeUp 0.4s;
}
.modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--cream));
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: var(--rose-taupe);
}
.modal h3 { margin-bottom: 12px; }
.modal p { margin-bottom: 28px; }
.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-visual { height: 480px; max-width: 560px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 440px; max-width: 560px; }
  .booking-wrap { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  /* Safety: prevent any rogue element from causing horizontal scroll */
  html, body { overflow-x: hidden; }

  /* Tighter padding everywhere on mobile */
  .container, .container-narrow { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }

  /* Smaller, tighter nav so logo + CTA fit on narrow screens */
  .logo { font-size: 19px; gap: 8px; letter-spacing: 0.02em; }
  .logo-mark { height: 28px; }
  .nav.scrolled .logo-mark { height: 24px; }
  .nav { padding: 14px 0; }
  .nav.scrolled { padding: 10px 0; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn-sm { padding: 8px 14px; font-size: 11px; }

  section { padding: 64px 0; }
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.5rem); }
  .hero p { font-size: 16px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; padding: 6px; }
  .nav-cta .btn { display: none; }
  .nav-cta .btn.btn-primary { display: inline-flex; }

  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 28px; }

  .about-features { gap: 16px; }

  .auth-page { grid-template-columns: 1fr; }
  .auth-side { display: none; }
  .auth-form-wrap { padding: 100px 24px 60px; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .booking-steps { padding: 22px 18px; }
  .service-options { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: repeat(3, 1fr); }
  .step-indicator { gap: 8px; }
  .step span:not(.step-num) { display: none; }

  .booking-card {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
    padding: 22px 20px;
  }
  .booking-date {
    padding-right: 0;
    border-right: none;
    text-align: left;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }
  .dashboard-stats { grid-template-columns: 1fr; }
  .dashboard { padding: 110px 0 60px; }
  .dashboard-head { gap: 12px; }
  .dashboard-head h1 { font-size: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .stat-num { font-size: 30px; }

  /* Page headers (services, book, story, login) */
  .page-header { padding: 130px 0 50px; }
  .page-header h1 { font-size: clamp(1.9rem, 7vw, 2.5rem); }
  .page-header p { font-size: 15px; }

  /* CTA block */
  .cta-block p { font-size: 16px; }

  /* Booking wrap stacks on mobile */
  .booking-wrap { grid-template-columns: 1fr; gap: 24px; }
  .booking-summary { position: static; padding: 24px 22px; }
}

/* Very narrow phones: more aggressive tightening */
@media (max-width: 400px) {
  .container, .container-narrow { padding: 0 14px; }
  .nav-inner { padding: 0 14px; }
  .logo { font-size: 17px; }
  .logo-mark { height: 24px; }
  .nav-cta .btn-sm { padding: 7px 11px; font-size: 10.5px; letter-spacing: 0.05em; }
  .hero h1 { font-size: 1.85rem; }
  h2 { font-size: 1.65rem; }
}

/* ----- Mobile Nav Drawer ----- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--bg);
  z-index: 200;
  padding: 80px 32px 32px;
  transition: right var(--transition);
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { right: 0; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.mobile-nav ul li a {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.mobile-nav .btn { margin-top: 24px; width: 100%; }

/* ----- Utility ----- */
.text-center { text-align: center; }
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }
.hidden { display: none !important; }
