@charset "UTF-8";
@font-face {
  font-family: "Playfair Display";
  src: url("/fonts/playfair-display-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("/fonts/playfair-display-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("/fonts/playfair-display-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("/fonts/playfair-display-400i.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --font1: "Inter", "-apple-system", BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font2: "Playfair Display", Georgia, "Times New Roman", serif;
  --f1: 42px;
  --g1: 63px;
  --f2: 33px;
  --g2: 51px;
  --f3: 26px;
  --g3: 41px;
  --f4: 20px;
  --g4: 33px;
  --f5: 16px;
  --g5: 27px;
  --f6: 13px;
  --g6: 23px;
  --x1: 44px;
  --x2: 27px;
  --x3: 17px;
  --x4: 11px;
  --x5: 7px;
  --x6: 4px;
  --w-content: 720px;
  --w-total: 1140px;
  --gutter-full: 27px;
  --gutter-mobile: 17px;
  --bg1: #F8F5F0;
  --bg2: #FFFFFF;
  --c1: #1a2340;
  --c2: #b8976a;
  --ca: #B8976A;
  --border1: 1px solid #efe9e0;
  --border2: 1px solid #d4bc96;
  --border3: 2px solid #b8976a;
  --navy: #1a2340;
  --navy-light: #2a3558;
  --cream: #f8f5f0;
  --cream-dark: #efe9e0;
  --gold: #b8976a;
  --gold-light: #d4bc96;
  --text-secondary: #4a5068;
  --text-light: #6b7090;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  word-break: normal;
}

img, fieldset {
  border: 0;
}

abbr {
  text-decoration: none;
}

code {
  line-height: 1em;
}

pre {
  overflow: auto;
  word-wrap: normal;
  tab-size: 4;
}

sub, sup {
  line-height: 0.5em;
}

img {
  max-width: 100%;
  height: auto;
}

iframe, video, embed, object {
  display: block;
  max-width: 100%;
}

img, .left, .right, .center {
  display: block;
}

.center {
  float: none;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

button, input[type=submit] {
  cursor: pointer;
  overflow: visible;
}

::selection {
  background-color: var(--gold);
  color: #ffffff;
}

body {
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--c1);
  background-color: var(--bg1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  box-sizing: border-box;
  padding-left: var(--gutter-mobile);
  padding-right: var(--gutter-mobile);
}
@media all and (min-width: 754px) {
  .container {
    max-width: var(--w-content);
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (min-width: 774px) {
  .container {
    max-width: 100%;
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
    margin-left: 0;
    margin-right: 0;
  }
}
@media all and (min-width: 1194px) {
  .container {
    max-width: var(--w-total);
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== NAVIGATION ===== */
.site-nav {
  background: #ffffff;
  border-bottom: var(--border1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--w-total);
  margin: 0 auto;
  padding: var(--x4) var(--gutter-mobile);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (min-width: 774px) {
  .nav-inner {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}
@media all and (min-width: 1194px) {
  .nav-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.nav-logo {
  font-family: var(--font2);
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-logo span {
  color: var(--gold);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 102;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  position: absolute;
  transition: all 0.3s ease;
}
.nav-toggle-label span {
  top: 9px;
}
.nav-toggle-label span::before {
  content: "";
  top: -7px;
}
.nav-toggle-label span::after {
  content: "";
  top: 7px;
}

.nav-toggle:checked ~ .nav-toggle-label span {
  background: transparent;
}

.nav-toggle:checked ~ .nav-toggle-label span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle:checked ~ .nav-toggle-label span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-links {
  display: flex;
  gap: var(--x2);
  list-style: none;
  align-items: center;
  margin-bottom: 0;
}
.nav-links a {
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  background: var(--navy) !important;
  color: #ffffff !important;
  padding: var(--x6) var(--x4) !important;
  border-radius: 4px;
  font-weight: 500 !important;
  transition: background 0.2s ease !important;
}
.nav-cta:hover {
  background: var(--navy-light) !important;
  color: #ffffff !important;
}

/* ===== BUTTONS ===== */
button, input[type=submit], .button {
  display: inline-block;
  background: var(--navy);
  color: #ffffff;
  padding: var(--x5) var(--x2);
  border-radius: 4px;
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 500;
  text-decoration: none;
  border: none;
  transition: background 0.2s ease, color 0.2s ease;
}
button:hover, input[type=submit]:hover, .button:hover {
  background: var(--navy-light);
  color: #ffffff;
}

.button.save {
  background: var(--navy);
  color: #ffffff;
  padding: var(--x5) var(--x2);
}
.button.save:hover {
  background: var(--navy-light);
  color: #ffffff;
}

.button.action {
  background: transparent;
  color: var(--navy);
  padding: var(--x5) var(--x4);
  border-bottom: var(--border3);
  border-radius: 0;
}
.button.action:hover {
  background: transparent;
  color: var(--gold);
}

.button.update {
  background: var(--gold);
  color: var(--navy);
}
.button.update:hover {
  background: var(--gold-light);
  color: var(--navy);
}

.button.delete {
  background: #c0392b;
  color: #ffffff;
}
.button.delete:hover {
  background: #a93226;
  color: #ffffff;
}

.read-more {
  display: inline-block;
  color: var(--navy);
  text-decoration: none;
  border-bottom: var(--border3);
  padding-bottom: 2px;
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 500;
  transition: color 0.2s ease;
}
.read-more:hover {
  color: var(--gold);
}

/* ===== HERO ===== */
.hero-section {
  background: #ffffff;
  padding: 5rem var(--gutter-mobile) 6rem;
}
@media all and (min-width: 774px) {
  .hero-section {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.hero-inner {
  max-width: var(--w-total);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}
@media all and (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.hero-content {
  max-width: 620px;
}

.hero-eyebrow {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--x4);
}

.hero-section h1 {
  font-family: var(--font2);
  font-size: 2.85rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--x3);
  letter-spacing: -0.02em;
}
@media all and (max-width: 900px) {
  .hero-section h1 {
    font-size: 2.25rem;
  }
}
@media all and (max-width: 600px) {
  .hero-section h1 {
    font-size: 1.85rem;
  }
}

.hero-sub {
  font-size: var(--f4);
  line-height: var(--g4);
  color: var(--text-secondary);
  margin-bottom: var(--x2);
  max-width: 540px;
}
@media all and (max-width: 600px) {
  .hero-sub {
    font-size: var(--f5);
    line-height: var(--g5);
  }
}

.hero-buttons {
  display: flex;
  gap: var(--x5);
  align-items: center;
  flex-wrap: wrap;
}
@media all and (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero-photo {
  position: relative;
}
@media all and (max-width: 900px) {
  .hero-photo {
    max-width: 320px;
    order: -1;
  }
}
.hero-photo::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  z-index: -1;
}

.photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream);
  border: var(--border1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--text-light);
}

/* ===== PROOF BAR ===== */
.proof-bar {
  background: var(--navy);
  padding: var(--x2) var(--gutter-mobile);
}
@media all and (min-width: 774px) {
  .proof-bar {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.proof-bar-inner {
  max-width: var(--w-total);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--x2);
  text-align: center;
}
@media all and (max-width: 600px) {
  .proof-bar-inner {
    grid-template-columns: 1fr;
    gap: var(--x3);
  }
}

.proof-item {
  color: #ffffff;
}

.proof-number {
  font-family: var(--font2);
  font-size: var(--f2);
  line-height: var(--g2);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: var(--x6);
}

.proof-label {
  font-size: var(--f6);
  line-height: var(--g6);
  color: rgba(255, 255, 255, 0.7);
}

/* ===== SECTION SHARED ===== */
.section-inner {
  max-width: var(--w-total);
  margin: 0 auto;
}

.section-eyebrow {
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--x5);
}

.section-heading {
  font-family: var(--font2);
  font-size: var(--f2);
  line-height: var(--g2);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--x4);
  letter-spacing: -0.01em;
}
@media all and (max-width: 600px) {
  .section-heading {
    font-size: var(--f3);
    line-height: var(--g3);
  }
}

.section-intro {
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--text-secondary);
  max-width: var(--w-content);
  margin-bottom: var(--x1);
}

/* ===== RECOGNITION ===== */
.recognition-section {
  background: #ffffff;
  padding: var(--x1) var(--gutter-mobile);
}
@media all and (min-width: 774px) {
  .recognition-section {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.recognition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--x4) var(--x1);
  margin-bottom: var(--x2);
}
@media all and (max-width: 900px) {
  .recognition-grid {
    grid-template-columns: 1fr;
  }
}

.recognition-item {
  display: flex;
  gap: var(--x5);
  align-items: flex-start;
}
.recognition-item::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.55rem;
}
.recognition-item p {
  color: var(--text-secondary);
  font-size: var(--f5);
  line-height: var(--g5);
}

.recognition-close {
  font-family: var(--font2);
  font-size: var(--f4);
  line-height: var(--g4);
  color: var(--navy);
  font-style: italic;
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--bg1);
  padding: var(--x1) var(--gutter-mobile);
}
@media all and (min-width: 774px) {
  .about-section {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--x1);
  align-items: start;
}
@media all and (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--x2);
  }
}

.about-photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--cream-dark);
  border: var(--border1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--text-light);
}
@media all and (max-width: 900px) {
  .about-photo {
    max-width: 220px;
  }
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: var(--x4);
  font-size: var(--f5);
  line-height: var(--g5);
}
.about-text p:last-child {
  margin-bottom: 0;
}
.about-text strong {
  color: var(--navy);
}

.about-credentials {
  margin-top: var(--x3);
  padding-top: var(--x3);
  border-top: var(--border1);
  display: flex;
  gap: var(--x2);
  flex-wrap: wrap;
}

.credential {
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ===== SERVICES ===== */
.services-section {
  background: #ffffff;
  padding: var(--x1) var(--gutter-mobile);
}
@media all and (min-width: 774px) {
  .services-section {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--x2);
}
@media all and (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--cream);
  padding: var(--x2) var(--x3);
  border: var(--border1);
  display: flex;
  flex-direction: column;
}
.service-card.featured {
  border-color: var(--gold);
  position: relative;
}
.service-card.featured::before {
  content: "Flagship";
  position: absolute;
  top: -1px;
  left: var(--x2);
  background: var(--gold);
  color: #ffffff;
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--x6) var(--x4);
}

.service-name {
  font-family: var(--font2);
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--x6);
}

.service-price {
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--x4);
  letter-spacing: 0.02em;
}

.service-desc {
  font-size: var(--f6);
  line-height: var(--g5);
  color: var(--text-secondary);
  margin-bottom: var(--x3);
  flex-grow: 1;
}

.service-cta {
  display: inline-block;
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-bottom: var(--border3);
  padding-bottom: 2px;
  transition: color 0.2s ease;
  align-self: flex-start;
}
.service-cta:hover {
  color: var(--gold);
}

/* ===== HOW IT WORKS ===== */
.howitworks-section {
  background: var(--bg1);
  padding: var(--x1) var(--gutter-mobile);
}
@media all and (min-width: 774px) {
  .howitworks-section {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--x2);
}
@media all and (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--x2);
  }
}

.step {
  text-align: center;
}

.step-number {
  font-family: var(--font2);
  font-size: var(--f1);
  line-height: var(--g1);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: var(--x5);
}

.step-title {
  font-family: var(--font2);
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--x6);
}

.step-desc {
  font-size: var(--f6);
  line-height: var(--g5);
  color: var(--text-secondary);
}

/* ===== TERRAIN ===== */
.terrain-section {
  background: var(--navy);
  padding: var(--x1) var(--gutter-mobile);
  text-align: center;
}
@media all and (min-width: 774px) {
  .terrain-section {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.terrain-inner {
  max-width: 760px;
  margin: 0 auto;
}

.terrain-eyebrow {
  color: var(--gold-light) !important;
}

.terrain-heading {
  color: #ffffff !important;
  font-size: var(--f2);
  line-height: var(--g2);
}

.terrain-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--f5);
  line-height: var(--g5);
  margin-bottom: var(--x4);
}
.terrain-section p:last-of-type {
  margin-bottom: 0;
}

.terrain-btn {
  margin-top: var(--x3);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: #ffffff;
  padding: var(--x1) var(--gutter-mobile);
}
@media all and (min-width: 774px) {
  .testimonials-section {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--x2);
}
@media all and (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--cream);
  padding: var(--x2);
  border-left: 3px solid var(--gold);
}

.testimonial-quote {
  font-family: var(--font2);
  font-size: var(--f5);
  line-height: var(--g4);
  font-style: italic;
  color: var(--navy);
  margin-bottom: var(--x4);
}

.testimonial-attribution {
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--text-light);
  font-weight: 500;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: var(--bg1);
  border-top: var(--border1);
  border-bottom: var(--border1);
  padding: var(--x1) var(--gutter-mobile);
  text-align: center;
}
@media all and (min-width: 774px) {
  .newsletter-section {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.newsletter-inner {
  max-width: var(--w-content);
  margin: 0 auto;
}

.newsletter-heading {
  font-size: var(--f3);
  line-height: var(--g3);
}

.newsletter-section p {
  color: var(--text-secondary);
  font-size: var(--f6);
  line-height: var(--g5);
  margin-bottom: var(--x2);
}

/* ===== BOOK ===== */
.book-section {
  background: #ffffff;
  padding: var(--x1) var(--gutter-mobile);
  text-align: center;
}
@media all and (min-width: 774px) {
  .book-section {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.book-inner {
  max-width: 680px;
  margin: 0 auto;
}

.book-section p {
  color: var(--text-secondary);
  font-size: var(--f5);
  line-height: var(--g5);
  margin-bottom: var(--x2);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  padding: var(--x2) var(--gutter-mobile);
}
@media all and (min-width: 774px) {
  .site-footer {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.footer-inner {
  max-width: var(--w-total);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--x5);
}

.footer-brand {
  font-family: var(--font2);
  font-size: var(--f4);
  line-height: var(--g4);
  color: #ffffff;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: var(--x3);
  list-style: none;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.footer-links a {
  font-size: var(--f6);
  line-height: var(--g6);
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.footer-links a:hover {
  color: #ffffff;
}

.footer-copy {
  width: 100%;
  text-align: center;
  margin-top: var(--x3);
  padding-top: var(--x3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--f6);
  line-height: var(--g6);
  color: rgba(255, 255, 255, 0.35);
}

/* ===== CONTENT TEMPLATES ===== */
.content-section {
  background: #ffffff;
  padding: var(--x1) var(--gutter-mobile);
}
@media all and (min-width: 774px) {
  .content-section {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.content-container {
  max-width: var(--w-total);
  margin: 0 auto;
}

.error-section {
  text-align: center;
  padding-top: calc(var(--x1) * 2);
  padding-bottom: calc(var(--x1) * 2);
}

.error-content {
  max-width: var(--w-content);
  margin: 0 auto;
}
.error-content h1 {
  font-family: var(--font2);
  font-size: var(--f2);
  line-height: var(--g2);
  margin-bottom: var(--x4);
}
.error-content p {
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--text-secondary);
  margin-bottom: var(--x2);
}

/* ===== PAGE CONTENT ===== */
.page-content {
  max-width: var(--w-content);
}
.page-content p, .page-content ul, .page-content ol, .page-content blockquote, .page-content pre, .page-content img, .page-content .callout, .page-content .caption {
  margin-bottom: var(--x3);
}
.page-content p:last-child, .page-content ul:last-child, .page-content ol:last-child, .page-content blockquote:last-child, .page-content pre:last-child, .page-content img:last-child, .page-content .callout:last-child, .page-content .caption:last-child {
  margin-bottom: 0;
}
.page-content h2, .page-content h3, .page-content h4 {
  font-family: var(--font2);
  color: var(--navy);
  margin-bottom: var(--x4);
}
.page-content h2:last-child, .page-content h3:last-child, .page-content h4:last-child {
  margin-bottom: 0;
}
.page-content h2 {
  font-size: var(--f3);
  line-height: var(--g3);
}
.page-content h3 {
  font-size: var(--f4);
  line-height: var(--g4);
}
.page-content h4 {
  font-size: var(--f5);
  line-height: var(--g5);
}
.page-content a {
  color: var(--ca);
  text-decoration: underline;
}
.page-content blockquote {
  padding: var(--x4) var(--x3);
  background: var(--cream);
  border-left: 3px solid var(--gold);
  font-family: var(--font2);
  font-style: italic;
  color: var(--navy);
}
.page-content ul, .page-content ol {
  padding-left: var(--x3);
}
.page-content .callout {
  padding: var(--x4);
  background: var(--cream);
  border-left: 3px solid var(--gold);
  font-size: var(--f5);
  line-height: var(--g5);
}
.page-content .caption {
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--text-light);
  text-align: center;
}
.page-content .impact {
  font-family: var(--font2);
  font-size: var(--f3);
  line-height: var(--g3);
  color: var(--navy);
  font-style: italic;
}
.page-content .highlight {
  background: var(--gold-light);
  padding: 0 4px;
}

/* discovery-ai-decorations */
/* ── Form buttons — inherit site button style ── */
.ep-contact-form button[type=submit],
.ep-newsletter-form button[type=submit] {
  background: var(--bg-button, #2C2C2C);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius, 6px);
  font-size: var(--f6, 16px);
  line-height: var(--g6, 1.5);
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, filter 0.2s;
}

.ep-contact-form button[type=submit]:hover,
.ep-newsletter-form button[type=submit]:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* ── Photo-frame overrides — real images replace placeholders cleanly ── */
.about-photo-frame img,
.hero-photo-frame img,
.photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg, 12px);
  object-fit: cover;
}