:root {
  --main-color: #2E97A6;
  --main-color-dark: #2a8ca8;
  --main-color-light: rgba(46, 151, 166, 0.10);
  --accent-color: #F0A000;
  --accent-color-dark: #C88500;
  --accent-color-light: rgba(240, 160, 0, 0.10);
  --gold: #F9D478;
  --magenta: #E5175B;
  --dark: #14303E;
  --dark-deep: #0E2430;
  --bg: #F4F1EA;
  --bg-warm: #ECE7DB;
  --white: #FFFFFF;
  --text: #1A2332;
  --text-soft: #5F6B7A;
  --text-faint: #8E99A8;
  --border: rgba(20, 48, 62, 0.08);
  --border-strong: rgba(20, 48, 62, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --radius-pill: 999px;
  --max-w: 1540px;
  --edge: 24px;
  --gap: 20px;
  --shadow-sm: 0 1px 3px rgba(20, 48, 62, 0.06);
  --shadow-md: 0 8px 30px rgba(20, 48, 62, 0.08);
  --shadow-lg: 0 16px 48px rgba(20, 48, 62, 0.12);
  --header-h: 90px;
  --scroll-offset-gap: 20px;
  --scroll-offset-nudge: 0px;
}

.hero {
  position: relative;
  min-height: max(550px, 72vh);
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  background: linear-gradient(145deg, rgba(14, 36, 48, 0.94) 0%, rgba(20, 48, 62, 0.8) 30%, rgba(20, 48, 62, 0.48) 60%, rgba(20, 48, 62, 0.25) 100%), linear-gradient(180deg, rgba(14, 36, 48, 0.6) 0%, transparent 25%), var(--hero-bg, none) center/cover no-repeat;
  background-color: var(--dark);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 6px 16px;
  background: rgba(249, 212, 120, 0.12);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(249, 212, 120, 0.2);
}

.hero h1 {
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-subtitle {
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.87);
  font-weight: 400;
}

@media (max-width: 680px) {
  .hero {
    min-height: 550px;
    padding-bottom: 60px;
  }
}
