:root {
  --paper: #fff;
  --ivory: #f3f5f8;
  --ink: #15283f;
  --ink-soft: #485363;
  --celestial: #0d1b2e;
  --copper: #987644;
  --accent: #315d82;
  --line: #dce2e9;
  --white: #fff;
  --shadow: 0 20px 60px rgb(23 34 53 / 10%);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shell: min(1240px, calc(100% - 48px));
  --header-height: 132px;
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body { margin: 0; overflow-wrap: break-word; background: var(--paper); color: var(--ink); font: 400 1rem/1.68 var(--sans); text-rendering: optimizeLegibility; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
button, input, textarea, select { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--copper); outline-offset: 4px; }
[hidden] { display: none !important; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 10000; padding: .65rem 1rem; transform: translateY(-150%); background: var(--ink); color: var(--white); }
.skip-link:focus { transform: none; }
.shell { width: var(--shell); margin-inline: auto; }
.shell-wide { width: min(1440px, 100%); margin-inline: auto; }
.shell-narrow { width: min(760px, calc(100% - 48px)); margin-inline: auto; }
.section-space { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.eyebrow { margin: 0 0 .75rem; color: var(--accent); font-size: .72rem; font-weight: 750; letter-spacing: .14em; line-height: 1.3; text-transform: uppercase; }
.eyebrow a { text-decoration: none; }
.eyebrow--light { color: #efd6c7; }
:where(h1, h2, h3) { margin-block: 0; font-family: var(--serif); font-weight: 500; line-height: 1.12; letter-spacing: -.025em; text-wrap: balance; }
:where(h1) { font-size: clamp(2.2rem, 4vw, 3.5rem); }
:where(h2) { font-size: clamp(1.8rem, 3vw, 2.6rem); }
:where(h3) { font-size: clamp(1.3rem, 2vw, 1.65rem); }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: .75rem 1.35rem; border: 1px solid var(--ink); border-radius: 0; background: var(--ink); color: var(--white); font-size: .78rem; font-weight: 750; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; transition: background-color .2s ease, color .2s ease, transform .2s ease; cursor: pointer; }
.button:hover { background: var(--celestial); transform: translateY(-2px); }
.button--small { min-height: 40px; padding-inline: 1rem; font-size: .7rem; }
.button--light { border-color: var(--paper); background: var(--paper); color: var(--ink); }
.button--light:hover { background: transparent; color: var(--paper); }
.text-link { display: inline-flex; align-items: center; gap: .6rem; color: var(--accent); font-size: .77rem; font-weight: 750; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(.3rem); }
.text-link--light { color: var(--white); }

/* Header */
.site-header { position: relative; z-index: 100; border-bottom: 1px solid var(--line); background: rgb(255 255 255 / 96%); }
.site-header__bar { position: relative; display: grid; min-height: 82px; grid-template-columns: 1fr auto 1fr; align-items: center; }
.site-brand { grid-column: 2; }
.custom-logo-link, .brand-wordmark { display: block; color: var(--ink); font: italic 700 1.4rem/1 var(--serif); text-decoration: none; }
.custom-logo { width: auto; max-height: 68px; }
.menu-toggle { display: none; width: 44px; height: 44px; grid-column: 1; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-toggle__lines, .menu-toggle__lines::before, .menu-toggle__lines::after { display: block; width: 22px; height: 1.5px; background: currentColor; transition: transform .2s ease; content: ''; }
.menu-toggle__lines::before { transform: translateY(-6px); }
.menu-toggle__lines::after { transform: translateY(4.5px); }
.header-tools { display: flex; grid-column: 1; justify-self: start; gap: .3rem; }
.header-tool { position: relative; display: grid; width: 42px; height: 42px; place-items: center; color: var(--accent); text-decoration: none; transition: color .2s ease; }
.header-tool svg { width: 22px; height: 22px; }
.header-tool:hover, .header-tool[aria-current='page'] { color: var(--celestial); }
.header-tool__tooltip { position: absolute; top: calc(100% + .35rem); left: 50%; z-index: 5; width: max-content; max-width: 190px; padding: .42rem .65rem; transform: translate(-50%, -.25rem); border: 1px solid var(--line); background: var(--paper); color: var(--ink); box-shadow: 0 8px 24px rgb(13 27 46 / 12%); font-size: .7rem; line-height: 1.25; pointer-events: none; opacity: 0; transition: transform .18s ease, opacity .18s ease; }
.header-tool:hover .header-tool__tooltip, .header-tool:focus-visible .header-tool__tooltip { transform: translate(-50%, 0); opacity: 1; }
.header-actions { display: flex; grid-column: 3; justify-self: end; gap: .25rem; }
.header-action { position: relative; display: grid; width: 42px; height: 42px; place-items: center; border: 0; background: transparent; color: var(--ink); cursor: pointer; }
.header-action svg { width: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.8; }
.header-action__tooltip { right: auto; left: 50%; }
.header-action--account:hover .header-action__tooltip, .header-action--account:focus-visible .header-action__tooltip { transform: translate(-50%, 0); opacity: 1; }
.primary-nav { border-top: 1px solid var(--line); }
.primary-nav__inner { display: flex; min-height: 50px; align-items: center; justify-content: center; gap: 2rem; }
.primary-nav ul { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.25rem); padding: 0; margin: 0; list-style: none; }
.primary-nav li { position: relative; }
.primary-nav__future { position: relative; white-space: nowrap; }
.primary-nav__future[aria-current="page"] { color: var(--accent); }
.primary-nav__mobile-tools { display: none; }
.primary-nav__map-cta { min-height: 38px; padding-inline: .9rem; white-space: nowrap; }
.future-invitation { position: relative; isolation: isolate; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; margin-block: 1.5rem 3rem; }
.future-invitation::before { position: absolute; z-index: -1; inset-block: 0; left: 50%; width: 100vw; transform: translateX(-50%); background: linear-gradient(90deg, #071525 0 50%, #edf3f8 50%); content: ''; }
.future-invitation__media { position: relative; min-width: 0; background: #071525; }
.future-invitation__media::after { position: absolute; inset: 0 auto 0 0; width: min(32%, 230px); background: linear-gradient(90deg, #071525, transparent); content: ''; pointer-events: none; }
.future-invitation__media img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; object-position: right center; }
.future-invitation__copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; min-width: 0; padding: clamp(1.25rem, 2.4vw, 2rem); background: #edf3f8; }
.future-invitation__copy h2 { max-width: 20ch; font-size: clamp(1.75rem, 2.35vw, 2.2rem); }
.future-invitation__copy > p:not(.eyebrow) { max-width: 54ch; margin-block: .65rem; color: var(--ink-soft); }
.future-invitation__copy .button { gap: .65rem; }
.future-invitation__benefit { display: flex; align-items: flex-start; gap: .65rem; font-size: .88rem; }
.future-invitation__benefit svg { flex: 0 0 22px; margin-top: .15rem; color: var(--accent); }
.future-invitation__benefit a { color: var(--accent); white-space: normal; }
.future-invitation__copy small { display: block; max-width: 55ch; margin-top: .65rem; color: var(--ink-soft); font-size: .77rem; }
@media (max-width: 700px) {
  .future-invitation { grid-template-columns: 1fr; }
  .future-invitation::before { background: #edf3f8; }
  .future-invitation__media::before { position: absolute; z-index: -1; inset-block: 0; left: 50%; width: 100vw; transform: translateX(-50%); background: #071525; content: ''; }
  .future-invitation__media img { height: clamp(180px, 48vw, 260px); min-height: 0; object-position: center; }
}
.primary-nav a:not(.button) { font-size: .72rem; font-weight: 730; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.primary-nav a:not(.button)::after { position: absolute; right: 0; bottom: -.42rem; left: 0; height: 1px; transform: scaleX(0); background: var(--accent); content: ''; transition: transform .2s ease; }
.primary-nav a:hover::after, .primary-nav .current-menu-item > a::after { transform: scaleX(1); }
.primary-nav .sub-menu { position: absolute; top: calc(100% + 1rem); left: -.75rem; display: none; width: 220px; padding: .75rem; background: var(--paper); box-shadow: var(--shadow); }
.primary-nav li:hover > .sub-menu, .primary-nav li:focus-within > .sub-menu { display: grid; }
.site-search { padding-block: 1rem; border-top: 1px solid var(--line); background: var(--ivory); }
.search-form { display: flex; max-width: 680px; margin-inline: auto; }
.search-form label { flex: 1; }
.search-field { width: 100%; height: 48px; padding: 0 1rem; border: 1px solid var(--line); background: var(--paper); }
.search-submit { min-width: 110px; border: 0; background: var(--ink); color: var(--white); font-size: .75rem; font-weight: 700; text-transform: uppercase; }

/* Temporary redesign announcement. */
.site-announcement { position: relative; z-index: 102; background: #071525; color: #fff; }
.site-announcement__inner { display: grid; min-height: 38px; grid-template-columns: 1fr auto; align-items: center; gap: 1rem; }
.site-announcement a { justify-self: center; color: inherit; font-size: .76rem; letter-spacing: .015em; text-align: center; text-decoration: none; }
.site-announcement a > span { margin-left: .45rem; color: rgb(255 255 255 / 76%); }
.site-announcement a:hover > span { color: #fff; text-decoration: underline; }
.site-announcement button { display: grid; width: 32px; height: 32px; place-items: center; padding: 0; border: 0; background: transparent; color: inherit; font-size: 1.2rem; cursor: pointer; }
.site-announcement.is-closing { overflow: hidden; animation: announcement-close .22s ease forwards; }

/* Editorial guide to the redesigned site. Screenshots appear only as feature evidence. */
.new-site-hero { position: relative; display: flex; min-height: min(690px, calc(100svh - 132px)); align-items: end; overflow: hidden; background: #071525; color: #fff; }
.new-site-hero__image, .new-site-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.new-site-hero__image { object-fit: cover; object-position: center 58%; transform: scale(1.025); animation: new-site-hero-image 1.1s ease both; }
.new-site-hero__shade { background: linear-gradient(90deg, rgb(6 18 34 / 98%) 0%, rgb(6 18 34 / 92%) 36%, rgb(6 18 34 / 25%) 76%), linear-gradient(0deg, rgb(6 18 34 / 82%), transparent 70%); }
.new-site-hero__inner { position: relative; padding-block: clamp(4rem, 9vw, 7rem); }
.new-site-hero__inner > * { max-width: 680px; animation: new-site-hero-copy .75s ease both; }
.new-site-hero__inner > :nth-child(2) { animation-delay: .08s; }
.new-site-hero__inner > :nth-child(3) { animation-delay: .16s; }
.new-site-hero__inner > :nth-child(4) { animation-delay: .24s; }
.new-site-hero h1 { max-width: 13ch; color: #fff; font-size: clamp(3rem, 6vw, 5.6rem); }
.new-site-hero p:not(.eyebrow) { margin-block: 1.35rem 2rem; color: rgb(255 255 255 / 82%); font-size: clamp(1rem, 1.6vw, 1.2rem); }
.new-site-intro { padding-block: clamp(4.5rem, 9vw, 8rem); text-align: center; }
.new-site-intro h2 { max-width: 19ch; margin-inline: auto; font-size: clamp(2.4rem, 5vw, 4.4rem); }
.new-site-intro > p:last-child { max-width: 66ch; margin: 1.5rem auto 0; color: var(--ink-soft); }
.new-site-feature { padding-block: clamp(3.5rem, 7vw, 6.5rem); overflow: hidden; }
.new-site-feature--light { background: #edf3f8; }
.new-site-feature--dark { background: #071525; color: #fff; }
.new-site-feature__inner { display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(300px, .72fr); align-items: center; gap: clamp(2.5rem, 7vw, 7.5rem); }
.new-site-feature__inner--reverse { grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); }
.new-site-feature__inner--reverse .new-site-feature__media { grid-column: 2; }
.new-site-feature__inner--reverse .new-site-feature__copy { grid-column: 1; grid-row: 1; }
.new-site-feature__media { margin: 0; overflow: hidden; border: 1px solid rgb(21 40 63 / 16%); box-shadow: 0 28px 70px rgb(9 24 43 / 16%); }
.new-site-feature__media img { width: 100%; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.new-site-feature__media:hover img { transform: scale(1.018); }
.new-site-feature__copy h2 { max-width: 19ch; font-size: clamp(2.2rem, 3.5vw, 3.4rem); }
.new-site-feature__copy > p:not(.eyebrow) { max-width: 50ch; margin-block: 1.35rem 1.8rem; color: var(--ink-soft); }
.new-site-feature--dark .new-site-feature__copy > p:not(.eyebrow) { color: rgb(255 255 255 / 72%); }
.new-site-feature__links { display: flex; flex-wrap: wrap; gap: 1rem 1.75rem; }
.new-site-finale { padding-block: clamp(5rem, 10vw, 8rem); background: #102b48; color: #fff; text-align: center; }
.new-site-finale h2 { max-width: 21ch; margin: 0 auto 2rem; color: #fff; font-size: clamp(2.3rem, 4.7vw, 4.2rem); }
.new-site-page [data-reveal] { transform: none; opacity: 1; transition: none; }
.new-site-page [data-reveal].is-revealed { transform: none; opacity: 1; }
@keyframes new-site-hero-image { from { transform: scale(1.07); opacity: .7; } }
@keyframes new-site-hero-copy { from { transform: translateY(18px); opacity: 0; } }
@keyframes announcement-close { to { min-height: 0; height: 0; opacity: 0; } }

/* Front page */
.home-hero { position: relative; min-height: 470px; overflow: hidden; background: var(--celestial); color: var(--white); }
.home-hero__media, .home-hero__shade { position: absolute; inset: 0; }
.home-hero__media img, .home-hero__media .editorial-placeholder { width: 100%; height: 100%; object-fit: cover; }
.home-hero__shade { background: linear-gradient(90deg, rgb(11 24 30 / 85%) 0%, rgb(11 24 30 / 55%) 46%, rgb(11 24 30 / 10%) 78%), linear-gradient(0deg, rgb(11 24 30 / 48%), transparent 50%); }
.home-hero__content { position: relative; display: flex; min-height: inherit; align-items: end; padding-block: 3.5rem; }
.home-hero__copy { max-width: 740px; }
.home-hero h1 { max-width: 25ch; font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.08; }
.home-hero h1 a { text-decoration: none; }
.home-hero__copy > p { max-width: 620px; margin: 1.5rem 0; color: rgb(255 255 255 / 86%); font-size: clamp(1rem, 1.5vw, 1.2rem); }
.tool-ribbon { position: relative; z-index: 3; display: grid; margin-top: -2rem; grid-template-columns: repeat(4, 1fr); background: var(--paper); box-shadow: var(--shadow); }
.tool-ribbon a { position: relative; display: grid; min-height: 120px; align-content: center; padding: 1.4rem; border-right: 1px solid var(--line); text-decoration: none; transition: color .2s ease, background .2s ease; }
.tool-ribbon a:last-child { border: 0; }
.tool-ribbon a:hover { background: var(--celestial); color: var(--white); }
.tool-ribbon span { position: absolute; top: .7rem; right: .8rem; color: var(--copper); font: 1.25rem var(--sans); }
.tool-ribbon strong { font: 500 1.55rem/1.1 var(--serif); }
.tool-ribbon small { margin-top: .45rem; color: var(--ink-soft); }
.tool-ribbon a:hover small { color: rgb(255 255 255 / 75%); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 1.25rem; margin-bottom: 2rem; }
.home-latest__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }
.story { display: grid; border-top: 1px solid var(--line); }
.story--lead { grid-row: span 4; padding-right: clamp(1.5rem, 4vw, 4rem); border-top: 0; border-right: 1px solid var(--line); }
.story--lead .story__media { aspect-ratio: 16 / 10; }
.story--lead .story__body { padding-top: 1.5rem; }
.story--lead h3 { font-size: clamp(1.8rem, 2.6vw, 2.2rem); }
.story--compact { grid-template-columns: 100px minmax(0, 1fr); gap: 1.15rem; padding: 1rem 0 1rem clamp(1rem, 3vw, 2rem); }
.story--compact h3 { font-size: 1.4rem; line-height: 1.2; }
.story__media { display: block; overflow: hidden; background: var(--ivory); }
.story__media img, .story__media .editorial-placeholder { width: 100%; height: 100%; object-fit: cover; }

.story--compact .story__media { aspect-ratio: 1; }
.story h3 a { text-decoration: none; }
.story p { color: var(--ink-soft); }
.story time { display: block; margin-top: .7rem; color: var(--ink-soft); font-size: .76rem; }
.constellation-band, .article-cta { position: relative; overflow: hidden; background: var(--celestial); color: var(--white); }
.constellation-band::before, .article-cta::before { position: absolute; inset: -20% -5% auto auto; width: 50vw; aspect-ratio: 1; border: 1px solid rgb(255 255 255 / 12%); border-radius: 50%; content: ''; box-shadow: 0 0 0 80px rgb(255 255 255 / 3%), 0 0 0 160px rgb(255 255 255 / 2%); }
.constellation-band__inner { position: relative; padding-block: clamp(3rem, 6vw, 5rem); }
.constellation-band h2 { max-width: 16ch; }
.constellation-band p:not(.eyebrow) { max-width: 590px; margin: 1.5rem 0 2.25rem; color: rgb(255 255 255 / 76%); }
.editorial-section { display: grid; grid-template-columns: minmax(180px, .3fr) minmax(0, .7fr); gap: 4rem; padding-block: 3rem; border-top: 1px solid var(--line); }
.editorial-section > header { display: flex; flex-direction: column; align-items: start; justify-content: space-between; }
.editorial-section__posts article { display: grid; grid-template-columns: 180px 1fr; gap: 1.5rem; padding-block: 1rem; border-top: 1px solid var(--line); }
.editorial-section__posts article:first-child { padding-top: 0; border: 0; }
.editorial-section__image { aspect-ratio: 16 / 10; overflow: hidden; background: var(--ivory); }
.editorial-section__image img, .editorial-section__image .editorial-placeholder { width: 100%; height: 100%; object-fit: cover; }
.editorial-section h3 a { text-decoration: none; }

/* Archives */
.archive-layout, .page-shell, .contact-page { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.archive-header { max-width: 850px; margin-bottom: 2rem; }
.archive-header h1 { max-width: 25ch; }
.topic-nav { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; padding-block: 1rem; margin-bottom: 1.5rem; border-block: 1px solid var(--line); font-size: .85rem; }
.topic-nav a { padding-block: .4rem; text-decoration: none; }
.topic-nav a[aria-current] { color: var(--accent); text-decoration: underline; }
.archive-header > p, .archive-description { max-width: 650px; color: var(--ink-soft); font-size: 1.1rem; }
.archive-header .search-form { margin: 2rem 0 0; }
.post-list { border-bottom: 1px solid var(--line); }
.post-card { display: grid; grid-template-columns: minmax(220px, .42fr) minmax(0, .58fr); gap: clamp(2rem, 5vw, 5rem); padding-block: clamp(2rem, 4vw, 3.5rem); border-top: 1px solid var(--line); }
.post-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--ivory); }
.post-card__media img, .post-card__media .editorial-placeholder { width: 100%; height: 100%; object-fit: cover; }

.post-card__body { align-self: center; }
.post-card__title a { text-decoration: none; }
.post-card__body > p { color: var(--ink-soft); }
.post-meta { display: flex; flex-wrap: wrap; gap: .6rem; color: var(--ink-soft); font-size: .75rem; }
.navigation.pagination { margin-top: 3rem; }
.nav-links { display: flex; flex-wrap: wrap; gap: .5rem; }
.page-numbers { display: grid; min-width: 42px; height: 42px; place-items: center; padding-inline: .7rem; border: 1px solid var(--line); text-decoration: none; }
.page-numbers.current, a.page-numbers:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.empty-state, .not-found { max-width: 760px; padding-block: clamp(6rem, 15vw, 12rem); }
.empty-state p, .not-found p { color: var(--ink-soft); font-size: 1.1rem; }
.not-found__actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; }

/* Article */
.article-header { max-width: 980px; padding-block: 2.25rem 1.75rem; text-align: center; }
.article-header h1 { margin-inline: auto; font-size: clamp(2rem, 3.5vw, 3.25rem); }
.breadcrumbs { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 1rem; color: var(--ink-soft); font-size: .72rem; }
.breadcrumbs a { text-decoration: none; }
.article-deck { max-width: 760px; margin: 1rem auto 0; color: var(--ink-soft); font: 400 clamp(1.05rem, 1.5vw, 1.2rem)/1.5 var(--sans); }
.article-byline { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .5rem 1rem; margin-top: 1rem; color: var(--ink-soft); font-size: .75rem; }
.article-byline img { border-radius: 50%; }
.article-hero { width: min(980px, calc(100% - 48px)); margin-block: 0 2rem; }
.article-hero img { width: 100%; height: 300px; object-fit: cover; }
.article-hero figcaption { padding: .75rem 1rem 0; color: var(--ink-soft); font-size: .75rem; text-align: center; }
.article-content { width: min(760px, calc(100% - 48px)); margin-inline: auto; }
.prose { color: #263244; }
.prose > * { max-width: 100%; }
.prose p, .prose li { font-size: clamp(1.05rem, 1.4vw, 1.17rem); line-height: 1.82; }
.prose h2 { margin: 2rem 0 .75rem; font-size: clamp(1.6rem, 2.5vw, 2rem); line-height: 1.2; }
.prose h3 { margin: 1.75rem 0 .6rem; line-height: 1.25; }
.prose blockquote { margin: 2.5rem 0; padding: .75rem 0 .75rem 2rem; border-left: 2px solid var(--accent); color: var(--celestial); font: italic 1.5rem/1.5 var(--serif); }
.prose figure { margin: 2rem 0; text-align: center; }
.prose figcaption { color: var(--ink-soft); font-size: .75rem; }
.prose a { color: var(--accent); }
.updated-note { color: var(--ink-soft); font-style: italic; }
.article-footer { padding-block: 4rem; }
.article-tags { display: flex; flex-wrap: wrap; gap: .65rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
.article-tags a { color: var(--accent); }
.article-author { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; padding-top: 2.5rem; }
.article-author img { border-radius: 50%; }
.article-author h2 { font-size: 1.8rem; }
.article-author p:last-child { color: var(--ink-soft); }
.article-cta { padding-block: clamp(3rem, 6vw, 4.5rem); text-align: center; }
.article-cta h2 { position: relative; margin: 0 auto 2rem; }
.related-posts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.related-posts .post-card { display: block; padding: 0; border: 0; }
.related-posts .post-card__media { margin-bottom: 1.25rem; }
.related-posts .post-card__body > p { display: none; }

/* Comments */
.comments-area { border-top: 1px solid var(--line); }
.comments-area > h2, .comment-reply-title { margin-bottom: 2rem; font-size: 2.25rem; }
.comment-list { padding: 0; margin: 0 0 4rem; list-style: none; }
.comment-list .children { padding-left: 3.5rem; list-style: none; }
.comment-body { position: relative; padding: 2rem 0; border-top: 1px solid var(--line); }
.comment-meta { display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; }
.comment-author img { border-radius: 50%; }
.comment-metadata { grid-column: 2; color: var(--ink-soft); font-size: .72rem; }
.comment-content, .reply { margin-left: 64px; }
.reply a { color: var(--accent); font-size: .75rem; font-weight: 700; }
.comment-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; }
.comment-form-comment, .comment-notes, .logged-in-as, .comment-form-cookies-consent, .form-submit { grid-column: 1 / -1; }
.comment-form label, .contact-form label, .newsletter-band form > label:not(.check-label) { display: block; margin-bottom: .4rem; font-size: .78rem; font-weight: 700; }
.comment-form input:not([type='checkbox'], [type='submit'], [type='hidden']), .comment-form textarea, .contact-form input:not([type='hidden']), .contact-form textarea, .newsletter-band input:not([type='checkbox'], [type='hidden']) { width: 100%; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: .3rem; background: var(--paper); }
.comment-form textarea, .contact-form textarea { resize: vertical; }

/* Pages */
.entry-page__header { margin-bottom: 3rem; }
.entry-page__header h1 { max-width: 13ch; }
.plugin-host { min-height: 50vh; }
.plugin-host > .tddr-sky-page { width: 100%; max-width: none; margin-inline: 0; }
.plugin-host > :first-child { margin-top: 0; }
.horoscope-hero { padding-block: clamp(2.5rem, 5vw, 4rem); background: var(--celestial); color: var(--white); }
.horoscope-hero h1 { max-width: 10ch; }
.horoscope-hero p:last-child { max-width: 570px; color: rgb(255 255 255 / 75%); font-size: 1.15rem; }
.signs__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.signs__grid a { display: grid; min-width: 0; min-height: 96px; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: .65rem; padding: 1.1rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; transition: color .2s ease, background .2s ease; }
.signs__grid a:hover { background: var(--celestial); color: var(--white); }
.signs__grid span { color: var(--copper); font: 1.8rem var(--sans); }
.signs__grid strong { font: 500 1.6rem var(--serif); }
.signs__grid em { font-style: normal; }
.newsletter-band { padding-block: clamp(1.75rem, 3vw, 2.5rem); border-block: 1px solid var(--line); background: #eef3f9; color: var(--ink); }
.newsletter-band__inner { display: grid; grid-template-columns: minmax(200px, 37fr) minmax(0, 63fr); align-items: center; gap: 2rem; }
.newsletter-band h2 { max-width: 20ch; font-size: clamp(1.65rem, 2.5vw, 2rem); }
.newsletter-band .eyebrow { margin-bottom: .5rem; }
.newsletter-band form { min-width: 0; }
.newsletter-band .hp-field { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.newsletter-band__fields { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr) auto; align-items: end; gap: .75rem; }
.newsletter-band__fields label { min-width: 0; font-size: .78rem; font-weight: 650; }
.newsletter-band__fields .button { min-height: 48px; white-space: nowrap; }
.newsletter-band .newsletter-feedback { margin-bottom: 0; font-size: .85rem; }

.newsletter-band form input:not([type='checkbox'], [type='hidden']) { display: block; height: 48px; margin-top: .35rem; padding: .6rem .75rem; border-color: #b9c8d8; background: #fff; color: var(--ink); }

.newsletter-band .check-label { display: flex; gap: .6rem; align-items: start; margin-top: .8rem; font-size: .75rem; line-height: 1.5; }
.newsletter-band .check-label input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: .15rem; accent-color: var(--accent); }
.newsletter-band .check-label a { text-decoration: underline; }
.contact-page { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem, 8vw, 9rem); }
.contact-intro { position: sticky; top: 2rem; align-self: start; }
.contact-intro p:last-child, .contact-aside { color: var(--ink-soft); }
.contact-layout { display: flex; flex-direction: column-reverse; gap: 2rem; }
.contact-form { display: grid; gap: .7rem; }
.contact-form input, .contact-form textarea { margin-bottom: .9rem; }
.contact-form .button { justify-self: start; }
.form-message { padding: 1rem; margin-bottom: 1.5rem; border-left: 3px solid var(--accent); background: var(--ivory); }
.form-message--success { border-color: var(--celestial); }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Footer and utilities */
.site-footer { padding-top: clamp(4rem, 8vw, 7rem); background: #101b2b; color: var(--white); }
.site-footer__main { display: grid; grid-template-columns: 1.4fr 1fr .6fr; gap: 4rem; padding-bottom: 4rem; }
.site-footer .custom-logo-link { display: inline-block; padding: .75rem 1rem; border-radius: .35rem; background: #fff; }
.site-footer .custom-logo { max-width: 180px; max-height: 72px; }
.site-footer .brand-wordmark { color: var(--white); }
.site-footer__brand p { max-width: 390px; color: rgb(255 255 255 / 62%); }
.site-social-links { margin-top: 1.15rem; }
.site-social-links ul { display: flex; flex-wrap: wrap; gap: .55rem; }
.site-social-links a { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgb(255 255 255 / 24%); border-radius: 50%; color: rgb(255 255 255 / 76%); transition: border-color .2s ease, color .2s ease, transform .2s ease; }
.site-social-links svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.55; }
.site-social-links__fill { fill: currentColor; stroke: none; }
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .site-social-links a:hover { transform: translateY(-2px); border-color: currentColor; color: var(--white); }
}
.site-footer ul { padding: 0; margin: 0; list-style: none; }
.site-footer li, .site-footer__actions a { margin-bottom: .65rem; }
.site-footer a { text-decoration: none; }
.footer-nav .menu { columns: 2; }
.site-footer__actions { display: flex; flex-direction: column; }
.site-footer__legal { display: flex; justify-content: space-between; padding-block: 1.25rem; border-top: 1px solid rgb(255 255 255 / 14%); color: rgb(255 255 255 / 50%); font-size: .7rem; }
.site-footer__runtime-versions { margin-inline-start: .35rem; color: inherit; font-size: .9em; font-weight: 400; white-space: nowrap; }
.editorial-placeholder { display: block; min-height: 100%; background: radial-gradient(circle at 70% 25%, rgb(185 121 80 / 25%), transparent 22%), linear-gradient(145deg, #244941, #101b2b); }
.whatsapp-link { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90; display: grid; width: 54px; height: 54px; place-items: center; transform: translateY(1rem); border-radius: 50%; background: #1c9d56; color: #fff; box-shadow: 0 8px 28px rgb(10 45 28 / 25%); opacity: 0; transition: opacity .25s ease, transform .25s ease; }
.whatsapp-link.is-visible { transform: none; opacity: 1; }
.whatsapp-link svg { width: 30px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }

@media (max-width: 900px) {
  :root { --header-height: 76px; }
  .site-header__bar { min-height: 76px; }
  .custom-logo { max-height: 58px; }
  .site-brand .brand-wordmark { max-width: 180px; font-size: 1.1rem; }
  .header-tools { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .has-js .primary-nav { position: fixed; inset: 76px 0 auto; max-height: calc(100svh - 76px); overflow-y: auto; visibility: hidden; transform: translateY(-120%); border-top: 0; background: var(--paper); opacity: 0; transition: transform .25s ease, opacity .25s ease; }
  .admin-bar .primary-nav { inset-block-start: 122px; }
  .menu-open { overflow: hidden; }
  .has-js.menu-open .primary-nav { visibility: visible; transform: none; opacity: 1; }
  .menu-open .menu-toggle__lines { background: transparent; }
  .menu-open .menu-toggle__lines::before { transform: translateY(1px) rotate(45deg); }
  .menu-open .menu-toggle__lines::after { transform: translateY(-.5px) rotate(-45deg); }
  .primary-nav__inner { display: grid; align-content: start; justify-content: stretch; padding-block: 2rem; }
  .primary-nav ul { display: grid; gap: 0; }
  .primary-nav li { border-bottom: 1px solid var(--line); }
  .primary-nav a:not(.button) { display: block; padding: 1rem 0; font-family: var(--serif); font-size: 1.65rem; font-weight: 500; letter-spacing: 0; text-transform: none; }
  .primary-nav a:not(.button)::after { display: none; }
  .primary-nav .sub-menu { position: static; display: grid; width: auto; padding: 0 0 1rem 1rem; box-shadow: none; }
  .primary-nav__mobile-tools { display: grid; border-bottom: 1px solid var(--line); }
  .primary-nav__mobile-tools a { position: relative; border-top: 1px solid var(--line); }
  .primary-nav__map-cta { width: 100%; min-height: 50px; margin-top: .35rem; }
  .tool-ribbon { grid-template-columns: 1fr 1fr; }
  .tool-ribbon a:nth-child(2) { border-right: 0; }
  .tool-ribbon a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .home-latest__grid { grid-template-columns: 1fr; }
  .story--lead { grid-row: auto; padding: 0 0 2rem; border-right: 0; }
  .story--compact { padding-left: 0; }
  .editorial-section { grid-template-columns: 1fr; gap: 2rem; }
  .editorial-section > header { flex-direction: row; align-items: end; }
  .related-posts__grid { grid-template-columns: 1fr 1fr; }
  .related-posts__grid article:last-child { display: none; }
  .newsletter-band__inner, .contact-page { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-intro { position: static; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 32px); }
  .admin-bar .primary-nav { inset-block-start: calc(76px + 46px); }
  :where(h1) { font-size: 2.2rem; }
  .shell-narrow, .article-content { width: calc(100% - 32px); }
  .home-hero { min-height: 410px; }
  .home-hero__shade { background: linear-gradient(0deg, rgb(11 24 30 / 88%) 0%, rgb(11 24 30 / 44%) 70%, transparent); }
  .home-hero__content { padding-block: 2.5rem; }
  .home-hero h1 { font-size: clamp(2rem, 8.5vw, 2.5rem); }
  .home-hero__copy > p { margin: 1rem 0; font-size: .95rem; }
  .tool-ribbon { width: 100%; margin: 0; box-shadow: none; }
  .tool-ribbon a { min-height: 114px; padding: 1rem; }
  .tool-ribbon strong { font-size: 1.3rem; }
  .section-heading { align-items: start; flex-direction: column; }
	.new-site-hero { min-height: 610px; }
	.new-site-feature__inner, .new-site-feature__inner--reverse { grid-template-columns: 1fr; gap: 2rem; }
	.new-site-feature__inner--reverse .new-site-feature__media, .new-site-feature__inner--reverse .new-site-feature__copy { grid-column: 1; }
	.new-site-feature__inner--reverse .new-site-feature__media { grid-row: 1; }
	.new-site-feature__inner--reverse .new-site-feature__copy { grid-row: 2; }
  .story--compact { grid-template-columns: 105px 1fr; gap: 1rem; }
  .story--compact h3 { font-size: 1.25rem; }
  .editorial-section__posts article { grid-template-columns: 110px 1fr; gap: 1rem; }
  .post-card { grid-template-columns: 1fr; gap: 1.25rem; }
  .post-card__body > p { display: none; }
  .article-header { text-align: left; }
  .article-header h1 { font-size: 2rem; }
  .article-hero { width: calc(100% - 32px); margin-bottom: 1.5rem; }
  .article-hero img { height: 180px; }
  .article-header h1, .article-deck { margin-inline: 0; }
  .breadcrumbs, .article-byline { justify-content: start; }
  .article-byline > span:first-child { display: none; }
  .prose figure { margin-inline: 0; }
  .related-posts__grid { grid-template-columns: 1fr; }
  .related-posts__grid article:nth-child(n+3) { display: none; }
  .comment-list .children { padding-left: 1rem; }
  .comment-content, .reply { margin-left: 0; }
  .comment-form { grid-template-columns: 1fr; }
  .comment-form-author, .comment-form-email { grid-column: 1 / -1; }
  .signs__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .signs__grid a { min-height: 82px; padding: .7rem; gap: .4rem; }
  .signs__grid strong { font-size: 1.08rem; }
  .signs__grid span { font-size: 1.4rem; }
  .signs__grid em { display: none; }
  .newsletter-band__fields, .contact-layout { grid-template-columns: 1fr; }
  .newsletter-band__fields .button { justify-self: start; }
  .newsletter-band form > label:not(.check-label), .newsletter-band form input:not([type='checkbox']) { grid-row: auto; }
  .site-footer__main { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer__legal { flex-direction: column; gap: .3rem; }
  .not-found__actions { align-items: stretch; flex-direction: column; }
  .not-found__actions .search-form { width: 100%; }
  .whatsapp-link { right: .75rem; bottom: calc(.75rem + env(safe-area-inset-bottom, 0px)); width: 46px; height: 46px; }
  .whatsapp-link svg { width: 25px; }
}

@media (max-width: 600px) {
	.site-announcement__inner { width: calc(100% - 24px); min-height: 48px; gap: .4rem; }
	.site-announcement a { padding-block: .45rem; font-size: .7rem; line-height: 1.35; text-align: left; }
	.site-announcement a > span { display: block; margin-left: 0; }
	.new-site-hero { min-height: 540px; }
	.new-site-hero__shade { background: linear-gradient(0deg, rgb(6 18 34 / 96%) 0%, rgb(6 18 34 / 76%) 62%, rgb(6 18 34 / 30%)); }
	.new-site-hero h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
	.new-site-intro { text-align: left; }
	.new-site-feature__copy h2 { font-size: clamp(2rem, 10vw, 3rem); }
	.new-site-feature__media { width: calc(100% + 24px); }
}

@media (prefers-reduced-motion: reduce) {
	.new-site-hero__image, .new-site-hero__inner > *, .site-announcement.is-closing { animation: none; }
	.new-site-page [data-reveal] { transform: none; opacity: 1; transition: none; }
	.new-site-feature__media img { transition: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .has-js .reveal { transform: none; opacity: 1; }
}

@media print {
  .site-header, .site-footer, .article-cta, .related-posts, .comments-area, .whatsapp-link { display: none !important; }
  .article-content { width: 100%; }
  body { background: #fff; color: #000; }
}

.new-site-performance strong { display: block; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--ink); }
.new-site-performance small { display: block; max-width: 65ch; margin: .75rem auto 0; font-size: .85rem; }
.new-site-finale .text-link { margin: 1rem; }

/* Astrocartography: editorial landing, keeping the reading workspace compact. */
.acg:not(.acg-is-reading) { padding-top: 0; }
.acg .acg-hero { width: 100vw; max-width: none; margin: 0 0 0 calc(50% - 50vw); background: #f3f5f8; }
.acg .acg-hero-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; width: min(1320px, calc(100% - 64px)); min-height: 520px; margin: auto; }
.acg .acg-hero-copy { padding: 42px 0; position: relative; z-index: 1; }
.acg .acg-hero h1 { font-size: clamp(36px, 4.4vw, 70px); letter-spacing: -.035em; margin-bottom: 24px; }
.acg .acg-hero-lead { font: 400 clamp(23px, 2.1vw, 32px)/1.25 Georgia, serif; color: #15283f; }
.acg .acg-hero-copy > p:not(.acg-kicker, .acg-hero-lead) { max-width: 480px; font-size: 16px; line-height: 1.8; color: #485363; }
.acg .acg-kicker { color: #987644; font-size: 11px; font-weight: 600; letter-spacing: .15em; }
.acg .acg-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin: 28px 0 18px; }
.acg a.acg-primary { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 12px 22px; background: #15283f; color: #fff; text-decoration: none; font-size: 14px; border-radius: 2px; transition: background-color .2s; }
.acg a.acg-primary:hover { background: #315d82; }
.acg .acg-hero-actions > a:not(.acg-primary) { font-size: 13px; text-underline-offset: 5px; }
.acg .acg-hero-copy > small { color: #485363; font-size: 12px; }
.acg .acg-hero-visual figcaption span { display: block; font: 10px/1.8 system-ui, sans-serif; color: #485363; margin-top: 6px; }
.acg .acg-editorial, .acg .acg-guide, .acg .acg-faq, .acg .acg-purchase { max-width: 1120px; margin: auto; padding: 76px 0; }
.acg .acg-editorial { display: grid; grid-template-columns: .85fr 1fr; gap: clamp(32px, 7vw, 110px); }
.acg .acg-editorial h2, .acg .acg-guide h2, .acg .acg-faq h2, .acg .acg-purchase h2, .acg .acg-form-heading h2 { font: 400 clamp(28px, 3vw, 42px)/1.15 Georgia, serif; letter-spacing: -.025em; }
.acg .acg-editorial p, .acg .acg-steps p, .acg .acg-faq p { line-height: 1.85; font-size: 15px; color: #485363; }
.acg .acg-editorial-note { border-left: 2px solid #987644; padding-left: 20px; margin-top: 26px; }
.acg .acg-birth { max-width: 1000px; margin: 0 auto 12px; padding: clamp(24px, 4vw, 52px); background: #f3f5f8; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; scroll-margin-top: 40px; }
.acg .acg-form-heading { margin-bottom: 8px; }
.acg .acg-form-heading h2 { margin: 12px 0; }
.acg .acg-form-heading p:last-child { font-size: 14px; color: #485363; }
.acg .acg-birth input, .acg .acg-birth select { background: #fff; min-height: 48px; border-color: #cbd3dc; border-radius: 2px; }
.acg .acg-birth input[type="checkbox"] { min-height: 0; }
.acg .acg-birth .acg-check { grid-column: 1 / -1; }
.acg .acg-birth-results:empty, .acg .acg-turnstile:empty { display: none; }
.acg .acg-admin-test { border-top: 1px solid #dce2e9; padding-top: 14px; color: #485363; font-size: 12px; }
.acg .acg-admin-test label { margin-top: 16px; }
.acg .acg-admin-test p { max-width: 660px; }
.acg .acg-birth > button { grid-column: 1 / -1; justify-self: start; min-width: 240px; }
.acg .acg-steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px; margin: 42px 0 0; }
.acg .acg-steps li { border-top: 1px solid #dce2e9; padding-top: 22px; }
.acg .acg-steps span { color: #987644; font: 22px Georgia, serif; }
.acg .acg-steps h3 { font: 25px/1.25 Georgia, serif; margin: 20px 0 12px; }
.acg .acg-depth { border-top: 1px solid #dce2e9; }
.acg .acg-reading-outline { margin: 0; }
.acg .acg-reading-outline dt { font: 25px/1.3 Georgia, serif; border-top: 1px solid #dce2e9; padding-top: 20px; }
.acg .acg-reading-outline dd { margin: 10px 0 26px; font-size: 15px; line-height: 1.8; color: #485363; }
.acg .acg-purchase h2 { color: #fff; }
.acg .acg-purchase .acg-kicker { color: #d9bc8f; }
.acg .acg-purchase p:not(.acg-kicker, .acg-price) { color: #dce2e9; line-height: 1.8; font-size: 15px; }
.acg .acg-purchase-action { text-align: center; }
.acg .acg-purchase-action .acg-primary { background: #fff; color: #15283f; }
.acg .acg-purchase-action > small, .acg .acg-price small { display: block; font: 12px/1.8 system-ui, sans-serif; margin-top: 12px; color: #dce2e9; }
.acg .acg-price { font: 42px/1.2 Georgia, serif; margin: 0 0 26px; }
.acg .acg-faq { max-width: 850px; }
.acg .acg-faq h2 { margin-bottom: 30px; }
.acg .acg-faq details { border-bottom: 1px solid #dce2e9; padding: 20px 0; }
.acg .acg-faq summary { font-size: 16px; cursor: pointer; }
.acg .acg-faq p { padding-left: 20px; max-width: 740px; }
.acg.acg-is-reading .acg-hero { width: auto; margin: 0 0 24px; background: transparent; }
.acg.acg-is-reading .acg-hero-inner { display: block; min-height: 0; width: 100%; }
.acg.acg-is-reading .acg-hero-copy { padding: 0; }
.acg.acg-is-reading .acg-hero h1 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 8px; }
.acg.acg-is-reading .acg-hero-lead { font: 16px/1.6 system-ui, sans-serif; }
.acg .acg-quick-help { margin: 20px 0; font-size: 14px; }
@media (width <= 800px) {
  .acg .acg-hero-inner { width: calc(100% - 40px); min-height: 0; grid-template-columns: 1fr; }
  .acg .acg-hero-copy { padding: 32px 0 8px; }
  .acg .acg-hero h1 { font-size: clamp(34px, 7vw, 52px); margin-bottom: 16px; }
  .acg .acg-hero-visual { margin: 0; max-height: 250px; overflow: hidden; }
  .acg .acg-hero-visual img { height: 210px; object-fit: cover; }
  .acg .acg-hero-visual figcaption { font-size: 14px; margin: -14px 0 14px; }
  .acg .acg-hero-visual figcaption span { margin: 0; }
  .acg .acg-hero-actions { margin: 18px 0 12px; gap: 14px; }
  .acg .acg-editorial, .acg .acg-purchase { grid-template-columns: 1fr; gap: 24px; }
  .acg .acg-editorial, .acg .acg-guide, .acg .acg-faq { padding: 44px 0; }
  .acg .acg-birth { grid-template-columns: 1fr 1fr; }
  .acg .acg-birth > .acg-name { grid-column: 1 / -1; }
  .acg .acg-steps { gap: 22px; }
}
@media (width <= 540px) {
  .acg .acg-steps { grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }
  .acg .acg-steps h3 { display: inline; margin-left: 12px; font-size: 23px; }
  .acg .acg-steps p { margin-top: 12px; }
  .acg .acg-birth { padding: 24px 18px; gap: 16px; }
  .acg .acg-birth > label:not(.acg-check) { grid-column: 1 / -1; }
  .acg .acg-birth > button { width: 100%; min-width: 0; }
}

/* Astrocartography: illustrated opening and focused destination workspace. */
.acg .acg-hero-visual { margin: 0 -20px 0 0; }
.acg .acg-hero-visual img { width: 100%; height: auto; }
.acg .acg-hero-visual figcaption { margin: -25px 0 28px; position: relative; text-align: center; font: 18px/1.5 Georgia, serif; }
.acg .acg-form-region { width: 100vw; margin-left: calc(50% - 50vw); background: radial-gradient(ellipse at 10% 20%, rgb(49 95 141 / 28%), transparent 48%), radial-gradient(ellipse at 90% 90%, rgb(152 118 68 / 12%), transparent 40%), #0d192b; }
.acg.acg-is-reading .acg-form-region, .acg.acg-is-reading .acg-hero { display: none; }
.acg .acg-status:empty, .acg .acg-form-status:not(:has(.acg-status:not(:empty))), .acg .acg-access-notice:empty { display: none; }
.acg .acg-status:not(:empty) { margin: 0; padding: 14px 18px; background: #fff; border: 1px solid #cbd8e2; border-left: 3px solid #315d82; border-radius: 2px; color: #15283f; font-size: 14px; line-height: 1.6; }
.acg .acg-status[data-error="true"] { background: #fff7f3; border-left-color: #a74231; }
.acg .acg-reading-status .acg-status:not(:empty) { margin-top: 16px; }
.acg .acg-explorer-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 8px 0 20px; scroll-margin-top: 24px; }
.acg .acg-explorer-head h1 { font: 400 clamp(32px, 3.5vw, 50px)/1.12 Georgia, serif; letter-spacing: -.03em; margin: 12px 0; }
.acg .acg-chart-person { margin: 0; font-size: 15px; color: #485363; }
.acg .acg-explorer-head button { flex-shrink: 0; min-height: 44px; padding: 10px 20px; }
.acg .acg-explorer-support { display: flex; align-items: start; justify-content: space-between; gap: 18px; border-top: 1px solid #dce2e9; padding: 14px 0; margin-bottom: 10px; font-size: 13px; }
.acg .acg-explorer-support > details { margin-left: auto; max-width: 600px; }
.acg .acg-explorer-support summary { cursor: pointer; }
.acg .acg-explorer-support .acg-access-notice { margin: 0; font-size: 13px; }
.acg .acg-explorer-support .acg-quick-help, .acg .acg-explorer-support .acg-usage { margin: 16px 0; padding: 0; border: 0; font-size: 13px; }
.acg .acg-test-notice { margin: 0 0 16px; font-size: 12px; }
.acg .acg-search-region { background: #f3f5f8; padding: 24px 28px; }
.acg .acg-search-region h2 { font: 28px/1.25 Georgia, serif; margin: 0 0 8px; }
.acg .acg-search-region > p { margin: 0 0 20px; font-size: 14px; color: #485363; }
.acg .acg-toolbar { display: grid; grid-template-columns: minmax(0, 1fr) 220px; gap: 24px; align-items: end; }
.acg .acg-toolbar label { width: auto; min-width: 0; }
.acg .acg-toolbar input, .acg .acg-toolbar select { background: #fff; min-height: 48px; }
.acg .acg-map-controls { display: flex; align-items: start; justify-content: space-between; gap: 24px; padding: 20px 0; }
.acg .acg-map-controls .acg-map-choice { display: flex; flex-direction: row; align-items: center; gap: 12px; margin: 0; }
.acg .acg-map-controls .acg-filters { padding: 10px 0 0; margin: 0; border: 0; font-size: 13px; max-width: 65%; }
.acg .acg-map { height: 490px; border: 1px solid #dce2e9; border-radius: 2px; background: #eef1f3; }
.acg .acg-map-caption { margin: 0; padding: 12px 0; border-bottom: 1px solid #dce2e9; font-size: 12px; }
.acg .acg-reading:not(:has(.acg-entry)) { padding: 24px 0; text-align: center; color: #485363; font-size: 15px; }
.acg .acg-saved { padding-top: 30px; border-top: 1px solid #dce2e9; margin-top: 20px; }
.acg .acg-saved h2 { font: 30px/1.2 Georgia, serif; }
.acg .acg-favorites > p { font-size: 14px; color: #485363; }
@media (width <= 800px) {
  .acg .acg-hero-visual { margin: 18px 0 24px; max-height: none; overflow: visible; }
  .acg .acg-hero-visual img { height: 230px; object-fit: contain; }
  .acg .acg-hero-visual figcaption { margin: 8px 0 0; font-size: 13px; }
  
  .acg .acg-map-controls { flex-direction: column; gap: 10px; }
  .acg .acg-map-controls .acg-filters { max-width: 100%; }
  .acg .acg-explorer-head { align-items: start; }
  .acg .acg-explorer-head button { font-size: 12px; padding-inline: 12px; }
  .acg .acg-search-region { padding: 22px 18px; }
  .acg .acg-toolbar { grid-template-columns: 1fr; gap: 14px; }
  .acg .acg-map { height: 370px; }
  .acg .acg-map-controls .acg-map-choice { flex-direction: column; align-items: stretch; width: 100%; }
  .acg .acg-explorer-support { flex-wrap: wrap; }
}

/* Image beside the form; the illustrated atlas remains in the hero. */
.acg .acg-form-inner { width: min(1320px, calc(100% - 64px)); margin: auto; padding-block: 64px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(28px, 4vw, 64px); }
.acg .acg-form-visual { margin: 0; min-width: 0; }
.acg .acg-form-visual img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; object-position: center; border-radius: 16px; }
.acg .acg-form-visual figcaption { font-size: 11px; color: #a9b7c9; margin-top: 10px; }
.acg .acg-form-region .acg-name { grid-column: 1 / -1; }
@media (width <= 900px) {
  .acg .acg-form-inner { grid-template-columns: 1fr; width: calc(100% - 40px); gap: 28px; padding-block: 32px; }
  .acg .acg-form-visual img { aspect-ratio: 16 / 9; object-position: center; }
}

/* Calm white form panel, matching the natal-chart acquisition experience. */
.acg .acg-form-story { min-width: 0; padding-block: 20px; }
.acg .acg-form-story > .acg-kicker { color: #d9bc8f; }
.acg .acg-form-story h2 { font: 400 clamp(32px, 3.2vw, 48px)/1.15 Georgia, serif; color: #fff; letter-spacing: -.025em; max-width: 550px; }
.acg .acg-form-story > p:not(.acg-kicker) { color: #bfccdb; line-height: 1.85; font-size: 16px; margin: 24px 0 30px; max-width: 520px; }
.acg .acg-form-region input, .acg .acg-form-region select { border-color: #dce3eb; border-radius: 9px; }
.acg .acg-form-region .acg-status:not(:empty) { border-radius: 9px; background: #f5f8fb; }
@media (width <= 540px) {
  .acg .acg-form-region .acg-birth { padding: 24px 20px; border-radius: 16px; }
  .acg .acg-form-story { padding: 0; }
  .acg .acg-form-story > p:not(.acg-kicker) { margin: 18px 0 24px; font-size: 15px; }
}

/* Natal form typography and full-width offer background. */
.acg .acg-purchase { background: #15283f; color: #fff; padding: clamp(28px, 4vw, 56px); display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; gap: 48px; box-shadow: 0 0 0 100vmax #15283f; clip-path: inset(0 -100vmax); }
.acg .acg-form-region .acg-birth { background: #fff; margin: 0; padding: clamp(24px, 3vw, 42px); min-width: 0; grid-template-columns: 1fr 1fr; border: 1px solid #e5e9ee; border-radius: 20px; box-shadow: 0 24px 64px rgb(0 0 0 / 16%); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; gap: 16px; color: #1e293b; }
.acg .acg-form-region .acg-form-heading { margin: 0; }
.acg .acg-form-region .acg-form-heading h2 { margin: 0; font-family: inherit; font-size: clamp(1.6rem, 2.5vw, 2.15rem); font-weight: 780; line-height: 1.08; letter-spacing: -.035em; color: #172033; }
.acg .acg-form-region .acg-chart-select { background: #f5f7fa; border: 1px solid #e5eaf0; border-radius: 12px; font-size: 13px; padding: 12px; }
.acg .acg-form-region label { font-family: inherit; font-size: .88rem; font-weight: 750; color: #334155; }
.acg .acg-form-region input:not([type="checkbox"]), .acg .acg-form-region select { min-height: 50px; padding: 10px 13px; border: 1px solid #cbd5e1; border-radius: 10px; font-family: inherit; font-size: .94rem; font-weight: 400; color: #1e293b; box-shadow: none; }
.acg .acg-form-region input:focus-visible, .acg .acg-form-region select:focus-visible { outline: 0; border-color: #315f8d; box-shadow: 0 0 0 3px rgb(49 95 141 / 12%); }
.acg .acg-form-region .acg-check { font-size: .8rem; font-weight: 400; color: #64748b; }
.acg .acg-form-region .acg-birth > button { width: 100%; min-height: 52px; border: 0; border-radius: 10px; background: #315f8d; box-shadow: 0 12px 26px rgb(49 95 141 / 22%); font-family: inherit; font-size: 1rem; font-weight: 800; letter-spacing: .01em; }
.acg .acg-form-region .acg-birth > button:hover { background: #244d76; }
.acg .acg-form-divider { display: flex; align-items: center; gap: 12px; margin: 4px 0; color: #64748b; font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .035em; }
.acg .acg-form-divider::before, .acg .acg-form-divider::after { content: ''; flex: 1; height: 1px; background: #e2e8f0; }

@media (width <= 800px) {
  .acg .acg-purchase { grid-template-columns: 1fr; gap: 24px; }
}
@media (width <= 540px) {
  .acg .acg-form-region .acg-birth { padding: 24px 20px; border-radius: 16px; }
}
