@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ========================
   VARIABLES
======================== */
:root {
  --white:  #ffffff;
  --off:    #f7f7f5;
  --black:  #111111;
  --gray:   #555555;
  --muted:  #999999;
  --border: #e2e2e2;
  --gold:   #c9a05a;
  --max:    900px;
  --max-wide: 1140px;
}

/* ========================
   RESET
======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ========================
   TYPOGRAPHY
======================== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--black);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; line-height: 1.15; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 400; line-height: 1.2; }
h4 { font-size: 1.15rem; font-weight: 500; }

p { color: var(--gray); line-height: 1.85; font-size: 1rem; }
strong { color: var(--black); font-weight: 500; }

.lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 300;
  color: var(--gray);
  line-height: 1.75;
}

/* Section eyebrow label */
.label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.pill-label { /* backward compat */
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  background: none; padding: 0; border-radius: 0;
}

/* ========================
   LAYOUT
======================== */
.container      { max-width: var(--max);      margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: var(--max-wide); margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }

/* Utilities */
.mt-8  { margin-top:  8px; }  .mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }  .mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }  .mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }  .mt-48 { margin-top: 48px; }
.mt-60 { margin-top: 60px; }  .mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* ========================
   SECTION BACKGROUNDS
======================== */
.bg-white { background: var(--white); }
.bg-off   { background: var(--off);   }
.bg-dark  { background: var(--black); }
/* legacy aliases */
.bg-creme { background: var(--white); }
.bg-sand  { background: var(--off);   }
.bg-rose  { background: var(--off);   }

/* ========================
   SECTION SPACING
======================== */
section { padding: 96px 32px; }

.section-header            { margin-bottom: 56px; }
.section-header h2         { margin-top: 10px; }
.section-header p          { margin-top: 16px; }
.section-header.centered   { text-align: center; }
.section-header.centered p { margin: 16px auto 0; max-width: 560px; }

/* thin horizontal rule used as section divider */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* no decorative lines in new design */
.gold-line, .gold-line-left { display: none; }

/* ========================
   NAVIGATION
======================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links > li > a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li.active > a { color: var(--black); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  padding: 8px 0;
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-dropdown-menu a:hover { color: var(--black); }

.nav-cta {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 9px 20px;
  transition: background 0.2s;
}
.nav-cta:hover { background: #333; }

.nav-lang {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 5px 12px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-lang:hover { color: var(--black); border-color: var(--black); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--black);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 32px 28px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--black); }
.nav-mobile-section {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding: 16px 0 4px;
  font-weight: 500;
}

/* ========================
   BUTTONS
======================== */
.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  border-radius: 0;
}
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: #2a2a2a; }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--off); }
.btn-outline { background: transparent; border: 1px solid var(--black); color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-white { background: transparent; border: 1px solid rgba(255,255,255,0.5); color: var(--white); }
.btn-outline-white:hover { border-color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #b38a48; }
.btn-text { background: none; color: var(--black); padding: 14px 0; border-bottom: 1px solid var(--black); }
.btn-text:hover { opacity: 0.55; }
.btn-lg { padding: 17px 40px; font-size: 0.75rem; }

/* legacy */
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: #2a2a2a; }
.btn-rose { background: transparent; border: 1px solid var(--black); color: var(--black); }
.btn-rose:hover { background: var(--black); color: var(--white); }

/* ========================
   IMAGE FRAMES / PLACEHOLDERS
======================== */
.img-frame, .hero-blob, .intro-image-blob, .bio-image {
  overflow: hidden;
  background: var(--off);
}
.img-frame img, .hero-blob img, .intro-image-blob img, .bio-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}

.img-placeholder {
  width: 100%; min-height: 300px;
  background: var(--off);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.img-placeholder svg { opacity: 0.2; }

/* ========================
   HERO : Peter Crone style:
   centered text, large photo below
======================== */
.hero {
  padding: 80px 32px 0;
  background: var(--white);
  text-align: center;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.hero-inner h1 { margin-top: 12px; margin-bottom: 24px; }
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-photo {
  max-width: var(--max-wide);
  margin: 0 auto;
}
.hero-photo .img-placeholder { min-height: 520px; }
.hero-photo img { width: 100%; height: 600px; object-fit: cover; object-position: top center; display: block; }

/* ========================
   PAGE HERO (inner pages)
======================== */
.page-hero {
  padding: 96px 32px 80px;
  background: var(--white);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; }
.page-hero h1 { margin-top: 12px; margin-bottom: 20px; }
.page-hero p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
}

/* Program page hero */
.program-hero-banner {
  padding: 96px 32px 80px;
  background: var(--white);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.program-hero-banner::before,
.program-hero-banner::after { display: none; }
.program-hero-banner-inner { max-width: var(--max); margin: 0 auto; }
.program-hero-banner h1 { margin-top: 12px; margin-bottom: 24px; }

/* ========================
   TWO-COLUMN CONTENT SECTION
   (image one side, text other)
======================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.split-image { overflow: hidden; background: var(--off); }
.split-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.split-image .img-placeholder { min-height: 540px; }
.split-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content h2 { margin-top: 10px; margin-bottom: 20px; }
.split-content p  { margin-bottom: 16px; }
.split-content p:last-of-type { margin-bottom: 0; }

/* ========================
   INTRO GRID (2-col, smaller)
======================== */
.intro-grid {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}
.intro-image-blob { aspect-ratio: 3/4; }
.intro-content h2 { margin-top: 10px; margin-bottom: 20px; }
.intro-content p  { margin-bottom: 18px; }

/* Bio page */
.bio-grid {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}
.bio-image-wrap { position: sticky; top: 80px; }
.bio-image { aspect-ratio: 3/4; max-width: 380px; }
.bio-content h2 { margin-top: 10px; margin-bottom: 20px; }
.bio-content p   { margin-bottom: 18px; }

/* ========================
   TESTIMONIALS
======================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonial {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
}
.testimonial:last-child { border-right: none; }
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--black);
  line-height: 1.65;
  margin-bottom: 20px;
}
.testimonial-name {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ========================
   THREE COLUMNS
======================== */
.three-cols {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.col-card {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
}
.col-card:last-child { border-right: none; }
.col-card-icon { display: none; }
.col-card h3 { margin-bottom: 14px; }
.col-card p  { font-size: 0.97rem; }

/* ========================
   BENEFITS LIST
======================== */
.benefits-list { margin: 24px 0 32px; padding: 0; }
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
  color: var(--gray);
  line-height: 1.6;
}
.benefits-list li:first-child { border-top: 1px solid var(--border); }
.benefits-list li::before {
  content: '';
  flex-shrink: 0;
  width: 1px;
  height: 20px;
  background: var(--gold);
  margin-top: 2px;
}

/* ========================
   FAQ
======================== */
.faq-list {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  line-height: 1.4;
}
.faq-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--muted);
  transition: transform 0.3s;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  width: 20px;
  text-align: center;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 24px; color: var(--gray); font-size: 0.97rem; line-height: 1.85; }
.faq-item.open .faq-answer { max-height: 320px; }

/* ========================
   PROGRAM CARDS
======================== */
.program-cards {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.program-card {
  padding: 52px 44px;
  border-right: 1px solid var(--border);
  background: var(--white);
  transition: background 0.2s;
}
.program-card:last-child { border-right: none; }
.program-card::before { display: none; }
.program-card-tag {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 14px;
  background: none; padding: 0; border-radius: 0;
}
.program-card h3 { margin-bottom: 14px; }
.program-card p  { margin-bottom: 28px; font-size: 0.97rem; }
.program-card:hover { background: var(--off); }

/* ========================
   MODULE LIST
======================== */
.modules-list {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.module-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.module-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
  background: none; border-radius: 0;
  width: auto; height: auto; display: block; text-align: left;
}
.module-content h3 { margin-bottom: 10px; }
.module-content p  { font-size: 0.97rem; }
.module-bullets { margin-top: 12px; }
.module-bullets li {
  font-size: 0.93rem; color: var(--gray);
  padding: 5px 0 5px 16px; position: relative;
}
.module-bullets li::before {
  content: '/'; position: absolute; left: 0; color: var(--gold); font-weight: 500;
}

/* ========================
   NEWSLETTER SECTION
   (Peter Crone: "Start With a Free Gift")
======================== */
.newsletter-section {
  padding: 96px 32px;
  background: var(--white);
  text-align: center;
  border-top: 1px solid var(--border);
}
.newsletter-inner { max-width: 540px; margin: 0 auto; }
.newsletter-inner h2 { margin-top: 10px; margin-bottom: 16px; }
.newsletter-inner p  { margin-bottom: 36px; }
.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  outline: none;
  min-width: 0;
}
.newsletter-form input[type="email"]::placeholder { color: var(--muted); }
.newsletter-form button {
  padding: 14px 24px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.newsletter-form button:hover { background: #333; }
.newsletter-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* ========================
   TWO COLUMN TEXT
======================== */
.two-col-text {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col-text h3 { margin-bottom: 16px; }

/* ========================
   HIGHLIGHT QUOTE
======================== */
.highlight-quote {
  border-left: 2px solid var(--gold);
  padding: 14px 24px;
  margin: 24px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--black);
  line-height: 1.65;
}

/* ========================
   EDUCATION LIST
======================== */
.edu-list { border-top: 1px solid var(--border); }
.edu-item {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.edu-dot {
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  margin-top: 8px; flex-shrink: 0;
}
.edu-item h4 { margin-bottom: 4px; }
.edu-item p  { font-size: 0.9rem; }

/* ========================
   CHECKLIST
======================== */
.checklist { border-top: 1px solid var(--border); }
.checklist li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 0.97rem; color: var(--gray);
}
.checklist li::before {
  content: '';
  flex-shrink: 0; width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23c9a05a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  margin-top: 2px;
}

/* ========================
   PRICE BOX
======================== */
.price-box {
  max-width: 440px; margin: 0 auto;
  border: 1px solid var(--border);
  padding: 52px 44px; text-align: center;
}
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 300;
  color: var(--black); margin: 16px 0 10px; line-height: 1;
}
.price-note { font-size: 0.9rem; color: var(--muted); }
.price-disclaimer { font-size: 0.82rem; color: var(--muted); margin-top: 8px; }

/* ========================
   CONTACT
======================== */
.contact-grid {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 8px; font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 0;
  border: none; border-bottom: 1px solid var(--border);
  border-radius: 0; font-family: 'Jost', sans-serif;
  font-size: 1rem; color: var(--black);
  background: transparent;
  transition: border-color 0.2s;
  outline: none; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-bottom-color: var(--black); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-message {
  margin-top: 16px; padding: 14px 0; font-size: 0.88rem; display: none;
  border-top: 1px solid var(--border);
}
.form-message.success { color: #2e7d32; display: block; }
.form-message.error   { color: #c62828; display: block; }

.contact-sidebar h3 { margin-top: 10px; margin-bottom: 28px; }
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px; color: var(--gray); font-size: 0.95rem;
}
.contact-icon {
  flex-shrink: 0; font-size: 1rem; width: 20px;
  text-align: center; padding-top: 2px;
  background: none; border-radius: 0; height: auto; display: block;
}

/* ========================
   CTA BANNER (dark)
======================== */
.cta-banner {
  background: var(--black);
  padding: 96px 32px;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-top: 10px; margin-bottom: 18px; }
.cta-banner p  { color: #aaa; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ========================
   EN SERVICES GRID
======================== */
.en-services {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.en-service-card {
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.en-service-card:last-child { border-right: none; }
.en-service-card:hover { background: var(--off); }
.en-service-card h3 { margin-top: 10px; margin-bottom: 14px; }
.en-service-card p  { font-size: 0.97rem; margin-bottom: 24px; }

/* ========================
   FOOTER: Peter Crone: very minimal
======================== */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
  background: var(--white);
  color: var(--muted);
}
.footer-inner { max-width: var(--max-wide); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400;
  color: var(--black); margin-bottom: 12px;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 0.97rem;
  color: var(--gray); line-height: 1.65; margin-bottom: 12px;
  max-width: 280px;
}
.footer-desc { font-size: 0.82rem; color: var(--muted); }
.footer-col h4 {
  font-family: 'Jost', sans-serif; font-weight: 500;
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.footer-col a {
  display: block; color: var(--muted);
  margin-bottom: 10px; font-size: 0.88rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--black); }
.footer-col p { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }
.footer-divider { display: none; }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; font-size: 0.75rem; color: var(--muted);
}
.footer-bottom a { color: var(--muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--black); }

/* ========================
   FADE IN
======================== */
.fade-in {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-d1 { transition-delay: 0.1s; }
.fade-in-d2 { transition-delay: 0.2s; }
.fade-in-d3 { transition-delay: 0.3s; }
.fade-in-d4 { transition-delay: 0.4s; }

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 960px) {
  section { padding: 72px 24px; }
  .hero { padding: 64px 24px 0; }
  .page-hero, .program-hero-banner { padding: 72px 24px 60px; }
  .cta-banner, .newsletter-section { padding: 72px 24px; }
  footer { padding: 36px 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-mobile { padding: 8px 24px 24px; }
  .container { padding: 0 24px; }
  .container-wide { padding: 0 24px; }

  .split-section { grid-template-columns: 1fr; }
  .split-image { min-height: 360px; }
  .split-content { padding: 56px 40px; }
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-image-blob { max-width: 320px; }
  .bio-grid { grid-template-columns: 1fr; gap: 48px; }
  .bio-image-wrap { position: static; }
  .bio-image { max-width: 300px; }
  .two-col-text { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .testimonials { grid-template-columns: 1fr; }
  .testimonial { border-right: none; border-bottom: 1px solid var(--border); }
  .testimonial:last-child { border-bottom: none; }
  .en-services { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  section { padding: 56px 20px; }
  .hero { padding: 52px 20px 0; }
  .page-hero, .program-hero-banner { padding: 56px 20px 48px; }
  .cta-banner, .newsletter-section { padding: 56px 20px; }
  footer { padding: 28px 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-mobile { padding: 8px 20px 20px; }
  .container, .container-wide { padding: 0 20px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  h1 { letter-spacing: -0.005em; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .three-cols { grid-template-columns: 1fr; }
  .program-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .en-services { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .newsletter-form { flex-direction: column; border: none; gap: 8px; }
  .newsletter-form input[type="email"] { border: 1px solid var(--border); padding: 14px 20px; }
  .newsletter-form button { padding: 14px 24px; }
  .split-content { padding: 48px 24px; }
}
