/* ═══════════════════════════════════════════
   AETHER DESIGN SYSTEM — Luxury Editorial
   Version 2.0 — Multi-Page + Bilingual
   ═══════════════════════════════════════════ */
:root {
  --jet: #0A0A0A;
  --charcoal: #1A1A1A;
  --graphite: #2E2E2E;
  --champagne: #E8CFA0;
  --gold: #C9A66B;
  --gold-light: #F0DEB8;
  --pearl: #FFFFFF;
  --ivory: #F5F2EE;
  --stone: #8C8279;
  --linen: #D9D3CC;
  --silver: #C7C7CF;
  --muted: #666666;
  --dim: #444444;
  --font-h: 'Montserrat', sans-serif;
  --font-b: 'Inter', sans-serif;
  --font-s: 'Great Vibes', cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  background: var(--jet);
  color: var(--pearl);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold); color: var(--jet); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24; }

/* ═══════ GRAIN TEXTURE OVERLAY ═══════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* ═══════ UTILITY CLASSES ═══════ */
.container { max-width: 1320px; margin: 0 auto; padding: 0 clamp(24px, 4vw, 64px); }
.label { font-family: var(--font-h); font-size: 10px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--stone); }
.section-num { font-family: var(--font-h); font-size: clamp(80px, 12vw, 160px); font-weight: 200; line-height: 0.85; color: var(--graphite); user-select: none; }
.section-num-light { color: var(--linen); }

/* ═══════ REVEAL ANIMATIONS ═══════ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.vis { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal-left.vis { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal-right.vis { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 1.2s var(--ease), transform 1.2s var(--ease); }
.reveal-scale.vis { opacity: 1; transform: scale(1); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.35s; }
.stagger-4 { transition-delay: 0.5s; }
.stagger-5 { transition-delay: 0.65s; }

/* ═══════ NAVIGATION ═══════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px clamp(24px, 4vw, 64px);
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.5s, backdrop-filter 0.5s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-top: 16px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,166,107,0.08);
}
.nav-logo { height: 40px; width: auto; opacity: 0.9; transition: opacity 0.3s; }
.nav-logo:hover { opacity: 1; }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-link {
  font-family: var(--font-h); font-size: 11px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone);
  position: relative; transition: color 0.3s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transform-origin: right; transition: transform 0.4s var(--ease);
}
.nav-link:hover { color: var(--pearl); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-link.active { color: var(--champagne); }
.nav-link.active::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-cta {
  font-family: var(--font-h); font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 12px 28px; border: 1px solid var(--gold);
  color: var(--gold); transition: all 0.4s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: var(--jet); }

/* ═══════ LANGUAGE SWITCHER ═══════ */
.lang-switch {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-h); font-size: 10px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--stone); cursor: pointer;
  position: relative;
}
.lang-switch .material-symbols-outlined { font-size: 18px; color: var(--stone); transition: color 0.3s; }
.lang-switch:hover .material-symbols-outlined { color: var(--gold); }
.lang-switch a {
  padding: 4px 8px; transition: color 0.3s;
}
.lang-switch a:hover { color: var(--pearl); }
.lang-switch a.active-lang { color: var(--champagne); font-weight: 600; }
.lang-divider { color: var(--graphite); font-weight: 300; }

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
}

/* ═══════ HERO — CINEMATIC ═══════ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,166,107,0.07) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none; filter: blur(60px);
  animation: pulse-glow 6s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}
.hero-line-top, .hero-line-bottom {
  position: absolute; left: 50%; width: 1px; background: var(--gold);
  opacity: 0.15;
}
.hero-line-top { top: 0; height: 80px; animation: lineGrow 1.5s var(--ease) forwards; }
.hero-line-bottom { bottom: 0; height: 100px; animation: lineGrow 1.5s 1.2s var(--ease) forwards; }
@keyframes lineGrow { from { height: 0; } }

.hero-content { position: relative; z-index: 2; text-align: center; }
.hero-label {
  font-family: var(--font-h); font-size: 10px; font-weight: 400;
  letter-spacing: 0.5em; text-transform: uppercase; color: var(--stone);
  margin-bottom: 48px;
  opacity: 0; animation: fadeUp 1s 0.3s var(--ease) forwards;
}
.hero-logo {
  width: clamp(260px, 38vw, 520px); height: auto; margin: 0 auto 32px;
  opacity: 0; animation: fadeUp 1.2s 0.5s var(--ease) forwards;
}
.hero-divider {
  width: 80px; height: 1px; background: var(--gold); margin: 0 auto 32px;
  opacity: 0; animation: fadeUp 1s 0.8s var(--ease) forwards;
}
.hero-tagline {
  font-family: var(--font-h); font-size: clamp(13px, 1.6vw, 17px);
  font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--silver); margin-bottom: 64px;
  opacity: 0; animation: fadeUp 1s 1s var(--ease) forwards;
}
.hero-cta {
  display: inline-block; font-family: var(--font-h); font-size: 11px;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px 48px; background: var(--gold); color: var(--jet);
  position: relative; overflow: hidden; transition: all 0.4s var(--ease);
  opacity: 0; animation: fadeUp 1s 1.2s var(--ease) forwards;
}
.hero-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--champagne); transform: translateX(-101%);
  transition: transform 0.5s var(--ease);
}
.hero-cta:hover::before { transform: translateX(0); }
.hero-cta span { position: relative; z-index: 1; }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 1s 1.5s var(--ease) forwards;
}
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
.hero-scroll-text { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--stone); }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.8; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════ MARQUEE TAPE ═══════ */
.marquee-wrap {
  overflow: hidden; border-top: 1px solid var(--graphite);
  border-bottom: 1px solid var(--graphite); padding: 20px 0;
  background: var(--charcoal);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  font-family: var(--font-h); font-size: 13px; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--muted);
  white-space: nowrap; padding: 0 40px;
}
.marquee-dot { color: var(--gold); padding: 0 12px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════ SECTION: MANIFESTO ═══════ */
.manifesto {
  padding: clamp(100px, 14vw, 200px) 0;
  position: relative;
}
.manifesto-inner {
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
  align-items: start;
}
.manifesto-label-block {
  display: flex; flex-direction: column; gap: 16px;
  border-left: 1px solid var(--gold); padding-left: 24px;
}
.manifesto-quote {
  font-family: var(--font-h); font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300; line-height: 1.4; color: var(--pearl);
  position: relative;
}
.manifesto-quote::before {
  content: '"'; font-family: var(--font-s); font-size: clamp(80px, 10vw, 140px);
  position: absolute; top: -40px; left: -20px; color: var(--gold); opacity: 0.15;
  line-height: 1;
}
.manifesto-quote em { font-style: italic; color: var(--champagne); }
@media (max-width: 768px) {
  .manifesto-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ═══════ SECTION: SERVICES ═══════ */
.services { padding: clamp(80px, 12vw, 160px) 0; background: var(--ivory); color: var(--jet); }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 80px; border-bottom: 1px solid var(--linen); padding-bottom: 24px;
}
.services-title {
  font-family: var(--font-h); font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  line-height: 1;
}
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border: 1px solid var(--linen);
}
.service-card {
  padding: clamp(32px, 4vw, 56px); border-bottom: 1px solid var(--linen);
  position: relative; transition: background 0.5s var(--ease);
  display: flex; flex-direction: column; min-height: 340px;
}
.service-card:nth-child(odd) { border-right: 1px solid var(--linen); }
.service-card:nth-child(n+3) { border-bottom: none; }
.service-card:hover { background: var(--pearl); }
.service-num {
  font-family: var(--font-h); font-size: clamp(48px, 6vw, 72px);
  font-weight: 200; color: var(--linen); line-height: 1;
  transition: color 0.4s;
  margin-bottom: 24px;
}
.service-card:hover .service-num { color: var(--gold); }
.service-tag {
  font-family: var(--font-h); font-size: 9px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--stone);
  margin-bottom: 12px;
}
.service-name {
  font-family: var(--font-h); font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700; color: var(--jet); margin-bottom: 16px; line-height: 1.2;
}
.service-desc {
  font-size: 15px; font-weight: 300; color: var(--stone); line-height: 1.7;
  margin-bottom: auto;
}
.service-footer {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--linen); padding-top: 20px; margin-top: 32px;
}
.service-price { font-family: var(--font-h); font-size: 14px; font-weight: 600; color: var(--jet); letter-spacing: 0.05em; }
.service-arrow {
  width: 40px; height: 40px; border: 1px solid var(--linen);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.service-card:hover .service-arrow { border-color: var(--gold); background: var(--gold); color: var(--jet); }

/* Flagship card */
.service-card.flagship {
  background: var(--jet); color: var(--pearl); border-color: var(--graphite);
}
.service-card.flagship .service-num { color: var(--graphite); }
.service-card.flagship:hover .service-num { color: var(--gold); }
.service-card.flagship .service-tag { color: var(--gold); }
.service-card.flagship .service-name { color: var(--pearl); }
.service-card.flagship .service-desc { color: var(--stone); }
.service-card.flagship .service-footer { border-color: var(--graphite); }
.service-card.flagship .service-price { color: var(--champagne); }
.service-card.flagship .service-arrow { border-color: var(--gold); color: var(--gold); }
.service-card.flagship:hover .service-arrow { background: var(--gold); color: var(--jet); }
.flagship-badge {
  position: absolute; top: 0; right: 0;
  font-family: var(--font-h); font-size: 9px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 8px 16px; background: var(--gold); color: var(--jet);
}

@media (max-width: 768px) {
  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(odd) { border-right: none; }
  .service-card { border-bottom: 1px solid var(--linen) !important; }
  .service-card:last-child { border-bottom: none !important; }
}

/* ═══════ SECTION: DIFFERENTIATOR ═══════ */
.differ { padding: clamp(80px, 12vw, 180px) 0; position: relative; }
.differ-grid {
  display: grid; grid-template-columns: 1fr 1px 1fr; gap: 0; align-items: stretch;
}
.differ-col { padding: clamp(32px, 5vw, 64px); }
.differ-line { background: var(--graphite); position: relative; }
.differ-line::after {
  content: 'VS'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-h); font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; color: var(--gold); background: var(--jet);
  padding: 12px 8px;
}
.differ-label { font-family: var(--font-h); font-size: 11px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.differ-title { font-family: var(--font-h); font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; text-transform: uppercase; margin-bottom: 24px; line-height: 1.1; }
.differ-text { font-size: 15px; font-weight: 300; color: var(--stone); line-height: 1.8; }
.differ-list { list-style: none; margin-top: 24px; }
.differ-list li {
  font-size: 14px; color: var(--silver); padding: 10px 0;
  border-bottom: 1px solid var(--graphite);
  display: flex; align-items: center; gap: 12px;
}
.differ-list li::before { content: '—'; color: var(--gold); font-weight: 300; }

@media (max-width: 768px) {
  .differ-grid { grid-template-columns: 1fr; }
  .differ-line { height: 1px; width: 100%; }
  .differ-line::after { display: none; }
}

/* ═══════ SECTION: STATS ═══════ */
.stats {
  padding: clamp(60px, 8vw, 100px) 0;
  border-top: 1px solid var(--graphite); border-bottom: 1px solid var(--graphite);
  background: var(--charcoal);
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; text-align: center; }
.stat-item { padding: clamp(24px, 4vw, 48px); position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--graphite);
}
.stat-number {
  font-family: var(--font-h); font-size: clamp(48px, 7vw, 88px);
  font-weight: 800; background: linear-gradient(135deg, var(--pearl) 40%, var(--champagne));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.stat-label { font-family: var(--font-h); font-size: 12px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-top: 12px; }
@media (max-width: 640px) { .stats-grid { grid-template-columns: 1fr; } .stat-item:not(:last-child)::after { display: none; } .stat-item:not(:last-child) { border-bottom: 1px solid var(--graphite); } }

/* ═══════ SECTION: PORTFOLIO ═══════ */
.portfolio { padding: clamp(80px, 12vw, 160px) 0; }
.portfolio-header { margin-bottom: 80px; }
.portfolio-title {
  font-family: var(--font-h); font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
}
.portfolio-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 20px;
}
.portfolio-card {
  position: relative; overflow: hidden; cursor: pointer;
  border: 1px solid var(--graphite);
}
.portfolio-card.tall { grid-row: span 2; }
.portfolio-visual {
  width: 100%; height: 100%; min-height: 360px;
  transition: transform 0.8s var(--ease), filter 0.8s;
}
.portfolio-card:hover .portfolio-visual { transform: scale(1.05); filter: brightness(0.7); }
.portfolio-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: clamp(24px, 3vw, 40px);
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat { font-family: var(--font-h); font-size: 9px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.portfolio-name { font-family: var(--font-h); font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; color: var(--pearl); margin-bottom: 8px; }
.portfolio-desc { font-size: 14px; font-weight: 300; color: var(--silver); }

@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card.tall { grid-row: span 1; }
}

/* ═══════ SECTION: ABOUT ═══════ */
.about { padding: clamp(80px, 12vw, 160px) 0; background: var(--ivory); color: var(--jet); }
.about-grid {
  display: grid; grid-template-columns: 0.4fr 0.6fr; gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.about-left { position: sticky; top: 120px; }
.about-name { font-family: var(--font-h); font-size: clamp(36px, 5vw, 56px); font-weight: 800; text-transform: uppercase; line-height: 1; margin-bottom: 24px; }
.about-role { font-family: var(--font-h); font-size: 11px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: block; }
.about-right { padding-top: 24px; }
.about-story { font-size: 17px; font-weight: 300; line-height: 1.9; color: var(--jet); margin-bottom: 32px; }
.about-story strong { font-weight: 600; }
.about-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--linen); margin-top: 40px; }
.value-item { padding: 24px; border-bottom: 1px solid var(--linen); }
.value-item:nth-child(odd) { border-right: 1px solid var(--linen); }
.value-item:nth-child(n+3) { border-bottom: none; }
.value-name { font-family: var(--font-h); font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.value-desc { font-size: 13px; font-weight: 300; color: var(--stone); }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-left { position: static; }
  .about-values { grid-template-columns: 1fr; }
  .value-item:nth-child(odd) { border-right: none; }
  .value-item { border-bottom: 1px solid var(--linen) !important; }
  .value-item:last-child { border-bottom: none !important; }
}

/* ═══════ SECTION: FAQ ═══════ */
.faq { padding: clamp(80px, 12vw, 160px) 0; }
.faq-header { margin-bottom: 64px; }
.faq-title {
  font-family: var(--font-h); font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  line-height: 1; margin-bottom: 16px;
}
.faq-subtitle { font-size: 16px; font-weight: 300; color: var(--stone); }
.faq-grid { max-width: 900px; }
.faq-item {
  border-bottom: 1px solid var(--graphite);
  overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; cursor: pointer; gap: 24px;
  font-family: var(--font-h); font-size: clamp(16px, 2vw, 20px);
  font-weight: 500; color: var(--pearl);
  transition: color 0.3s;
}
.faq-question:hover { color: var(--champagne); }
.faq-icon {
  font-size: 24px; color: var(--gold);
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
  padding: 0;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 0 24px 0;
}
.faq-answer p {
  font-size: 15px; font-weight: 300; color: var(--stone);
  line-height: 1.8;
}

/* ═══════ SECTION: CTA ═══════ */
.cta-section {
  padding: clamp(120px, 16vw, 240px) 0;
  text-align: center; position: relative;
}
.cta-section .hero-glow { width: 400px; height: 400px; }
.cta-title {
  font-family: var(--font-h); font-size: clamp(32px, 5vw, 56px);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 20px; line-height: 1.1;
}
.cta-sub { font-size: 16px; font-weight: 300; color: var(--stone); margin-bottom: 48px; }
.cta-btn {
  display: inline-block; font-family: var(--font-h); font-size: 12px;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 20px 60px; background: var(--gold); color: var(--jet);
  position: relative; overflow: hidden; transition: all 0.4s;
}
.cta-btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--champagne); transform: translateX(-101%);
  transition: transform 0.5s var(--ease);
}
.cta-btn:hover::before { transform: translateX(0); }
.cta-btn span { position: relative; z-index: 1; }

/* ═══════ CONTACT ═══════ */
.contact { padding: clamp(80px, 12vw, 160px) 0; background: var(--charcoal); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-title { font-family: var(--font-h); font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; margin-bottom: 8px; }
.contact-info-text { font-size: 15px; font-weight: 300; color: var(--stone); line-height: 1.8; }
.contact-channel {
  padding: 20px 0; border-bottom: 1px solid var(--graphite);
  display: flex; align-items: center; gap: 16px;
  transition: border-color 0.3s;
}
.contact-channel:hover { border-color: var(--gold); }
.contact-channel-icon { color: var(--gold); }
.contact-channel-label { font-family: var(--font-h); font-size: 13px; font-weight: 500; letter-spacing: 0.1em; }
.contact-channel-detail { font-size: 13px; color: var(--stone); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-family: var(--font-h); font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }
.form-input {
  background: transparent; border: none; border-bottom: 1px solid var(--graphite);
  padding: 12px 0; font-family: var(--font-b); font-size: 15px; color: var(--pearl);
  transition: border-color 0.3s; outline: none;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--dim); }
.form-select {
  background: transparent; border: none; border-bottom: 1px solid var(--graphite);
  padding: 12px 0; font-family: var(--font-b); font-size: 15px; color: var(--pearl);
  transition: border-color 0.3s; outline: none; appearance: none;
  cursor: pointer;
}
.form-select:focus { border-color: var(--gold); }
.form-select option { background: var(--charcoal); color: var(--pearl); }
.form-submit {
  font-family: var(--font-h); font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; padding: 16px 0;
  background: var(--gold); color: var(--jet); border: none; cursor: pointer;
  transition: background 0.3s; margin-top: 12px;
}
.form-submit:hover { background: var(--champagne); }

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ═══════ FOOTER ═══════ */
.footer {
  padding: 40px clamp(24px, 4vw, 64px);
  border-top: 1px solid var(--graphite);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo { height: 18px; opacity: 0.6; }
.footer-copy { font-size: 12px; color: var(--dim); }
.footer-links { display: flex; gap: 24px; }
.footer-link { font-size: 12px; color: var(--dim); transition: color 0.3s; }
.footer-link:hover { color: var(--gold); }

/* ═══════ PAGE HEADER (for subpages) ═══════ */
.page-header {
  padding-top: 140px; padding-bottom: 80px;
}
.page-header .label { display: block; margin-bottom: 24px; }
.page-header h1 {
  font-family: var(--font-h); font-size: clamp(48px, 8vw, 100px);
  font-weight: 800; text-transform: uppercase; line-height: 0.95;
}
.page-header .page-subtitle {
  font-size: 16px; font-weight: 300; color: var(--stone); margin-top: 16px;
}

/* ═══════ BLOG ═══════ */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.blog-card {
  border: 1px solid var(--graphite);
  transition: border-color 0.4s var(--ease);
  overflow: hidden;
}
.blog-card:hover { border-color: var(--gold); }
.blog-card-img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-body { padding: 28px; }
.blog-card-tag {
  font-family: var(--font-h); font-size: 9px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.blog-card-title {
  font-family: var(--font-h); font-size: 20px; font-weight: 700;
  line-height: 1.3; margin-bottom: 12px; color: var(--pearl);
  transition: color 0.3s;
}
.blog-card:hover .blog-card-title { color: var(--champagne); }
.blog-card-excerpt {
  font-size: 14px; font-weight: 300; color: var(--stone); line-height: 1.7;
  margin-bottom: 20px;
}
.blog-card-meta {
  font-family: var(--font-h); font-size: 11px; color: var(--dim);
  letter-spacing: 0.1em;
}

/* Blog Article */
.article { padding: clamp(80px, 12vw, 160px) 0; }
.article-header { max-width: 800px; margin-bottom: 48px; }
.article-tag {
  font-family: var(--font-h); font-size: 9px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block;
}
.article-title {
  font-family: var(--font-h); font-size: clamp(32px, 5vw, 52px);
  font-weight: 800; line-height: 1.15; margin-bottom: 24px;
}
.article-meta {
  font-size: 13px; color: var(--stone);
  border-bottom: 1px solid var(--graphite); padding-bottom: 24px;
}
.article-body {
  max-width: 800px;
  font-size: 17px; font-weight: 300; line-height: 1.9; color: var(--silver);
}
.article-body h2 {
  font-family: var(--font-h); font-size: 28px; font-weight: 700;
  color: var(--pearl); margin: 48px 0 20px;
}
.article-body h3 {
  font-family: var(--font-h); font-size: 22px; font-weight: 600;
  color: var(--pearl); margin: 36px 0 16px;
}
.article-body p { margin-bottom: 24px; }
.article-body strong { font-weight: 600; color: var(--pearl); }
.article-body em { color: var(--champagne); }
.article-body blockquote {
  border-left: 2px solid var(--gold); padding-left: 24px;
  margin: 32px 0; font-style: italic; color: var(--champagne);
}

/* ═══════ 404 PAGE ═══════ */
.error-page {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.error-code {
  font-family: var(--font-h); font-size: clamp(100px, 20vw, 200px);
  font-weight: 800; color: var(--graphite); line-height: 1;
}
.error-message {
  font-family: var(--font-h); font-size: 20px; font-weight: 300;
  color: var(--stone); margin: 16px 0 40px;
}

/* ═══════ MOBILE MENU ═══════ */
.mobile-menu-btn { display: none; background: none; border: none; color: var(--pearl); cursor: pointer; }
@media (max-width: 768px) { .mobile-menu-btn { display: block; } }
.mobile-overlay {
  position: fixed; inset: 0; z-index: 200; background: var(--jet);
  display: flex; flex-direction: column; padding: 80px 40px 40px;
  transform: translateX(100%); transition: transform 0.5s var(--ease);
}
.mobile-overlay.open { transform: translateX(0); }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--pearl); cursor: pointer;
}
.mobile-nav-link {
  font-family: var(--font-h); font-size: 28px; font-weight: 300;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--stone);
  padding: 16px 0; border-bottom: 1px solid var(--graphite);
  transition: color 0.3s;
}
.mobile-nav-link:hover { color: var(--pearl); }
.mobile-lang-switch {
  display: flex; gap: 16px; margin-top: 24px;
  font-family: var(--font-h); font-size: 16px; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.mobile-lang-switch a { color: var(--stone); transition: color 0.3s; }
.mobile-lang-switch a.active-lang { color: var(--champagne); }
