/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 100px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow-text {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 820px;
  margin-bottom: 96px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.4s;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.8s;
}

.hero-trust {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}

.hero-trust span { color: var(--text-muted); }

/* ── NUMBERS ── */
.numbers {
  position: relative;
  padding: 0 60px;
  z-index: 1;
}

.numbers-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid transparent;
  background: transparent;
  transition: background 0.5s ease, border-color 0.5s ease;
}

.reveal.visible .numbers-inner {
  border-color: var(--border);
  background: var(--bg-2);
}

.number-item {
  padding: 52px 48px;
  border-right: 1px solid var(--border);
  opacity: 0;
}

.number-item:nth-child(3) { border-right: none; }

.reveal.visible .number-item {
  animation: fadeUp 0.8s ease forwards;
}

.reveal.visible .number-item:nth-child(1) { animation-delay: 0.2s; }
.reveal.visible .number-item:nth-child(2) { animation-delay: 0.35s; }
.reveal.visible .number-item:nth-child(3) { animation-delay: 0.5s; }

.number-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold-light);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.number-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── ABOUT ── */
.about {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-quote {
  padding-top: 16px;
}

.about-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 24px;
  display: block;
}

.about-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 32px;
}

.about-quote-source {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── PILLARS ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: transparent;
  margin-top: 64px;
}

.pillars-grid.reveal {
  transform: none;
  transition: background 0.4s ease;
}

.pillars-grid.reveal.visible {
  background: var(--border);
}

.pillar {
  background: var(--bg);
  padding: 52px 40px;
  transition: background 0.3s;
}

.pillar:hover { background: var(--bg-3); }

.pillar-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
}

.pillar-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.pillar-list li::before {
  content: '—';
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
}

/* ── PHILOSOPHY ── */
.philosophy {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.principle-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.principle {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
}

.principle:first-child { border-top: 1px solid var(--border); }

.principle-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--gold);
  padding-top: 2px;
}

.principle-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 6px;
}

.principle-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CONTACT ── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info {
  padding-top: 8px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:first-of-type { border-top: 1px solid var(--border); }

.contact-detail-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-detail-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--text);
}

.contact-detail-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-detail-value a:hover { color: var(--gold-light); }

/* ── RESPONSIVE — homepage sections ── */
@media (max-width: 900px) {
  .hero { padding: 110px 24px 72px; min-height: 85vh; }
  .hero-headline { font-size: clamp(44px, 12vw, 72px); margin-bottom: 48px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; gap: 16px; }
  .numbers { padding: 0 24px; }
  .numbers-inner { grid-template-columns: 1fr; }
  .number-item { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 20px; display: flex; align-items: baseline; gap: 16px; }
  .number-item:last-child { border-bottom: none; }
  .number-value { font-size: 48px; margin-bottom: 0; flex-shrink: 0; }
  .number-label { font-size: 10px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-quote { border-left: 1px solid var(--border); padding-left: 20px; }
  .about-quote-text { font-size: clamp(18px, 4.5vw, 24px); }
  .pillars-grid { grid-template-columns: 1fr; gap: 1px; }
  .pillar { padding: 32px 0; border-right: none; border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: none; }
  .pillar-number { font-size: clamp(24px, 4vw, 32px); margin-bottom: 16px; }
  .pillar-title { font-size: clamp(32px, 8vw, 40px); }
  .pillar-body { font-size: 15px; line-height: 1.8; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 52px; }
  .principle-num { font-size: 28px; }
  .principle-title { font-size: clamp(20px, 5vw, 24px); }
}

@media (max-width: 480px) {
  .hero { padding: 96px 20px 60px; }
  .numbers { padding: 0 20px; }
  .number-item { padding: 20px 16px; }
  .number-value { font-size: 40px; }
  .section-pad { padding: 60px 20px; }
}
