@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --navy: #0B1F3A;
  --navy-light: #1A3A5C;
  --gold: #C8A84B;
  --gold-light: #E2C97E;
  --ice: #A8D4F5;
  --white: #FFFFFF;
  --off-white: #F4F7FA;
  --text-muted: #8BA8C4;
  --border: rgba(200,168,75,0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

/* 110 pattern background */
.pattern-bg {
  background-color: var(--navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='14'%3E%3Ctext x='0' y='11' font-family='monospace' font-size='11' fill='%23C8A84B' opacity='0.08' letter-spacing='-1'%3E110%3C/text%3E%3C/svg%3E");
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(11,31,58,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; text-decoration: none; }
.nav-logo span:first-child { color: var(--gold); font-weight: 400; }
.nav-logo span:last-child { color: var(--ice); font-weight: 700; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; letter-spacing: 0.05em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold); color: var(--navy); padding: 0.6rem 1.4rem;
  border-radius: 4px; text-decoration: none; font-size: 0.85rem;
  font-weight: 500; letter-spacing: 0.05em; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }

/* SECTIONS */
section { padding: 6rem 4rem; }
.container { max-width: 1100px; margin: 0 auto; }

.section-tag {
  font-size: 0.75rem; letter-spacing: 0.2em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 1rem;
}

h1 { font-family: 'Playfair Display', serif; font-size: 3.8rem; line-height: 1.15; font-weight: 700; }
h2 { font-family: 'Playfair Display', serif; font-size: 2.6rem; line-height: 1.2; font-weight: 700; }
h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 0.75rem; }

.gold { color: var(--gold); }
.ice { color: var(--ice); }
.muted { color: var(--text-muted); }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 5rem;
}

.hero-content { max-width: 700px; }
.hero h1 { margin-bottom: 1.5rem; }
.hero p { font-size: 1.15rem; color: var(--text-muted); max-width: 560px; margin-bottom: 2.5rem; }

.btn-primary {
  background: var(--gold); color: var(--navy); padding: 0.9rem 2rem;
  border-radius: 4px; text-decoration: none; font-weight: 500;
  font-size: 0.95rem; display: inline-block; transition: background 0.2s;
  margin-right: 1rem;
}
.btn-primary:hover { background: var(--gold-light); }

.btn-outline {
  border: 1px solid var(--ice); color: var(--ice); padding: 0.9rem 2rem;
  border-radius: 4px; text-decoration: none; font-weight: 500;
  font-size: 0.95rem; display: inline-block; transition: all 0.2s;
}
.btn-outline:hover { background: rgba(168,212,245,0.1); }

.hero-stats { display: flex; gap: 3rem; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); font-weight: 700; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* CARDS */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }

.card {
  background: var(--navy-light); border: 1px solid var(--border);
  border-radius: 8px; padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--gold); transform: translateY(-3px); }
.card-icon { font-size: 1.5rem; margin-bottom: 1rem; color: var(--gold); }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* DIVIDER */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.team-card { background: var(--navy-light); border: 1px solid var(--border); border-radius: 8px; padding: 2rem; }
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  color: var(--gold); margin-bottom: 1rem;
}
.team-role { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.team-card p { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.75rem; }

/* TABLE */
.comp-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.comp-table th { background: var(--navy-light); color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; padding: 1rem 1.5rem; text-align: left; }
.comp-table td { padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); color: var(--text-muted); font-size: 0.95rem; }
.comp-table tr:hover td { background: rgba(26,58,92,0.4); }
.tick { color: #5DD679; } .cross { color: #E24B4A; }

/* FORM */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.05em; }
input, textarea, select {
  background: var(--navy-light); border: 1px solid var(--border);
  border-radius: 4px; padding: 0.8rem 1rem; color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  transition: border-color 0.2s; outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 130px; }

/* PAGE HEADER */
.page-header {
  padding: 10rem 4rem 5rem;
  text-align: center;
}
.page-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 1rem auto 0; }

/* FOOTER */
footer {
  background: rgba(0,0,0,0.3); border-top: 1px solid var(--border);
  padding: 3rem 4rem; text-align: center;
}
footer .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 1rem; }
footer p { color: var(--text-muted); font-size: 0.85rem; }
footer .footer-links { display: flex; justify-content: center; gap: 2rem; list-style: none; margin: 1rem 0; }
footer .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
footer .footer-links a:hover { color: var(--gold); }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col-text h2 { margin-bottom: 1rem; }
.two-col-text p { color: var(--text-muted); margin-bottom: 1rem; }

/* LIST */
.feature-list { list-style: none; margin-top: 1.5rem; }
.feature-list li { padding: 0.6rem 0; color: var(--text-muted); font-size: 0.95rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.75rem; }
.feature-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* HIGHLIGHT BOX */
.highlight-box {
  background: var(--navy-light); border: 1px solid var(--gold);
  border-radius: 8px; padding: 2.5rem; margin-top: 2rem;
}
.highlight-box p { color: var(--text-muted); font-style: italic; font-size: 1.05rem; line-height: 1.8; }

/* JOB CARD */
.job-card { background: var(--navy-light); border: 1px solid var(--border); border-radius: 8px; padding: 2rem; margin-bottom: 1rem; display: flex; justify-content: space-between; align-items: center; transition: border-color 0.2s; }
.job-card:hover { border-color: var(--gold); }
.job-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 0.4rem; }
.job-meta { font-size: 0.85rem; color: var(--text-muted); }
.job-tag { background: rgba(200,168,75,0.15); color: var(--gold); padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.8rem; }

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  section { padding: 4rem 1.5rem; }
  .page-header { padding: 8rem 1.5rem 3rem; }
  h1 { font-size: 2.4rem; }
  .two-col { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .nav-links { display: none; }
}

/* IMAGES */
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,31,58,1) 45%, rgba(11,31,58,0.7) 70%, rgba(11,31,58,0.3) 100%);
  z-index: 1;
}
.hero { position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1600&q=80');
  background-size: cover; background-position: center right;
  z-index: 0; opacity: 0.5;
}
.hero .container { position: relative; z-index: 2; }

/* ICON ILLUSTRATIONS */
.icon-box {
  width: 56px; height: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; font-size: 1.6rem;
}
.icon-gold { background: rgba(200,168,75,0.15); }
.icon-ice  { background: rgba(168,212,245,0.12); }

/* SECTION IMAGE */
.section-image {
  width: 100%; border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden; position: relative;
}
.section-image img {
  width: 100%; height: 320px;
  object-fit: cover; display: block;
  opacity: 0.85;
}
.section-image-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(transparent, rgba(11,31,58,0.95));
  font-size: 0.8rem; color: var(--text-muted);
}

/* BANNER STRIP */
.img-banner {
  width: 100%; height: 260px;
  object-fit: cover; display: block;
  opacity: 0.6;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.img-banner-wrap { position: relative; overflow: hidden; }
.img-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,58,0.6) 0%, rgba(11,31,58,0.3) 50%, rgba(11,31,58,0.6) 100%);
  display: flex; align-items: center; justify-content: center;
}
.img-banner-text {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--white);
  text-align: center; letter-spacing: 0.02em;
}

/* SVG ILLUSTRATIONS */
.illus-wrap { display: flex; align-items: center; justify-content: center; padding: 2rem; }
