/* ============================================================
   REVERA GLAM — Luxury Beauty Salon
   Main Stylesheet
   ============================================================ */

/* ---- Local Fonts ---- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---- Custom Properties ---- */
:root {
  --navy-deepest: #060e1a;
  --navy-deep:    #0a1628;
  --navy:         #0d1b2a;
  --navy-mid:     #122035;
  --navy-light:   #1a2d47;
  --gold:         #C9A84C;
  --gold-dark:    #9B7A2F;
  --gold-mid:     #B8932E;
  --gold-light:   #E0C87A;
  --gold-shine:   #F7EDCA;
  --white:        #FAFAFA;
  --text-light:   rgba(250, 250, 250, 0.85);
  --text-muted:   rgba(250, 250, 250, 0.48);
  --border-gold:  rgba(201, 168, 76, 0.28);
  --border-sub:   rgba(255, 255, 255, 0.07);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Manrope', 'Segoe UI', sans-serif;

  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --trans:        all 0.4s var(--ease);

  --header-h:     82px;
  --max-w:        1240px;
  --pad:          clamp(80px, 10vw, 130px);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
address { font-style: normal; }

/* ---- Layout ---- */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 38px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  transform: translateX(-101%);
  transition: transform 0.45s var(--ease);
}
.btn:hover::after { transform: translateX(0); }

.btn-gold         { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-gold:hover   { background: var(--gold); color: var(--navy-deep); }

.btn-solid        { background: var(--gold); color: var(--navy-deep); border: 1px solid var(--gold); }
.btn-solid:hover  { background: var(--gold-light); border-color: var(--gold-light); }

.btn-ghost        { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.32); }
.btn-ghost:hover  { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }

/* ---- Section Headings ---- */
.section-header { text-align: center; margin-bottom: clamp(50px, 6vw, 80px); }

.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold-light); }

.gold-rule {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 22px auto 0;
}
.gold-rule.left { margin-left: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.5s ease, box-shadow 0.5s ease, height 0.35s ease;
}
.site-header::after {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 8, 15, 0.62) 0%, rgba(3, 8, 15, 0.86) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.site-header.scrolled {
  background: rgba(8, 18, 35, 0.96);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 1px 0 var(--border-gold), 0 12px 40px rgba(0,0,0,0.5);
  height: 66px;
}
.site-header.menu-open::after {
  opacity: 1;
}

.nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
  gap: 20px;
}

/* Logo */
.nav-logo { flex-shrink: 0; }
.nav-logo img {
  height: 68px;
  width: 68px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  transition: var(--trans);
}
.site-header.scrolled .nav-logo img { height: 46px; width: 46px; }

.mobile-brand,
.mobile-menu-extra {
  display: none;
}

.mobile-menu-panel {
  display: contents;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-bottom: 3px;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--gold-light); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* CTA */
.nav-cta {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 10px 26px;
  border: 1px solid var(--gold);
  transition: var(--trans);
}
.nav-cta:hover { background: var(--gold); color: var(--navy-deep); }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-toggle span {
  display: block;
  width: 24px; height: 1px;
  background: var(--white);
  transition: var(--trans);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 90% 70% at 50% 38%,
    #142540 0%, var(--navy-deep) 55%, var(--navy-deepest) 100%);
}

#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Corner decorations */
.hero-corner {
  position: absolute;
  width: 140px; height: 140px;
  pointer-events: none;
  opacity: 0.2;
}
.hero-corner--tl { top: 9%; left: 5%; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.hero-corner--tr { top: 9%; right: 5%; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.hero-corner--bl { bottom: 14%; left: 5%; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.hero-corner--br { bottom: 14%; right: 5%; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--header-h) + 50px) 24px 80px;
  max-width: 960px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.9s 0.25s var(--ease) forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 11vw, 10rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 0.14em;
  row-gap: 0;
  margin-bottom: 28px;
}
.hero-title-line {
  display: block;
  opacity: 0;
  animation: fadeUp 1s var(--ease) forwards;
}
.hero-title-line:nth-child(1) { animation-delay: 0.45s; }
.hero-title-line:nth-child(2) {
  font-style: italic;
  animation-delay: 0.65s;
  background: linear-gradient(
    120deg,
    #8C6A1F 0%, #C9A84C 22%, #F7EDCA 45%, #E0C87A 58%, #C9A84C 76%, #8C6A1F 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp 1s 0.65s var(--ease) forwards, goldShimmer 6s 1.6s linear infinite;
}

/* Diamond SVG */
.hero-gem {
  width: 64px;
  margin: 0 auto 26px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s var(--ease) forwards, gemPulse 3.5s 2s ease-in-out infinite;
}
.hero-gem svg { width: 100%; height: 100%; }

.hero-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 1.05s var(--ease) forwards;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 500px;
  margin: 0 auto 52px;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s var(--ease) forwards;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.4s var(--ease) forwards;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 2s ease forwards;
}
.scroll-cue-label {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-cue-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-overview {
  padding: var(--pad) 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(201,168,76,0.06), transparent 26%),
    radial-gradient(circle at 82% 76%, rgba(255,255,255,0.04), transparent 24%),
    var(--navy);
  position: relative;
}
.services-overview::before,
.services-overview::after {
  content: '';
  position: absolute;
  left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}
.services-overview::before { top: 0; }
.services-overview::after  { bottom: 0; }

.services-overview--care {
  background:
    radial-gradient(circle at 82% 18%, rgba(201,168,76,0.05), transparent 28%),
    radial-gradient(circle at 20% 82%, rgba(255,255,255,0.03), transparent 22%),
    var(--navy-deep);
}

.services-intro {
  max-width: 720px;
  margin: 26px auto 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.9;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.6vw, 30px);
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(12, 24, 40, 0.96), rgba(9, 18, 32, 0.98));
  border: 1px solid var(--border-sub);
  box-shadow: 0 20px 60px rgba(0,0,0,0.34);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 28px 70px rgba(0,0,0,0.42);
}

.service-card-media {
  position: relative;
  aspect-ratio: 1 / 0.88;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.service-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,14,26,0.28), transparent 42%);
  pointer-events: none;
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
  transform: scale(1.01);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 26px 30px;
}

.service-kicker {
  display: inline-block;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.3vw, 2.15rem);
  font-weight: 400;
  line-height: 1.04;
  color: var(--white);
}

.service-card-copy {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.82;
}

.service-card-points {
  display: grid;
  gap: 10px;
  margin-top: auto;
}
.service-card-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.7;
}
.service-card-points li::before {
  content: '';
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}

.services-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: clamp(34px, 4vw, 48px);
}

/* ============================================================
   FEATURE SPOTLIGHT
   ============================================================ */
.feature-spotlight {
  position: relative;
  padding: calc(var(--pad) * 0.92) 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(201,168,76,0.07), transparent 26%),
    radial-gradient(circle at 84% 22%, rgba(255,255,255,0.04), transparent 28%),
    linear-gradient(180deg, #07111f 0%, var(--navy-deepest) 100%);
}
.feature-spotlight::before,
.feature-spotlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}
.feature-spotlight::before { top: 0; }
.feature-spotlight::after  { bottom: 0; }

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
}

.spotlight-frame {
  position: relative;
  padding: 14px;
  border: 1px solid var(--border-sub);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(14, 26, 44, 0.94), rgba(9, 18, 32, 0.98));
  box-shadow: 0 28px 80px rgba(0,0,0,0.34);
  overflow: hidden;
}
.spotlight-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,14,26,0.14), transparent 44%);
  pointer-events: none;
}
.spotlight-frame img {
  width: 100%;
  aspect-ratio: 1 / 0.98;
  object-fit: cover;
  border-radius: 12px;
  filter: saturate(0.94) contrast(1.04);
}
.spotlight-frame--offset {
  margin-top: clamp(34px, 5vw, 76px);
}

.spotlight-caption {
  max-width: 820px;
  margin: clamp(30px, 4vw, 42px) auto 0;
  text-align: center;
}
.spotlight-caption p {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.9;
}

.spotlight-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--pad) 0;
  background: var(--navy-deep);
  position: relative;
}
.about::before,
.about::after {
  content: '';
  position: absolute;
  left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}
.about::before { top: 0; }
.about::after  { bottom: 0; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

/* Visual side */
.about-visual { position: relative; }

.about-stack {
  position: relative;
  min-height: clamp(560px, 58vw, 760px);
}

.about-frame {
  position: relative;
  overflow: hidden;
  background: var(--navy-light);
  box-shadow: 0 28px 80px rgba(0,0,0,0.34);
}
.about-frame-inner {
  width: 100%; height: 100%;
  overflow: hidden;
}
.about-frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(1.01);
}
.about-frame-deco {
  position: absolute;
  bottom: -20px; right: -20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 1px solid var(--border-gold);
  pointer-events: none;
}
.about-frame--primary {
  position: absolute;
  top: 0;
  left: 0;
  width: min(78%, 470px);
  aspect-ratio: 0.82;
  z-index: 2;
}
.about-frame--secondary {
  position: absolute;
  right: 0;
  bottom: 34px;
  width: min(52%, 300px);
  aspect-ratio: 0.72;
  z-index: 3;
  border: 10px solid rgba(6, 14, 26, 0.9);
}

.brand-spinner {
  position: fixed;
  left: clamp(16px, 2vw, 24px);
  bottom: clamp(20px, 2.6vw, 28px);
  width: clamp(56px, 6vw, 72px);
  aspect-ratio: 224 / 244;
  display: grid;
  place-items: center;
  z-index: 30;
  opacity: 0.78;
  pointer-events: none;
  will-change: transform;
}
.brand-spinner__asset {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(135deg, #9B7A2F 0%, #C9A84C 34%, #F7EDCA 54%, #C9A84C 74%, #9B7A2F 100%);
  background-size: 200% auto;
  mask: url('../true-care.svg') center / contain no-repeat;
  -webkit-mask: url('../true-care.svg') center / contain no-repeat;
  filter: drop-shadow(0 0 18px rgba(201,168,76,0.28));
  animation: goldShimmer 7s linear infinite;
}
body.menu-open .brand-spinner {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 34px;
}
.stat-num {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.7vw, 1.05rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.stat-label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Text side */
.about-body { padding-right: 10px; }

.about-lead {
  margin-top: 36px;
  margin-bottom: 24px;
  max-width: 560px;
  font-size: clamp(1.04rem, 1.5vw, 1.16rem);
  line-height: 1.85;
  color: rgba(250, 250, 250, 0.92);
}

.about-text {
  font-size: 0.94rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-sig {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  margin-bottom: 44px;
}
.sig-name {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1.3;
}
.sig-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: var(--pad) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 80% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
}
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.85;
}
.cta-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.cta-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.cta-note strong { color: var(--gold); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deepest);
  border-top: 1px solid var(--border-gold);
}
.footer-top { padding: clamp(64px, 8vw, 100px) 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(36px, 5vw, 80px);
}

/* Brand column */
.footer-logo {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 270px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--border-sub);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--trans);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.07); }
.social-link svg { width: 16px; height: 16px; }

/* Nav columns */
.footer-heading {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.footer-nav-col a:hover { color: var(--gold-light); }

/* Contact column */
.footer-contact address p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  line-height: 1.65;
}
.footer-contact address a { color: var(--text-muted); transition: color 0.3s ease; }
.footer-contact address a:hover { color: var(--gold-light); }
.footer-hours { margin-top: 24px; }
.footer-hours-heading {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.footer-hours p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 4px; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--border-sub);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom p { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.04em; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 0.7rem; color: var(--text-muted); transition: color 0.3s ease; }
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes goldShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 220% center; }
}
@keyframes gemPulse {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 6px rgba(201,168,76,0.4)); }
  50%       { opacity: 0.7; filter: drop-shadow(0 0 2px rgba(201,168,76,0.1)); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.9; }
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .service-grid   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spotlight-grid { gap: 22px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 44px; }
  .about-grid    { gap: 52px; }
}

@media (max-width: 768px) {
  .site-header {
    height: auto;
    padding-top: 12px;
    background: none;
    box-shadow: none;
  }
  .site-header::after {
    background: linear-gradient(180deg, rgba(3, 8, 15, 0.4) 0%, rgba(3, 8, 15, 0.82) 72%, rgba(3, 8, 15, 0.92) 100%);
  }
  .site-header.scrolled {
    background: none;
    box-shadow: none;
    height: auto;
  }
  .nav {
    width: min(calc(100% - 24px), 720px);
    min-height: 82px;
    padding: 10px 12px 10px 14px;
    border-radius: 24px;
    border: 1px solid rgba(201,168,76,0.16);
    background: rgba(6, 14, 26, 0.76);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    gap: 12px;
  }
  .site-header.scrolled .nav {
    background: rgba(6, 14, 26, 0.9);
    border-color: var(--border-gold);
  }
  .site-header.menu-open .nav {
    background: rgba(6, 14, 26, 0.94);
    border-color: rgba(224, 200, 122, 0.32);
    box-shadow: 0 24px 64px rgba(0,0,0,0.48);
  }

  .nav-links,
  .nav-cta        { display: none; }
  .mobile-toggle  { display: flex; }
  .mobile-toggle {
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gold);
    border-radius: 999px;
    background: rgba(255,255,255,0.02);
    flex-shrink: 0;
  }
  .mobile-toggle span {
    width: 18px;
  }
  .site-header.menu-open .mobile-toggle {
    background: rgba(201,168,76,0.08);
    border-color: rgba(224,200,122,0.42);
  }
  .site-header.menu-open .mobile-toggle span {
    background: var(--gold-light);
  }

  .mobile-brand {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
  }
  .mobile-brand-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1;
    color: var(--white);
  }
  .mobile-brand-sub {
    color: var(--text-muted);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-menu-panel {
    display: block;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }
  .mobile-menu-panel.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: 28px;
    background:
      radial-gradient(circle at 15% 12%, rgba(201,168,76,0.12), transparent 26%),
      linear-gradient(180deg, rgba(9, 18, 32, 0.995) 0%, rgba(5, 11, 20, 0.995) 100%);
    box-shadow: 0 26px 80px rgba(0,0,0,0.56);
  }
  .mobile-menu-panel.open .nav-links {
    display: flex;
    flex-direction: column;
    padding: 22px 24px 10px;
    gap: 0;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .mobile-menu-panel.open .nav-links::before {
    content: 'Navigacija';
    display: block;
    margin-bottom: 10px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .mobile-menu-panel.open .nav-links li {
    width: 100%;
  }
  .mobile-menu-panel.open .nav-links li:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .mobile-menu-panel.open .nav-link {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 15px 0;
  }
  .mobile-menu-panel.open .nav-link::after {
    display: none;
  }

  .mobile-menu-extra {
    display: none;
  }
  .mobile-menu-panel.open .mobile-menu-extra {
    display: grid;
    gap: 16px;
    padding: 18px 24px 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
  }
  .mobile-menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 14px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #B8932E 0%, #D5B24E 48%, #E0C87A 100%);
    color: var(--navy-deep);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: 0 16px 36px rgba(185, 147, 46, 0.24);
  }
  .mobile-menu-meta {
    display: grid;
    gap: 10px;
    padding-top: 2px;
    justify-items: center;
  }
  .mobile-menu-meta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: min(100%, 260px);
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    color: rgba(250,250,250,0.74);
    font-size: 0.82rem;
    line-height: 1.5;
    text-align: center;
    transition: var(--trans);
  }
  .mobile-menu-meta-link:hover {
    color: var(--white);
    border-color: rgba(201,168,76,0.22);
    background: rgba(201,168,76,0.05);
  }
  .mobile-menu-meta-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--gold-light);
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.16);
    flex-shrink: 0;
  }
  .mobile-menu-meta-icon svg {
    width: 14px;
    height: 14px;
  }

  .service-grid       { grid-template-columns: 1fr; }
  .service-card-body  { padding: 24px 22px 26px; }
  .services-intro     { font-size: 0.92rem; }
  .spotlight-grid     { grid-template-columns: 1fr; }
  .spotlight-frame--offset { margin-top: 0; }
  .spotlight-caption p { font-size: 0.92rem; }

  .about-grid        { grid-template-columns: 1fr; }
  .about-visual      { order: -1; }
  .about-body        { padding-right: 0; }
  .about-stack       { min-height: 620px; }
  .about-frame--primary {
    width: min(82%, 420px);
    aspect-ratio: 0.82;
  }
  .about-frame--secondary {
    width: min(58%, 260px);
    bottom: 20px;
  }
  .brand-spinner {
    left: 16px;
    bottom: 20px;
    width: 52px;
  }

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

  .footer-bottom .container { flex-direction: column; text-align: center; }

  .hero-corner { display: none; }
  .about-stats { gap: 24px; }
}

@media (max-width: 480px) {
  .nav {
    width: calc(100% - 16px);
    min-height: 76px;
    padding: 10px 10px 10px 12px;
    border-radius: 20px;
  }
  .nav-logo img {
    width: 58px;
    height: 58px;
  }
  .site-header.scrolled .nav-logo img {
    width: 44px;
    height: 44px;
  }
  .mobile-brand-name { font-size: 1.16rem; }
  .mobile-brand-sub  {
    font-size: 0.54rem;
    letter-spacing: 0.18em;
  }
  .mobile-toggle {
    width: 42px;
    height: 42px;
  }
  .mobile-menu-panel.open .nav-links,
  .mobile-menu-panel.open .mobile-menu-extra {
    padding-left: 18px;
    padding-right: 18px;
  }
  .mobile-menu-panel.open .nav-link {
    font-size: 1rem;
  }

  .hero-title   { font-size: clamp(3.2rem, 18vw, 5rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions  { flex-direction: column; align-items: center; }
  .services-actions { flex-direction: column; align-items: center; }
  .about-stack  { min-height: 500px; }
  .about-frame--primary {
    width: 84%;
    aspect-ratio: 0.8;
  }
  .about-frame--secondary {
    width: 54%;
    right: 0;
    bottom: 16px;
    border-width: 7px;
  }
  .brand-spinner {
    left: 12px;
    bottom: 16px;
    width: 42px;
    opacity: 0.64;
  }
  .about-stats  { flex-direction: column; gap: 20px; }
}
