/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(13, 17, 23, 0.93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--steel-light);
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.nav-brand:hover { color: var(--gold-bright); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}

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

.nav-links .nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.42rem 1.1rem;
}

.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--space);
}

@media (max-width: 768px) {
  .site-nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.55rem; letter-spacing: 0.14em; }
  .nav-links .nav-cta { padding: 0.35rem 0.8rem; }
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --space:       #0d1117;
  --steel:       #161d2b;
  --steel-mid:   #1e2a3d;
  --steel-light: #2a3a52;
  --gold:        #b8a882;
  --gold-bright: #d4c49a;
  --star:        #7a9ec4;
  --text:        #e8e4dc;
  --text-dim:    #8a8fa0;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Lato', system-ui, sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 68px; }

body {
  background: var(--space);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); color: var(--text); letter-spacing: 0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--text); margin-bottom: 1.2rem; }
h3 { font-size: 1.2rem; color: var(--gold); margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; color: var(--text); opacity: 0.88; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }

.label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--star);
  margin-bottom: 0.8rem;
  display: block;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--star);
  margin-bottom: 1rem;
  opacity: 0.9;
}

/* ── LAYOUT ── */
.centered {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.55);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,17,23,0.85) 35%, rgba(13,17,23,0.1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 5rem 4rem 5rem;
  max-width: 560px;
  margin-right: auto;
  margin-left: 0;
}

.hero-content h1 {
  margin-bottom: 0.4rem;
  color: var(--text);
}

.tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 1;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.75rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}

.btn:hover {
  background: var(--gold);
  color: var(--space);
}

/* ── ABOUT ── */
.about {
  background: var(--steel);
}

.about .image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: brightness(0.88) saturate(0.9);
}

.about .text { padding: 1rem 0; }
.about .text p { color: var(--text); opacity: 0.85; }

/* ── CREDENTIALS ── */
.credentials {
  background: var(--steel);
}

.cred-summary {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 1;
  margin-bottom: 3rem;
}

.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  text-align: left;
}

.cred-col .label {
  border-bottom: 1px solid var(--steel-light);
  padding-bottom: 0.8rem;
  margin-bottom: 1.5rem;
}

.cred-item {
  margin-bottom: 2rem;
}

.cred-org {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text);
}

.cred-role {
  font-size: 0.88rem;
  color: var(--gold);
  margin-top: 0.2rem;
}

.cred-date {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

@media (max-width: 768px) {
  .cred-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── LESSONS ── */
.lessons {
  background: var(--space);
}

.lessons .intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 1;
  margin-bottom: 3rem;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.offer {
  border: 1px solid var(--steel-light);
  padding: 2rem;
  background: var(--steel);
  transition: border-color 0.3s;
}

.offer:hover {
  border-color: var(--gold);
}

.offer-glyph {
  font-size: 1.5rem;
  color: var(--star);
  margin-bottom: 0.8rem;
  opacity: 0.6;
}

.offer h3 { color: var(--gold); }
.offer p { color: var(--text); opacity: 0.8; font-size: 0.95rem; }

/* ── RATES ── */
.rates {
  background: var(--space);
}

.rates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.rate-card {
  border: 1px solid var(--steel-light);
  padding: 2.5rem 2rem;
  background: var(--steel);
  transition: border-color 0.3s;
}

.rate-card:hover {
  border-color: var(--gold);
}

.rate-type {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--star);
  margin-bottom: 1rem;
}

.rate-price {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.rate-detail {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .rates-grid { grid-template-columns: 1fr; }
}

/* ── BOOK ── */
.book {
  background: var(--steel);
}

.book p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
}

/* ── FOOTER ── */
footer {
  background: var(--space);
  border-top: 1px solid var(--steel-light);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 1;
  margin-bottom: 0.3rem;
}

.footer-sub {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
  opacity: 1;
}

.footer-contact {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  opacity: 1;
}

.footer-tiny {
  margin-top: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  opacity: 0.5;
  text-transform: uppercase;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content { padding: 3rem 2rem; max-width: 100%; }
  .hero-content h1 { font-size: 3rem; }
  .offer-grid { grid-template-columns: 1fr; }
  .about .image-wrap img { height: 320px; }
}
