/* ─── Google Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Lato:wght@300;400;700&display=swap');

/* ─── Variables ────────────────────────────────────────────────── */
:root {
  --cream:      #FAFAFA;
  --warm-white: #F5F5F5;
  --sand:       #E8E4DC;
  --navy:       #2E6B9E;
  --navy-dark:  #1f5280;
  --navy-light: #4480b0;
  --sage:       #7A9E7E;
  --sage-dark:  #5E8062;
  --sage-light: #EBF1EB;
  --gold:       #C4A882;
  --text:       #1A1A2E;
  --text-light: #5A5A72;
  --border:     #E0DDD8;
  --radius:     4px;
  --shadow:     0 2px 20px rgba(27,58,88,.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  background: var(--cream);
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ─── Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; font-weight: 500; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.serif { font-family: 'Cormorant Garamond', serif; }
.italic { font-style: italic; }
.muted { color: var(--text-light); }

/* ─── Layout ───────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 5rem 0; }

.section--alt { background: var(--warm-white); }
.section--sage { background: var(--sage-light); }

/* ─── Navigation ───────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  letter-spacing: .01em;
  color: var(--navy);
}

.nav__logo span {
  display: block;
  font-size: .75rem;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: .1rem;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav__links a {
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
  transition: color .2s;
}

.nav__links a:hover,
.nav__links a.active { color: var(--sage-dark); }

.nav__links .nav__cta a {
  background: var(--sage);
  color: #fff;
  padding: .55rem 1.3rem;
  border-radius: var(--radius);
  letter-spacing: .08em;
  transition: background .2s;
}

.nav__links .nav__cta a:hover { background: var(--sage-dark); color: #fff; }

/* hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .3rem;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all .25s;
}

/* ─── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  border: none;
}

.btn--sage {
  background: var(--sage);
  color: #fff;
}
.btn--sage:hover { background: var(--sage-dark); }

.btn--outline {
  border: 1px solid var(--sage);
  color: var(--sage-dark);
  background: transparent;
}
.btn--outline:hover { background: var(--sage); color: #fff; }

.btn--gold {
  background: var(--gold);
  color: #fff;
}
.btn--gold:hover { background: #b09370; }

/* ─── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  padding: 7rem 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.hero__content h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.hero__eyebrow {
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.2rem;
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.8;
  text-shadow: 0 1px 6px rgba(0,0,0,.25);
}

.btn--white {
  background: #fff;
  color: var(--navy);
}
.btn--white:hover { background: var(--warm-white); color: var(--navy); }

.btn--outline-white {
  border: 1px solid rgba(255,255,255,.5);
  color: #fff;
  background: transparent;
}
.btn--outline-white:hover { background: rgba(255,255,255,.1); color: #fff; }

.btn--navy {
  background: var(--navy);
  color: #fff;
}
.btn--navy:hover { background: var(--navy-dark); }

/* ─── Page hero (inner pages) ──────────────────────────────────── */
.page-hero {
  background: var(--warm-white);
  padding: 4rem 0 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero__eyebrow {
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: .8rem;
}

/* ─── Divider ──────────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.divider--left { margin-left: 0; }

/* ─── Cards / Pillars ──────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}

.pillar:hover {
  box-shadow: 0 8px 32px rgba(27,58,88,.13);
  transform: translateY(-4px);
}

.pillar__img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.pillar__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.pillar:hover .pillar__img-wrap img {
  transform: scale(1.05);
}

.pillar__number {
  position: absolute;
  bottom: .8rem;
  left: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: rgba(0,0,0,.35);
  padding: .2rem .6rem;
  border-radius: 2px;
}

.pillar__body {
  padding: 1.8rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pillar h3 {
  font-size: 1.25rem;
  margin-bottom: .7rem;
  color: var(--text);
}

.pillar p {
  color: var(--text-light);
  font-size: .95rem;
  flex: 1;
}

.pillar__link {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 400;
  transition: color .2s;
}

.pillar__link:hover { color: var(--navy-dark); }

/* ─── Quote / Pullquote ────────────────────────────────────────── */
.pullquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  border-left: 3px solid var(--gold);
  padding: 1rem 0 1rem 2rem;
  margin: 2.5rem 0;
}

/* ─── Two-column layout ────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col--text-first { }

/* ─── Approach blocks ──────────────────────────────────────────── */
.approach-block {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.approach-block:last-child { border-bottom: none; margin-bottom: 0; }

.approach-block__tag {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: .6rem;
}

/* ─── Fees ─────────────────────────────────────────────────────── */
.fees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.fee-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.fee-card--featured {
  border-color: var(--sage);
  position: relative;
}

.fee-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: #fff;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 20px;
  white-space: nowrap;
}

.fee-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  margin-bottom: .3rem;
}

.fee-card__duration {
  font-size: .82rem;
  color: var(--text-light);
  letter-spacing: .06em;
  margin-bottom: 1.2rem;
}

.fee-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--sage-dark);
  line-height: 1;
  margin-bottom: .3rem;
}

.fee-card__price sup { font-size: 1.1rem; vertical-align: super; }
.fee-card__price.free { font-size: 1.6rem; color: var(--gold); }

.fee-card__note { font-size: .85rem; color: var(--text-light); margin-top: .8rem; }

/* ─── Contact form ─────────────────────────────────────────────── */
.form { max-width: 640px; margin: 0 auto; }

.form__row { margin-bottom: 1.4rem; }

.form label {
  display: block;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .4rem;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  color: var(--text);
  transition: border-color .2s;
  outline: none;
  appearance: none;
}

.form input:focus,
.form textarea:focus,
.form select:focus { border-color: var(--sage); }

.form textarea { resize: vertical; min-height: 140px; }

/* ─── About page ───────────────────────────────────────────────── */
.about-intro { padding: 5rem 0; }

.about-intro__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 4rem;
  align-items: start;
}

.about-intro__greeting {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: .4rem;
}

.about-intro__credentials {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.8rem;
}

.about-intro__photo img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  position: sticky;
  top: 100px;
}

.creds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.cred {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cred__dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--navy);
  margin-top: .5rem;
}

.cred h4 { margin-bottom: .3rem; }
.cred p { font-size: .9rem; color: var(--text-light); margin: 0; }

.creds-list { margin-top: 1.5rem; }

.creds-list__heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: .8rem;
}

.creds-list p {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: .5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--border);
}

@media (max-width: 768px) {
  .about-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-intro__photo { order: -1; }
  .creds-grid { grid-template-columns: 1fr; }
}

/* ─── Footer ───────────────────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.55);
  padding: 3rem 0;
  text-align: center;
  font-size: .85rem;
  letter-spacing: .04em;
}

.footer a { color: rgba(255,255,255,.7); transition: color .2s; }
.footer a:hover { color: #fff; }
.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: rgba(255,255,255,.85);
  margin-bottom: .5rem;
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 1rem 0;
}

/* ─── Utility ──────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.notice {
  background: var(--sage-light);
  border: 1px solid #c0d5c1;
  border-radius: var(--radius);
  padding: 1.4rem 1.8rem;
  margin-top: 2.5rem;
  font-size: .95rem;
}

/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .hero { min-height: 480px; padding: 4rem 0; }

  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    align-items: flex-start;
  }

  .nav__links.open { display: flex; }
  .nav__links .nav__cta { margin-top: .5rem; }
  .nav__toggle { display: flex; }
  .nav { position: relative; }
}
