@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,600&display=swap');

/* ===================== DESIGN TOKENS ===================== */
:root {
  --bg-base:        #080d16;
  --bg-surface:     #0e1623;
  --bg-card:        rgba(255,255,255,0.04);
  --bg-glass:       rgba(255,255,255,0.06);

  --gold:           #c5a059;
  --gold-light:     #e8d08b;
  --gold-dim:       rgba(197,160,89,0.15);
  --gold-glow:      rgba(197,160,89,0.25);
  --gold-grad:      linear-gradient(135deg,#c5a059 0%,#e8d08b 50%,#c5a059 100%);

  --text-primary:   #f0ede8;
  --text-secondary: rgba(240,237,232,0.65);
  --text-muted:     rgba(240,237,232,0.38);

  --border:         rgba(255,255,255,0.08);
  --border-gold:    rgba(197,160,89,0.3);

  --font-heading:   'Playfair Display', serif;
  --font-body:      'Inter', sans-serif;

  --header-h:       76px;
  --max-w:          1200px;
  --radius:         12px;
  --radius-lg:      20px;

  --ease-out:       cubic-bezier(0.22,1,0.36,1);
  --ease-in-out:    cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior:smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration:none; color:inherit; transition:.25s; }
img { display:block; max-width:100%; }
ul { list-style:none; }

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--bg-base); }
::-webkit-scrollbar-thumb { background:var(--gold); border-radius:3px; }

/* ===================== LAYOUT ===================== */
.container {
  width:100%;
  max-width:var(--max-w);
  margin:0 auto;
  padding:0 2rem;
}

.section-pad { padding:7rem 0; }

/* ===================== TYPOGRAPHY ===================== */
h1,h2,h3,h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height:1.25;
}

.section-eyebrow {
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:1.25rem;
}
.section-eyebrow::before {
  content:'';
  display:block;
  width:28px;
  height:1px;
  background:var(--gold);
}

.section-title {
  font-size:clamp(2rem,3.5vw,3rem);
  margin-bottom:1.25rem;
}
.section-title .accent {
  background:var(--gold-grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.lead {
  color:var(--text-secondary);
  font-size:1.1rem;
  max-width:640px;
}

/* ===================== BUTTONS ===================== */
.btn {
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  padding:.85rem 2rem;
  border-radius:var(--radius);
  font-family:var(--font-body);
  font-size:.95rem;
  font-weight:600;
  cursor:pointer;
  border:none;
  transition:.3s var(--ease-out);
  position:relative;
  overflow:hidden;
  white-space:nowrap;
}

.btn-gold {
  background:var(--gold-grad);
  color:#0a0f1a;
}
.btn-gold:hover { transform:translateY(-3px); box-shadow:0 12px 30px rgba(197,160,89,.35); }

.btn-ghost {
  background:transparent;
  color:var(--text-primary);
  border:1px solid var(--border);
}
.btn-ghost:hover {
  border-color:var(--gold);
  color:var(--gold);
  background:var(--gold-dim);
}

.btn-gold-ghost {
  background:transparent;
  color:var(--gold);
  border:1px solid var(--border-gold);
}
.btn-gold-ghost:hover {
  background:var(--gold-dim);
  transform:translateY(-2px);
}

/* ===================== HEADER ===================== */
.header {
  position:fixed;
  top:0; left:0;
  width:100%;
  height:var(--header-h);
  z-index:999;
  transition:.4s var(--ease-in-out);
  border-bottom:1px solid transparent;
}
.header.scrolled {
  background:rgba(8,13,22,.88);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom-color:var(--border);
  box-shadow:0 1px 40px rgba(0,0,0,.5);
}

.header .container {
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:100%;
}

.logo {
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}
.logo-mark {
  background:var(--gold-grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  font-family:var(--font-heading);
  font-size:2rem;
  font-weight:700;
  font-style:italic;
  line-height:1;
}
.logo-name {
  display:flex;
  flex-direction:column;
  line-height:1;
}
.logo-name strong {
  font-family:var(--font-heading);
  font-size:1.15rem;
  font-weight:600;
  color:var(--text-primary);
}
.logo-name small {
  font-size:.62rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--gold);
  margin-top:2px;
}

.nav { display:flex; align-items:center; gap:2.5rem; }

.nav-links {
  display:flex;
  align-items:center;
  gap:.25rem;
}
.nav-links a {
  font-size:.88rem;
  font-weight:500;
  color:var(--text-secondary);
  padding:.5rem .9rem;
  border-radius:8px;
  transition:.25s;
  position:relative;
}
.nav-links a:hover,
.nav-links a.active {
  color:var(--gold);
  background:var(--gold-dim);
}

.nav-cta { flex-shrink:0; }

.burger {
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  background:none;
  border:none;
  padding:.5rem;
}
.burger span {
  display:block;
  width:24px;
  height:2px;
  background:var(--text-primary);
  border-radius:2px;
  transition:.3s;
}
.burger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity:0; }
.burger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ===================== MOBILE NAV ===================== */
@media(max-width:900px){
  .burger { display:flex; }
  .nav-links {
    position:fixed;
    top:var(--header-h); left:-100%;
    width:100%; height:calc(100dvh - var(--header-h));
    flex-direction:column;
    align-items:flex-start;
    background:rgba(8,13,22,.98);
    backdrop-filter:blur(20px);
    padding:2.5rem 2rem;
    gap:.5rem;
    transition:.4s var(--ease-out);
  }
  .nav-links.open { left:0; }
  .nav-links a { font-size:1.1rem; padding:.75rem 1.25rem; width:100%; }
  .nav-cta { display:none; }
}

/* ===================== HERO ===================== */
.hero {
  position:relative;
  min-height:100dvh;
  display:flex;
  align-items:center;
  overflow:hidden;
}

/* Animated background */
.hero-bg {
  position:absolute;
  inset:0;
  z-index:0;
}

.orb {
  position:absolute;
  border-radius:50%;
  filter:blur(90px);
  opacity:.25;
  animation:orbFloat 14s ease-in-out infinite;
}
.orb-1 { width:600px; height:600px; background:radial-gradient(circle,#c5a059,transparent); top:-15%; left:-10%; animation-delay:0s; }
.orb-2 { width:500px; height:500px; background:radial-gradient(circle,#1a4080,transparent); bottom:-10%; right:-5%; animation-delay:-7s; }
.orb-3 { width:350px; height:350px; background:radial-gradient(circle,#e8d08b,transparent); top:40%; left:50%; animation-delay:-3.5s; }

@keyframes orbFloat {
  0%,100% { transform:translate(0,0) scale(1); }
  33%      { transform:translate(30px,-40px) scale(1.05); }
  66%      { transform:translate(-20px,25px) scale(.97); }
}

/* Grid overlay */
.hero-grid {
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(197,160,89,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,160,89,.04) 1px, transparent 1px);
  background-size:60px 60px;
  z-index:1;
}

.hero-content {
  position:relative;
  z-index:2;
  padding-top:var(--header-h);
  max-width:760px;
}

.hero-badge {
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  background:var(--gold-dim);
  border:1px solid var(--border-gold);
  border-radius:50px;
  padding:.45rem 1.1rem;
  font-size:.8rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--gold-light);
  margin-bottom:2rem;
  animation:badgePulse 3s ease-in-out infinite;
}
.hero-badge::before {
  content:'';
  width:6px; height:6px;
  border-radius:50%;
  background:var(--gold);
  animation:dotPulse 1.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(197,160,89,0); }
  50%      { box-shadow: 0 0 0 6px rgba(197,160,89,.1); }
}
@keyframes dotPulse {
  0%,100%{ opacity:1; } 50%{ opacity:.3; }
}

.hero-title {
  font-size:clamp(2.6rem,5.5vw,5rem);
  line-height:1.1;
  margin-bottom:1.5rem;
  letter-spacing:-.02em;
}
.hero-title em {
  font-style:italic;
  background:var(--gold-grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  background-size:200% 200%;
  animation:shimmer 4s linear infinite;
}
@keyframes shimmer {
  0%   { background-position:0% 50%; }
  50%  { background-position:100% 50%; }
  100% { background-position:0% 50%; }
}

.hero-sub {
  font-size:1.15rem;
  color:var(--text-secondary);
  line-height:1.75;
  margin-bottom:2.5rem;
  max-width:560px;
}

.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:4rem; }

.hero-stats {
  display:flex;
  gap:3rem;
  flex-wrap:wrap;
  padding-top:2.5rem;
  border-top:1px solid var(--border);
}
.stat-item {}
.stat-num {
  font-family:var(--font-heading);
  font-size:2.2rem;
  font-weight:700;
  background:var(--gold-grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  display:block;
  line-height:1;
  margin-bottom:.3rem;
}
.stat-label {
  font-size:.82rem;
  color:var(--text-muted);
  text-transform:uppercase;
  letter-spacing:.08em;
}

/* Scroll indicator */
.scroll-hint {
  position:absolute;
  bottom:2.5rem;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.5rem;
  color:var(--text-muted);
  font-size:.75rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  z-index:2;
}
.scroll-hint-bar {
  width:1px;
  height:40px;
  background:linear-gradient(to bottom,var(--gold),transparent);
  animation:scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform:scaleY(0); transform-origin:top; opacity:0; }
  40%  { transform:scaleY(1); opacity:1; }
  100% { transform:scaleY(0); transform-origin:bottom; opacity:0; }
}

/* ===================== SERVICES OVERVIEW ===================== */
.services-strip {
  padding:5rem 0;
  position:relative;
  overflow:hidden;
}
.services-strip::before {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, var(--bg-base) 0%, var(--bg-surface) 100%);
  z-index:0;
}

.services-strip .container { position:relative; z-index:1; }

.strip-title-row {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:2rem;
  margin-bottom:4rem;
  flex-wrap:wrap;
}

/* ===================== CARD ===================== */
.card {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:2.5rem;
  transition:.4s var(--ease-out);
  position:relative;
  overflow:hidden;
}
.card::before {
  content:'';
  position:absolute;
  top:0; left:0; width:100%; height:2px;
  background:var(--gold-grad);
  transform:scaleX(0);
  transform-origin:left;
  transition:.4s var(--ease-out);
}
.card:hover { transform:translateY(-8px); border-color:var(--border-gold); background:rgba(197,160,89,.05); }
.card:hover::before { transform:scaleX(1); }

.card-icon {
  width:52px; height:52px;
  border-radius:12px;
  background:var(--gold-dim);
  border:1px solid var(--border-gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  margin-bottom:1.5rem;
  transition:.3s;
}
.card:hover .card-icon { background:var(--gold-grad); }

.card h3 {
  font-size:1.2rem;
  margin-bottom:.75rem;
  color:var(--text-primary);
}
.card p { color:var(--text-secondary); font-size:.95rem; }

.card-link {
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  font-size:.88rem;
  font-weight:600;
  color:var(--gold);
  margin-top:1.5rem;
  transition:.25s;
}
.card-link:hover { gap:.8rem; }
.card-link::after { content:'→'; }

/* Cards grid */
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }

@media(max-width:900px){
  .grid-3 { grid-template-columns:1fr 1fr; }
  .grid-2 { grid-template-columns:1fr; }
}
@media(max-width:600px){
  .grid-3 { grid-template-columns:1fr; }
}

/* ===================== ABOUT STRIP ===================== */
.about-strip { background:var(--bg-surface); }

.about-2col {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6rem;
  align-items:center;
}
@media(max-width:900px){
  .about-2col { grid-template-columns:1fr; gap:3rem; }
}

.about-img-wrap {
  position:relative;
}
.about-img-wrap img {
  border-radius:var(--radius-lg);
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}
.about-img-tag {
  position:absolute;
  bottom:1.5rem; left:1.5rem;
  background:rgba(8,13,22,.85);
  backdrop-filter:blur(12px);
  border:1px solid var(--border-gold);
  border-radius:var(--radius);
  padding:1rem 1.5rem;
}
.about-img-tag strong {
  display:block;
  font-family:var(--font-heading);
  font-size:1.5rem;
  background:var(--gold-grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.about-img-tag span { font-size:.8rem; color:var(--text-muted); }

.about-text p { color:var(--text-secondary); margin-bottom:1.25rem; line-height:1.8; }

.check-list { display:flex; flex-direction:column; gap:.85rem; margin:2rem 0; }
.check-list li {
  display:flex; align-items:flex-start; gap:.75rem;
  color:var(--text-secondary); font-size:.95rem;
}
.check-list li::before {
  content:'✓';
  flex-shrink:0;
  width:20px; height:20px;
  border-radius:50%;
  background:var(--gold-dim);
  border:1px solid var(--border-gold);
  color:var(--gold);
  font-size:.7rem;
  font-weight:700;
  display:flex; align-items:center; justify-content:center;
  margin-top:.1rem;
}

/* ===================== WHY US ===================== */
.why-strip { background:var(--bg-base); }
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
@media(max-width:900px){ .why-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:600px){ .why-grid { grid-template-columns:1fr; } }

.why-card {
  padding:2rem;
  border-radius:var(--radius-lg);
  background:var(--bg-glass);
  border:1px solid var(--border);
  text-align:center;
  transition:.35s;
}
.why-card:hover { border-color:var(--border-gold); transform:translateY(-5px); }
.why-card .num {
  font-family:var(--font-heading);
  font-size:3rem;
  font-weight:700;
  background:var(--gold-grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  display:block;
  margin-bottom:.5rem;
}
.why-card p { color:var(--text-muted); font-size:.88rem; text-transform:uppercase; letter-spacing:.06em; }

/* ===================== GLASS QUOTE ===================== */
.quote-strip {
  background:linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-base) 100%);
  padding:5rem 0;
  position:relative;
  overflow:hidden;
}
.quote-strip::before {
  content:'"';
  position:absolute;
  top:-2rem; left:2rem;
  font-family:var(--font-heading);
  font-size:25rem;
  color:rgba(197,160,89,.04);
  line-height:1;
  pointer-events:none;
}
.quote-inner {
  max-width:780px;
  margin:0 auto;
  text-align:center;
}
.quote-inner blockquote {
  font-family:var(--font-heading);
  font-style:italic;
  font-size:clamp(1.4rem,2.5vw,2rem);
  color:var(--text-primary);
  line-height:1.6;
  margin-bottom:1.5rem;
}
.quote-inner cite { color:var(--gold); font-size:.9rem; font-style:normal; font-weight:500; }

/* ===================== NEWS ===================== */
.news-strip { background:var(--bg-surface); }

.news-card {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
  transition:.4s var(--ease-out);
}
.news-card:hover { border-color:var(--border-gold); transform:translateY(-6px); }

.news-thumb {
  width:100%;
  height:200px;
  background:linear-gradient(135deg,#1a2332,#0e1623);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:3rem;
  border-bottom:1px solid var(--border);
}

.news-body { padding:2rem; }
.news-date {
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:.75rem;
}
.news-body h3 { font-size:1.1rem; margin-bottom:.75rem; }
.news-body p { color:var(--text-secondary); font-size:.92rem; }

/* ===================== CTA ===================== */
.cta-strip {
  padding:7rem 0;
  background:linear-gradient(135deg,var(--bg-surface) 0%,var(--bg-base) 100%);
  position:relative;
  overflow:hidden;
}
.cta-strip::after {
  content:'';
  position:absolute;
  bottom:-200px; right:-200px;
  width:600px; height:600px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(197,160,89,.1),transparent 70%);
  pointer-events:none;
}
.cta-inner {
  text-align:center;
  position:relative; z-index:1;
}
.cta-inner h2 { font-size:clamp(2rem,3.5vw,3rem); margin-bottom:1.25rem; }
.cta-inner p { color:var(--text-secondary); font-size:1.1rem; margin-bottom:2.5rem; max-width:560px; margin-inline:auto; }
.cta-actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* ===================== PAGE HEADER (inner pages) ===================== */
.page-head {
  position:relative;
  padding:calc(var(--header-h) + 5rem) 0 5rem;
  overflow:hidden;
  background:var(--bg-surface);
}

.page-head-bg {
  position:absolute;
  inset:0;
  z-index:0;
}
.page-head-orb {
  position:absolute;
  border-radius:50%;
  filter:blur(80px);
  opacity:.2;
}
.page-head-orb-1 { width:500px; height:500px; background:radial-gradient(circle,#c5a059,transparent); top:-200px; right:-100px; }
.page-head-orb-2 { width:350px; height:350px; background:radial-gradient(circle,#1a4080,transparent); bottom:-100px; left:-50px; }

.page-head .page-head-deco {
  position:absolute;
  inset:0;
  background-image: linear-gradient(rgba(197,160,89,.03) 1px, transparent 1px), linear-gradient(90deg,rgba(197,160,89,.03) 1px,transparent 1px);
  background-size:50px 50px;
}

.page-head-content {
  position:relative; z-index:1;
}
.page-head h1 {
  font-size:clamp(2.5rem,5vw,4rem);
  margin-bottom:1rem;
}
.page-head p { color:var(--text-secondary); font-size:1.1rem; max-width:580px; }

/* ===================== SERVICES PAGE ===================== */
.service-block {
  padding:4rem 0;
  border-bottom:1px solid var(--border);
}
.service-block:last-child { border-bottom:none; }

.service-block-head {
  display:flex;
  align-items:center;
  gap:1rem;
  margin-bottom:2.5rem;
}
.service-block-icon {
  width:60px; height:60px;
  border-radius:14px;
  background:var(--gold-dim);
  border:1px solid var(--border-gold);
  display:flex; align-items:center; justify-content:center;
  font-size:1.8rem;
  flex-shrink:0;
}
.service-block-head h2 {
  font-size:1.8rem;
  margin:0;
}

.service-cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:1.25rem; }

.service-mini-card {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.75rem;
  transition:.3s;
}
.service-mini-card:hover { border-color:var(--border-gold); background:rgba(197,160,89,.04); }
.service-mini-card h4 {
  font-size:1rem;
  color:var(--gold-light);
  margin-bottom:.75rem;
  font-family:var(--font-heading);
}
.service-mini-card p { color:var(--text-secondary); font-size:.9rem; line-height:1.7; }

/* ===================== ABOUT PAGE ===================== */
.arbitration-box {
  background:linear-gradient(135deg,rgba(197,160,89,.08),rgba(197,160,89,.03));
  border:1px solid var(--border-gold);
  border-radius:var(--radius-lg);
  padding:3rem;
  position:relative;
  overflow:hidden;
}
.arbitration-box::before {
  content:'⚖';
  position:absolute;
  right:2rem; top:50%;
  transform:translateY(-50%);
  font-size:8rem;
  opacity:.05;
  pointer-events:none;
}
.arbitration-box h3 { color:var(--gold-light); font-size:1.5rem; margin-bottom:1rem; }
.arbitration-box p { color:var(--text-secondary); line-height:1.8; }

/* ===================== NEWS PAGE ===================== */
.news-full-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:2rem; }

/* ===================== INTERNSHIP PAGE ===================== */
.internship-hero-text {
  max-width:680px;
}

.offer-grid { display:grid; grid-template-columns:1fr 1fr; gap:2rem; }
@media(max-width:700px){ .offer-grid{ grid-template-columns:1fr; } }

.offer-card {
  background:var(--bg-glass);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:2.5rem;
}
.offer-card h3 { color:var(--gold); margin-bottom:1.5rem; font-size:1.3rem; }

/* ===================== CONTACT PAGE ===================== */
.contact-wrap {
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:4rem;
  align-items:start;
}
@media(max-width:900px){ .contact-wrap{ grid-template-columns:1fr; } }

.contact-info-box {
  background:var(--bg-glass);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:3rem;
}
.contact-info-box h3 { color:var(--gold); font-size:1.4rem; margin-bottom:2rem; }

.info-row {
  display:flex; align-items:flex-start; gap:1rem;
  margin-bottom:2rem;
}
.info-row-icon {
  width:44px; height:44px;
  border-radius:10px;
  background:var(--gold-dim);
  border:1px solid var(--border-gold);
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem;
  flex-shrink:0;
}
.info-row strong { display:block; color:var(--text-primary); margin-bottom:.25rem; font-size:.9rem; }
.info-row p { color:var(--text-secondary); font-size:.88rem; line-height:1.6; }

/* Contact form */
.contact-form-wrap { padding:0; }
.contact-form-wrap h2 { margin-bottom:2rem; }

.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; }
@media(max-width:600px){ .form-row{ grid-template-columns:1fr; } }

.form-group { display:flex; flex-direction:column; gap:.5rem; margin-bottom:1.25rem; }
.form-group label { font-size:.82rem; font-weight:600; color:var(--text-muted); text-transform:uppercase; letter-spacing:.06em; }

.form-control {
  width:100%;
  padding:.95rem 1.25rem;
  background:var(--bg-glass);
  border:1px solid var(--border);
  border-radius:var(--radius);
  color:var(--text-primary);
  font-family:var(--font-body);
  font-size:.95rem;
  transition:.3s;
  outline:none;
}
.form-control::placeholder { color:var(--text-muted); }
.form-control:focus {
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(197,160,89,.12);
  background:rgba(197,160,89,.04);
}
textarea.form-control { min-height:160px; resize:vertical; }

/* ===================== FOOTER ===================== */
.footer {
  background:var(--bg-surface);
  border-top:1px solid var(--border);
  padding:5rem 0 2rem;
}
.footer-top {
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:4rem;
  margin-bottom:4rem;
}
@media(max-width:900px){ .footer-top{ grid-template-columns:1fr 1fr; gap:2.5rem; } }
@media(max-width:600px){ .footer-top{ grid-template-columns:1fr; } }

.footer-brand p { color:var(--text-muted); font-size:.9rem; margin-top:1rem; max-width:280px; line-height:1.75; }

.footer-col h4 {
  font-size:.8rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--gold);
  margin-bottom:1.5rem;
}
.footer-col ul { display:flex; flex-direction:column; gap:.75rem; }
.footer-col a { color:var(--text-muted); font-size:.9rem; transition:.25s; }
.footer-col a:hover { color:var(--gold); }

.footer-bottom {
  border-top:1px solid var(--border);
  padding-top:2rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:1rem;
}
.footer-bottom p { color:var(--text-muted); font-size:.85rem; }

/* ===================== ANIMATIONS ===================== */
.reveal {
  opacity:0;
  transform:translateY(30px);
  transition:.8s var(--ease-out);
}
.reveal.visible { opacity:1; transform:translateY(0); }

.reveal-left {
  opacity:0;
  transform:translateX(-40px);
  transition:.9s var(--ease-out);
}
.reveal-left.visible { opacity:1; transform:translateX(0); }

.reveal-right {
  opacity:0;
  transform:translateX(40px);
  transition:.9s var(--ease-out);
}
.reveal-right.visible { opacity:1; transform:translateX(0); }

/* stagger children */
.stagger > * { opacity:0; transform:translateY(24px); transition:.6s var(--ease-out); }
.stagger.visible > *:nth-child(1){ opacity:1;transform:none;transition-delay:.1s; }
.stagger.visible > *:nth-child(2){ opacity:1;transform:none;transition-delay:.2s; }
.stagger.visible > *:nth-child(3){ opacity:1;transform:none;transition-delay:.3s; }
.stagger.visible > *:nth-child(4){ opacity:1;transform:none;transition-delay:.4s; }
.stagger.visible > *:nth-child(5){ opacity:1;transform:none;transition-delay:.5s; }
.stagger.visible > *:nth-child(6){ opacity:1;transform:none;transition-delay:.6s; }

/* ===================== MISC ===================== */
.divider {
  height:1px;
  background:linear-gradient(to right,transparent,var(--border-gold),transparent);
  margin:0;
}
