/* ===== Design tokens ===== */
:root {
  --sage: #6E7C55;
  --sage-dark: #4F5A3C;
  --cream: #F6F1E8;
  --cream-alt: #ECE2D0;
  --charcoal: #292722;
  --rust: #A8542F;
  --rust-dark: #833F22;
  --maroon: #8C3B3B;
  --text-dark: #2A2822;
  --text-muted: #5B5748;
  --text-light: #F8F5EE;
  --border-soft: rgba(168, 84, 47, 0.35);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;

  --radius-lg: 28px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
}
em { font-style: italic; color: var(--rust); }
p { margin: 0 0 1em; }
a { color: inherit; }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rust);
  margin-bottom: 0.9em;
}
.eyebrow.center, h2.center { text-align: center; }
h2.center { margin-left: auto; margin-right: auto; }

/* ===== Crisis bar ===== */
.crisis-bar {
  background: var(--charcoal);
  color: var(--text-light);
  text-align: center;
  font-size: 0.85rem;
  padding: 9px 16px;
}
.crisis-bar p { margin: 0; }
.crisis-bar a {
  color: var(--text-light);
  text-decoration: underline;
  font-weight: 600;
}

/* ===== Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-dark);
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}
.logo span {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
}

/* Logo with mark */
.logo-with-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-direction: row;
}
.logo-mark {
  flex-shrink: 0;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}
.logo-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.nav-links a:hover { color: var(--rust); }
.nav-cta {
  background: var(--rust);
  color: var(--text-light) !important;
  padding: 10px 20px;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--rust-dark); color: var(--text-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  display: block;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--rust);
  color: var(--text-light);
}
.btn-primary:hover { background: var(--rust-dark); }
.btn-ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-ghost:hover { background: rgba(0,0,0,0.05); }
.btn-block { width: 100%; text-align: center; font-family: var(--font-body); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--text-light);
  overflow: hidden;
  padding: clamp(60px, 8vw, 100px) 0 clamp(70px, 9vw, 110px);
}
.hero-blob {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.10), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(168,84,47,0.28), transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  color: var(--text-light);
}
.hero .eyebrow, .hero h1 em { color: #F2CEBE; }
.hero-sub {
  font-size: 1.08rem;
  max-width: 46ch;
  color: rgba(248,245,238,0.92);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.hero .btn-ghost { color: var(--text-light); }

.hero-mark {
  margin-bottom: 24px;
  display: flex;
  justify-content: flex-start;
}
.hero-mark img {
  display: block;
  opacity: 0.9;
}

.hero-media { display: flex; justify-content: center; }
.photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(248,245,238,0.4);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  max-width: 360px;
}
.photo-card img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ===== Hero CTA (combined intro + lead magnet) ===== */
.hero-cta {
  background: linear-gradient(135deg, var(--maroon) 0%, #6B2E2E 100%);
  color: var(--text-light);
  padding: clamp(40px, 6vw, 70px) clamp(20px, 5vw, 48px);
  position: relative;
  overflow: hidden;
}
.hero-cta .section-inner {
  padding: 0;
  max-width: none;
}
.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.08), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(168,84,47,0.15), transparent 50%);
  pointer-events: none;
}
.hero-cta-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.hero-cta-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  line-height: 1.4;
  margin-bottom: 40px;
  color: #F2CEBE;
  text-align: center;
}
.hero-cta-divider {
  width: 60px;
  height: 2px;
  background: rgba(242, 206, 190, 0.4);
  margin: 0 auto 40px;
}
.hero-cta-content {
  text-align: center;
}
.hero-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--text-light);
  margin-bottom: 16px;
}
.hero-cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #D69A73;
}
.hero-cta-subtitle strong {
  color: #F2CEBE;
  font-weight: 700;
}
.hero-cta-desc {
  font-size: 1rem;
  color: rgba(248,245,238,0.85);
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0 !important;
  line-height: 1.7;
}
.hero-cta .btn-primary {
  background: var(--rust);
  padding: 18px 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.hero-cta .btn-primary:hover {
  background: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.btn-large {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* ===== Modal ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal.active {
  display: flex;
  opacity: 1;
}
.modal-content {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.modal-close:hover {
  color: var(--rust);
}
.modal-content-form {
  max-width: 700px;
  height: 500px;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.modal-content-form .modal-close {
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.modal-inner {
  padding: 48px 40px;
}
.modal-inner h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.modal-subtext {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 16px !important;
}
.modal-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px !important;
  line-height: 1.6;
}
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lead-form label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.lead-form input {
  padding: 12px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: white;
  color: var(--text-dark);
  transition: border-color 0.2s ease;
}
.lead-form input:focus {
  outline: none;
  border-color: var(--rust);
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px !important;
  margin-bottom: 0 !important;
}

/* ===== About ===== */
.about { background: white; color: var(--text-dark); padding: clamp(60px, 8vw, 100px) 0; }
.about .eyebrow { color: var(--rust); }
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
.about-media { position: sticky; top: 100px; }
.photo-card-sm { max-width: 320px; margin-bottom: 28px; }
.credential-list {
  background: rgba(168,84,47,0.08);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  max-width: 320px;
}
.credential-list-title {
  font-weight: 600;
  color: var(--rust);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.credential-list ul { margin: 0; padding-left: 18px; }
.credential-list li { margin-bottom: 8px; font-size: 0.93rem; color: var(--text-muted); }

.about-copy h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); color: var(--text-dark); }
.about-copy p { color: var(--text-dark); }
.about-copy blockquote {
  border-left: 3px solid var(--rust);
  padding-left: 20px;
  margin: 28px 0;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--rust-dark);
}

/* ===== Help / cards ===== */
.help { background: var(--charcoal); color: var(--text-light); padding: clamp(60px, 8vw, 100px) 0; }
.help h2 { color: var(--text-light); font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin-bottom: 44px; }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  background: rgba(248,245,238,0.05);
  border: 1px solid rgba(248,245,238,0.18);
  border-radius: var(--radius-md);
  padding: 28px 26px;
}
.card h3 { color: #D69A73; font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: rgba(248,245,238,0.78); font-size: 0.95rem; margin: 0; }

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--rust);
  color: var(--rust);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-badge svg { width: 26px; height: 26px; }
.help .icon-badge { color: var(--maroon); border-color: var(--maroon); }

/* ===== Pricing ===== */
.pricing { background: var(--cream-alt); padding: clamp(60px, 8vw, 100px) 0; }
.pricing h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); }
.pricing-intro {
  max-width: 62ch;
  margin: 0 auto 44px;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  max-width: 920px;
  margin: 0 auto 60px;
}
.price-card {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  position: relative;
}
.price-card-featured {
  background: var(--charcoal);
  color: var(--text-light);
  border-color: var(--rust);
}
.price-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--rust);
  color: var(--text-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.price-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 6px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--rust);
  margin: 0 0 14px;
}
.price-card-featured .price-amount { color: #D69A73; }
.price-amount span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}
.price-card-featured .price-amount span { color: rgba(248,245,238,0.65); }
.price-desc { color: var(--text-muted); font-size: 0.95rem; margin: 0; }
.price-includes { list-style: none; padding: 0; margin: 0 0 16px; }
.price-includes li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(248,245,238,0.15);
  font-size: 0.95rem;
}
.price-includes li:last-child { border-bottom: none; }
.price-savings {
  font-size: 0.88rem;
  color: #D69A73;
  font-weight: 600;
  margin: 0;
}

.session-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.session-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  aspect-ratio: 4 / 3;
}
.session-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.session-type-name {
  text-align: center;
  font-weight: 600;
  margin: 14px 0 8px;
  color: var(--text-dark);
}
.session-type-desc {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ===== Approach ===== */
.approach { padding: clamp(60px, 8vw, 100px) 0; }
.approach-inner { text-align: center; max-width: 780px; }
.approach h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); }
.approach-copy { font-size: 1.08rem; color: var(--text-muted); margin-bottom: 40px; }

.approach-foundation {
  text-align: center;
  max-width: 1000px;
  margin: 48px auto 0;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.approach-diagram-container {
  margin: 0 auto;
  max-width: 100%;
}

.approach-diagram-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-md);
}
.approach-foundation h3 {
  font-size: 1.4rem;
  font-family: var(--font-display);
  color: var(--rust);
  margin-bottom: 16px;
}
.approach-foundation > p {
  font-size: 1.02rem;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.method-definitions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.method {
  background: var(--cream);
  border-left: 4px solid var(--rust);
  padding: 22px 20px;
  border-radius: 4px;
}
.method h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--rust);
  margin: 0 0 10px;
  font-weight: 600;
}
.method p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.approach-levels-intro {
  font-size: 1.08rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 32px !important;
  margin-bottom: 24px !important;
}

.approach-diagram {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.diagram-level {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  background: linear-gradient(135deg, rgba(110, 124, 85, 0.06), rgba(168, 84, 47, 0.06));
  border-radius: var(--radius-md);
  border-left: 4px solid var(--sage);
}
.level-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.level-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 0 0 8px;
  font-weight: 600;
}
.level-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.diagram-connector {
  height: 0;
  opacity: 0;
}

@media (max-width: 880px) {
  .approach-foundation {
    padding: 32px 24px;
  }
  .diagram-level {
    grid-template-columns: 1fr;
  }
  .level-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  text-align: left;
}
.stat {
  background: var(--cream-alt);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--rust);
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq { background: var(--sage); color: var(--text-light); padding: clamp(60px, 8vw, 100px) 0; }
.faq h2 { color: var(--text-light); margin-bottom: 40px; font-size: clamp(1.8rem, 3.2vw, 2.4rem); }
.faq .eyebrow { color: #EBD9C6; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: rgba(248,245,238,0.06);
  border: 1px solid rgba(248,245,238,0.22);
  border-radius: var(--radius-md);
  padding: 6px 24px;
}
.faq-item summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  margin-left: 16px;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding-bottom: 18px; color: rgba(248,245,238,0.85); margin: 0; }

/* ===== Contact ===== */
.contact { padding: clamp(60px, 8vw, 100px) 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 70px);
}
.contact-copy h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.contact-details { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 16px; }
.contact-details li { display: flex; align-items: center; gap: 14px; font-size: 0.98rem; }
.contact-details a { text-decoration: none; font-weight: 600; }
.contact-details a:hover { color: var(--rust); }
.icon-badge-sm { width: 40px; height: 40px; flex-shrink: 0; }
.icon-badge-sm svg { width: 20px; height: 20px; }

.contact-photo {
  margin-top: 32px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  max-width: 420px;
}
.contact-photo img { width: 100%; display: block; aspect-ratio: 3 / 2; object-fit: cover; }

.contact-form {
  background: var(--cream-alt);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
  display: flex;
  flex-direction: column;
}
.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  margin: 14px 0 6px;
}
.contact-form label:first-child { margin-top: 0; }
.contact-form label span { font-weight: 400; color: var(--text-muted); }
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: var(--cream);
  color: var(--text-dark);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--rust);
}
.contact-form .btn { margin-top: 22px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin: 10px 0 0; }

/* ===== Footer ===== */
.site-footer { background: var(--charcoal); color: var(--text-light); padding: 50px 0 30px; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(248,245,238,0.15);
  margin-bottom: 24px;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-logo-img {
  display: block;
  max-width: 280px;
  height: auto;
}
.footer-logo { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin: 0; }
.footer-tag { color: rgba(248,245,238,0.65); font-size: 0.85rem; margin: 4px 0 0; }
.footer-links { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.footer-links a { text-decoration: none; font-size: 0.9rem; color: rgba(248,245,238,0.85); }
.footer-links a:hover { color: #D69A73; }
.disclaimer { font-size: 0.8rem; color: rgba(248,245,238,0.55); max-width: 70ch; }
.copyright { font-size: 0.78rem; color: rgba(248,245,238,0.45); margin: 10px 0 0; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { position: static; display: flex; gap: 20px; flex-wrap: wrap; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .photo-card { max-width: 260px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px clamp(20px, 5vw, 48px) 26px;
    gap: 16px;
    border-bottom: 1px solid var(--border-soft);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-cta { align-self: flex-start; }
}
