:root {
  --bg-dark: #111915;
  --olive: #233627;
  --olive-soft: #334c39;
  --cream: #f2e7d3;
  --gold: #d5b073;
  --text-light: #f6f1e8;
  --text-muted: #d6cab4;
}

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

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #131b17 0%, #0d1410 100%);
  color: var(--text-light);
}

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(213, 176, 115, 0.2);
  border-radius: 0 0 28px 28px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.45);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(22, 33, 26, 0.25), rgba(6, 10, 8, 0.8));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(760px, 92%);
  padding: 3rem 1.4rem;
  border: 1px solid rgba(242, 231, 211, 0.3);
  background: rgba(20, 30, 24, 0.45);
  backdrop-filter: blur(2px);
  border-radius: 22px;
}

.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 10vw, 6.2rem);
  line-height: 0.95;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.7rem;
}

.tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 5vw, 2.8rem);
  letter-spacing: 0.03em;
  color: var(--text-light);
  margin-bottom: 1.1rem;
}

.intro {
  max-width: 56ch;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.7;
}

.accent-texts {
  width: min(900px, 92%);
  margin: 3rem auto 4rem;
  padding: 2rem;
  display: grid;
  gap: 1rem;
  text-align: center;
  border: 1px solid rgba(213, 176, 115, 0.2);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(51, 76, 57, 0.7), rgba(35, 54, 39, 0.7));
}

.accent-texts p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  color: var(--cream);
  line-height: 1.2;
}