﻿﻿/* ============================================================
   BARBER CODE — styles.css
   Premium Barbershop · English Version
   Design: Luxury Gold on Deep Dark
   ============================================================ */

/* === CSS VARIABLES === */
:root {
  --gold:       #C9A84C;
  --gold2:      #9B7D2A;
  --gold-dim:   rgba(201, 168, 76, 0.35);
  --gold-hover: rgba(201, 168, 76, 0.9);
  --bg:         #06050A;
  --card-bg:    rgba(0, 0, 0, 0.40);
  --white:      #ffffff;
  --off-white:  #f0ead8;

  /* 8-direction black text-shadow for all text over video */
  --ts-dark:
    1px  1px 0 rgba(0,0,0,1),
   -1px -1px 0 rgba(0,0,0,1),
    1px -1px 0 rgba(0,0,0,1),
   -1px  1px 0 rgba(0,0,0,1),
    0    1px 0 rgba(0,0,0,1),
    0   -1px 0 rgba(0,0,0,1),
    1px  0   0 rgba(0,0,0,1),
   -1px  0   0 rgba(0,0,0,1),
    0    0   8px rgba(0,0,0,0.9),
    0    0   20px rgba(0,0,0,0.7);

  --font-h: 'Cormorant Garamond', serif;
  --font-t: 'Manrope', sans-serif;
  --transition: 0.3s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  background: var(--bg);
}

body {
  font-family: var(--font-t);
  color: var(--white);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === CANVAS === */
#gl-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* === GRAIN OVERLAY === */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}

/* === LOADER === */
#loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-logo-img {
  display: block;
  width: 80px;
  height: 80px;
  margin-bottom: 8px;
  opacity: 0.85;
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.3));
}

.loader-logo {
  font-family: var(--font-h);
  font-style: italic;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
}

.loader-bar-wrap {
  width: clamp(200px, 40vw, 320px);
  height: 2px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

#progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold2), var(--gold));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.loader-sub {
  font-family: var(--font-t);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(201, 168, 76, 0.5);
  text-transform: uppercase;
}

.loader-pct {
  font-family: var(--font-t);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(201, 168, 76, 0.6);
  margin: 0;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, calc(100% - 32px));
  z-index: 100;
  background: rgba(6, 5, 10, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50px;
  padding: 0 8px 0 20px;
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 52px;
  gap: 8px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand-icon {
  color: var(--gold);
  font-size: 1rem;
  text-shadow: 0 0 8px rgba(201, 168, 76, 0.5);
}

.nav-brand-text {
  font-family: var(--font-h);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(201, 168, 76, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-t);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 20px;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.nav-cta {
  font-family: var(--font-t);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 20px;
  transition: opacity var(--transition), transform var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* === MOBILE DRAWER === */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 5, 10, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-brand {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.drawer-link {
  font-family: var(--font-t);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  text-align: center;
  width: 200px;
}

.drawer-link:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.drawer-cta {
  font-family: var(--font-t);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  text-decoration: none;
  padding: 14px 40px;
  border-radius: 30px;
  transition: opacity var(--transition);
}

.drawer-cta:hover { opacity: 0.85; }

.drawer-tagline {
  font-family: var(--font-t);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(201, 168, 76, 0.4);
  text-transform: uppercase;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.drawer-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* === UI LAYER & STAGE === */
#ui-layer {
  position: relative;
  z-index: 10;
}

.stage {
  position: relative;
}

/* === PAGES / SECTIONS === */
.page {
  position: relative;
  min-height: 100vh;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.7s ease, visibility 0s 0.7s;
  padding: 80px 0 40px;
}

.page.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.7s ease;
}

/* === REVEAL ANIMATION === */
.reveal-3d {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.page.is-active .reveal-3d { opacity: 1; transform: translateY(0); }
.page.is-active .reveal-3d:nth-child(1) { transition-delay: 0.0s; }
.page.is-active .reveal-3d:nth-child(2) { transition-delay: 0.1s; }
.page.is-active .reveal-3d:nth-child(3) { transition-delay: 0.2s; }
.page.is-active .reveal-3d:nth-child(4) { transition-delay: 0.3s; }
.page.is-active .reveal-3d:nth-child(5) { transition-delay: 0.4s; }
.page.is-active .reveal-3d:nth-child(6) { transition-delay: 0.5s; }

/* === ACCENT GRADIENT TEXT === */
.accent {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none; /* CRITICAL: prevent shadow inheritance on gradient text */
  display: inline;
}

/* === SECTION COMMON === */
.section-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section-header {
  text-align: center;
}

.section-eyebrow {
  font-family: var(--font-t);
  font-size: clamp(0.65rem, 1.2vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: var(--ts-dark);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-h);
  font-style: italic;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--white);
  text-shadow: var(--ts-dark);
  line-height: 1.1;
  margin-bottom: 12px;
}

.section-subtitle {
  font-family: var(--font-t);
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 300;
  color: #ffffff;
  text-shadow: var(--ts-dark);
  letter-spacing: 0.05em;
}

/* === CARDS === */
.cards-grid {
  display: grid;
  gap: 20px;
}

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

.card {
  background: var(--card-bg);
  border: 1px solid var(--gold-dim);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  padding: 28px 24px 24px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  border-color: var(--gold-hover);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.15);
  transform: translateY(-2px);
}

/* Card top decorative line (replaces ::before to avoid specificity issues) */
.card-top-line {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.8), transparent);
}

/* === SERVICE CARDS === */
.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 4px;
}

.card-title {
  font-family: var(--font-h);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 400;
  color: var(--gold);
  text-shadow: var(--ts-dark);
  letter-spacing: 0.05em;
}

.card-desc {
  font-family: var(--font-t);
  font-size: clamp(0.8rem, 1.2vw, 0.88rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: var(--ts-dark);
  line-height: 1.5;
}

.card-price {
  font-family: var(--font-t);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-shadow: var(--ts-dark);
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

/* === PORTFOLIO CARDS === */
.portfolio-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.portfolio-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: rgba(201, 168, 76, 0.04);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  position: relative;
}

.portfolio-glyph {
  font-size: 2.5rem;
  color: rgba(201, 168, 76, 0.4);
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
  line-height: 1;
}

.portfolio-num {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.08);
  position: absolute;
  bottom: 4px;
  right: 12px;
  line-height: 1;
}

.portfolio-info {
  padding: 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.portfolio-tag {
  font-family: var(--font-t);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.6);
  text-shadow: var(--ts-dark);
  margin-top: 4px;
}

/* === PROCESS STEPS === */
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 28px 16px 24px;
}

.step-number {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #e6c44d;
  text-shadow: 0 0 16px rgba(201, 168, 76, 0.6), var(--ts-dark);
}

.step-icon {
  font-size: 1.8rem;
}

.step-title {
  font-family: var(--font-h);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 400;
  color: var(--gold);
  text-shadow: var(--ts-dark);
  letter-spacing: 0.05em;
}

.step-desc {
  font-family: var(--font-t);
  font-size: clamp(0.75rem, 1.1vw, 0.83rem);
  font-weight: 300;
  color: #ffffff;
  text-shadow: var(--ts-dark);
  line-height: 1.5;
}

.process-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 16px;
}

.connector-arrow {
  font-size: 1.5rem;
  color: rgba(201, 168, 76, 0.5);
  text-shadow: 0 0 8px rgba(201, 168, 76, 0.3);
}

/* === HERO === */
#hero {
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 900px;
  padding: 0 clamp(16px, 5vw, 60px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-t);
  font-size: clamp(0.65rem, 1.2vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.8);
  text-shadow: var(--ts-dark);
}

.hero-tag-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.5));
  max-width: 80px;
}

.hero-tag-line:last-child {
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.5), transparent);
}

.hero-title {
  font-family: var(--font-h);
  font-style: italic;
  font-size: clamp(4rem, 14vw, 10rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0.12em;
  text-shadow: var(--ts-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* The .accent inside .hero-title must have text-shadow:none — handled by .accent rule */

.hero-title-code {
  color: var(--white);
  display: block;
  font-size: 0.7em;
  letter-spacing: 0.5em;
  font-weight: 300;
}

.hero-subtitle {
  font-family: var(--font-h);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  color: var(--off-white);
  text-shadow: var(--ts-dark);
  letter-spacing: 0.1em;
}

.hero-desc {
  font-family: var(--font-t);
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  font-weight: 300;
  color: #ffffff;
  text-shadow: var(--ts-dark);
  line-height: 1.6;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-subtagline {
  font-family: var(--font-t);
  font-size: clamp(0.65rem, 1.1vw, 0.72rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
  text-shadow: var(--ts-dark);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-hint-text {
  font-family: var(--font-t);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.4);
  text-shadow: var(--ts-dark);
}

.scroll-arrow {
  font-size: 1rem;
  color: rgba(201, 168, 76, 0.4);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* === BUTTONS === */
.btn {
  font-family: var(--font-t);
  font-size: clamp(0.78rem, 1.3vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  text-shadow: var(--ts-dark);
  white-space: nowrap;
}

.btn-primary {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(201, 168, 76, 0.8);
  color: var(--gold);
}

.btn-primary:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 40px;
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
}

/* === ABOUT === */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 60px);
  width: 100%;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-title {
  text-align: left;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.about-subtitle {
  font-family: var(--font-t);
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-shadow: var(--ts-dark);
}

.about-desc {
  font-family: var(--font-t);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 300;
  color: #ffffff;
  text-shadow: var(--ts-dark);
  line-height: 1.7;
}

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

.fact {
  padding: 16px;
  background: var(--card-bg);
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  right: 10px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.6), transparent);
}

.fact-number {
  font-family: var(--font-h);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--gold);
  text-shadow: var(--ts-dark);
  line-height: 1.2;
}

.fact-label {
  font-family: var(--font-t);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-shadow: var(--ts-dark);
  margin-top: 4px;
}

.about-london {
  font-family: var(--font-t);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-shadow: var(--ts-dark);
}

/* Emblem */
.about-emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.emblem-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.emblem-ring {
  width: clamp(200px, 28vw, 280px);
  height: clamp(200px, 28vw, 280px);
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: slowRotate 20s linear infinite;
}

.emblem-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.emblem-ring::after {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, 0.1);
}

@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.emblem-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: slowRotate 20s linear infinite reverse;
}

.emblem-mark {
  font-family: var(--font-h);
  font-style: italic;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.emblem-word {
  font-family: var(--font-t);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: rgba(201, 168, 76, 0.7);
}

.emblem-sep {
  font-size: 0.7rem;
  color: rgba(201, 168, 76, 0.3);
}

.emblem-year {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.4);
  letter-spacing: 0.2em;
  margin-top: 4px;
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
}

.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-label {
  font-family: var(--font-t);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.6);
  text-shadow: var(--ts-dark);
  margin-bottom: 2px;
}

.contact-value {
  font-family: var(--font-t);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  font-weight: 400;
  color: var(--white);
  text-shadow: var(--ts-dark);
  text-decoration: none;
  transition: color var(--transition);
  display: block;
}

a.contact-value:hover { color: var(--gold); }

/* Contact CTA block */
.contact-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  padding: 36px 28px;
}

.cta-ornament {
  font-size: 1.5rem;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.cta-title {
  font-family: var(--font-h);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 400;
  color: var(--white);
  text-shadow: var(--ts-dark);
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.cta-desc {
  font-family: var(--font-t);
  font-size: clamp(0.85rem, 1.3vw, 0.92rem);
  font-weight: 300;
  color: #ffffff;
  text-shadow: var(--ts-dark);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.cta-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.cta-divider::before,
.cta-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201, 168, 76, 0.15);
}

.cta-divider span {
  font-family: var(--font-t);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: var(--ts-dark);
  text-transform: uppercase;
  white-space: nowrap;
}

.social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(0, 0, 0, 0.4);
  font-family: var(--font-t);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(201, 168, 76, 0.7);
  text-decoration: none;
  transition: all var(--transition);
  text-shadow: var(--ts-dark);
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

/* Footer */
.contact-footer {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand {
  font-family: var(--font-h);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-shadow: var(--ts-dark);
}

.footer-tagline {
  font-family: var(--font-t);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: var(--ts-dark);
  text-transform: uppercase;
}

.footer-copy {
  font-family: var(--font-t);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: var(--ts-dark);
}

/* .br-desktop hidden on mobile */
.br-desktop { display: block; }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Navbar */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .navbar { padding: 0 8px 0 16px; }
  .nav-inner { gap: 0; justify-content: space-between; }

  /* Sections */
  .page { padding: 100px 0 60px; align-items: flex-start; }

  .section-content { gap: 32px; }

  /* Cards grid → 1 col */
  .cards-4 { grid-template-columns: 1fr; }

  /* Hero */
  .hero-content { gap: 14px; }
  .hero-title { font-size: clamp(3.5rem, 18vw, 6rem); }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; text-align: center; }
  .br-desktop { display: none; }

  /* About */
  .about-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-emblem { display: none; }

  .about-title { text-align: center; }
  .section-eyebrow { text-align: center; }

  .about-facts { grid-template-columns: repeat(2, 1fr); }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-connector {
    padding: 0;
    transform: rotate(90deg);
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-actions { width: 100%; }
  .cta-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(3rem, 20vw, 5rem); }
  .about-facts { grid-template-columns: 1fr 1fr; }
}

/* === SITE LOADING BAR (deferred) === */
$10;visibility:hidden;transition:opacity .6s,visibility .6s;transition:opacity .6s}
#siteLoadingBar.done{opacity:0;pointer-events:none}
.slb-track{width:120px;height:4px;background:rgba(255,255,255,.15);border-radius:4px;overflow:hidden}
.slb-fill{height:100%;width:0%;background:var(--gold, var(--accent, #c9a84c));border-radius:4px;transition:width .3s}
.slb-text{white-space:nowrap}