/* ─────────────────────────────────
   HERO
───────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--offwhite);
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem var(--gutter) 6rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.18);
}
.hero-ring-1 {
  width: 700px; height: 700px;
  top: -250px; right: -250px;
  border-color: rgba(201, 168, 76, 0.22);
}
.hero-ring-2 {
  width: 500px; height: 500px;
  top: -100px; right: -100px;
  border-color: rgba(201, 168, 76, 0.12);
}
.hero-ring-3 {
  width: 300px; height: 300px;
  top: 50px; right: 50px;
  background: radial-gradient(circle at center, rgba(201, 168, 76, 0.08), transparent 70%);
  border: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
}
.hero h1 {
  margin-bottom: 0;
  max-width: 14ch;
  animation: fadeUp 1s 0.1s ease both;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero .gold-rule {
  animation: fadeUp 1s 0.3s ease both;
}
.hero-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
  max-width: 580px;
  color: var(--light);
  margin-bottom: 2.5rem;
  animation: fadeUp 1s 0.45s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.6s ease both;
}
.hero .eyebrow { animation: fadeUp 1s 0s ease both; }

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

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  animation: fadeUp 1s 1s ease both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─────────────────────────────────
   INTRO
───────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.intro p {
  margin-bottom: 1.2rem;
  color: var(--soft);
  font-size: 1.05rem;
}
.intro p strong { color: var(--ink); }
.values {
  background: var(--navy);
  color: var(--light);
  padding: 2.5rem;
  border-top: 3px solid var(--gold);
  position: relative;
}
.values-tag {
  font-size: 0.74rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 1.8rem;
}
.value { margin-bottom: 1.6rem; }
.value:last-child { margin-bottom: 0; }
.value h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--offwhite);
  margin-bottom: 0.4rem;
}
.value p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 860px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ─────────────────────────────────
   PILLARS
───────────────────────────────── */
.pillars-head {
  text-align: center;
  margin-bottom: 4rem;
}
.pillars-head .eyebrow {
  justify-content: center;
}
.pillars-head .eyebrow::before {
  content: '';
  width: 28px; height: 1px; background: var(--gold);
}
.pillars-head .lead-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--muted);
  margin-top: 1rem;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar {
  background: var(--navy-2);
  padding: 2.5rem 2rem;
  border-top: 2px solid var(--gold);
  transition: transform 0.4s ease, background 0.4s ease;
  display: flex;
  flex-direction: column;
}
.pillar:hover {
  transform: translateY(-6px);
  background: var(--navy-3);
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
  font-weight: 500;
}
.pillar h3 {
  color: var(--offwhite);
  margin-bottom: 0.4rem;
}
.pillar-sub {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  display: block;
  margin-bottom: 1.5rem;
}
.pillar p {
  color: var(--light);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}
.link-arrow {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}
.link-arrow:hover {
  border-bottom-color: var(--gold);
  opacity: 1;
}
@media (max-width: 860px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────
   WHY US
───────────────────────────────── */
.why-head { margin-bottom: 4rem; max-width: 800px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.why-item {
  border-left: 1px solid var(--border);
  padding-left: 1.5rem;
}
.why-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  font-style: italic;
  display: block;
  margin-bottom: 0.6rem;
}
.why-item h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.why-item p {
  font-size: 0.92rem;
  color: var(--soft);
  line-height: 1.65;
}
@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
}
@media (max-width: 540px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────
   CTA BAND
───────────────────────────────── */
.cta-band {
  background: var(--navy);
  color: var(--offwhite);
  padding: 5rem var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08), transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-band h2 { color: var(--offwhite); margin-bottom: 1rem; }
.cta-band p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--light);
  margin-bottom: 2rem;
}
