/* The Magical Story of Us — static recreation of the live Showit site */
:root {
  --green: #395F1C;
  --blue: #2972AE;
  --blue-deep: #0D5EA0;
  --gold: #E2C08D;
  --gray: #EEEEEE;
  --footer: #333333;
  --black: #000000;
  --ink: #111111;
  --muted: #333333;
  --white: #ffffff;
  --nav-h: 80px;
  --max: 1200px;
  --content: 1040px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: "Source Sans 3", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

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

/* ---------- Announcement ---------- */
.announce {
  display: none !important;
  width: 100%;
  box-sizing: border-box;
  background: #333333;
  color: var(--gray);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  padding: 11px 16px 10px;
  line-height: 1.3;
}
.announce a { color: var(--gray); }
.announce .gold { color: var(--gold); }

/* ---------- Sticky nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000;
  color: var(--gray);
  overflow: visible;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  min-height: var(--nav-h);
  gap: 16px;
  position: relative;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  flex-shrink: 0;
}
.brand-sigil {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin: 4px 0 -28px;
  position: relative;
  z-index: 2;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.08; padding-top: 10px; }
.brand-name {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f2f2f2;
}
.brand-sub {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f2f2f2;
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #555;
  margin: 0;
}
.eyebrow.center { text-align: center; }
.rule {
  height: 2px;
  background: var(--green);
  border: 0;
  margin: 12px 0 18px;
  width: 100%;
}
.rule.short { max-width: 270px; }
.rule.center { margin-left: auto; margin-right: auto; }

.title {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--blue);
  margin: 0 0 0.4em;
}
.title.center { text-align: center; }
.title i, .title em { font-style: italic; }
.title-caps {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(24px, 6.4vw, 64px);
  line-height: 1.15;
  padding: 0 16px;
  max-width: 100%;
  box-sizing: border-box;
}

.lede-green {
  font-family: "Source Serif 4", Georgia, serif;
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--green);
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.lede-green b, .lede-green strong { font-weight: 600; font-style: italic; }

.body-copy {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: #222;
}
.body-copy p { margin: 0 0 1.1em; }
.body-copy p:last-child { margin-bottom: 0; }
.body-copy b, .body-copy strong { font-weight: 600; }
.body-copy i, .body-copy em { font-style: italic; }

.section {
  padding: 56px 0 64px;
}
.section.gray { background: var(--gray); }
.section.white { background: var(--white); }
.section.tight { padding: 48px 0; }
.section.quote-band {
  background: var(--white);
  padding: 36px 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 28px;
  border-radius: 5px;
  border: 0;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.btn-solid {
  background: #111;
  color: #fff;
}
.btn-solid:hover { background: var(--blue); color: #fff; }
.btn-outline {
  background: transparent;
  color: #000;
  border: 2px solid #000;
  border-radius: 10px;
}
.btn-outline:hover { background: var(--blue-deep); color: #fff; border-color: transparent; }

/* ---------- Hero slideshow ---------- */
.hero {
  background: #fff;
  padding: 0;
}
.hero-frame {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  height: 448px;
}
.hero-slides {
  position: absolute;
  inset: 0 56px;
  overflow: hidden;
}
.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-slides img.is-active { opacity: 1; }
.hero-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 80px;
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-btn svg { width: 28px; height: 28px; fill: currentColor; }
.hero-prev { left: 8px; }
.hero-next { right: 8px; }
.hero-btn:hover { color: var(--blue); }

/* ---------- Home intro split ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 56px;
  align-items: start;
  max-width: var(--content);
  margin: 0 auto;
}
.split img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 58%;
}
.split-copy { padding-top: 8px; }
.split-copy .title { font-size: clamp(36px, 4.4vw, 54px); letter-spacing: 0; color: var(--blue); }

/* ---------- Healing copy ---------- */
.prose-center {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}
.section-head {
  text-align: center;
  margin-bottom: 28px;
}
.section-head .eyebrow { margin-bottom: 0; }

/* ---------- Quote banner with sand ---------- */
.quote-banner {
  background: #cbb48a url("../assets/sands.jpg") center 40%/cover no-repeat;
  padding: 56px 24px 52px;
  text-align: center;
}
.quote-banner h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.28;
  color: #1a1a1a;
  max-width: 940px;
  margin: 0 auto;
  text-shadow: 0 0 12px rgba(255,255,255,0.95), 0 1px 0 rgba(255,255,255,0.8);
  letter-spacing: 0.01em;
}

/* ---------- Work cards ---------- */
.work-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}
.work-head .eyebrow { letter-spacing: 0.26em; }
.work-head .rule { flex: 1; max-width: 270px; margin: 0; }
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.card-label {
  display: block;
  color: var(--green);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.card-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #ddd;
}
.card-media img {
  width: 100%;
  height: 278px;
  object-fit: cover;
}
.card-bar {
  background: #ececec;
  padding: 16px 8px 14px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #555;
  border-radius: 0 0 8px 8px;
}
.card-desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.45;
  color: #444;
  margin: 16px 8px 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--footer);
  color: #eee;
  padding: 36px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  align-items: center;
}
.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
}
.footer-nav a:hover { color: var(--gold); }
.footer-col-mid {
  text-align: center;
  border-left: 1px solid var(--green);
  border-right: 1px solid var(--green);
  padding: 8px 28px;
}
.footer-col-mid h3 {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #eee;
  margin: 0 0 10px;
}
.footer-col-mid p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
  color: #ddd;
  margin: 0 0 14px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.ml-wrap { max-width: 480px; margin: 0 auto; min-height: 54px; }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
}
.footer-social a {
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social svg { width: 28px; height: 28px; fill: currentColor; }
.footer-social a:hover { color: var(--gold); }

.subfoot {
  background: var(--gray);
  padding: 28px 24px;
}
.subfoot-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  font-size: 16px;
  color: #222;
  font-weight: 300;
}
.subfoot-grid p { margin: 0; line-height: 1.45; }
.subfoot-grid .c { text-align: center; }
.subfoot-grid .r { text-align: right; }

/* ---------- Our Story ---------- */
.story-hero-copy { max-width: 1000px; margin: 0 auto; }
.story-top {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 28px;
}
.story-top img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 20%;
}
.trio {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  gap: 32px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.trio img {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center 30%;
}
.checklist {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}
.story-kicker {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  color: var(--muted);
  margin: 0 0 18px;
}

/* ---------- Offerings rows ---------- */
.offer-row {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto 52px;
}
.offer-row img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
}
.offer-row h3 {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 4px;
}
.offer-row .with {
  color: var(--green);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.offer-row p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  margin: 0 0 16px;
  color: #222;
}

/* ---------- Astrology ---------- */
.astro-hero {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  min-height: 560px;
  background: #c9a882 url("../assets/astro-hero.jpg") center 22%/cover no-repeat;
  display: flex;
  align-items: stretch;
}
.astro-hero-inner {
  width: 100%;
  padding: 40px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
}
.astro-kicker {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #2a2a2a;
  line-height: 1.7;
  max-width: 260px;
  margin: 8px 0 0 12px;
}
.astro-hero h1 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: 1.08;
  color: #fff;
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 2px 22px rgba(0,0,0,0.28);
  max-width: 860px;
}
.astro-hero .sub {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(24px, 2.8vw, 34px);
  color: #111;
  margin: 12px auto 0;
  text-align: center;
  font-weight: 400;
}
.testimonials {
  background: #1a1a1a url("../assets/astrology-wheel.png") center/cover no-repeat;
  color: #ececec;
  padding: 72px 24px 80px;
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
}
.testimonials .inner { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; }
.testimonials h2 {
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0 0 36px;
}
.t-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.t-card { text-align: center; }
.t-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 3px solid rgba(255,255,255,0.35);
}
.t-card p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  margin: 0 0 12px;
}
.t-card .who { font-weight: 600; font-size: 15px; }

.astro-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 44%);
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--gray);
}
.astro-split .copy {
  padding: 44px 40px 48px clamp(24px, 7vw, 72px);
  max-width: 640px;
  margin-left: auto;
}
.astro-split .copy .eyebrow {
  font-size: 14px;
  letter-spacing: 0.22em;
  margin-bottom: 16px;
}
.astro-split .pic {
  position: relative;
  min-height: 0;
  overflow: hidden;
}
.astro-split .pic img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.astro-split ul { margin: 0.8em 0 0; padding-left: 1.2em; }
.astro-split li { margin-bottom: 0.5em; font-size: 16px; font-weight: 300; line-height: 1.45; }

.reading {
  position: relative;
  padding: 80px 20px;
  background-size: cover;
  background-position: center;
}
.reading-natal { background-image: url("../assets/astro-wheel-1.jpg"); background-color: #111; }
.reading-solar { background-image: url("../assets/solar-return-bg.jpg"); background-color: #c47a1a; }
.reading-moon { background-image: url("../assets/moon-phases.jpg"); background-color: #000; }
.reading-mirror { background-image: url("../assets/sacred-flame.jpg"); background-color: #12081c; }
.reading-card {
  background: rgba(245,245,245,0.94);
  max-width: 520px;
  margin: 0 auto;
  padding: 42px 40px 36px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.18);
}
.reading-solar .reading-card { background: rgba(255,248,230,0.94); }
.reading-card h2 {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #222;
  margin: 0 0 10px;
}
.reading-card .tag {
  font-family: "Source Serif 4", serif;
  font-style: italic;
  font-size: 18px;
  color: #444;
  margin: 0 0 8px;
}
.reading-card .price {
  font-family: "Source Serif 4", serif;
  font-size: 48px;
  color: var(--blue);
  margin: 8px 0 18px;
}
.reading-card ul {
  text-align: left;
  margin: 0 0 16px;
  padding-left: 1.2em;
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: #333;
}
.reading-card li { margin-bottom: 8px; }
.reading-card .mins {
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 18px;
}

/* ---------- Blog ---------- */
.blog-cats {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 28px 0 40px;
}
.blog-cats a {
  border: 2px solid var(--green);
  padding: 12px 28px;
  min-width: 180px;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}
.blog-card img { width: 100%; height: 280px; object-fit: cover; }
.blog-card .meta {
  background: var(--gray);
  padding: 22px 16px 28px;
  text-align: center;
}
.blog-card .cat {
  color: var(--green);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.blog-card h3 {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
  color: #333;
  line-height: 1.4;
}
.post { max-width: 640px; margin: 0 auto; padding: 48px 20px 80px; }
.post .cat {
  color: var(--green);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 14px;
  text-align: center;
  font-weight: 400;
}
.post h1 { text-align: center; margin: 10px 0 28px; }
.post .body-copy p { margin-bottom: 1.3em; }
.comments {
  margin-top: 48px;
  font-size: 16px;
  color: #555;
}

/* ---------- 404 ---------- */
.page-404 {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: var(--gray);
}
.page-404 h1 {
  font-family: "Source Serif 4", serif;
  font-weight: 400;
  font-size: 48px;
  color: var(--blue);
  margin: 0 0 8px;
}
.page-404 a { color: var(--blue); text-decoration: underline; }

/* ---------- Subscribe strip (our story) ---------- */
.subscribe-strip {
  background: #fff;
  padding: 48px 24px 40px;
  text-align: center;
}
.subscribe-strip h2 {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  max-width: 720px;
  margin: 0 auto 24px;
  color: #333;
  line-height: 1.6;
}
.cta-center { text-align: center; margin-top: 28px; }

/* ---------- Tablet: hamburger before the desktop nav clips ---------- */
@media (max-width: 1100px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: #000;
    flex-direction: column;
    align-items: center;
    padding: 12px 0 24px;
    gap: 0;
    z-index: 20;
  }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
  }
  .nav.is-open .nav-links { display: flex; }
  .brand-name { font-size: 15px; letter-spacing: 0.18em; }
  .brand-sub { font-size: 12px; letter-spacing: 0.16em; }
}

/* ---------- Phone / small tablet: stack columns ---------- */
@media (max-width: 960px) {
  .brand-sigil { width: 64px; height: 64px; margin: 4px 0 -12px; }
  .hero-frame { height: 240px; }
  .hero-slides { inset: 0 36px; }
  .split, .story-top, .trio, .offer-row, .astro-split, .cards-3, .blog-grid, .t-grid, .footer-grid, .subfoot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .split img {
    height: auto;
    max-height: 420px;
    object-position: center 55%;
  }
  .footer-col-mid { border: 0; border-top: 1px solid var(--green); border-bottom: 1px solid var(--green); padding: 24px 0; }
  .footer-nav a { display: inline-block; padding: 10px 0; }
  .subfoot-grid .c, .subfoot-grid .r { text-align: left; }
  .astro-hero { min-height: 420px; background-image: url("../assets/astro-hero-mobile.jpg"); background-position: center top; }
  .astro-hero-inner { padding: 28px 20px 36px; min-height: 400px; }
  .astro-hero h1 { font-size: clamp(32px, 10vw, 48px); }
  .astro-hero .sub { font-size: clamp(18px, 5vw, 24px); }
  .astro-split .pic { height: 420px; }
  .astro-split .pic img { position: absolute; }
  .astro-split .copy { padding: 32px 20px 40px; max-width: none; }
  .reading-card { padding: 28px 20px; }
  .card-media img, .blog-card img, .offer-row img { height: 220px; }
  .announce { font-size: 11px; letter-spacing: 0.1em; padding: 10px 12px; }
  .section { padding: 40px 0; }
  .work-head { flex-wrap: wrap; gap: 10px 16px; }
  .work-head .rule { max-width: 120px; }
  .title-caps { letter-spacing: 0.03em; font-size: clamp(22px, 6.6vw, 36px); }
  .lede-green { font-size: clamp(18px, 4.6vw, 24px); letter-spacing: 0.03em; padding: 0 12px; }
  .quote-banner h2 { font-size: clamp(22px, 6vw, 32px); padding: 0 12px; }
  .wrap { padding: 0 18px; }
}

.ml-embedded, .ml-embedded form { width: 100%; }
