/* ─── STORY COMMUNICATIONS · EDITORIAL STYLES ─── */

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

:root {
  --bg: #f6ebe1;
  --ink: #1a1a1a;
  --mid: #4a4a48;
  --soft: #6e6b67;
  --faint: #e8e3d4;
  --rule: rgba(26,25,24,0.18);
  --sage: #4a9856;
  --sage-deep: #1f6b30;
  --sage-tint: #dcf0d8;

  --serif-display: 'Source Serif 4', Georgia, serif;
  --serif-body: 'Source Serif 4', Georgia, serif;
  --script: 'Great Vibes', cursive;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif-body);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ─── PAPER GRAIN ─── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease;
}
nav.scrolled {
  background: rgba(246,235,225,0.95);
  backdrop-filter: blur(8px);
  padding: 14px 48px;
  border-bottom: 1px solid var(--rule);
}
.nav-brand {
  font-family: var(--script);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.4s ease;
}
nav.scrolled .nav-brand { opacity: 1; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
  flex: none;
}
.nav-links a {
  font-family: var(--serif-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--sage-deep); }

/* ─── BUTTONS ─── */
.btn-primary {
  font-family: var(--serif-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bg);
  background: var(--ink);
  border: 1px solid var(--ink);
  padding: 16px 36px;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--sage-deep); border-color: var(--sage-deep); }

.btn-ghost {
  font-family: var(--serif-display);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  display: inline-block;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--sage-deep); border-color: var(--sage-deep); }

/* ─── HERO ─── */
#hero {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 170px 32px 32px;
  position: relative;
}

.logo-lockup {
  position: relative;
  display: inline-block;
  padding-top: 0.15em;
  margin-bottom: 48px;
}
.logo-script-wrap {
  font-size: clamp(5rem, 13vw, 10rem);
  position: relative;
  overflow: visible;
  display: inline-block;
  padding: 0.18em 0.6em 0.16em 0;
  line-height: 1;
}
.logo-script {
  font-family: var(--script);
  font-size: 1em;
  line-height: 1;
  font-weight: 400;
  color: var(--ink);
  display: block;
  white-space: nowrap;
}
.logo-script-2 {
  display: block;
  font-size: clamp(3rem, 7.6vw, 5.9rem);
  line-height: 0.9;
  margin-top: -0.18em;
  padding-left: 0.05em;
  color: var(--ink);
  opacity: 0;
  animation: fadeUp 0.9s ease 2.6s forwards;
}
.logo-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background: var(--bg);
  animation: writeReveal 2.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
  pointer-events: none;
}
@keyframes writeReveal {
  0%   { width: 100%; }
  100% { width: 0%; }
}
.logo-cursor {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
  transform: translateY(-50%);
  animation: cursorTravel 2.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards,
             cursorFade 0.4s ease 2.8s forwards;
}
@keyframes cursorTravel {
  0%   { left: 0; }
  100% { left: 100%; }
}
@keyframes cursorFade { to { opacity: 0; } }
.logo-sub-wrap {
  display: flex;
  justify-content: flex-start;
  padding-right: 0.6em;
}

.logo-sub {
  font-family: var(--serif-display);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6px 0 0 0;
  font-size: clamp(0.7rem, 1.1vw, 0.95rem);
  opacity: 0;
  animation: fadeUp 0.9s ease 2.8s forwards;
  width: 100%;
}
.logo-sub > span {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* Hero copy */
.hero-welcome {
  font-family: var(--serif-display);
  font-style: normal;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage-deep);
  position: absolute;
  top: 32px;
  left: 32px;
  margin: 0;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.2s forwards;
}

.hero-strapline {
  font-family: var(--serif-body);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.7;
  color: var(--ink);
  font-weight: 600;
  max-width: 640px;
  margin: 0 auto 56px;
  opacity: 0;
  animation: fadeUp 0.9s ease 3.5s forwards;
}

.hero-twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 900px;
  margin: 0 auto 16px;
  opacity: 0;
  animation: fadeUp 0.9s ease 3.5s forwards;
  text-align: left;
}
.hero-col {
  font-family: var(--serif-body);
  font-size: 1.18rem;
  line-height: 1.62;
  color: var(--ink);
  font-weight: 600;
}

/* ─── HERO LAYOUT (brand | content) ─── */
.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 64px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: left;
}
.hero-content {
  opacity: 1;
}
.hero-headline {
  font-family: var(--serif-display);
  font-size: clamp(1.3rem, 1.9vw, 1.7rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 34px;
  text-wrap: balance;
  opacity: 0;
  animation: fadeUp 0.9s ease 3.0s forwards;
}
.hero-headline em {
  font-style: normal;
  color: var(--sage-deep);
}
.hero-paras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}
.hero-paras > .hero-col {
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
}
.hero-paras > .hero-col:nth-child(1) { animation-delay: 3.25s; }
.hero-paras > .hero-col:nth-child(2) { animation-delay: 3.45s; }
.hero-tagline {
  font-family: var(--serif-body);
  font-size: 1.18rem;
  line-height: 1.62;
  font-weight: 600;
  color: var(--mid);
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  max-width: 820px;
}
.services-intro {
  font-family: var(--serif-body);
  font-size: 1.24rem;
  line-height: 1.62;
  font-weight: 600;
  color: var(--ink);
  max-width: 860px;
  margin: -8px 0 40px;
  padding: 0 4px;
}
.hero-fan {
  color: var(--sage);
  margin-top: 32px;
  opacity: 0;
  animation: fadeUp 0.9s ease 3.15s forwards;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; justify-items: center; }
  .hero-content { text-align: left; }
  .hero-fan { display: flex; justify-content: center; }
}
@media (max-width: 620px) {
  .hero-paras { grid-template-columns: 1fr; gap: 22px; }
}
.hero-3col > .hero-col { padding-top: 28px; }
.hero-col strong { font-weight: 700; color: var(--ink); }
.hero-3col {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: left;
}
.hero-brand-col { text-align: left; }
.hero-brand-col .hero-welcome { margin-bottom: 14px; text-align: left; }
.hero-brand-col .logo-lockup { padding-top: 0; margin-top: 0; }
.hero-brand-col .logo-script-wrap { padding-left: 0; }
.brand-ornament {
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease 3.6s forwards;
}
.hero-brand-col .logo-script { font-size: clamp(4.4rem, 9vw, 7.2rem); }
.hero-brand-col .logo-script-wrap { font-size: clamp(4.4rem, 9vw, 7.2rem); }
.hero-brand-col .logo-script-2 { font-size: clamp(2.7rem, 5.6vw, 4.4rem); }

@media (max-width: 880px) {
  .hero-3col { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-brand-col .logo-script { font-size: clamp(4rem, 12vw, 7rem); }
  .hero-brand-col .logo-script-wrap { font-size: clamp(4rem, 12vw, 7rem); }
  .hero-brand-col .logo-script-2 { font-size: clamp(2.5rem, 7.4vw, 4.3rem); }
}

.hero-strap-single {
  font-family: var(--serif-body);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.9s ease 3.3s forwards;
}
.hero-strap-single strong { font-weight: 700; }

.hero-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease 3.6s forwards;
}
.pillar {
  display: block;
  text-align: left;
  padding: 22px 22px 24px;
  background: var(--bg);
  border: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.pillar:hover {
  border-color: var(--sage-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(31,107,48,0.10);
}
.pillar h3 {
  font-family: var(--serif-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sage-deep);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.pillar p {
  font-family: var(--serif-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--mid);
}

.hero-divider {
  margin-top: 4px;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.9s ease 3.9s forwards;
}
.hero-seemore {
  font-family: var(--serif-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sage-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-seemore:hover { color: var(--ink); border-color: var(--sage-deep); }
@media (max-width: 720px) {
  .hero-twocol { grid-template-columns: 1fr; gap: 24px; margin-bottom: 28px; text-align: center; }
  .hero-pillars { grid-template-columns: 1fr; gap: 14px; }
}

.hero-ornament {
  opacity: 0;
  animation: fadeUp 0.9s ease 3.8s forwards;
}

.hero-cta {
  margin-top: 16px;
  opacity: 0;
  animation: fadeUp 0.9s ease 4.0s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── SECTIONS ─── */
section { padding: 72px 32px; }
.container { max-width: 720px; margin: 0 auto; }
.container-wide { max-width: 1120px; margin: 0 auto; }

hr.rule { border: none; border-top: 1px solid var(--rule); margin: 0; }

.section-label {
  font-family: var(--serif-body);
  font-size: 1.16rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 700;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 44px;
  height: 2px;
  background: var(--sage);
  flex: none;
}
.section-label::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--sage-deep);
  transform: rotate(45deg);
  flex: none;
  margin-left: -10px;
}

.section-heading {
  font-family: var(--serif-display);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.section-heading em {
  font-style: italic;
  font-weight: 600;
}

.lede {
  font-family: var(--serif-body);
  font-size: 1.32rem;
  line-height: 1.7;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 24px;
}
.lede:last-child { margin-bottom: 0; }
.lede strong { font-weight: 700; }
.lede.large {
  font-size: 1.3rem;
}

/* Drop cap on first letter of designated paragraph */
.drop-cap::first-letter {
  font-family: var(--serif-display);
  font-size: 4.5em;
  font-weight: 700;
  float: left;
  line-height: 0.85;
  padding: 0.1em 0.12em 0 0;
  color: var(--sage-deep);
}

/* ─── SERVICES SECTION ─── */
#services { background: var(--bg); }

.services-accordion {
  border-top: 1px solid var(--rule);
}
.svc {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.svc-head {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 4px;
}
.svc-icon {
  flex: none;
  width: 32px;
  height: 32px;
  color: var(--sage-deep);
  transition: transform 0.4s ease;
}
.svc-icon svg { width: 100%; height: 100%; display: block; }
.svc:hover .svc-icon { transform: rotate(-4deg) scale(1.05); }
.svc-title {
  flex: 1;
  font-family: var(--serif-display);
  font-size: 1.42rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.005em;
  transition: color 0.25s ease;
}
.svc:hover .svc-title { color: var(--sage-deep); }
.svc-toggle {
  flex: none;
  position: relative;
  width: 16px;
  height: 16px;
}
.svc-toggle::before, .svc-toggle::after {
  content: '';
  position: absolute;
  background: var(--sage-deep);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.svc-toggle::before { top: 7px; left: 0; width: 16px; height: 1.5px; }
.svc-toggle::after { left: 7px; top: 0; width: 1.5px; height: 16px; }
.svc[aria-expanded="true"] .svc-toggle::after { transform: scaleY(0); opacity: 0; }
.svc-desc {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.svc-desc > span {
  overflow: hidden;
  font-family: var(--serif-body);
  font-size: 1.16rem;
  line-height: 1.66;
  color: var(--mid);
  font-weight: 500;
  display: block;
}
.svc-lead { display: block; }
.svc-list {
  display: block;
  margin-top: 14px;
}
.svc-li {
  display: block;
  position: relative;
  padding-left: 26px;
  margin-bottom: 7px;
  color: var(--ink);
  font-weight: 500;
}
.svc-li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 0.62em;
  width: 7px;
  height: 7px;
  background: var(--sage);
  transform: rotate(45deg);
}
.svc-note {
  display: block;
  margin-top: 14px;
  font-size: 1.16rem;
  line-height: 1.66;
  color: var(--mid);
}
.svc[aria-expanded="true"] .svc-desc {
  grid-template-rows: 1fr;
}
.svc[aria-expanded="true"] .svc-desc > span {
  padding: 0 0 28px 54px;
}
@media (max-width: 880px) {
  .svc[aria-expanded="true"] .svc-desc > span { padding-left: 0; }
}

/* ─── ART-DECO DIVIDER ─── */
.deco-divider {
  display: flex;
  justify-content: center;
  padding: 8px 32px 0;
  background: var(--bg);
}
.deco-divider svg { opacity: 0.85; }


/* ─── CREDIBILITY ─── */
.hero-credibility {
  grid-column: 2 / 4;
  margin-top: 0;
  font-family: var(--serif-body);
  font-size: 1.02rem;
  line-height: 1.6;
  font-weight: 600;
  color: var(--mid);
}
@media (max-width: 880px) {
  .hero-credibility { grid-column: 1 / -1; margin-top: 8px; }
}

/* ─── FEATURED QUOTE ─── */
#featured-quote, #featured-quote-2 {
  background: var(--ink);
  color: var(--bg);
  padding: 56px 32px;
}
#featured-quote .container, #featured-quote-2 .container { max-width: 880px; text-align: center; }
.feature-quote {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.5;
  font-weight: 500;
  color: var(--bg);
  letter-spacing: -0.005em;
  margin-bottom: 22px;
  text-wrap: pretty;
  position: relative;
}
.feature-quote::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 0;
  color: var(--sage);
  vertical-align: -0.3em;
  margin-right: 5px;
}
.feature-attr {
  font-family: var(--serif-display);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9bc2a0;
  font-weight: 600;
}

/* ─── TESTIMONIALS ─── */
#testimonials { background: var(--sage-tint); padding: 64px 32px; }
#testimonials .section-label { color: var(--sage-deep); margin-bottom: 28px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 56px;
  max-width: 880px;
  margin: 28px auto 0;
}
.testimonial {
  position: relative;
  padding-top: 28px;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -14px;
  left: -6px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--sage);
  opacity: 0.55;
  font-weight: 700;
  font-style: normal;
  z-index: 1;
  pointer-events: none;
  display: block;
}
.testimonial blockquote {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.testimonial .attr {
  font-family: var(--serif-display);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
  line-height: 1.5;
}

/* ─── CTA ─── */
#cta {
  background: var(--ink);
  color: var(--bg);
  text-align: left;
  padding: 64px 32px;
}
#cta .section-heading {
  color: var(--bg);
  margin-bottom: 14px;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 500;
}
#cta .lede {
  color: rgba(246,243,236,0.82);
  max-width: 560px;
  margin: 0 0 32px 0;
  font-weight: 500;
  font-size: 1.16rem;
}
.cta-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-location {
  flex-basis: 100%;
  font-family: var(--serif-body);
  font-size: 1.02rem;
  font-weight: 500;
  color: rgba(246,243,236,0.62);
  margin-bottom: 8px;
}
.cta-email {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 1.25rem;
  color: #d4c98a;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,201,138,0.35);
  padding-bottom: 3px;
  transition: border-color 0.2s;
}
.cta-email:hover { border-bottom-color: #d4c98a; }
.cta-secondary {
  display: flex;
  gap: 24px;
  align-items: center;
}
.cta-secondary a {
  font-family: var(--serif-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,243,236,0.7);
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.cta-secondary a:hover { color: var(--bg); border-bottom-color: rgba(246,243,236,0.45); }

/* ─── ABOUT PAGE ─── */
#about-opener {
  padding: 200px 32px 96px;
  text-align: center;
}
.opener-label {
  font-family: var(--serif-display);
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
  margin-bottom: 32px;
}
.opener-heading {
  font-family: var(--serif-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.opener-heading em { font-style: italic; }
.opener-lede {
  font-family: var(--serif-body);
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--mid);
  max-width: 680px;
  margin: 0 auto;
}

#about {
  padding: 88px 32px 96px;
  background: var(--bg);
}
.bio-meta {
  font-family: var(--serif-display);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  margin-bottom: 56px;
}
.bio-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 18px rgba(26,25,24,0.08);
}
.bio-meta-text {
  text-align: left;
}
.bio-credibility {
  font-family: var(--serif-body);
  font-size: 1.24rem;
  line-height: 1.6;
  font-weight: 700;
  color: var(--ink);
  max-width: 920px;
  margin: 28px auto 40px;
}
.bio-name {
  font-family: var(--serif-display);
  font-size: 1.8rem;
  font-weight: 600;
  font-style: normal;
  color: var(--ink);
  margin-bottom: 6px;
}
.bio-role {
  font-family: var(--serif-display);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.bio-role::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--sage);
}

.bio-body {
  max-width: 920px;
  margin: 0;
  column-count: 2;
  column-gap: 56px;
  column-fill: balance;
  orphans: 2;
  widows: 2;
}
.bio-body p {
  font-family: var(--serif-body);
  font-size: 1.14rem;
  line-height: 1.66;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
  text-wrap: pretty;
}
.bio-body p:first-of-type::first-letter {
  font-family: var(--serif-display);
  font-size: 4em;
  font-weight: 700;
  float: left;
  line-height: 0.85;
  padding: 0.08em 0.12em 0 0;
  color: var(--sage-deep);
}
.bio-body strong { font-weight: 700; }
.bio-body p.col-break { break-before: column; }
.bio-signature {
  font-family: 'Great Vibes', cursive !important;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem) !important;
  font-weight: 400 !important;
  line-height: 1;
  color: var(--ink);
  column-span: all;
  margin: 14px 0 0;
  text-align: left;
  text-wrap: nowrap;
}
.bio-signature::first-letter { font-size: inherit; }
.bio-body .bio-ornament {
  column-span: all;
  margin: 16px 0;
  text-align: center;
  break-inside: avoid;
}
/* Stand-alone ornament between bio and testimonials */
section#about-bio > .container-wide > .bio-ornament {
  text-align: center;
  margin: 56px auto 0;
  max-width: 920px;
}
@media (max-width: 720px) {
  .bio-body { column-count: 1; }
}

.bio-ornament {
  display: flex;
  justify-content: center;
  margin: 56px 0;
}

/* ─── ABOUT PULL-QUOTE (art-deco frame) ─── */
.about-quote {
  position: relative;
  max-width: 820px;
  margin: 64px 0 0;
  padding: 48px 56px 44px;
  text-align: left;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.about-quote-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid var(--sage);
}
.about-quote-corner.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.about-quote-corner.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.about-quote-corner.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.about-quote-corner.br { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.about-quote blockquote {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-wrap: pretty;
  margin-bottom: 20px;
}
.about-quote blockquote::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 2.4rem;
  line-height: 0;
  color: var(--sage);
  vertical-align: -0.35em;
  margin-right: 6px;
}
.about-quote figcaption {
  font-family: var(--serif-display);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
}
@media (max-width: 720px) {
  .about-quote { padding: 40px 28px 36px; margin-top: 48px; }
}

/* ─── FOOTER ─── */
footer {
  padding: 56px 48px 40px;
  background: var(--bg);
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.footer-brand {
  font-family: var(--script);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.footer-copy {
  font-family: var(--serif-display);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft);
  font-weight: 500;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-family: var(--serif-display);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--sage-deep); }

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 880px) {
  nav { padding: 14px 20px; align-items: center; gap: 16px; }
  nav.scrolled { padding: 10px 20px; }
  .nav-brand { display: block; font-size: 1.15rem; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.64rem; letter-spacing: 0.12em; }
  #hero { padding-top: 92px; }
  section { padding: 64px 24px; }
  .services-intro { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
  .services-list { grid-template-columns: 1fr; }
  .service-entry, .service-entry:nth-child(2n) {
    padding: 24px 0 !important;
    border-left: none !important;
  }
  .testimonial-grid { grid-template-columns: 1fr; gap: 56px; }
  #about-opener { padding: 140px 24px 64px; }
  #about { padding: 56px 24px 64px; }
  .bio-meta { flex-direction: column; gap: 16px; }
  .bio-photo { width: 110px; height: 110px; }
  .bio-meta-text { text-align: center; }
  #cta { padding: 56px 24px; }
  .cta-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta-secondary { flex-direction: column; align-items: flex-start; gap: 14px; }
  footer { padding: 40px 24px 32px; }
}

@media (max-width: 380px) {
  .nav-brand { font-size: 1.02rem; }
  .nav-links { gap: 13px; }
  .nav-links a { font-size: 0.58rem; letter-spacing: 0.1em; }
}

/* ─── FONT PAIRING OPTIONS (preview switcher) ─── */
:root { --body-weight: 600; }
body { font-weight: var(--body-weight); }

/* Current — Playfair + Cormorant Garamond (delicate, editorial) */
html[data-type="current"] {
  --serif-display: 'Playfair Display', Georgia, serif;
  --serif-body: 'Cormorant Garamond', Georgia, serif;
  --body-weight: 600;
}
/* Editorial — Playfair headlines + Newsreader body (FT feel + whimsy) */
html[data-type="editorial"] {
  --serif-display: 'Playfair Display', Georgia, serif;
  --serif-body: 'Newsreader', Georgia, serif;
  --body-weight: 400;
}
/* Spectral — Playfair headlines + Spectral body (sturdier, warm) */
html[data-type="spectral"] {
  --serif-display: 'Playfair Display', Georgia, serif;
  --serif-body: 'Spectral', Georgia, serif;
  --body-weight: 400;
}
/* Sober FT — Source Serif throughout (most businesslike) */
html[data-type="sober"] {
  --serif-display: 'Source Serif 4', Georgia, serif;
  --serif-body: 'Source Serif 4', Georgia, serif;
  --body-weight: 400;
}

/* Lighten body copy that was bumped to compensate for thin Cormorant */
html:not([data-type="current"]) .hero-col,
html:not([data-type="current"]) .bio-credibility,
html:not([data-type="current"]) .lede { font-weight: 500; }
html:not([data-type="current"]) .services-intro,
html:not([data-type="current"]) .svc-lead,
html:not([data-type="current"]) .svc-li,
html:not([data-type="current"]) .bio-body p { font-weight: 400; }
html:not([data-type="current"]) body { font-size: 19px; }

/* ─── FONT SWITCHER PANEL ─── */
#font-switch {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 2000;
  background: rgba(255,253,250,0.97);
  border: 1px solid var(--rule);
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.16);
  padding: 14px 16px 16px;
  font-family: 'Newsreader', Georgia, serif;
  width: 232px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  backdrop-filter: blur(6px);
}
#font-switch h4 {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#font-switch .fs-h4-2 {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
#font-switch h4 button {
  background: none;
  border: none;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  color: var(--soft);
  padding: 0 2px;
}
#font-switch label {
  display: flex;
  align-items: baseline;
  gap: 9px;
  padding: 7px 8px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s ease;
}
#font-switch label:hover { background: var(--faint); }
#font-switch input { accent-color: var(--sage-deep); margin-top: 2px; }
#font-switch .fs-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
#font-switch .fs-desc {
  display: block;
  font-size: 0.74rem;
  color: var(--soft);
  letter-spacing: 0.01em;
}
#font-switch.hidden { display: none; }

/* ─── LOGO SCRIPT OPTIONS ─── */
/* Current — Great Vibes (flowing, most whimsical) */
html[data-logo="vibes"] { --script: 'Great Vibes', cursive; }

/* Refined — Pinyon Script (elegant copperplate, light touch down) */
html[data-logo="pinyon"] { --script: 'Pinyon Script', cursive; }
html[data-logo="pinyon"] .logo-script-wrap { font-size: clamp(5.2rem, 13.5vw, 10.5rem); }
html[data-logo="pinyon"] .logo-script-2 { font-size: clamp(3.1rem, 7.9vw, 6.1rem); margin-top: -0.08em; }

/* Allura — flowing, slightly more refined than Great Vibes */
html[data-logo="allura"] { --script: 'Allura', cursive; }
html[data-logo="allura"] .logo-script-wrap { font-size: clamp(5.3rem, 13.6vw, 10.6rem); }
html[data-logo="allura"] .logo-script-2 { font-size: clamp(3.2rem, 8vw, 6.2rem); margin-top: -0.06em; }

/* Italianno — tall, elegant flourish */
html[data-logo="italianno"] { --script: 'Italianno', cursive; }
html[data-logo="italianno"] .logo-script-wrap { font-size: clamp(6rem, 15vw, 11.8rem); }
html[data-logo="italianno"] .logo-script-2 { font-size: clamp(3.6rem, 8.9vw, 6.9rem); margin-top: -0.04em; }

/* Tangerine — classic pointed calligraphy */
html[data-logo="tangerine"] { --script: 'Tangerine', cursive; }
html[data-logo="tangerine"] .logo-script { font-weight: 700; }
html[data-logo="tangerine"] .logo-script-wrap { font-size: clamp(6.8rem, 17.5vw, 13.5rem); }
html[data-logo="tangerine"] .logo-script-2 { font-weight: 700; font-size: clamp(4.1rem, 10.3vw, 7.9rem); margin-top: -0.14em; }

/* Alex Brush — brush calligraphy */
html[data-logo="alexbrush"] { --script: 'Alex Brush', cursive; }
html[data-logo="alexbrush"] .logo-script-wrap { font-size: clamp(5.1rem, 13.2vw, 10.2rem); }
html[data-logo="alexbrush"] .logo-script-2 { font-size: clamp(3.1rem, 7.8vw, 6.05rem); margin-top: -0.07em; }

/* Editorial — Playfair masthead (New Yorker / deco feel, not cursive) */
html[data-logo="editorial"] { --script: 'Playfair Display', Georgia, serif; }
html[data-logo="editorial"] .logo-script-wrap {
  font-size: clamp(3rem, 7vw, 5rem);
  padding: 0.12em 0.4em 0.26em 0;
}
html[data-logo="editorial"] .logo-script {
  font-weight: 600;
  letter-spacing: 0.004em;
}
html[data-logo="editorial"] .logo-script-2 {
  font-family: var(--serif-display);
  font-size: clamp(0.64rem, 1.5vw, 0.96rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.5em;
  padding-left: 0.12em;
  line-height: 1;
}
