/* ver4 — Better Headspace
   ver3a's parallax/inset-rectangle/slide-in architecture, but reskinned
   with ver3b's warm cream + sage + honey palette. Less pop, more polish. */

:root {
  --cream:        #F6F1E8;
  --sage-deep:    #7A8E6E;
  --sage-darker:  #5E7155;
  --honey:        #D9B27A;
  --honey-deep:   #B8915A;
  --slate-green:  #3A4A3F;
  --slate-soft:   #5C6E60;
  --line:         rgba(58, 74, 63, 0.12);

  --bar-gradient: linear-gradient(180deg, var(--slate-green) 0%, #2F3D34 100%);

  --shadow-sm:    0 1px 2px rgba(58, 74, 63, 0.06);
  --shadow-md:    0 6px 24px rgba(58, 74, 63, 0.10);
  --shadow-rect:  0 18px 48px rgba(58, 74, 63, 0.18), 0 6px 14px rgba(58, 74, 63, 0.10);

  --maxw-rect:    1200px;
  --maxw:         1100px;
  --rect-radius:  8px;

  /* Shaded fill used by .focus-item / .title-card / .text-card on photo panels */
  --card-bg:      rgba(20, 28, 22, 0.42);
  --card-border:  1px solid rgba(255, 255, 255, 0.18);
  --card-radius:  6px;
  --card-shadow:  0 4px 16px rgba(0, 0, 0, 0.10);

  --font-sans:    "Inter", "Helvetica Neue", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --font-display: "Cormorant Garamond", "Source Serif Pro", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-green);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: var(--sage-deep); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--honey-deep); }

/* ---------- Soft botanical page texture ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(80% 50% at 8% 10%, rgba(156, 174, 142, 0.10), transparent 60%),
    radial-gradient(70% 50% at 92% 90%, rgba(217, 178, 122, 0.10), transparent 60%);
}

/* ---------- Header (dark slate on cream page) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bar-gradient);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.6rem;
  border-bottom: 4px solid var(--honey);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--cream);
  text-decoration: none;
}
.brand img {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--honey);
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.005em;
  color: var(--cream);
}
.site-nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.site-nav a {
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding: 0.2rem 0;
}
.site-nav a:hover { color: var(--honey); }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--honey);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }

@media (max-width: 720px) {
  .site-header { flex-direction: column; gap: 0.5rem; padding: 0.6rem 1rem; }
  .site-nav { gap: 0.8rem; justify-content: center; }
  .site-nav a { font-size: 0.72rem; letter-spacing: 0.10em; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--sage-deep);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--sage-darker);
  color: var(--cream);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(246, 241, 232, 0.10);
  color: var(--cream);
  border-color: rgba(246, 241, 232, 0.6);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(246, 241, 232, 0.92);
  color: var(--slate-green);
  border-color: var(--cream);
}

/* ---------- Main ---------- */
main {
  padding-top: 1.5rem;
}

/* ---------- Eyebrow / typographic helpers ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--honey-deep);
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.eyebrow.centered { display: block; text-align: center; }
.eyebrow-light {
  color: var(--honey);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.centered { text-align: center; }

/* ---------- Panel = inset photographic rectangle ---------- */
.panel {
  position: relative;
  width: 84%;
  max-width: var(--maxw-rect);
  min-height: 560px;
  margin: 0 auto;
  border: 1px solid var(--honey);
  border-radius: var(--rect-radius);
  overflow: hidden;
  box-shadow:
    0 0 0 2px var(--sage-deep),
    0 18px 48px rgba(58, 74, 63, 0.18),
    0 6px 14px rgba(58, 74, 63, 0.10);
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel-tall { min-height: 720px; }
.panel-hero { min-height: 580px; }

.panel-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.panel-img {
  position: absolute;
  left: 0; right: 0;
  top: -320px;
  height: calc(100% + 640px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
/* Warm slate-green tint overlay for legibility on photos */
.panel-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(36, 49, 41, 0.18) 0%,
    rgba(36, 49, 41, 0.40) 60%,
    rgba(36, 49, 41, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.panel-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  padding: 3.4rem 2.6rem 3.6rem;
  color: #fff;
  text-align: center;
}
.panel-tall .panel-content { padding-top: 4rem; padding-bottom: 4rem; }

/* ---------- Shaded text/title cards (on photo panels) ---------- */
.text-card,
.title-card {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.title-card {
  display: inline-block;
  padding: 1.25rem 1.8rem 1.05rem;
  margin: 0 auto 1.4rem;
  text-align: center;
  max-width: 100%;
}
.title-card .eyebrow { margin-bottom: 0.5rem; }
.title-card .panel-title { margin: 0; }
.title-card .panel-rule { margin: 0.85rem auto 0; }

.text-card {
  padding: 1.5rem 1.7rem;
  margin: 0 auto;
}
.text-card + .text-card { margin-top: 1.4rem; }

/* When .panel-body itself is the card */
.panel-body.text-card { padding: 1.6rem 1.8rem; max-width: 720px; }

/* Lede card variant */
.lede-card {
  display: block;
  margin: 0 auto 1.5rem;
  max-width: 640px;
  text-align: center;
}

.panel-title {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.005em;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.18;
  margin: 0 0 1rem 0;
  color: #fff;
}
.panel-rule {
  width: 60px;
  height: 2px;
  margin: 0.5rem auto 1.6rem;
  background: var(--honey);
  border-radius: 1px;
}
.panel-body {
  font-size: 1rem;
  line-height: 1.72;
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.96);
}
.panel-body p { margin: 0 0 1em 0; }
.panel-body p:last-child { margin-bottom: 0; }
.panel-body .lede {
  font-size: 1.06rem;
  text-align: center;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.96);
}
.panel-body .emph { font-style: italic; }
.panel-body strong { font-weight: 600; }
.panel-body a,
.panel-body a:visited,
.text-card a,
.text-card a:visited {
  color: var(--honey);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.panel-body a:hover,
.text-card a:hover { color: #f0d9b3; }

@media (max-width: 880px) {
  .panel { width: 92%; min-height: 480px; }
  .panel-tall { min-height: 640px; }
  .panel-hero { min-height: 560px; }
  .panel-content { padding: 2.6rem 1.5rem 2.8rem; }
}
@media (max-width: 520px) {
  .panel { width: 96%; min-height: 440px; }
  .panel-content { padding: 2rem 1.1rem 2.2rem; }
  .panel-body { font-size: 0.95rem; }
}

/* ---------- Gutter (cream breathing room between panels) ---------- */
.gutter { height: 4rem; }
@media (max-width: 720px) { .gutter { height: 2.5rem; } }

/* ---------- HERO — two-column with embedded portrait ---------- */
.panel-content-hero {
  max-width: 1080px;
  padding: 2.6rem 2rem;
  text-align: left;
  text-shadow: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
}
.hero-portrait {
  margin: 0;
  justify-self: center;
  width: clamp(180px, 24vw, 260px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
  border: 4px solid var(--cream);
  box-shadow:
    0 0 0 2px var(--honey),
    0 18px 36px rgba(0, 0, 0, 0.30),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}
.hero-copy {
  color: #fff;
}
.hero-copy.text-card {
  padding: 1.8rem 1.9rem;
  margin: 0;
}
.hero-copy .eyebrow {
  color: var(--honey);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  margin-bottom: 0.9rem;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0 0 1.1rem 0;
  color: #fff;
}
.hero-lede {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 0.9rem 0;
  color: rgba(255, 255, 255, 0.96);
}
.hero-lede strong { font-weight: 600; }
.hero-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--honey);
  margin: 0 0 1.6rem 0;
  letter-spacing: 0.02em;
}
.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0;
}

@media (min-width: 760px) {
  .hero-grid {
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: 3rem;
  }
  .hero-portrait { justify-self: start; }
}
@media (max-width: 520px) {
  .panel-content-hero { padding: 2rem 1.2rem; }
  .hero-cta .btn { width: 100%; text-align: center; }
}

/* ---------- Frankl pull-quote (inside Approach panel) ---------- */
.frankl-pull {
  margin: 1.6rem auto 0;
  max-width: 640px;
  padding: 1.5rem 1.7rem 1.3rem;
  text-align: center;
}
.frankl-pull blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.5;
  margin: 0 0 0.7rem 0;
  color: #fff;
}
.frankl-pull figcaption {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--honey);
}

/* ---------- Areas of Focus grid ---------- */
.focus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 2rem;
  margin-top: 1.6rem;
  text-align: left;
}
.focus-item {
  padding: 1.25rem 1.3rem 1.1rem;
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.focus-item h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--honey);
  margin: 0 0 0.4em 0;
}
.focus-item p {
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
}
@media (min-width: 760px) {
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .focus-item-wide { grid-column: 1 / -1; }
}

/* ---------- Fees / Insurance ---------- */
.fees-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem 2rem;
  margin: 0.8rem 0 1.6rem;
  text-align: left;
}
.fees-block h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--honey);
  margin: 0 0 0.6em 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.fees-list { list-style: none; padding: 0; margin: 0; }
.fees-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.32);
}
.fees-list li:last-child { border-bottom: 0; }
.fees-list .amount {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--honey);
  font-weight: 600;
}
.insurance-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--honey);
  margin: 0 0 0.55em;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: left;
}
.insurance-card { margin-top: 1.4rem; }
.insurance-list {
  columns: 2;
  -webkit-columns: 2;
  column-gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0.4em 0 0.8em;
  text-align: left;
}
.insurance-list li {
  break-inside: avoid;
  padding: 0.3rem 0;
  font-size: 0.92rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.22);
}
.footnote {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin-top: 0.4em;
}
@media (min-width: 700px) {
  .fees-row { grid-template-columns: 1fr 1.2fr; }
  .insurance-list { columns: 3; -webkit-columns: 3; }
}

/* ---------- Contact widget ---------- */
.widget-frame {
  margin: 1.4rem 0 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.widget-frame iframe {
  width: 100%;
  height: 760px;
  border: 0;
  display: block;
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.30);
  text-align: left;
}
.contact-info h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--honey);
  margin: 0 0 0.3em 0;
  font-weight: 600;
}
.contact-info p { font-size: 0.92rem; margin: 0; color: rgba(255, 255, 255, 0.94); }
.contact-info a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.contact-info a:hover { color: var(--honey); }

/* ---------- FLAT panels (Frankl, FAQ, Contact) — sage by default ---------- */
.panel-flat {
  width: 84%;
  max-width: var(--maxw-rect);
  margin: 0 auto;
  background: var(--cream);
  color: var(--slate-green);
  border: 1px solid var(--honey);
  border-radius: var(--rect-radius);
  padding: 3.4rem 2.4rem 3.6rem;
  box-shadow:
    0 0 0 2px var(--sage-deep),
    0 18px 48px rgba(58, 74, 63, 0.18),
    0 6px 14px rgba(58, 74, 63, 0.10);
}
.panel-flat .container { max-width: 860px; margin: 0 auto; padding: 0; }
.panel-flat .panel-title {
  color: var(--slate-green);
  text-shadow: none;
  text-align: center;
}
.panel-flat .panel-rule {
  background: var(--honey);
}
.panel-flat .eyebrow { color: var(--honey-deep); }
.panel-flat .prose {
  max-width: 70ch;
  margin: 0 auto;
  color: var(--slate-soft);
  font-size: 1.02rem;
}
.panel-flat .prose p { margin: 0 0 1em 0; text-align: left; }
.panel-flat .prose .emph { font-style: italic; color: var(--slate-green); }
.panel-flat .prose a { color: var(--sage-deep); }
.panel-flat .prose a:hover { color: var(--honey-deep); }

/* Sage variant — Frankl, FAQ, Contact */
.panel-flat-sage {
  background: linear-gradient(180deg, var(--sage-deep) 0%, var(--sage-darker) 100%);
  color: var(--cream);
}
.panel-flat-sage .panel-title { color: var(--cream); }
.panel-flat-sage .panel-rule { background: var(--honey); }
.panel-flat-sage .eyebrow { color: var(--honey); }
.panel-flat-sage .prose { color: rgba(246, 241, 232, 0.92); }
.panel-flat-sage .prose .emph { color: var(--cream); }
.panel-flat-sage .prose a { color: var(--honey); text-decoration: underline; text-underline-offset: 3px; }
.panel-flat-sage .prose a:hover { color: #f0d9b3; }

/* Contact (flat sage, fully expanded — clientsecure widget room) */
.panel-flat-connect { padding: 3.4rem 2rem 3.6rem; }
.panel-flat-connect .container { max-width: 1080px; }
.panel-flat-connect .connect-lede {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: rgba(246, 241, 232, 0.92);
  font-size: 1.04rem;
  text-align: center;
}
.panel-flat-connect .widget-frame {
  max-width: 920px;
  margin: 0 auto;
  border-color: rgba(246, 241, 232, 0.22);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.20);
  background: #fff;
}
.panel-flat-connect .widget-frame iframe {
  height: 2291px;
  width: 100%;
  display: block;
  border: 0;
}
@media (max-width: 720px) {
  .panel-flat-connect { padding: 2.4rem 1.2rem 2.6rem; }
  .panel-flat-connect .widget-frame iframe { height: 3104px; }
}

/* Frankl quote — flat sage pull-out (its own breath between panels) */
.panel-flat-quote { padding: 2.6rem 2rem; }
.panel-flat-quote .container { max-width: 820px; }
.panel-flat-quote .frankl-pull {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  margin: 0 auto;
  padding: 0.5rem 0;
  max-width: none;
}
.panel-flat-quote .frankl-pull blockquote {
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  line-height: 1.4;
  margin: 0 0 1rem 0;
  color: var(--cream);
  font-weight: 500;
}
.panel-flat-quote .frankl-pull figcaption { color: var(--honey); font-size: 0.86rem; letter-spacing: 0.22em; }

/* FAQ on sage — flip text colors from cream-on-cream defaults to cream-on-sage */
.panel-flat-sage .faq-list { border-top-color: rgba(246, 241, 232, 0.22); }
.panel-flat-sage .faq-list details { border-bottom-color: rgba(246, 241, 232, 0.22); }
.panel-flat-sage .faq-list summary { color: var(--cream); }
.panel-flat-sage .faq-list summary::after { color: var(--honey); }
.panel-flat-sage .faq-list details[open] summary { color: var(--honey); }
.panel-flat-sage .faq-list details > p { color: rgba(246, 241, 232, 0.92); }
.panel-flat-sage .faq-list details p strong { color: var(--cream); }
.panel-flat-sage .faq-list details p a { color: var(--honey); text-decoration: underline; text-underline-offset: 3px; }
.panel-flat-sage .faq-list details p a:hover { color: #f0d9b3; }

@media (max-width: 880px) {
  .panel-flat { width: 92%; padding: 2.6rem 1.5rem 2.8rem; }
}
@media (max-width: 520px) {
  .panel-flat { width: 96%; padding: 2.2rem 1.2rem 2.4rem; }
}

/* ---------- FAQ accordion ---------- */
.faq-list {
  max-width: 780px;
  margin: 1.2rem auto 0;
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}
.faq-list summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--slate-green);
  list-style: none;
  position: relative;
  padding-right: 2.2rem;
  letter-spacing: 0.005em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -3px;
  font-size: 1.5rem;
  color: var(--honey-deep);
  font-weight: 400;
  transition: transform .2s ease, color .2s ease;
}
.faq-list details[open] summary::after {
  content: "\2013";
}
.faq-list details[open] summary { color: var(--sage-deep); }
.faq-list details > p {
  margin: 0.85rem 0 0;
  color: var(--slate-soft);
  font-size: 1rem;
  max-width: 70ch;
  line-height: 1.65;
}
.faq-list details p strong { color: var(--slate-green); }
.faq-list details p a { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 3px; }
.faq-list details p a:hover { color: var(--honey-deep); }

/* ---------- Slide-in animation (toned down vs ver3a) ---------- */
.slide-in {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity .9s cubic-bezier(0.22, 1, 0.36, 1),
              transform .9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}
.panel.slide-in:nth-of-type(odd)  { transform: translate3d(-90px, 0, 0); }
.panel.slide-in:nth-of-type(even) { transform: translate3d(90px, 0, 0); }
.panel-flat.slide-in              { transform: translate3d(0, 50px, 0); }

.slide-in.in-view {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
}

/* ---------- Footer (matches header — dark slate, honey top bar) ---------- */
.site-footer {
  background: var(--bar-gradient);
  color: var(--cream);
  padding: 3.2rem 0 2.2rem;
  margin-top: 5rem;
  font-size: 0.93rem;
  border-top: 4px solid var(--honey);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.10);
}
.site-footer .container {
  max-width: var(--maxw-rect);
  margin: 0 auto;
  padding: 0 1.6rem;
}
.site-footer a { color: var(--honey); text-decoration: none; }
.site-footer a:hover { color: #f0d9b3; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.footer-brand img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--honey);
  margin-bottom: 0.7rem;
}
.footer-brand .brand-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--cream);
  display: block;
  margin: 0 0 0.5rem 0;
}
.footer-address { line-height: 1.65; margin: 0; color: rgba(246, 241, 232, 0.86); }

.footer-inclusivity {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: rgba(246, 241, 232, 0.86);
}
.footer-inclusivity .rainbow {
  flex-shrink: 0;
  width: 80px;
  height: auto;
  border-radius: 4px;
  margin-top: 0.3rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
.footer-inclusivity p { margin: 0; line-height: 1.65; }

.footer-meta { font-size: 0.88rem; color: rgba(246, 241, 232, 0.86); }
.social {
  list-style: none; padding: 0; margin: 0 0 0.9rem;
  display: flex; gap: 1.2rem; flex-wrap: wrap;
}
.copyright { opacity: 0.7; }

@media (min-width: 880px) {
  .footer-grid { grid-template-columns: 1.1fr 1.6fr 0.9fr; align-items: start; }
  .footer-meta { text-align: right; }
  .footer-meta .social { justify-content: flex-end; }
}

/* ---------- Reduced motion: keep parallax + slide-in;
   only kill smooth scrolling. ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
