/* ===== VARIABLES ===== */
:root {
  --white:      #FFFFFF;
  --mist:       #F2F5F7;
  --shore:      #E4EAF0;
  --slate-light:#C9D6DE;
  --slate:      #7A9BAE;
  --deep-water: #2E4D5E;
  --midnight:   #1A2F3A;
  --ink:        #1C2B34;
  --gold:       #9FB8A8;
  --gold-warm:  #B8C9BE;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', system-ui, sans-serif;
  --max:    1100px;
  --narrow: 720px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--ink); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== TYPE ===== */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.25rem; margin-bottom: .6rem; color: var(--deep-water); }
h1 em, h2 em { font-style: italic; color: var(--slate); }
h2.light, h1.light { color: #fff; }
h2.light em { color: var(--gold-warm); }
p { font-size: 1.05rem; line-height: 1.95; color: var(--ink); margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 500; color: var(--deep-water); }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: .8rem;
  display: block;
}
.eyebrow.light { color: var(--gold-warm); }

.lead {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.4rem;
}

/* ===== LAYOUT ===== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.narrow { max-width: var(--narrow); }
.center { text-align: center; }
.section-pad { padding: 7rem 2rem; }

.bg-white { background: var(--white); }
.bg-mist  { background: var(--mist); }
.bg-deep  { background: var(--midnight); }

.rule {
  width: 56px; height: 2px;
  background: var(--slate-light);
  margin: 1.4rem auto 2.2rem;
}
.rule.left { margin-left: 0; }
.rule.light-rule { background: rgba(255,255,255,.3); }

/* ===== BUTTONS ===== */
.btn-ghost {
  display: inline-block;
  padding: .8rem 2rem;
  border: 1px solid rgba(255,255,255,.6);
  color: #fff;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 2rem;
  transition: background .3s, border-color .3s;
}
.btn-ghost:hover { background: rgba(255,255,255,.15); border-color: #fff; }

.btn-primary {
  display: inline-block;
  padding: 1rem 2.4rem;
  background: var(--slate);
  color: #fff;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: none;
  margin-top: 1.5rem;
  transition: background .3s;
}
.btn-primary:hover { background: var(--deep-water); }

.btn-light {
  display: inline-block;
  padding: .9rem 2.2rem;
  background: transparent;
  color: #fff;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.7);
  margin-top: 1.5rem;
  transition: background .3s;
}
.btn-light:hover { background: rgba(255,255,255,.15); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.5rem 2rem;
  transition: padding .4s, background .4s, box-shadow .4s;
}
#navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 24px rgba(0,0,0,.07);
  padding: 1rem 2rem;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: .02em;
  transition: color .3s;
}
#navbar.scrolled .nav-logo { color: var(--ink); }
.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .3s;
}
.nav-links a:hover { color: #fff; }
#navbar.scrolled .nav-links a { color: var(--slate); }
#navbar.scrolled .nav-links a:hover { color: var(--deep-water); }
.nav-cta {
  border: 1px solid rgba(255,255,255,.5);
  padding: .45rem 1.2rem;
  color: rgba(255,255,255,.9) !important;
  transition: border-color .3s, color .3s !important;
}
.nav-cta:hover { border-color: #fff; color: #fff !important; }
#navbar.scrolled .nav-cta { border-color: var(--slate-light); color: var(--deep-water) !important; }
#navbar.scrolled .nav-cta:hover { border-color: var(--slate); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { width: 24px; height: 1.5px; background: #fff; display: block; transition: background .3s; }
#navbar.scrolled .hamburger span { background: var(--ink); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--midnight);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform .4s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav li { margin: 1.5rem 0; }
.mobile-nav a { font-family: var(--serif); font-size: 2.4rem; color: #fff; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-img.loaded { transform: scale(1); }
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,47,58,.72) 0%,
    rgba(46,77,94,.55) 50%,
    rgba(26,47,58,.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 720px;
}
.hero-content .eyebrow { color: var(--gold-warm); }
.hero-content h1 { color: #fff; margin-bottom: 1.2rem; }
.hero-content h1 em { color: var(--gold-warm); }
.hero-tagline {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin: 0;
}

/* ===== WATER BANDS ===== */
.water-band {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.water-band-tall { height: 480px; }
.water-veil {
  position: absolute;
  inset: 0;
  background: rgba(26,47,58,.58);
}
.water-quote {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  color: #fff;
  text-align: center;
  line-height: 1.7;
  padding: 0 2rem;
  max-width: 700px;
}
.water-quote em { font-style: italic; color: var(--gold-warm); }

.water-cta-box {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ===== APPROACH CARDS ===== */
.section-head { margin-bottom: 3.5rem; }
.section-intro {
  max-width: 560px;
  margin: 0 auto;
  color: var(--slate);
  font-size: .98rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-bottom: 3px solid var(--shore);
  transition: border-color .3s, transform .3s;
  position: relative;
}
.card:hover { border-color: var(--slate); transform: translateY(-4px); }
.card-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--shore);
  line-height: 1;
  margin-bottom: .5rem;
  transition: color .3s;
}
.card:hover .card-num { color: var(--slate-light); }
.card p { font-size: .97rem; color: #4A5B65; }

/* ===== LISTENING ===== */
.listen-list {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  align-items: center;
}
.listen-list li {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--slate);
  padding: .5rem 1.5rem;
  border-left: 2px solid var(--shore);
  text-align: left;
  width: 100%;
  max-width: 480px;
}
.invite-text {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.9;
  color: var(--deep-water);
  margin-top: 2rem;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.about-photo-wrap {
  position: sticky;
  top: 8rem;
  text-align: center;
}
.about-photo {
  width: 100%;
  max-width: 420px;
  border-radius: 3px;
  box-shadow: 0 20px 50px rgba(26,47,58,.18);
  display: block;
  margin: 0 auto;
}
.portrait-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--slate);
  margin-top: 1rem;
  text-align: center;
}
.about-opening {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--deep-water);
  margin-bottom: 1.5rem;
}

/* ===== CREDENTIALS ===== */
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.cred-item {
  display: flex;
  gap: .8rem;
  align-items: baseline;
  background: var(--mist);
  padding: 1.1rem 1.2rem;
  border-radius: 2px;
  font-size: .94rem;
  line-height: 1.5;
}
.cred-mark {
  color: var(--slate);
  font-size: .5rem;
  flex-shrink: 0;
  position: relative;
  top: -2px;
}

/* ===== CONTACT ===== */
.light-text { color: rgba(255,255,255,.75); }
#contact p { color: rgba(255,255,255,.7); }

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  padding: 3rem 2rem;
  text-align: center;
}
.footer-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: rgba(255,255,255,.85);
  margin-bottom: .3rem;
}
.footer-sub {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1.5rem;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.3); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .water-portrait { position: static; aspect-ratio: 16/9; }
  .cred-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .section-pad { padding: 4.5rem 1.25rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .water-band { background-attachment: scroll; height: 260px; }
  .water-band-tall { height: 360px; }
}
