/* ============================================================
   Auditory Processing Solutions — base stylesheet
   Brand tokens extracted from the existing Wix design.
   ============================================================ */

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

:root {
  /* warm neutrals from the existing palette */
  --color-bg:        #ffffff;
  --color-surface:   #efeae3;   /* cream — testimonial band */
  --color-surface-2: #b9b2a8;   /* warm taupe — header band */
  --color-surface-3: #a79a90;   /* darker taupe — services band */
  --color-deep:      #5c3d2e;   /* chocolate — hero overlay */
  --color-text:      #1a140f;
  --color-muted:     #5b524a;
  --color-accent:    #5c3d2e;   /* CTA uses brand chocolate */
  --color-accent-ink: #ffffff;
  --color-copper:        #d4a574;   /* warm copper — hero accents */
  --color-copper-light:  #f4c98a;   /* lighter copper — italic emphasis on dark bg */
  --color-border:    rgba(26, 20, 15, .14);

  --font-sans:  "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", "Georgia", "Times New Roman", serif;

  --radius: 4px;            /* original uses crisp square corners */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,.10);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
:target, [id] { scroll-margin-top: 100px; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 { font-weight: 400; }

a {
  color: var(--color-accent);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size .35s cubic-bezier(.2,.7,.2,1), color .2s ease;
}
a:hover {
  background-size: 100% 1px;
  text-decoration: none;
}
img { max-width: 100%; height: auto; display: block; }

/* anchors with explicit underline classes opt out */
.cta-btn, .nav-primary a, .brand, .footer-contact a, .post-title a, .testimonial a, .faq a, .service-meta a {
  background-image: none;
}

/* ---------- scroll reveals ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms),
              transform .8s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- decorative section ornament ---------- */
.section-ornament {
  display: block;
  width: 48px; height: 1px;
  background: var(--color-deep);
  margin: 0 0 36px;
  position: relative;
}
.section-ornament::before,
.section-ornament::after {
  content: "";
  position: absolute;
  top: 50%; width: 4px; height: 4px;
  background: var(--color-deep);
  border-radius: 50%;
  transform: translateY(-50%);
}
.section-ornament::before { left: -10px; }
.section-ornament::after  { right: -10px; }

/* ---------- subtle paper texture for cream sections ---------- */
.about-block,
.latest-posts,
.testimonials,
.faq,
.services {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(92,61,46,.025) 1px, transparent 0);
  background-size: 22px 22px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- header ---------- */
.site-header {
  background: var(--color-surface-2);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  gap: 24px;
}
.brand {
  font-family: var(--font-serif);
  text-align: center;
  grid-column: 2;
  line-height: 1.15;
}
.brand-name {
  display: block;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--color-text);
}
.brand-sub {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin-top: -2px;
}
.nav-primary {
  display: flex; align-items: center; gap: 22px;
  grid-column: 3; justify-self: end;
}
.nav-primary a {
  color: var(--color-text); font-weight: 400; font-size: .95rem;
  letter-spacing: .03em;
}
.nav-primary a.active { color: var(--color-deep); border-bottom: 1px solid var(--color-deep); }
.nav-primary .cta-btn--nav {
  border: 1px solid var(--color-text);
  background: transparent;
  color: var(--color-text) !important;
  border-radius: 999px;
  padding: 8px 20px;
}
.nav-primary .cta-btn--nav:hover { background: var(--color-text); color: #fff !important; }

/* ---------- buttons ---------- */
.cta-btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-accent-ink) !important;
  padding: 14px 28px;
  border-radius: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: .95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 1px solid var(--color-accent);
  transition: background .15s ease, color .15s ease;
}
.cta-btn:hover { background: transparent; color: var(--color-accent) !important; }
.cta-btn--hero {
  background: transparent;
  color: #fff !important;
  border-color: #fff;
  padding: 14px 36px;
}
.cta-btn--hero:hover { background: #fff; color: var(--color-deep) !important; }
.cta-btn--service { margin-top: 22px; }
.cta-btn--band {
  background: #fff; color: var(--color-deep) !important; border-color: #fff;
}
.cta-btn--band:hover { background: transparent; color: #fff !important; border-color: #fff; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: clamp(540px, 72vh, 780px);
  padding: 120px 0 100px;
  background: var(--color-deep);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::after {
  /* darken the LEFT side only so text stays legible without covering her */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,12,8,.78) 0%, rgba(20,12,8,.55) 25%, rgba(20,12,8,.15) 42%, rgba(0,0,0,0) 55%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: block;
  /* break out of the centered container so text sits flush left */
  width: 100%; max-width: none; padding: 0;
}
.hero-text {
  max-width: 700px;
  padding-left: clamp(40px, 6vw, 88px);
}
.hero-eyebrow {
  margin: 0 0 30px;
  display: block;
}
.hero-eyebrow-pill {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid rgba(212, 165, 116, .6);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .92rem;
  white-space: nowrap;
  color: var(--color-copper-light);
  font-weight: 500;
}
/* legacy rule retained in case older eyebrow markup is still cached */
.hero-eyebrow-rule {
  display: inline-block; width: 36px; height: 1px;
  background: rgba(255,255,255,.7);
  margin-right: 14px; vertical-align: middle;
}
.hero-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(3.4rem, 7.4vw, 6.4rem);
  line-height: .92;
  letter-spacing: -.02em;
  margin: 0 0 28px;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero-headline .hero-accent {
  font-style: italic;
  color: var(--color-copper-light);
}
.hero-headline::after {
  content: "";
  display: block;
  width: 64px; height: 2px;
  background: var(--color-copper);
  margin-top: 28px;
  opacity: .95;
}
.hero-subhead {
  position: relative;
  margin: 0 0 44px;
  padding-left: 22px;
  max-width: 460px;
  border-left: 3px solid var(--color-copper);
}
.hero-subhead-rule { display: none; } /* rule now drawn as a border on .hero-subhead */
.hero-subhead-text {
  display: block;
  font-size: 1.45rem;
  line-height: 1.45;
  color: rgba(255,255,255,.96);
  font-weight: 300;
  letter-spacing: .005em;
}
.cta-btn--hero {
  background: var(--color-copper);
  color: #2a1810 !important;
  border-color: var(--color-copper);
  padding: 16px 34px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .22em;
}
.cta-btn--hero:hover {
  background: var(--color-copper-light);
  border-color: var(--color-copper-light);
  color: #2a1810 !important;
}
.hero-image { position: absolute; inset: 0; z-index: 0; }
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 78% center;
}
@media (max-width: 800px) {
  .hero {
    min-height: 0;
    padding: 320px 0 60px;   /* photo sits behind the upper portion; text below */
  }
  .hero-text { max-width: 100%; }
  .hero::after {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.05) 35%, rgba(0,0,0,.75) 68%, rgba(0,0,0,.88) 100%);
  }
}

/* ---------- portrait band (below hero) ---------- */
.portrait-band {
  background: var(--color-surface-2);
  color: var(--color-text);
  padding: 28px 0;
}
.portrait-row {
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: center; gap: 6px 22px; text-align: center;
}
.portrait-line { font-family: var(--font-serif); line-height: 1.2; }
.portrait-name { font-size: 1.45rem; font-weight: 400; letter-spacing: .01em; }
.portrait-name::after {
  content: "·"; margin-left: 22px; color: var(--color-deep); opacity: .55;
}
.portrait-credentials { font-size: 1.15rem; font-style: italic; color: var(--color-deep); }
.portrait-credentials::after {
  content: "·"; margin-left: 22px; color: var(--color-deep); opacity: .55;
}
.portrait-sub {
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--color-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.portrait-sub .dot { opacity: .5; margin: 0 4px; }
@media (max-width: 700px) {
  .portrait-name::after, .portrait-credentials::after { display: none; }
  .portrait-row { gap: 4px; }
}

/* ---------- sections ---------- */
section { padding: 96px 0; }
.section-eyebrow {
  text-transform: uppercase; letter-spacing: .22em; font-size: .8rem;
  color: var(--color-muted); margin: 0 0 14px; font-weight: 500;
}
.section-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.1;
  margin: 0 0 24px;
}
.section-intro { color: var(--color-muted); max-width: 720px; margin: 0 0 48px; font-size: 1.05rem; }

/* ---------- services ---------- */
.services {
  background: linear-gradient(180deg, var(--color-surface) 0%, #e2dcd2 100%);
  color: var(--color-text);
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}
.services-decor {
  position: absolute;
  top: -160px; right: -160px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(92,61,46,.07) 0%, rgba(92,61,46,0) 70%);
  pointer-events: none;
}
.services .section-eyebrow,
.services .section-intro,
.services .section-heading { color: var(--color-text); }
.services-head {
  max-width: 720px;
  margin: 0 0 72px;
  position: relative;
  z-index: 1;
}
.services-head .section-heading::after {
  content: "";
  display: block;
  width: 64px; height: 2px;
  background: var(--color-deep);
  margin-top: 22px;
}

.services-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

.service-card {
  position: relative;
  background: #fff;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.service-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-deep);
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -22px rgba(60,40,30,.35);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-inner {
  position: relative;
  padding: 56px 44px 44px;
  overflow: hidden;
}
.service-num {
  position: absolute;
  top: 18px; right: 32px;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 6.5rem;
  line-height: 1;
  color: var(--color-deep);
  opacity: .08;
  letter-spacing: .02em;
  pointer-events: none;
  transition: opacity .35s ease, transform .45s ease;
}
.service-card:hover .service-num {
  opacity: .14;
  transform: translateY(-4px);
}

.service-content { position: relative; z-index: 1; }
.service-eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  color: var(--color-muted);
  margin: 0 0 14px;
  font-weight: 500;
}
.service-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.55rem, 1.9vw, 1.9rem);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--color-text);
}
.service-tagline {
  color: var(--color-deep);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  margin: 0 0 16px;
}
.service-desc {
  font-size: .98rem;
  color: var(--color-muted);
  line-height: 1.7;
}
.service-desc p { margin: 0 0 12px; }
.service-desc p:last-child { margin-bottom: 0; }

.service-meta {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: flex; flex-wrap: wrap; gap: 8px 10px;
}
.service-meta li {
  display: inline-flex; align-items: baseline; gap: 8px;
  padding: 6px 14px;
  background: rgba(92, 61, 46, .06);
  border: 1px solid rgba(92, 61, 46, .14);
  border-radius: 999px;
  font-size: .85rem;
}
.service-meta .meta-label {
  color: var(--color-deep);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .68rem;
}
.service-meta .meta-value { color: var(--color-text); }

.cta-btn--service {
  margin-top: 30px;
  background: transparent;
  color: var(--color-deep) !important;
  border-color: var(--color-deep);
  letter-spacing: .12em;
  padding: 13px 24px;
}
.cta-btn--service:hover {
  background: var(--color-deep);
  color: #fff !important;
}

@media (max-width: 880px) {
  .services { padding: 90px 0 110px; }
  .services-grid { grid-template-columns: 1fr; gap: 22px; }
  .service-card-inner { padding: 44px 28px 36px; }
  .service-num { font-size: 5rem; right: 22px; top: 14px; }
}

/* ---------- about ---------- */
.about-block { background: var(--color-bg); padding: 120px 0; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 64px;
  align-items: start;
}
.about-grid:not(:has(.about-photo)) { grid-template-columns: 1fr; max-width: 820px; margin: 0 auto; }
.about-photo img { box-shadow: var(--shadow-sm); }
.about-text .section-eyebrow { margin-bottom: 12px; }
.about-text .section-heading { margin-bottom: 18px; }
.about-lead {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--color-deep);
  line-height: 1.45;
  margin: 0 0 32px;
  font-style: italic;
}
.dropcap {
  float: left;
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 4.2rem;
  line-height: .85;
  color: var(--color-deep);
  padding: 6px 14px 0 0;
  margin-top: 4px;
}
.about-bio { font-size: 1.05rem; color: var(--color-muted); line-height: 1.8; }
.about-bio p { margin: 0 0 20px; }
.about-credentials {
  list-style: none; padding: 0; margin: 22px 0 0; color: var(--color-deep);
  display: grid; gap: 6px;
}
.about-credentials li {
  font-family: var(--font-serif); font-size: 1.05rem; letter-spacing: .03em;
}
.about-credentials li::before { content: "— "; opacity: .6; }
.about-signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-deep);
  margin: 8px 0 0;
  letter-spacing: .01em;
}
.about-cta { margin-top: 36px; }
@media (max-width: 800px) {
  .about-block { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .dropcap { font-size: 3.4rem; padding: 4px 10px 0 0; }
}

/* ---------- testimonials (dark editorial stage) ---------- */
.testimonials {
  background: var(--color-deep);
  color: #fff;
  padding: 140px 0 110px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
/* warm radial spotlight + soft texture for depth */
.testimonials::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(255,224,196,.10) 0%, rgba(255,224,196,0) 50%),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.025) 1px, transparent 0);
  background-size: auto, 22px 22px;
  pointer-events: none;
}
/* oversized decorative quote glyph sits behind everything */
.testimonials::after {
  content: "\201C";
  position: absolute;
  top: 70px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: clamp(14rem, 22vw, 22rem);
  line-height: 1;
  color: rgba(255,255,255,.05);
  pointer-events: none;
  font-style: normal;
  z-index: 0;
}
.testimonials > * { position: relative; z-index: 1; }
.testimonials .container > .section-eyebrow {
  color: rgba(255,255,255,.6);
}
.testimonials .container > .section-heading {
  color: #fff;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 12px;
}
.testimonials .section-ornament {
  background: rgba(255,255,255,.45);
  margin: 0 auto 56px;
}
.testimonials .section-ornament::before,
.testimonials .section-ornament::after { background: rgba(255,255,255,.55); }

/* a section pattern override so dot grid isn't visible here */
.testimonials { background-image: none; }

.testimonials-slider {
  position: relative;
  margin: 0 auto;
  max-width: 920px;
  padding: 0 80px;
}
.tslider-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px 0 16px;
}
.tslider-track::-webkit-scrollbar { display: none; }

.tcard {
  flex: 0 0 100%;
  scroll-snap-align: center;
  background: transparent;
  padding: 12px 18px;
  position: relative;
  text-align: center;
  box-shadow: none;
}
.tcard-mark { display: none; }      /* large quote glyph lives on the section itself */
.tcard-excerpt,
.tcard-full blockquote {
  margin: 0 auto 28px;
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1.9vw, 1.7rem);
  line-height: 1.55;
  color: rgba(255,255,255,.94);
  font-style: italic;
  font-weight: 300;
  max-width: 720px;
}
.tcard-full blockquote p { margin: 0 0 18px; }
.tcard-full[hidden] { display: none; }
.tcard.is-expanded .tcard-excerpt { display: none; }
.tcard.is-expanded .tcard-full { display: block; }
.tcard.is-expanded .tcard-toggle-more { display: none; }
.tcard:not(.is-expanded) .tcard-toggle-less { display: none; }

.tcard-toggle {
  background: none; border: 0; padding: 0;
  font: inherit;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  margin-bottom: 36px;
  position: relative;
}
.tcard-toggle::after {
  content: ""; display: block;
  width: 28px; height: 1px;
  background: currentColor;
  margin: 6px auto 0;
  transition: width .35s ease;
}
.tcard-toggle:hover::after { width: 64px; }

.tcard-attr {
  margin: 0; padding-top: 0;
  border-top: 0;
  display: flex; align-items: baseline; justify-content: center; gap: 12px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.tcard-attr::before {
  content: ""; display: inline-block;
  width: 36px; height: 1px;
  background: rgba(255,255,255,.4);
  margin-right: 4px;
}
.tcard-name {
  color: #fff;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: .02em;
  margin: 0;
}
.tcard-rel::before { content: "·"; opacity: .55; margin-right: 6px; }

/* nav */
.tslider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: rgba(255,255,255,.85);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  z-index: 2;
}
.tslider-nav:hover {
  background: #fff; color: var(--color-deep); border-color: #fff;
  transform: translateY(-50%) scale(1.05);
}
.tslider-prev { left: 0; }
.tslider-next { right: 0; }

/* counter + dots row */
.tslider-dots {
  display: flex; justify-content: center; align-items: center; gap: 14px;
  margin-top: 36px;
}
.tslider-dot {
  width: 26px; height: 1px;
  border-radius: 0;
  border: 0;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  padding: 0;
  transition: background .25s ease, transform .25s ease;
}
.tslider-dot.is-active { background: #fff; transform: scaleX(1.6); }
.tslider-dot:hover { background: rgba(255,255,255,.55); }

@media (max-width: 720px) {
  .testimonials { padding: 90px 0 80px; }
  .testimonials::after { font-size: 12rem; top: 50px; }
  .testimonials-slider { padding: 0 12px; }
  .tslider-nav { width: 42px; height: 42px; font-size: 1rem; }
  .tslider-prev { left: -8px; }
  .tslider-next { right: -8px; }
  .tcard-excerpt, .tcard-full blockquote { font-size: 1.15rem; }
}

/* ---------- faq ---------- */
.faq { background: var(--color-bg); }
.faq-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; max-width: 880px; }
.faq-item {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-question {
  width: 100%; background: none; border: 0; padding: 22px 4px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font: inherit; color: inherit; cursor: pointer; text-align: left;
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400;
}
.faq-toggle { color: var(--color-deep); font-size: 1.4rem; font-weight: 300; transition: transform .2s ease; }
.faq-item.is-open .faq-toggle { transform: rotate(45deg); }
.faq-answer { padding: 0 4px 22px; color: var(--color-muted); font-size: 1rem; line-height: 1.7; }
.faq-answer[hidden] { display: none; }

/* ---------- latest posts (editorial vertical list, no cards) ---------- */
.latest-posts {
  background: var(--color-bg);
  padding: 120px 0;
}
.latest-posts .container > .section-eyebrow,
.latest-posts .container > .section-heading {
  text-align: left;
}
.latest-posts .container > .section-heading {
  font-style: italic;
  font-weight: 300;
}
.latest-posts .section-ornament {
  margin: 0 0 64px;
}
.latest-posts .section-ornament::before { left: 0; }   /* dot anchored to left edge */
.latest-posts .section-ornament::after  { right: -10px; }

.posts-list {
  list-style: none; padding: 0; margin: 0;
  max-width: 1080px;
  border-top: 1px solid var(--color-border);
}
.post-row {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 36px;
  padding: 38px 4px;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
  transition: padding-left .35s ease, background .35s ease;
}
.post-row.is-linked { cursor: pointer; }
.post-row.is-linked:hover { padding-left: 22px; background: rgba(92,61,46,.04); }

.post-row > .post-row-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: none;
  pointer-events: auto;
}
.post-row > .post-meta,
.post-row > .post-body,
.post-row > .post-arrow {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.post-meta {
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 6px;
}
.post-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--color-deep);
  letter-spacing: .04em;
  line-height: 1;
}
.post-date {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 500;
}
.post-title {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
  font-weight: 400;
  line-height: 1.22;
  color: var(--color-text);
  transition: color .25s ease;
}
.post-row.is-linked:hover .post-title { color: var(--color-deep); }
.post-excerpt {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 680px;
}
.post-arrow {
  font-size: 1.4rem;
  color: var(--color-deep);
  font-weight: 300;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .3s ease, transform .3s ease;
  align-self: center;
  padding-left: 16px;
}
.post-row.is-linked:hover .post-arrow { opacity: 1; transform: translateX(0); }
.post-row:not(.is-linked) .post-arrow { display: none; }

@media (max-width: 720px) {
  .latest-posts { padding: 80px 0; }
  .latest-posts .section-ornament { margin-bottom: 40px; }
  .post-row {
    grid-template-columns: 86px 1fr;
    gap: 20px;
    padding: 30px 0;
  }
  .post-row.is-linked:hover { padding-left: 10px; }
  .post-num { font-size: 1.25rem; }
  .post-arrow { display: none; }
}

/* ---------- cta band ---------- */
.cta-band {
  background: var(--color-deep); color: #fff;
  text-align: center; padding: 96px 0;
}
.cta-band h2 {
  font-family: var(--font-serif); font-weight: 300;
  margin: 0 0 14px; font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.cta-band p { margin: 0 0 32px; opacity: .85; font-size: 1.05rem; }

/* ---------- single post page ---------- */
.post {
  background: var(--color-bg);
  background-image: none;
}
.post-header {
  background: var(--color-surface-2);
  padding: 110px 0 80px;
  position: relative;
}
.post-header .section-ornament {
  margin: 30px 0 0;
}
.post-eyebrow {
  margin: 0 0 22px;
  font-size: .78rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--color-deep);
  font-weight: 500;
}
.post-eyebrow a {
  color: inherit;
  background-image: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.post-eyebrow a:hover { border-bottom-color: var(--color-deep); }
.post-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -.005em;
  margin: 0 0 24px;
  color: var(--color-text);
  max-width: 920px;
}
.post-byline {
  margin: 0;
  color: var(--color-muted);
  font-size: .92rem;
  letter-spacing: .04em;
}
.post-byline-author {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-deep);
  font-size: 1rem;
  margin-right: 4px;
}
.post-byline-sep { opacity: .5; margin: 0 4px; }

.post-body {
  padding: 80px 0 60px;
  max-width: 760px;
}
.post-body p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--color-text);
  margin: 0 0 26px;
}
.post-body p.post-lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--color-deep);
  margin-bottom: 36px;
}
.post-body strong { color: var(--color-deep); }
.post-h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  margin: 56px 0 22px;
  color: var(--color-text);
  position: relative;
  padding-top: 28px;
}
.post-h2::before {
  content: ""; position: absolute;
  top: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--color-deep);
}
.post-h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 36px 0 14px;
  color: var(--color-deep);
}

.post-footer {
  background: var(--color-surface);
  padding: 70px 0 100px;
  margin-top: 40px;
}
.post-author-card {
  max-width: 720px;
  margin: 0 auto 60px;
  padding: 36px 40px;
  background: #fff;
  border-left: 3px solid var(--color-deep);
  text-align: left;
}
.post-author-eyebrow {
  margin: 0 0 8px;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 500;
}
.post-author-name {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--color-text);
}
.post-author-bio {
  margin: 0 0 22px;
  color: var(--color-muted);
  line-height: 1.65;
}

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.post-nav a {
  background-image: none;
  display: flex; flex-direction: column; gap: 6px;
  padding: 24px 28px;
  background: #fff;
  text-decoration: none;
  color: var(--color-text);
  transition: box-shadow .25s ease, transform .25s ease;
}
.post-nav a:hover {
  box-shadow: 0 18px 36px -22px rgba(60,40,30,.28);
  transform: translateY(-3px);
}
.post-nav-next { text-align: right; }
.post-nav-label {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.post-nav-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.3;
}

.post-missing {
  padding: 140px 0 80px;
  background: var(--color-bg);
}
.post-missing-body { color: var(--color-muted); margin: 0 0 28px; max-width: 520px; }

@media (max-width: 760px) {
  .post-header { padding: 80px 0 56px; }
  .post-body { padding: 60px 0 40px; }
  .post-body p { font-size: 1.02rem; }
  .post-body p.post-lede { font-size: 1.15rem; }
  .post-h2 { font-size: 1.35rem; margin-top: 44px; }
  .post-author-card { padding: 26px 22px; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-next { text-align: left; }
}

/* ---------- contact page ---------- */
.contact-block { background: var(--color-bg); }
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start;
}
.contact-intro .section-heading { margin-bottom: 24px; }
.contact-text { color: var(--color-muted); margin: 0 0 32px; font-size: 1.05rem; }
.contact-details {
  display: grid; grid-template-columns: 110px 1fr; gap: 18px 24px;
  margin: 0; border-top: 1px solid var(--color-border); padding-top: 28px;
}
.contact-details dt {
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--color-deep); font-weight: 500; padding-top: 3px;
}
.contact-details dd { margin: 0; color: var(--color-muted); line-height: 1.55; }
.contact-details a { color: var(--color-text); }
.contact-details a:hover { color: var(--color-deep); }
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-details { grid-template-columns: 1fr; gap: 4px 0; }
  .contact-details dt { margin-top: 16px; }
}

/* ---------- flex blocks ---------- */
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 700px) { .two-col-grid { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.site-footer {
  background: #0e0a07;
  color: #fff;
  padding: 80px 0 28px;
  position: relative;
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 2px; background: rgba(255,255,255,.18);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .footer-name {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 400;
  margin: 0 0 2px;
  letter-spacing: .01em;
}
.footer-brand .footer-sub {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,.78);
  margin: 0 0 18px;
}
.footer-brand .footer-tagline {
  font-size: .92rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
  margin: 0;
  max-width: 280px;
}
.footer-col-heading {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  margin: 6px 0 18px;
  font-weight: 500;
}
.footer-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
  font-size: .95rem;
}
.footer-list li, .footer-list a { color: rgba(255,255,255,.85); }
.footer-list a { background-image: linear-gradient(rgba(255,255,255,.85), rgba(255,255,255,.85)); }
.footer-list .footer-hours { color: rgba(255,255,255,.6); font-size: .88rem; margin-top: 6px; line-height: 1.45; }
.footer-bottom { margin-top: 24px; }
.footer-copy {
  margin: 0;
  font-size: .78rem;
  color: rgba(255,255,255,.42);
  letter-spacing: .06em;
}
@media (max-width: 800px) {
  .site-footer { padding: 56px 0 24px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
    padding-bottom: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
