/* ============================================
   MERIDIAN GLASGOW — Black & Gold
   ============================================ */

:root {
  --black-900: #050505;
  --black-800: #0a0a0a;
  --black-700: #111111;
  --black-600: #1a1a1a;
  --black-500: #222222;
  --black-400: #2a2a2a;
  --line: rgba(15, 122, 61, 0.15);
  --line-strong: rgba(15, 122, 61, 0.35);

  --gold: #0f7a3d;
  --gold-bright: #2bb367;
  --gold-deep: #05401d;
  --gold-glow: rgba(15, 122, 61, 0.25);

  --text: #ececec;
  --text-muted: #9b9b9b;
  --text-dim: #6e6e6e;

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);

  --container: 1280px;
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black-900);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Grain + vignette overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.6) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: overlay;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: all 0.4s var(--ease);
  background: transparent;
  backdrop-filter: blur(0px);
}

.nav.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.logo-mark {
  width: 36px;
  height: 36px;
  position: relative;
}

.logo-mark svg { width: 100%; height: 100%; }

.logo span.gold { color: var(--gold); font-weight: 500; }
.logo span.light { color: var(--text); font-weight: 300; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  z-index: -1;
}

.nav-cta:hover {
  color: var(--black-900);
}

.nav-cta:hover::before {
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
}

.nav-toggle span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: var(--gold);
  transition: all 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; }
.nav-toggle span:nth-child(3) { bottom: 0; }

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 70%;
  height: 100%;
  background: radial-gradient(circle at center, var(--gold-glow) 0%, transparent 60%);
  filter: blur(80px);
  animation: float 20s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 80%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(15, 122, 61, 0.12) 0%, transparent 60%);
  filter: blur(100px);
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(15, 122, 61, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 122, 61, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.2s forwards;
}

.eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.4s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.6s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.8s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--black-900);
  border: 1px solid var(--gold);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease);
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { box-shadow: 0 20px 40px -12px var(--gold-glow); transform: translateY(-2px); }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  max-width: 800px;
  margin-bottom: 5rem;
}

.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.section-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
}

.section.dark {
  background: var(--black-800);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ============================================
   STATS STRIP
   ============================================ */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 3rem 2rem;
  border-right: 1px solid var(--line);
  position: relative;
}

.stat:last-child { border-right: 0; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.service {
  padding: 3rem 2.5rem;
  background: linear-gradient(180deg, var(--black-700) 0%, var(--black-800) 100%);
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.5s var(--ease);
  overflow: hidden;
}

.service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s var(--ease);
}

.service:hover::before { transform: translateX(100%); }

.service:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.service-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--gold);
  transition: all 0.4s var(--ease);
}

.service:hover .service-icon {
  background: var(--gold);
  color: var(--black-900);
  border-color: var(--gold);
}

.service-number {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  display: block;
}

.service h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.service p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: gap 0.3s var(--ease);
}

.service-link:hover { gap: 1rem; }

/* ============================================
   SPLIT / IMAGE SECTIONS
   ============================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-visual {
  aspect-ratio: 4 / 5;
  position: relative;
  background: var(--black-700);
  border: 1px solid var(--line);
  overflow: hidden;
}

.split-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, var(--gold-glow) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(15, 122, 61, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, var(--black-700), var(--black-800));
}

.split-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.split-content h2 { margin-bottom: 2rem; }

.features-list {
  list-style: none;
  margin-top: 2.5rem;
}

.features-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.features-list li:last-child { border-bottom: 0; }

.features-list .feat-num {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.1rem;
  min-width: 40px;
}

.features-list strong {
  display: block;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.features-list span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============================================
   TESTIMONIAL
   ============================================ */

.testimonial {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
}

.testimonial-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 2rem;
  opacity: 0.4;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.4;
  margin-bottom: 3rem;
  font-weight: 400;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-role {
  display: block;
  color: var(--text-dim);
  font-size: 0.8rem;
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
}

/* ============================================
   CTA BAND
   ============================================ */

.cta-band {
  padding: 6rem 0;
  background:
    linear-gradient(135deg, var(--black-800) 0%, var(--black-700) 100%);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 70%);
  opacity: 0.5;
}

.cta-band-inner { position: relative; z-index: 2; }

.cta-band h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.cta-band p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--black-900);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo { margin-bottom: 1.5rem; }

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.75rem; }

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s var(--ease);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.socials { display: flex; gap: 1rem; }

.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
}

.socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================
   PAGE HEADER (for sub-pages)
   ============================================ */

.page-header {
  padding: 12rem 0 6rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse at top, var(--gold-glow) 0%, transparent 60%);
  opacity: 0.5;
}

.page-header-inner { position: relative; z-index: 2; max-width: 900px; }

.page-header h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.page-header h1 em { font-style: italic; color: var(--gold); font-weight: 300; }

.page-header p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.breadcrumb a { color: var(--gold); }

.breadcrumb-sep { color: var(--line-strong); }

/* ============================================
   VALUES GRID (About page)
   ============================================ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value {
  padding: 3rem 2rem;
  background: var(--black-800);
  transition: background 0.4s var(--ease);
}

.value:hover { background: var(--black-700); }

.value-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1.5rem;
  display: block;
  line-height: 1;
}

.value h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.value p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   TEAM
   ============================================ */

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

.team-card {
  background: var(--black-800);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.team-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }

.team-photo {
  aspect-ratio: 1 / 1.2;
  background: linear-gradient(135deg, var(--black-600), var(--black-800));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, var(--gold-glow) 0%, transparent 50%);
}

.team-initial {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  position: relative;
  z-index: 2;
  font-weight: 400;
}

.team-info {
  padding: 1.75rem;
  border-top: 1px solid var(--line);
}

.team-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.team-info p {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   JOBS (Careers)
   ============================================ */

.job {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 2rem 2.5rem;
  background: var(--black-800);
  border: 1px solid var(--line);
  margin-bottom: 1rem;
  transition: all 0.3s var(--ease);
  gap: 2rem;
}

.job:hover {
  border-color: var(--line-strong);
  background: var(--black-700);
  transform: translateX(4px);
}

.job-meta {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.job-meta span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.job-meta span::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.job h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
  font-weight: 500;
}

.job-apply {
  padding: 0.85rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.job-apply:hover {
  background: var(--gold);
  color: var(--black-900);
}

/* ============================================
   FORM
   ============================================ */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-field { position: relative; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--black-800);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all 0.3s var(--ease);
}

.form-field textarea { min-height: 160px; resize: vertical; }

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 0;
  border-color: var(--gold);
  background: var(--black-700);
}

/* ============================================
   CONTACT INFO BLOCKS
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }

.contact-block {
  padding: 2rem;
  background: var(--black-800);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}

.contact-block:hover { border-color: var(--line-strong); }

.contact-block h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.contact-block p, .contact-block a {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.5;
}

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

.contact-block .muted {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: block;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--black-900);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform 0.4s var(--ease);
  }

  .nav-links.open { transform: translateY(0); }

  .nav-toggle { display: block; }

  .split { grid-template-columns: 1fr; gap: 3rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .form-grid { grid-template-columns: 1fr; }

  .section { padding: 5rem 0; }

  .container { padding: 0 1.25rem; }

  .page-header { padding: 9rem 0 4rem; }

  .job { grid-template-columns: 1fr; align-items: flex-start; }

  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s var(--ease);
}

.reveal.in { opacity: 1; transform: translateY(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.4s; }
