:root {
  --navy: #061A2F;
  --deep-navy: #03111F;
  --gold: #C8A24A;
  --light-gold: #E8D08A;
  --cream: #FBF7EF;
  --white: #FFFFFF;
  --text: #172033;
  --muted: #667085;
  --line: rgba(6, 26, 47, 0.10);
  --shadow: 0 22px 55px rgba(6, 26, 47, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(3, 17, 31, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 162, 74, 0.24);
}

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
}

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

/* Global */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 24px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.center {
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.04;
}

h1 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  letter-spacing: -0.055em;
}

h2 {
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  letter-spacing: -0.025em;
}

h2::after {
  content: '';
  display: block;
  width: 72px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--light-gold));
}

.about h2::after {
  margin-left: 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-copy,
.section-card p,
.careers-text,
.hero-text {
  font-size: 1.08rem;
}

/* Hero */
.hero {
  max-width: none;
  min-height: 86vh;
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(200, 162, 74, 0.24), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.10), transparent 28%),
    linear-gradient(135deg, rgba(3, 17, 31, 0.98), rgba(6, 26, 47, 0.95));
}

.hero-grid {
  width: 100%;
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 56px;
}

.hero-content {
  text-align: left;
}

.hero-text {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.hero-image-card {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(200, 162, 74, 0.42);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.hero-image-card::before {
  content: '';
  position: absolute;
  inset: -28px;
  z-index: -1;
  border-radius: 42px;
  background: rgba(200, 162, 74, 0.12);
  filter: blur(28px);
}

.hero-image-card img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
}

.button-row {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.btn,
.career-btn,
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn.primary,
.career-btn {
  background: linear-gradient(135deg, var(--light-gold), var(--gold));
  color: var(--deep-navy);
  box-shadow: 0 14px 28px rgba(200, 162, 74, 0.22);
}

.btn.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.btn:hover,
.career-btn:hover,
.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.20);
}

/* About */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.section-copy p {
  margin-bottom: 18px;
  color: #344054;
}

/* Cards */
.cards,
.career-boxes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.card,
.career-card,
.section-card {
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.card,
.section-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
}

.card,
.career-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover,
.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 60px rgba(6, 26, 47, 0.16);
}

.card h3,
.career-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.25rem;
}

.card p,
.career-card p {
  margin-bottom: 0;
  color: var(--muted);
}

/* Callout */
.callout {
  max-width: 1120px;
  margin-top: 18px;
  margin-bottom: 18px;
  text-align: center;
  color: var(--white);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(200, 162, 74, 0.24), transparent 38%),
    linear-gradient(135deg, var(--navy), var(--deep-navy));
  box-shadow: var(--shadow);
}

.callout h2,
.careers h2 {
  color: var(--white);
}

.callout p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

/* Careers */
.careers {
  max-width: none;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 12%, rgba(200, 162, 74, 0.22), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--deep-navy));
}

.careers h2::after,
.callout h2::after {
  background: linear-gradient(90deg, var(--gold), var(--white), var(--gold));
}

.careers-text {
  max-width: 800px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.84);
}

.career-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(200, 162, 74, 0.30);
}

.career-card h3 {
  color: var(--light-gold);
}

.career-card p {
  color: rgba(255, 255, 255, 0.80);
}

.career-btn {
  margin-top: 34px;
}

/* SEO / Contact / Social */
.seo-section,
.contact-section {
  padding-bottom: 42px;
}

.section-card {
  max-width: 920px;
  margin: 0 auto;
}

.section-card p {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--muted);
}

.contact-card .btn {
  margin-top: 26px;
}

.contact-info {
  margin-top: 26px;
}

.contact-info p {
  margin: 8px 0;
}

.contact-info a {
  color: var(--navy);
  font-weight: 800;
}

.socials {
  max-width: 1120px;
  margin-bottom: 0;
  background: var(--white);
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -10px 45px rgba(6, 26, 47, 0.07);
}

.social-links {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.social-btn {
  min-width: 160px;
  color: var(--light-gold);
  background: var(--navy);
}

.social-btn i {
  font-size: 1.18rem;
}

/* Footer */
.footer {
  padding: 34px 24px;
  color: var(--white);
  text-align: center;
  background: var(--deep-navy);
}

.footer p {
  margin-bottom: 0;
}

.fine-print {
  max-width: 780px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 920px) {
  .hero-grid,
  .about,
  .cards,
  .career-boxes {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .button-row {
    justify-content: center;
  }

  .hero-image-card {
    max-width: 430px;
    margin: 0 auto;
  }

  .hero-image-card img {
    height: 500px;
  }

  .about h2::after {
    margin-left: auto;
  }

  .about {
    text-align: center;
  }
}

@media (max-width: 760px) {
  .navbar {
    flex-direction: column;
    padding: 16px 20px;
    gap: 12px;
  }

  .nav-links {
    justify-content: center;
    gap: 14px;
  }

  .section {
    padding: 66px 20px;
  }

  .hero-image-card img {
    height: 430px;
  }

  .card,
  .career-card,
  .section-card {
    padding: 26px;
  }

  .callout,
  .socials {
    border-radius: 0;
  }
}

@media (max-width: 460px) {
  .nav-logo span {
    font-size: 0.92rem;
  }

  .btn,
  .career-btn,
  .social-btn {
    width: 100%;
  }

  .hero-image-card img {
    height: 360px;
  }
}
