@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Inter:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ==========================================
   TAVRIX — DESIGN SYSTEM
   Dark Gradient Futurism × Luxury
   ========================================== */

:root {
  --color-bg: #0a0a0f;
  --color-bg-2: #0f0f18;
  --color-bg-3: #14141f;
  --color-surface: #1a1a28;
  --color-surface-2: #22223a;
  --color-gold: #c9a84c;
  --color-gold-light: #e8c96e;
  --color-gold-dim: #8a6e30;
  --color-text: #f0ede8;
  --color-text-2: #b8b4ae;
  --color-text-muted: #6e6a65;
  --color-accent: #1e1e30;
  --color-border: rgba(201, 168, 76, 0.18);
  --color-border-dim: rgba(255,255,255,0.06);
  --gradient-gold: linear-gradient(135deg, #c9a84c 0%, #e8c96e 50%, #a07830 100%);
  --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #0f0f18 100%);
  --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #141428 50%, #0a0a18 100%);
  --gradient-card: linear-gradient(145deg, #14141f 0%, #1e1e32 100%);
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Montserrat', sans-serif;
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.12);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.6);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ==========================================
   SCROLLBAR
   ========================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-gold-dim); border-radius: 3px; }

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h5 { font-size: 1.1rem; font-family: var(--font-accent); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

p { font-size: 1rem; line-height: 1.8; color: var(--color-text-2); margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gradient-gold);
}

/* ==========================================
   LAYOUT
   ========================================== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: 1440px; margin: 0 auto; padding: 0 2.5rem; }

.section { padding: 100px 0; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 140px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gradient-gold);
  color: #0a0a0f;
}
.btn-primary::after { background: rgba(255,255,255,0.12); }
.btn-primary:hover { box-shadow: 0 4px 30px rgba(201,168,76,0.4); transform: translateY(-1px); }

.btn-outline {
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
}
.btn-outline:hover { background: rgba(201,168,76,0.08); box-shadow: 0 0 20px rgba(201,168,76,0.15); }

.btn-ghost {
  color: var(--color-text-2);
  border: 1px solid var(--color-border-dim);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--color-gold); color: var(--color-gold); }

.btn-arrow { gap: 0.75rem; }
.btn-arrow span { display: inline-block; transition: transform 0.3s; }
.btn-arrow:hover span { transform: translateX(6px); }

/* ==========================================
   HEADER
   ========================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2.5rem;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 10, 15, 0.96);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--color-border-dim);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
.header-logo .logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-gold);
  flex-shrink: 0;
}

.header-nav { display: flex; align-items: center; gap: 0; }
.header-nav > ul { display: flex; align-items: center; gap: 0; }
.header-nav > ul > li { position: relative; }
.header-nav > ul > li > a {
  display: block;
  padding: 0.5rem 1.1rem;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-2);
  transition: color 0.3s;
}
.header-nav > ul > li > a:hover,
.header-nav > ul > li > a.active { color: var(--color-gold); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0.75rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, top 0.25s;
  box-shadow: var(--shadow-card);
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  top: calc(100% + 4px);
}
.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-2);
  transition: color 0.25s, padding-left 0.25s;
}
.dropdown-menu li a:hover { color: var(--color-gold); padding-left: 1.6rem; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--color-text);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,15,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 3rem 2.5rem;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav ul a {
  display: block;
  padding: 0.875rem 0;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  border-bottom: 1px solid var(--color-border-dim);
  color: var(--color-text);
  transition: color 0.3s;
}
.mobile-nav ul a:hover { color: var(--color-gold); }

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border-dim);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--color-border-dim);
}
.footer-brand .logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-text);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.footer-brand p { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.7; }
.footer-brand .footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-brand .footer-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--color-border-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  transition: var(--transition);
  font-family: var(--font-accent);
}
.footer-brand .footer-social a:hover { border-color: var(--color-gold); color: var(--color-gold); }

.footer-col h5 {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color 0.3s;
  font-family: var(--font-body);
}
.footer-col ul a:hover { color: var(--color-text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 2rem;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--color-gold); }

/* ==========================================
   HERO SECTIONS
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,15,0.9) 0%, rgba(10,10,20,0.6) 50%, rgba(10,10,15,0.85) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 750px; }
.hero-tag {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--color-gold); }
.hero p { font-size: 1.125rem; margin-bottom: 2.5rem; max-width: 540px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */
.page-hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .subtitle {
  font-size: 1.125rem;
  color: var(--color-text-2);
  max-width: 600px;
}

/* ==========================================
   CARDS
   ========================================== */
.card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-dim);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--color-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 1.75rem; }
.card-tag {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.625rem;
  display: block;
}
.card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.card p { font-size: 0.9rem; margin-bottom: 1.25rem; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-family: var(--font-accent);
  letter-spacing: 0.05em;
}
.card-meta span { display: flex; align-items: center; gap: 0.4rem; }

/* Article card variant */
.article-card { display: flex; flex-direction: column; }
.article-card .card-body { flex: 1; display: flex; flex-direction: column; }
.article-card .card-link {
  margin-top: auto;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}
.article-card:hover .card-link { gap: 1rem; }

/* Feature card */
.feature-card {
  padding: 2.5rem;
  border-top: 2px solid var(--color-border);
  background: transparent;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  transition: border-color 0.3s;
}
.feature-card:hover { border-color: var(--color-gold); }
.feature-card .feature-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--color-gold-dim);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.6;
}
.feature-card h4 { margin-bottom: 0.75rem; }

/* ==========================================
   STATS / NUMBERS
   ========================================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--color-border-dim);
}
.stat-item {
  background: var(--color-bg-3);
  padding: 3rem 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ==========================================
   QUOTE / PULL QUOTE
   ========================================== */
.pull-quote {
  border-left: 3px solid var(--color-gold);
  padding: 1.5rem 2.5rem;
  margin: 2.5rem 0;
  background: rgba(201,168,76,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pull-quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.5;
  margin: 0;
}
.pull-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ==========================================
   ARTICLE / CONTENT PAGES
   ========================================== */
.article-body { max-width: 780px; margin: 0 auto; }
.article-body h2 { margin: 2.5rem 0 1rem; font-size: clamp(1.6rem, 2.5vw, 2.4rem); }
.article-body h3 { margin: 2rem 0 0.75rem; }
.article-body p { font-size: 1.05rem; }
.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-text-2);
}
.article-body li { margin-bottom: 0.5rem; font-size: 1.05rem; line-height: 1.7; }
.article-body img { border-radius: var(--radius-lg); margin: 2rem 0; width: 100%; object-fit: cover; }
.article-header { margin-bottom: 3rem; }
.article-header .article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.article-header .article-meta span { display: flex; align-items: center; gap: 0.4rem; }

/* ==========================================
   DIVIDER
   ========================================== */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
  margin: 1.5rem 0;
}
.divider--center { margin: 1.5rem auto; }

/* ==========================================
   SECTION HEADING
   ========================================== */
.section-heading { margin-bottom: 3.5rem; }
.section-heading--center { text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center .eyebrow::before { display: none; }
.section-heading--center .divider { margin-left: auto; margin-right: auto; }
.section-heading p { max-width: 560px; font-size: 1.05rem; }
.section-heading--center p { margin: 0 auto; }

/* ==========================================
   GOLD LINE DECORATOR
   ========================================== */
.gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  opacity: 0.3;
  margin: 4rem 0;
}

/* ==========================================
   TAG CLOUD / CATEGORIES
   ========================================== */
.tag-list { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.tag {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border-dim);
  padding: 0.4rem 0.875rem;
  border-radius: 2rem;
  transition: var(--transition);
}
.tag:hover, .tag.active { border-color: var(--color-gold); color: var(--color-gold); }
a.tag { cursor: pointer; }

/* ==========================================
   FORM ELEMENTS
   ========================================== */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border-dim);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--color-gold);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-select { appearance: none; }

/* ==========================================
   NEWSLETTER STRIP
   ========================================== */
.newsletter-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 3rem 0;
}
.newsletter-strip__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.newsletter-strip h4 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.newsletter-strip p { font-size: 0.9rem; margin: 0; }
.newsletter-form { display: flex; gap: 0.75rem; flex: 0 0 auto; }
.newsletter-form .form-input { width: 280px; }

/* ==========================================
   BREADCRUMB
   ========================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--color-text-muted); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb span { color: var(--color-gold-dim); }

/* ==========================================
   SIDEBAR
   ========================================== */
.sidebar-widget {
  background: var(--color-surface);
  border: 1px solid var(--color-border-dim);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h5 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border-dim);
}

/* ==========================================
   RELATED ARTICLES
   ========================================== */
.related-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ==========================================
   POLICY PAGES
   ========================================== */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 2rem 100px;
}
.policy-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.policy-content .policy-date {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  display: block;
}
.policy-content h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.policy-content h3 { font-size: 1.2rem; margin: 1.75rem 0 0.625rem; }
.policy-content p { font-size: 0.975rem; color: var(--color-text-2); }
.policy-content ul, .policy-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--color-text-2);
  font-size: 0.975rem;
}
.policy-content li { margin-bottom: 0.5rem; line-height: 1.7; }
.policy-content a { color: var(--color-gold); text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================
   TABS
   ========================================== */
.tabs { margin-bottom: 2rem; }
.tab-list { display: flex; gap: 0; border-bottom: 1px solid var(--color-border-dim); }
.tab-btn {
  padding: 0.875rem 1.5rem;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover { color: var(--color-gold); border-bottom-color: var(--color-gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ==========================================
   ACCORDION
   ========================================== */
.accordion-item {
  border-bottom: 1px solid var(--color-border-dim);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
}
.accordion-trigger .acc-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--color-gold);
  transition: transform 0.3s;
}
.accordion-item.open .acc-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-body-inner { padding-bottom: 1.5rem; }

/* ==========================================
   IMAGE LAYOUT HELPERS
   ========================================== */
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.img-ratio-4-3 { aspect-ratio: 4/3; overflow: hidden; }
.img-ratio-16-9 { aspect-ratio: 16/9; overflow: hidden; }
.img-ratio-square { aspect-ratio: 1; overflow: hidden; }
.img-ratio-portrait { aspect-ratio: 3/4; overflow: hidden; }
.rounded { border-radius: var(--radius-lg); }
.rounded img { border-radius: var(--radius-lg); }

/* ==========================================
   SPECIAL LAYOUTS
   ========================================== */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }

.offset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.offset-grid .offset-item:nth-child(even) { margin-top: 3rem; }

.masonry-3 {
  columns: 3;
  column-gap: 1.5rem;
}
.masonry-3 .masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

/* ==========================================
   GOLD GLOW SECTION
   ========================================== */
.glow-section {
  position: relative;
  overflow: hidden;
}
.glow-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ==========================================
   HIGHLIGHT BOX
   ========================================== */
.highlight-box {
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.highlight-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
}

/* ==========================================
   CONTACT INFO
   ========================================== */
.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border-dim);
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info-text strong {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}
.contact-info-text span { font-size: 0.95rem; color: var(--color-text-2); }

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 100;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--color-gold); color: var(--color-bg); }

/* ==========================================
   UTILITY
   ========================================== */
.text-gold { color: var(--color-gold); }
.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ==========================================
   DECORATIVE ELEMENTS
   ========================================== */
.deco-line {
  position: absolute;
  background: linear-gradient(to bottom, var(--color-gold-dim), transparent);
  width: 1px;
  opacity: 0.2;
}
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
  pointer-events: none;
}

/* Grid lines overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* ==========================================
   INTRO ANIMATION
   ========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .header-nav { display: none; }
  .nav-toggle { display: flex; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split-layout { grid-template-columns: 1fr; gap: 3rem; }
  .split-layout.reverse { direction: ltr; }
  .related-row { grid-template-columns: 1fr; }
  .masonry-3 { columns: 2; }
  .newsletter-strip__inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .newsletter-form { width: 100%; justify-content: center; }
  .newsletter-form .form-input { flex: 1; width: auto; }
}

@media (max-width: 640px) {
  :root { --section-pad: 60px; }
  .section { padding: 70px 0; }
  .container { padding: 0 1.25rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .offset-grid { grid-template-columns: 1fr; }
  .offset-grid .offset-item:nth-child(even) { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .masonry-3 { columns: 1; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
}
