/* ============================================================
   AASHIRVAD WELLNESS CENTRE — Design System
   ============================================================ */

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

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg:           #09080A;
  --bg-card:      #110F0D;
  --bg-card-2:    #161310;
  --gold:         #C4943A;
  --gold-light:   #E8BB6B;
  --gold-dark:    #8C6A26;
  --gold-glow:    rgba(196,148,58,0.12);
  --sage:         #6E7E62;
  --sage-light:   #8A9E7C;
  --text:         #F0EAE0;
  --text-2:       #A89D8E;
  --text-3:       #6A6058;
  --border:       rgba(196,148,58,0.18);
  --border-subtle:rgba(196,148,58,0.08);

  --ff-display: 'Cormorant Garant', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:  0.4s var(--ease-luxury);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Custom Cursor ───────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(196,148,58,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: all 0.12s ease;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 14px; height: 14px; }
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 48px; height: 48px; border-color: var(--gold); }

/* ── Typography Scale ────────────────────────────────────── */
.display-xl {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
}
.display-md {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
}
.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.body-lg { font-size: 1.05rem; line-height: 1.8; color: var(--text-2); }
.body-sm { font-size: 0.9rem; line-height: 1.7; color: var(--text-2); }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.section { padding: clamp(5rem, 10vw, 9rem) 0; }
.section--sm { padding: clamp(3rem, 6vw, 5rem) 0; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(9,8,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img {
  height: 52px;
  width: auto;
  transition: var(--transition);
}
.nav.scrolled .nav__logo img { height: 40px; }
.nav__logo-text {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text);
}
.nav__logo-text span { color: var(--gold); }
.nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-luxury);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.14em !important;
  transition: var(--transition) !important;
}
.nav__cta:hover {
  background: var(--gold) !important;
  color: var(--bg) !important;
}
.nav__cta::after { display: none !important; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--text);
  transition: var(--transition);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.4rem;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-luxury);
}
.btn:hover::before { transform: translateX(0); }
.btn--gold {
  background: var(--gold);
  color: var(--bg);
}
.btn--gold:hover { background: var(--gold-light); }
.btn--outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover { background: var(--gold); color: var(--bg); }
.btn--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-2);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 1.5rem 5rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(110,126,98,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 50% 60%, rgba(196,148,58,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #09080A 0%, #0D0B08 50%, #09080A 100%);
}
.hero__lotus {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.06;
  pointer-events: none;
}
.hero__lotus svg { width: min(90vw, 700px); animation: lotus-breathe 8s ease-in-out infinite; }
@keyframes lotus-breathe {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.06; }
  50% { transform: scale(1.04) rotate(1deg); opacity: 0.1; }
}
.hero__content { position: relative; z-index: 2; max-width: 860px; }
.hero__logo { margin: 0 auto 2.5rem; }
.hero__logo img { height: clamp(100px, 18vw, 160px); width: auto; margin: 0 auto; }
.hero__logo-fallback {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.hero__logo-fallback span { color: var(--gold); }
.hero__tagline-sub {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero__headline {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero__headline em { font-style: italic; color: var(--gold); }
.hero__sub { color: var(--text-2); font-size: clamp(1rem, 1.8vw, 1.15rem); max-width: 560px; margin: 0 auto 3rem; line-height: 1.8; }
.hero__actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
}
.hero__scroll span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); }
.hero__scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  padding: clamp(8rem, 15vw, 12rem) 0 clamp(4rem, 8vw, 6rem);
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, #0D0B08 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-subtle);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(196,148,58,0.05) 0%, transparent 70%);
}
.page-hero__content { position: relative; }
.page-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-top: 1rem;
}
.page-hero__title em { font-style: italic; color: var(--gold); }

/* ── Gold Divider ────────────────────────────────────────── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem auto;
  max-width: 220px;
}
.gold-divider__line { flex: 1; height: 1px; background: var(--border); }
.gold-divider__icon { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.1em; white-space: nowrap; }

/* ── Section Headers ─────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-header .display-lg { margin-top: 0.75rem; }
.section-header .display-lg em { font-style: italic; color: var(--gold); }
.section-header p { margin-top: 1rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── About Section ───────────────────────────────────────── */
.about { background: linear-gradient(180deg, var(--bg) 0%, #0D0B08 100%); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 2px;
  overflow: hidden;
}
.about__visual-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1A1710 0%, #0F0D0A 40%, #1C1A14 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--text-3);
  position: relative;
}
.about__visual-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
}
.about__visual-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 60%; aspect-ratio: 1;
  border: 1px solid var(--border);
  z-index: -1;
}
.about__text { }
.about__text .display-lg { margin-top: 1rem; margin-bottom: 1.5rem; }
.about__text p { color: var(--text-2); line-height: 1.9; margin-bottom: 1.2rem; }
.about__text .btn { margin-top: 1rem; }

/* ── Values Grid ─────────────────────────────────────────── */
.values { background: #0D0B08; }
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border-subtle);
}
.value-card {
  background: var(--bg-card);
  padding: clamp(2rem, 4vw, 3rem);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-luxury);
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover { background: var(--bg-card-2); }
.value-card__icon {
  width: 48px; height: 48px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.value-card__title {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.value-card__text { font-size: 0.9rem; color: var(--text-2); line-height: 1.8; }

/* ── Services Teaser ─────────────────────────────────────── */
.services-teaser { background: var(--bg); }
.services-teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-feature {
  border: 1px solid var(--border-subtle);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  transition: var(--transition);
  cursor: pointer;
  group: true;
}
.service-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-glow);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-feature:hover { border-color: var(--border); }
.service-feature:hover::after { opacity: 1; }
.service-feature__number {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.4s;
}
.service-feature:hover .service-feature__number { color: rgba(196,148,58,0.3); }
.service-feature__title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.service-feature__text { font-size: 0.9rem; color: var(--text-2); line-height: 1.8; }
.service-feature__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s;
}
.service-feature:hover .service-feature__link { gap: 0.8rem; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0F0D09 0%, #131008 50%, #0D0B07 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(196,148,58,0.08) 0%, transparent 65%);
}
.cta-banner__content { position: relative; }
.cta-banner .display-lg { margin: 0.75rem 0; }
.cta-banner .display-lg em { font-style: italic; color: var(--gold); }
.cta-banner p { margin-bottom: 2.5rem; }

/* ── Full Services Page ──────────────────────────────────── */
.services-category { padding: clamp(4rem, 8vw, 7rem) 0; border-bottom: 1px solid var(--border-subtle); }
.services-category:last-child { border-bottom: none; }
.services-category__header { margin-bottom: 3rem; }
.services-category__header .display-md { margin-top: 0.5rem; }
.services-category__header .display-md em { font-style: italic; color: var(--gold); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  border: 1px solid var(--border-subtle);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease-luxury);
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover { border-color: var(--border); background: var(--bg-card); }
.service-card__title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.service-card__text { font-size: 0.88rem; color: var(--text-2); line-height: 1.8; }
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.service-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  color: var(--text-2);
  transition: var(--transition);
}
.service-pill::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.service-pill:hover { border-color: var(--border); color: var(--text); background: var(--bg-card); }

/* ── Why Section ─────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border-subtle);
}
.why-card {
  background: var(--bg-card);
  padding: clamp(2.5rem, 5vw, 4rem);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card:hover { background: var(--bg-card-2); }
.why-card__number {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(196,148,58,0.12);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color 0.4s;
}
.why-card:hover .why-card__number { color: rgba(196,148,58,0.22); }
.why-card__title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.why-card__text { font-size: 0.9rem; color: var(--text-2); line-height: 1.85; }

/* ── Team ────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.team-card {
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--border); }
.team-card__image {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1A1710 0%, #0F0D09 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.team-card__image-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #1E1B14, #252015);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--gold);
}
.team-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(110,126,98,0.08), transparent 60%);
}
.team-card__info { padding: 1.75rem; }
.team-card__role {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.team-card__name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.team-card__desc { font-size: 0.88rem; color: var(--text-2); line-height: 1.75; }

/* ── Promise ─────────────────────────────────────────────── */
.promise {
  background: linear-gradient(135deg, #0F0D09 0%, #130F0B 100%);
  border-top: 1px solid var(--border-subtle);
}
.promise__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.promise__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-2);
  position: relative;
}
.promise__quote::before {
  content: '\201C';
  font-family: var(--ff-display);
  font-size: 6rem;
  color: rgba(196,148,58,0.15);
  position: absolute;
  top: -2rem; left: -1rem;
  line-height: 1;
}

/* ── Booking Page ────────────────────────────────────────── */
.book-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.book-info { position: sticky; top: 8rem; }
.book-checklist { margin-top: 2rem; }
.book-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
  color: var(--text-2);
}
.book-checklist li:last-child { border-bottom: none; }
.book-checklist__check {
  width: 20px; height: 20px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.book-checklist__check::after {
  content: '';
  width: 6px; height: 10px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg) translateY(-1px);
}

/* ── Form ────────────────────────────────────────────────── */
.booking-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: clamp(2rem, 5vw, 4rem);
}
.form-group { margin-bottom: 1.75rem; }
.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 0;
  padding: 0.9rem 1.2rem;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-3); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(196,148,58,0.03);
}
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C4943A' stroke-width='1' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.2rem center; padding-right: 2.5rem; cursor: pointer; }
.form-select option { background: #1a1710; color: var(--text); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-radio-group { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.form-radio {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-2);
}
.form-radio input { display: none; }
.form-radio__box {
  width: 16px; height: 16px;
  border: 1px solid var(--border);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.3s;
}
.form-radio input:checked + .form-radio__box { border-color: var(--gold); }
.form-radio input:checked + .form-radio__box::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold);
}
.form-checkbox-group { display: flex; flex-direction: column; gap: 0.75rem; }
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-2);
  transition: color 0.3s;
}
.form-checkbox:hover { color: var(--text); }
.form-checkbox input { display: none; }
.form-checkbox__box {
  width: 16px; height: 16px;
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.form-checkbox input:checked + .form-checkbox__box {
  background: var(--gold);
  border-color: var(--gold);
}
.form-checkbox input:checked + .form-checkbox__box::after {
  content: '';
  width: 4px; height: 8px;
  border-right: 1.5px solid var(--bg);
  border-bottom: 1.5px solid var(--bg);
  transform: rotate(45deg) translateY(-1px);
}
.form-submit { width: 100%; margin-top: 0.5rem; padding: 1.1rem; }
.form-note { text-align: center; margin-top: 1rem; font-size: 0.8rem; color: var(--text-3); }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: #06050A;
  border-top: 1px solid var(--border-subtle);
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--border-subtle);
}
.footer__brand img { height: 60px; width: auto; margin-bottom: 1.25rem; }
.footer__brand-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.footer__brand-name span { color: var(--gold); }
.footer__tagline {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.footer__address { font-size: 0.88rem; color: var(--text-3); line-height: 1.9; }
.footer__col-title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { font-size: 0.88rem; color: var(--text-3); transition: color 0.3s; }
.footer__links a:hover { color: var(--gold); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.75rem; }
.footer__contact-item span { font-size: 0.88rem; color: var(--text-3); line-height: 1.6; }
.footer__contact-item svg { flex-shrink: 0; margin-top: 0.15rem; color: var(--gold); }
.footer__socials { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer__social {
  width: 36px; height: 36px;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer__social:hover { border-color: var(--gold); color: var(--gold); }
.footer__bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copyright { font-size: 0.8rem; color: var(--text-3); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: 0.8rem; color: var(--text-3); transition: color 0.3s; }
.footer__legal a:hover { color: var(--text-2); }

/* ── Scroll Animations ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-luxury), transform 0.7s var(--ease-luxury);
}
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.36s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.48s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.60s; }

/* ── Mobile Nav ──────────────────────────────────────────── */
.nav__mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6,5,8,0.98);
  backdrop-filter: blur(30px);
  z-index: 99;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.nav__mobile.open { opacity: 1; pointer-events: all; display: flex; }
.nav__mobile a {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 300;
  color: var(--text-2);
  transition: color 0.3s;
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 40px; height: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
}
.nav__mobile-close span {
  display: block;
  width: 24px; height: 1px;
  background: var(--text-2);
}
.nav__mobile-close span:first-child { transform: rotate(45deg) translate(0.5px, 0.5px); }
.nav__mobile-close span:last-child { transform: rotate(-45deg) translate(0.5px, -0.5px); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .services-teaser__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { max-height: 380px; }
  .about__visual-accent { display: none; }
  .services-teaser__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .book-layout { grid-template-columns: 1fr; }
  .book-info { position: static; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .hero__actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .fade-up, .stagger > * { opacity: 1; transform: none; }
}
