/* ================================================================
   Maya Clinique — Shared Stylesheet
   Luxury beauty & wellness clinic · Bucharest
================================================================ */

/* ─── CSS Variables ───────────────────────────────────────────── */
:root {
  --gold:         #C9A96E;
  --gold-light:   #E8D5A3;
  --gold-dark:    #7A5C2E;
  --gold-dim:     rgba(201,169,110,0.12);
  --cream:        #F0EAD6;
  --black:        #06060A;
  --bg2:          #0D0D12;
  --bg3:          #111118;
  --bg-card:      #13131A;
  --text-muted:   rgba(240,234,214,0.55);
  --border:       rgba(201,169,110,0.2);
  --nav-h:        72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gold-light);
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  font-size: clamp(0.82rem, 1.6vw, 0.96rem);
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.overline {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title { margin-bottom: 0.5rem; }
.section-intro { max-width: 56ch; margin: 0 auto; text-align: center; }

/* ─── Horizontal Rules ────────────────────────────────────────── */
.rule-gold {
  width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1rem auto;
}
.rule-full {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 0;
}

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border: 1px solid;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 0 30px rgba(201,169,110,0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold-dim);
  box-shadow: 0 0 20px rgba(201,169,110,0.2);
  transform: translateY(-1px);
}

/* ─── Navigation ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s, border-bottom 0.4s;
}

.nav.scrolled {
  background: rgba(6,6,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo img {
  height: 38px;
  filter: drop-shadow(0 0 8px rgba(201,169,110,0.3));
}

.nav-links {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(240,234,214,0.7);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(6,6,10,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 1.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.25s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ─── Noise overlay ───────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ─── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
  overflow: hidden;
}

.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-canvas-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 100%);
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,169,110,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(201,169,110,0.05) 0%, transparent 50%),
    var(--black);
  z-index: 0;
}

.hero-beam {
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, rgba(201,169,110,0.15) 0%, transparent 100%);
  transform: translateX(-50%) rotate(-6deg);
  transform-origin: top center;
  animation: beamSway 10s ease-in-out infinite alternate;
  pointer-events: none; z-index: 0;
}
@keyframes beamSway {
  from { transform: translateX(-50%) rotate(-6deg); opacity: .7; }
  to   { transform: translateX(-50%) rotate(6deg); opacity: 1; }
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 860px;
}

.hero-overline { margin-bottom: 1.2rem; }

.hero h1 {
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 40px rgba(201,169,110,0.18);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: clamp(0.82rem, 1.8vw, 1rem);
  max-width: 52ch;
  margin: 0 auto 2.4rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Inner page hero (shorter) */
.hero-inner {
  min-height: 44vh;
  padding-top: calc(var(--nav-h) + 3rem);
}

/* ─── Sections ────────────────────────────────────────────────── */
.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem);
  max-width: 1260px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-dark {
  background: var(--bg2);
}

.section-darker {
  background: var(--bg3);
}

/* ─── Grand Opening Banner ────────────────────────────────────── */
.opening-banner {
  background: linear-gradient(135deg, var(--bg2) 0%, #0e0e16 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 6vw, 5rem);
  text-align: center;
}

.opening-banner .overline { margin-bottom: 1rem; }
.opening-banner h2 { margin-bottom: 0.5rem; }
.opening-banner .address {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.5rem 0 1.8rem;
}

/* Countdown */
.countdown {
  display: flex;
  gap: clamp(1rem, 4vw, 2.8rem);
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.unit {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.4rem;
}
.unit-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  min-width: 2ch; text-align: center;
}
.unit-label {
  font-size: 0.55rem; font-weight: 400;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--text-muted);
}
.countdown-sep {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 300; color: var(--gold-dark);
  line-height: 1; padding-bottom: 0.8rem;
  animation: sepBlink 1s step-end infinite;
}
@keyframes sepBlink { 0%,100% { opacity:1; } 50% { opacity:.15; } }

.opening-raffle {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.opening-raffle svg { color: var(--gold); }

/* ─── Service Cards ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 0.4s;
}
.service-card:hover {
  border-color: rgba(201,169,110,0.45);
  box-shadow: 0 8px 40px rgba(201,169,110,0.08);
  transform: translateY(-3px);
}
.service-card:hover::before { height: 100%; }

.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.4rem;
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  color: var(--gold-light);
}
.service-card p { font-size: 0.84rem; line-height: 1.7; }

.service-card .service-tags {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.service-tag {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(201,169,110,0.2);
}

/* ─── Service Detail Sections ─────────────────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 6vw, 5rem);
  max-width: 1260px;
  margin: 0 auto;
}
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-content .overline { margin-bottom: 0.8rem; }
.service-detail-content h2 { margin-bottom: 1rem; }
.service-detail-content p { margin-bottom: 1.2rem; }

.service-benefits {
  display: flex; flex-direction: column; gap: 0.6rem;
  margin: 1.4rem 0;
}
.service-benefit {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.84rem; color: var(--text-muted);
}
.service-benefit::before {
  content: '—';
  color: var(--gold); flex-shrink: 0;
  margin-top: 0.1rem;
}

.service-image-placeholder {
  aspect-ratio: 4/5;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  position: relative;
  overflow: hidden;
}
.service-image-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(201,169,110,0.04) 100%);
}
.service-image-placeholder svg { width: 64px; height: 64px; opacity: 0.35; }

/* ─── Team Cards ──────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.4rem 1.8rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.team-card:hover {
  border-color: rgba(201,169,110,0.4);
  box-shadow: 0 8px 40px rgba(201,169,110,0.08);
  transform: translateY(-4px);
}

.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--border);
  margin: 0 auto 1.4rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.team-card:hover .team-avatar {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,169,110,0.2);
}

.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.team-role {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.team-services {
  display: flex; flex-direction: column; gap: 0.4rem;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
}
.team-services li {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0.2rem 0;
}

/* ─── Intro Split (Homepage About Preview) ───────────────────── */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-logo-display {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.intro-logo-display img {
  width: 100%;
  height: auto;
  display: block;
}

.intro-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 50%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--gold-dim), transparent);
  border: 1px solid var(--border);
  z-index: -1;
}

@media (max-width: 768px) {
  .intro-split {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .intro-logo-display {
    max-width: 260px;
  }
}

/* ─── About Section ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}
.about-visual-inner {
  aspect-ratio: 3/4;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.about-visual-inner svg { width: 80px; height: 80px; opacity: 0.2; color: var(--gold); }
.about-accent-box {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 50%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--gold-dim), transparent);
  border: 1px solid var(--border);
  z-index: -1;
}

.about-content .overline { margin-bottom: 0.8rem; }
.about-content h2 { margin-bottom: 1.2rem; }
.about-content p { margin-bottom: 1rem; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}
.value-item {
  padding: 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
}
.value-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--gold-light);
}
.value-item p { font-size: 0.78rem; }

/* ─── Stats ───────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2px;
  border: 1px solid var(--border);
}
.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Contact & Form ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 1.8rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}
.contact-detail-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--gold);
}
.contact-detail-text strong {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
  font-weight: 400;
}
.contact-detail-text span {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1.4rem;
}
.form-group label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,169,110,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(240,234,214,0.3); }
.form-group select option { background: var(--bg2); }
.form-group textarea { resize: vertical; min-height: 120px; }

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

/* ─── CTA Section ─────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem);
  background: linear-gradient(135deg, var(--bg2) 0%, #0e0e18 100%);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw; height: 60vw; max-width: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .overline { margin-bottom: 1rem; }
.cta-section h2 { max-width: 18ch; margin: 0 auto 1.2rem; }
.cta-section p { max-width: 46ch; margin: 0 auto 2.4rem; }

/* ─── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 6vw, 5rem) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 32px;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.footer-brand p { font-size: 0.78rem; max-width: 28ch; }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col address {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer-legal a:hover { color: var(--gold); }

/* ─── Reveal Animations ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Utility ─────────────────────────────────────────────────── */
.text-gold   { color: var(--gold); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid  { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-hamburger { display: flex; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .values-grid  { grid-template-columns: 1fr; }
  .stats-grid   { grid-template-columns: 1fr 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .countdown { gap: 0.8rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item  { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ─── Language Toggle ─────────────────────────────────────────── */
.lang-ro { display: none; }
body.ro .lang-en { display: none; }
body.ro .lang-ro { display: inline; }

.lang-toggle {
  display: flex;
  border: 1px solid var(--border);
  overflow: hidden;
}
.lang-btn {
  padding: 0.38rem 0.65rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  background: transparent;
  color: var(--text-muted);
  border: none;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}
.lang-btn:hover { color: var(--gold); }
.lang-btn.active { background: var(--gold-dim); color: var(--gold); }

/* ─── Coming Soon Gate ────────────────────────────────────────── */
#gate {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem;
  transition: opacity 1.2s ease;
}
#gate-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.gate-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(6,6,10,0.82) 70%, rgba(6,6,10,0.98) 100%);
  pointer-events: none;
}
.gate-lang {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  z-index: 2;
}
.gate-content {
  position: relative; z-index: 1;
  max-width: 680px; width: 100%;
}
.gate-logo {
  width: clamp(220px, 22vw, 420px);
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 28px rgba(201,169,110,0.4));
  animation: logoGlow 4s ease-in-out infinite alternate;
}
@keyframes logoGlow {
  from { filter: drop-shadow(0 0 18px rgba(201,169,110,0.25)); }
  to   { filter: drop-shadow(0 0 42px rgba(201,169,110,0.6)); }
}
.gate-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.2;
  margin: 1.2rem 0 0.5rem;
}
.gate-heading em { color: var(--gold); font-style: italic; }
.gate-label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.55);
  margin: 1rem 0 0.4rem;
}
.gate-date {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.4);
  margin-top: 1.5rem;
}
.gate-address {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.3);
  margin-top: 0.5rem;
}
