/* ═══════════════════════════════════════════════
   Arrow-Faz — Shared Design System
   ═══════════════════════════════════════════════ */

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

:root {
  --gold: #C8A96E;
  --gold-light: #E2C98A;
  --gold-dim: rgba(200,169,110,0.12);
  --gold-hairline: rgba(200,169,110,0.22);
  --bg: #070605;
  --bg-card: #0E0C09;
  --bg-card2: #13110D;
  --text: #F5F0E8;
  --text-muted: rgba(240,232,216,0.78);
  --text-dim: rgba(240,232,216,0.42);
  --radius-xl: 2rem;
  --radius-inner: calc(2rem - 6px);
  --spring: cubic-bezier(0.32,0.72,0,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.032;
  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)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 160px;
}

/* ═══════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: max-content;
  max-width: calc(100vw - 2rem);
}
.nav-pill {
  background: rgba(12,10,7,0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--gold-hairline);
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.4s var(--spring);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold-dim);
  border: 1px solid var(--gold-hairline);
  border-radius: 999px;
  padding: 0.42rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  transition: background 0.4s var(--spring), color 0.4s var(--spring);
  white-space: nowrap;
}
.nav-cta:hover { background: rgba(200,169,110,0.26); color: #fff; }

@media (max-width: 900px) {
  .nav-links { display: none; }
}
@media (max-width: 480px) {
  .nav-cta { display: none; }
  .nav-pill { padding: 0.65rem 1.1rem; }
}

/* ═══════════════════════════════════════════════
   COMMON COMPONENTS
   ═══════════════════════════════════════════════ */

/* Eyebrow badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-dim);
  border: 1px solid var(--gold-hairline);
  border-radius: 999px;
  padding: 0.28rem 0.85rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Section header */
.section-header { margin-bottom: 4rem; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 1rem;
}
.section-header h2 em { font-style: italic; color: var(--gold); }
.section-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 50ch;
  line-height: 1.75;
  margin-top: 1rem;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold);
  color: #0A0805;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.85rem 1.4rem 0.85rem 1.6rem;
  transition: transform 0.4s var(--spring), background 0.4s var(--spring);
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover { background: var(--gold-light); transform: scale(1.02); }
.btn-primary:active { transform: scale(0.98); }
.btn-icon {
  width: 1.9rem; height: 1.9rem;
  background: rgba(0,0,0,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.4s var(--spring);
  flex-shrink: 0;
}
.btn-primary:hover .btn-icon { transform: translate(2px,-1px) scale(1.1); }

.btn-ghost {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-ghost:hover { color: var(--gold); }

.btn-group { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* Double-bezel card */
.card {
  background: var(--gold-dim);
  border: 1px solid var(--gold-hairline);
  border-radius: var(--radius-xl);
  padding: 6px;
}
.card-inner {
  background: var(--bg-card);
  border-radius: var(--radius-inner);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.04);
  transition: background 0.5s var(--spring);
}
.card:hover .card-inner { background: var(--bg-card2); }

/* Gold line divider */
.line-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
  margin: 1.4rem 0;
}

/* Image frame (double-bezel for images) */
.img-frame {
  background: var(--gold-dim);
  border: 1px solid var(--gold-hairline);
  border-radius: var(--radius-xl);
  padding: 6px;
  overflow: hidden;
}
.img-frame img {
  width: 100%;
  display: block;
  border-radius: var(--radius-inner);
  object-fit: cover;
}

/* Page-level section padding */
.section { padding: 8rem 5vw; }
.section-sm { padding: 5rem 5vw; }

/* ═══════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════ */
.page-hero {
  padding: 10rem 5vw 5rem;
  max-width: 800px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 1rem 0 1.5rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 50ch;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════════════ */
.stats-strip {
  padding: 2.5rem 5vw;
  border-top: 1px solid var(--text-dim);
  border-bottom: 1px solid var(--text-dim);
  display: flex;
  gap: 3.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--text-dim);
  padding: 4rem 5vw 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 28ch;
}
.footer-col h4 {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  margin-bottom: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.footer-col ul li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-icon {
  width: 1.3rem;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 0.05rem;
}
.footer-bottom {
  padding-top: 1.8rem;
  border-top: 1px solid var(--text-dim);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-text {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid > div:first-child { grid-column: span 2; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: span 1; }
}

/* ═══════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(4px);
  transition: opacity 0.85s var(--spring), transform 0.85s var(--spring), filter 0.85s var(--spring);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(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.45s; }
.reveal-delay-5 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════ */
.cta-band {
  padding: 6rem 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.8rem;
  position: relative;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,169,110,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 18ch;
}
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-band p { font-size: 0.92rem; color: var(--text-muted); max-width: 42ch; line-height: 1.7; }

/* ═══════════════════════════════════════════════
   MOBILE HAMBURGER & MENU OVERLAY
   ═══════════════════════════════════════════════ */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.2rem;
  height: 2.2rem;
  background: var(--gold-dim);
  border: 1px solid var(--gold-hairline);
  border-radius: 50%;
  cursor: pointer;
  gap: 5px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 14px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.4s var(--spring), opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-burger { display: flex; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(7,6,5,0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--spring);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}
.mobile-menu-inner a {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.25rem 1rem;
  letter-spacing: -0.02em;
  transition: color 0.3s var(--spring);
  transform: translateY(20px);
  opacity: 0;
  transition: color 0.3s, transform 0.5s var(--spring), opacity 0.5s var(--spring);
}
.mobile-menu.open .mobile-menu-inner a {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu.open .mobile-menu-inner a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(7) { transition-delay: 0.36s; }
.mobile-menu-inner a:hover,
.mobile-menu-inner a.active { color: var(--gold); }
.mobile-menu-inner a.mobile-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-hairline);
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  margin-top: 1rem;
  font-style: normal;
}

/* ═══════════════════════════════════════════════
   REVEAL SCRIPT (inline in each page)
   ═══════════════════════════════════════════════ */
