:root {
  --navy: #022b60;
  --navy-deep: #041c3f;
  --navy-mid: #0a3b7d;
  --paper: #f6efe0;
  --paper-dim: #ece0c8;
  --gold: #c9a84c;
  --gold-light: #e2c583;
  --gold-deep: #8f6d24;
  --oxblood: #7a2331;
  --oxblood-light: #9c3040;
  --crimson: #bf2b33;
  --crimson-light: #e73c44;
  --charcoal: #17130f;
  --ink: #201c16;
  --ink-soft: #55503f;
  --white: #ffffff;
  --ivory: #f6efe0;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* subtle paper-grain texture for large ivory areas — CSS-only, no image asset */
.grain { position: relative; }
.grain::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* signature motif: thin gold diagonal cut, used sparingly */
.diagonal-cut { position: relative; }
.diagonal-cut::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: -1px; width: 3px;
  background: var(--gold); transform: skewX(-8deg); pointer-events: none;
}

/* ---------- nav ---------- */
.site-nav {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.05rem 1.75rem;
}
.nav-word {
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600;
  color: var(--white); text-decoration: none; letter-spacing: 0.01em;
}
.nav-word span { color: var(--gold-light); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-support {
  background: var(--oxblood); color: var(--ivory) !important;
  padding: 0.55rem 1.15rem; border-radius: 2px; font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-support:hover { background: var(--oxblood-light); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ''; display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.2s;
}

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center;
  min-height: 82vh;
}
.hero-inner { max-width: 620px; padding: 6.5rem 1.75rem 5.5rem 3.5rem; margin-left: auto; position: relative; z-index: 2; }
.hero-photo {
  position: relative; height: 100%; min-height: 460px; overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
  filter: brightness(0.92) contrast(1.05);
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 28%);
}
.hero-photo::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 26%; width: 3px; z-index: 3;
  background: var(--gold); transform: skewX(-9deg); opacity: 0.85; pointer-events: none;
}
.eyebrow {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.6rem;
}
.hero-line {
  font-family: var(--font-serif); font-weight: 500; font-size: clamp(2.3rem, 5.2vw, 3.6rem);
  line-height: 1.14; color: var(--white); letter-spacing: 0.002em;
}
.hero-line em { font-style: italic; color: var(--gold-light); font-weight: 500; }
.hero-sub {
  font-size: 1.08rem; color: rgba(255,255,255,0.78); max-width: 560px;
  margin: 1.75rem 0 2.5rem; font-weight: 300; line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-block; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
  text-decoration: none; padding: 0.85rem 1.75rem; border-radius: 2px; transition: all 0.2s;
}
.btn-gold { background: var(--oxblood); color: var(--ivory); }
.btn-gold:hover { background: var(--oxblood-light); transform: translateY(-1px); }
.btn-outline { border: 1px solid rgba(255,255,255,0.4); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-large { padding: 1.05rem 2.4rem; font-size: 0.92rem; }

.thread {
  position: absolute; right: -10%; top: 15%; width: 60%; height: 70%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.09) 0%, transparent 70%);
  pointer-events: none;
}

/* ---------- intro ---------- */
.intro { padding: 5.5rem 1.75rem; }
.intro-inner {
  max-width: 1080px; margin: 0 auto; display: grid;
  grid-template-columns: 0.85fr 1.15fr; gap: 4rem; align-items: center;
}
.intro-photo img { border-radius: 3px; box-shadow: 0 18px 40px rgba(2,43,96,0.18); }
.intro-lede {
  font-family: var(--font-serif); font-size: 1.75rem; font-weight: 600;
  color: var(--oxblood); line-height: 1.4; margin-bottom: 1.25rem;
}
.intro-text p { color: var(--ink-soft); margin-bottom: 1.1rem; font-size: 1rem; }
.intro-question {
  font-family: var(--font-serif); font-weight: 600; font-size: 1.5rem; color: var(--navy);
  margin: 1.25rem 0 1.5rem; padding-left: 1.1rem; border-left: 3px solid var(--gold);
}
.text-link {
  color: var(--oxblood); font-weight: 600; text-decoration: none; font-size: 0.92rem;
  border-bottom: 1px solid transparent; transition: border-color 0.2s;
}
.text-link:hover { border-color: var(--oxblood); }

/* ---------- pillars ---------- */
.pillars { background: var(--paper-dim); padding: 4.5rem 1.75rem; }
.pillars-inner { max-width: 1080px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); text-align: center; margin-bottom: 2.5rem;
}
.pillars-row { display: flex; align-items: flex-start; justify-content: center; flex-wrap: wrap; }
.pillar { text-align: center; max-width: 190px; padding: 0 0.5rem; }
.pillar h3 {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem;
}
.pillar p { font-size: 0.88rem; color: var(--ink-soft); }
.pillar-thread { width: 3.5rem; height: 1px; background: var(--gold); margin-top: 1.1rem; align-self: flex-start; }

/* ---------- pull quote ---------- */
.pull-quote { background: var(--navy-deep); padding: 5.5rem 1.75rem; position: relative; overflow: hidden; }
.pull-quote::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 8%; width: 4px;
  background: var(--gold); transform: skewX(-9deg); opacity: 0.6; pointer-events: none;
}
.pull-quote-inner { max-width: 780px; margin: 0 auto; }
.pull-quote-inner p {
  font-family: var(--font-serif); font-weight: 500; font-style: italic; color: var(--white);
  font-size: clamp(1.5rem, 3.2vw, 2.1rem); line-height: 1.45; text-align: center;
}

/* ---------- selected work ---------- */
.selected-work { padding: 5.5rem 1.75rem; }
.sw-inner { max-width: 1080px; margin: 0 auto; }
.sw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.sw-card {
  text-decoration: none; color: inherit; background: var(--white);
  border-radius: 4px; overflow: hidden; box-shadow: 0 4px 18px rgba(2,43,96,0.07);
  transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column;
}
.sw-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(2,43,96,0.14); }
.sw-card img { aspect-ratio: 1 / 1; width: 100%; height: auto; object-fit: cover; object-position: center 18%; }
.sw-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.sw-card-body h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--navy); margin-bottom: 0.6rem; }
.sw-card-body p { font-size: 0.9rem; color: var(--ink-soft); flex: 1; margin-bottom: 1rem; }
.sw-link { font-size: 0.8rem; font-weight: 700; color: var(--oxblood); letter-spacing: 0.02em; text-decoration: none; }
.sw-book-links { display: flex; gap: 1.25rem; margin-top: auto; }
.sw-card-book { cursor: default; }
.sw-card-book:hover { transform: none; box-shadow: 0 4px 18px rgba(2,43,96,0.07); }
.sw-card-editorial {
  background: var(--navy); position: relative; padding: 1.75rem; justify-content: space-between;
  overflow: hidden;
}
.sw-card-editorial::before {
  content: ''; position: absolute; top: 0; right: 18%; bottom: 0; width: 3px;
  background: var(--gold); transform: skewX(-9deg); opacity: 0.5; pointer-events: none;
}
.sw-card-editorial-inner { position: relative; z-index: 2; }
.sw-editorial-eyebrow {
  display: block; font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600;
  color: var(--white); margin-bottom: 1rem;
}
.sw-card-editorial p { color: rgba(255,255,255,0.72); font-size: 0.92rem; margin-bottom: 1.5rem; }
.sw-card-editorial .sw-link { color: var(--gold-light); position: relative; z-index: 2; }
.sw-card-editorial:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(2,43,96,0.3); }

/* ---------- cta band ---------- */
.cta-band { background: var(--navy); padding: 5rem 1.75rem; text-align: center; }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem;
}
.cta-band h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.7rem, 3.4vw, 2.3rem); color: var(--white); line-height: 1.3; margin-bottom: 1.1rem; }
.cta-sub { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 2.1rem; line-height: 1.6; }

/* ---------- social strip (ported from campaign site, same visual structure) ---------- */
.social-strip { background: var(--navy-deep); border-top: 1px solid rgba(201,168,76,0.18); border-bottom: 1px solid rgba(201,168,76,0.18); padding: 1rem 1.75rem; }
.social-strip-inner { max-width: 1180px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem; }
.social-strip-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-right: 0.5rem; white-space: nowrap; }
.sbtn {
  display: inline-flex; align-items: center; gap: 0.35rem; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12); color: var(--white); font-size: 0.75rem; font-weight: 600;
  text-decoration: none; padding: 0.4rem 0.8rem; border-radius: 2px; white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.sbtn:hover { border-color: rgba(201,168,76,0.5); color: var(--gold-light); }

/* ---------- footer ---------- */
.site-footer { background: var(--charcoal); }
.site-footer .footer-inner { padding: 3.5rem 1.75rem 2.5rem; }
.site-footer .footer-bottom { padding: 0 1.75rem 1.5rem; }
.footer-inner {
  max-width: 1080px; margin: 0 auto; display: grid;
  grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-word { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--white); text-decoration: none; }
.footer-word span { color: var(--gold-light); }
.footer-tag { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-top: 0.6rem; }
.footer-heading { color: rgba(255,255,255,0.9); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.9rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { max-width: 1080px; margin: 0 auto; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.78rem; }
.footer-bottom p a { color: rgba(255,255,255,0.6); }
.footer-benediction {
  font-family: var(--font-serif); font-style: italic; font-size: 1.15rem !important;
  color: rgba(255,255,255,0.55) !important; margin-top: 1.75rem !important; letter-spacing: 0.01em;
}

/* ---------- page header (about / writing / speaking / support) ---------- */
.page-hero { background: var(--navy); padding: 4rem 1.75rem 3.5rem; text-align: center; }
.page-hero h1 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2rem, 4.5vw, 2.9rem); color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 560px; margin: 1rem auto 0; font-size: 1.02rem; }

/* ---------- generic content sections ---------- */
.content { max-width: 760px; margin: 0 auto; padding: 4.5rem 1.75rem; }
.content h2 { font-family: var(--font-serif); font-size: 1.9rem; color: var(--navy); font-weight: 600; margin: 2.5rem 0 1rem; }
.content h2:first-child { margin-top: 0; }
.content p { color: var(--ink-soft); margin-bottom: 1.1rem; font-size: 1.02rem; }
.content p.lede { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 600; color: var(--oxblood); line-height: 1.45; margin-bottom: 1.5rem; }
.content em, .intro-text em { font-style: italic; color: var(--oxblood); }
.hero-sub em, .cta-sub em { font-style: italic; color: var(--crimson-light); }
.lede strong, .intro-lede strong { color: var(--oxblood); }
.pillar-thread.accent { background: var(--oxblood); }
.about-photo { margin: 1.5rem 0; border-radius: 3px; overflow: hidden; box-shadow: 0 12px 32px rgba(2,43,96,0.15); }
.about-photo img { width: 100%; max-height: 420px; object-fit: cover; object-position: center 25%; }
.content blockquote {
  font-family: var(--font-serif); font-style: italic; font-size: 1.35rem; color: var(--navy);
  border-left: 3px solid var(--gold); padding: 0.2rem 0 0.2rem 1.5rem; margin: 2rem 0; line-height: 1.5;
}

/* ---------- writing feed ---------- */
.writing-feed { padding: 1rem 1.75rem 5rem; }
.writing-feed-inner { max-width: 1080px; margin: 0 auto; }
.feed-fallback { text-align: center; padding: 3rem 1rem; color: var(--ink-soft); font-size: 1rem; }
.feed-fallback a { color: var(--oxblood); font-weight: 600; }
.featured-post-link {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
  text-decoration: none; color: inherit; background: var(--white); border-radius: 3px;
  overflow: hidden; box-shadow: 0 4px 18px rgba(2,43,96,0.07);
}
.featured-post-link img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; }
.featured-post-body { padding: 2rem 2.5rem 2rem 0; }
.featured-post-body h3 { font-family: var(--font-serif); font-size: 1.7rem; color: var(--navy); margin-bottom: 0.5rem; }
.feed-date { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-deep); margin-bottom: 0.75rem !important; }
.featured-post-body p { color: var(--ink-soft); margin-bottom: 0.75rem; }
.feed-typo-card {
  background: var(--navy); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: italic; color: var(--gold-light); font-size: 1.4rem;
}
.feed-typo-card.small { aspect-ratio: 3/2; font-size: 1rem; }
.latest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 1.75rem; }
.latest-post {
  text-decoration: none; color: inherit; background: var(--white); border-radius: 3px;
  overflow: hidden; box-shadow: 0 4px 18px rgba(2,43,96,0.07); display: block;
}
.latest-post img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.latest-post-body { padding: 1.25rem; }
.latest-post-body h4 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--navy); margin-bottom: 0.4rem; line-height: 1.3; }
.latest-post-body p { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 0.6rem; }

.inquiry-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 2rem; border-top: 1px solid var(--paper-dim); }
.inquiry-item { padding: 1.5rem 1.5rem 1.5rem 0; border-bottom: 1px solid var(--paper-dim); }
.inquiry-item:nth-child(odd) { border-right: 1px solid var(--paper-dim); padding-right: 1.5rem; }
.inquiry-item:nth-child(even) { padding-left: 1.5rem; }
.inquiry-item h3 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--navy); margin-bottom: 0.4rem; }
.inquiry-item p { font-size: 0.9rem; margin-bottom: 0; }

/* ---------- alternating page-rhythm bands (About) ---------- */
.about-band { padding: 5rem 1.75rem; }
.about-band.bg-ivory { background: var(--paper); }
.about-band.bg-navy { background: var(--navy); color: rgba(255,255,255,0.82); }
.about-band.bg-navy h2 { color: var(--white); }
.about-band.bg-navy p { color: rgba(255,255,255,0.78); }
.about-band.bg-navy .text-link { color: var(--gold-light); }
.about-band.bg-navy .text-link:hover { border-color: var(--gold-light); }
.about-band.bg-charcoal { background: var(--charcoal); color: rgba(255,255,255,0.82); }
.about-band.bg-charcoal h2 { color: var(--white); }
.about-band.bg-charcoal p { color: rgba(255,255,255,0.78); }
.about-band-inner { max-width: 760px; margin: 0 auto; }
.about-alt {
  max-width: 1080px; margin: 0 auto; display: grid;
  grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: center;
}
.about-alt.reverse { grid-template-columns: 1.1fr 0.9fr; }
.about-alt.reverse .about-alt-media { order: 2; }
.about-alt-media img { border-radius: 3px; }
.about-alt-media.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.about-alt-media.two-up img { aspect-ratio: 3/4; object-fit: cover; height: 100%; }
.about-alt-text h2 { margin-top: 0; }
.about-benediction-band { background: var(--navy-deep); padding: 6rem 1.75rem; text-align: center; }
.about-benediction-band p {
  font-family: var(--font-serif); font-style: italic; font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  color: var(--white); max-width: 640px; margin: 0 auto; line-height: 1.6;
}

/* ---------- projects & practice list (Ideas page) ---------- */
.project-list { margin-top: 2.5rem; }
.project-item {
  display: grid; grid-template-columns: 1fr 2.2fr; gap: 2rem; padding: 2.25rem 0;
  border-top: 1px solid var(--paper-dim);
}
.project-item:last-child { border-bottom: 1px solid var(--paper-dim); }
.project-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); line-height: 1.6; }
.project-body h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--navy); margin-bottom: 0.6rem; }
.project-body p { color: var(--ink-soft); margin-bottom: 0.75rem; }
.project-links a { color: var(--oxblood); font-weight: 700; font-size: 0.85rem; text-decoration: none; margin-right: 1.25rem; }

/* ---------- tiers (support page) ---------- */
.tiers { padding: 5rem 1.75rem; }
.tiers-inner { max-width: 1080px; margin: 0 auto; }
.tiers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.tier {
  background: var(--white); border-radius: 4px; padding: 2rem 1.5rem;
  box-shadow: 0 4px 18px rgba(2,43,96,0.07); text-align: center; display: flex; flex-direction: column;
}
.tier-price { font-family: var(--font-serif); font-size: 2.1rem; font-weight: 600; color: var(--navy); }
.tier-price span { font-size: 0.95rem; font-weight: 400; color: var(--ink-soft); }
.tier-name { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin: 0.5rem 0 1.1rem; }
.tier p { font-size: 0.88rem; color: var(--ink-soft); flex: 1; margin-bottom: 1.3rem; }
.tier.featured { border: 1px solid var(--gold); position: relative; }
.tier-badge {
  position: absolute; top: -0.7rem; left: 50%; transform: translateX(-50%);
  background: var(--oxblood); color: var(--white); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 2px;
}
.tier-btn {
  display: block; text-align: center; text-decoration: none; padding: 0.65rem 1rem;
  border-radius: 2px; font-size: 0.82rem; font-weight: 700; background: var(--oxblood); color: var(--ivory);
  transition: background 0.2s;
}
.tier-btn:hover { background: var(--oxblood-light); }
.tier.featured .tier-btn { background: var(--oxblood); }
.tier.featured .tier-btn:hover { background: var(--oxblood-light); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-inner { margin-left: 0; padding: 5rem 1.75rem 2.5rem; max-width: 100%; }
  .hero-photo { min-height: 320px; order: -1; }
  .hero-photo::after { background: linear-gradient(to bottom, var(--navy) 0%, transparent 25%); }
  .intro-inner { grid-template-columns: 1fr; gap: 2rem; }
  .sw-grid { grid-template-columns: repeat(2, 1fr); }
  .tiers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .about-alt { grid-template-columns: 1fr !important; }
  .featured-post-link { grid-template-columns: 1fr; }
  .featured-post-body { padding: 1.5rem; }
  .latest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sw-grid { grid-template-columns: 1fr; }
  .social-strip-inner { justify-content: center; }
  .latest-grid { grid-template-columns: 1fr; }
  .inquiry-list { grid-template-columns: 1fr; }
  .inquiry-item:nth-child(odd) { border-right: none; padding-right: 0; }
  .inquiry-item:nth-child(even) { padding-left: 0; }
  .about-alt-media.two-up { grid-template-columns: 1fr; }
  .project-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .nav-links { position: fixed; top: 64px; left: 0; right: 0; background: var(--navy); flex-direction: column;
    align-items: flex-start; padding: 1.5rem 1.75rem; gap: 1.25rem; transform: translateY(-8px); opacity: 0;
    pointer-events: none; transition: 0.2s; border-bottom: 1px solid rgba(201,168,76,0.25); }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: block; }
  .pillars-row { flex-direction: column; align-items: center; gap: 1.75rem; }
  .pillar-thread { display: none; }
  .tiers-grid { grid-template-columns: 1fr; }
}

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
