:root {
    --emerald: #0f4f3f;
    --emerald-deep: #082f28;
    --terracotta: #bd6248;
    --gold: #d6a936;
    --ink: var(--emerald-deep);
    --cream: #f3ecdc;
    --paper: #fbf7ee;
    --sage: #a9bdaa;
    --coral: var(--terracotta);
    --acid: var(--gold);
    --line: rgba(8, 47, 40, .2);
    --display: "Newsreader", Georgia, serif;
    --sans: Arial, sans-serif;
    --mono: "DM Mono", monospace;
    --pad: clamp(1.25rem, 3vw, 3.6rem);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

html.menu-open,
body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
}

button,
input {
    font: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section-pad {
    padding-left: var(--pad);
    padding-right: var(--pad);
}

.page-progress {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    pointer-events: none;
}

.page-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--coral);
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    min-height: 76px;
    padding: .85rem var(--pad);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease;
}

.site-header.scrolled {
    background: rgba(250, 249, 244, .9);
    border-color: var(--line);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.brand-logo {
    width: auto;
    height: 58px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
}

.site-nav a,
.header-cta {
    font: 500 .7rem/1 var(--mono);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.site-nav a {
    position: relative;
    white-space: nowrap;
}

.site-nav a::after {
    position: absolute;
    content: "";
    left: 0;
    right: 100%;
    bottom: -.45rem;
    height: 1px;
    background: currentColor;
    transition: right .25s ease;
}

.site-nav a:hover::after {
    right: 0;
}

.header-cta {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .8rem .95rem;
    border-radius: 999px;
    background: var(--ink);
    color: var(--paper);
}

.header-cta span {
    font-size: 1rem;
}

.menu-toggle {
    display: none;
}

.hero {
    min-height: 100vh;
    padding-top: 8.4rem;
    padding-bottom: 4rem;
    display: grid;
    grid-template-columns: minmax(0, 1.13fr) minmax(360px, .87fr);
    gap: clamp(2rem, 5vw, 7rem);
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow,
.card-kicker,
.section-label,
.footer-label {
    font: 500 .68rem/1.2 var(--mono);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero h1 {
    max-width: 900px;
    margin: 1.4rem 0 1.7rem;
    font: 500 clamp(4rem, 8.2vw, 9.2rem)/.85 var(--display);
    letter-spacing: -.065em;
}

.hero h1::first-line {
    color: var(--coral);
}

.hero-intro {
    max-width: 610px;
    font-size: clamp(1rem, 1.35vw, 1.35rem);
    line-height: 1.55;
}

.button-row {
    margin-top: 2.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.6rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 220px;
    padding: 1rem 1.2rem;
    border-radius: 999px;
    font: 500 .72rem/1 var(--mono);
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: transform .2s ease, background .2s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-dark {
    color: var(--paper);
    background: var(--ink);
}

.button-coral {
    color: var(--ink);
    background: var(--coral);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: .25rem;
    border-bottom: 1px solid currentColor;
    font: 500 .72rem/1 var(--mono);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.hero-visual {
    position: relative;
    min-height: min(690px, 76vh);
    display: grid;
    place-items: center;
}

.hero-image {
    position: relative;
    z-index: 2;
    width: min(82%, 500px);
    height: min(650px, 72vh);
    margin: 0;
    overflow: hidden;
    border-radius: 48% 48% 8px 8px;
    background: var(--sage);
}

.hero-image img {
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    filter: saturate(.82) contrast(.98);
}

.hero-orbit {
    position: absolute;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.orbit-one {
    inset: 2% 4% 5%;
    transform: rotate(13deg);
}

.orbit-two {
    inset: 8% -1% 0 8%;
    transform: rotate(-8deg);
}

.hero-orbit::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    top: 17%;
    left: 4%;
    border-radius: 50%;
    background: var(--acid);
}

.hero-note {
    position: absolute;
    z-index: 3;
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    max-width: 185px;
    padding: .85rem 1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 12px 35px rgba(23, 26, 20, .08);
    font: 400 .68rem/1.4 var(--mono);
    text-transform: uppercase;
}

.hero-note span {
    color: var(--coral);
}

.note-top {
    top: 16%;
    left: -2%;
}

.note-bottom {
    right: 0;
    bottom: 14%;
}

.hero-script {
    position: absolute;
    z-index: 4;
    right: 1%;
    bottom: 1%;
    margin: 0;
    color: var(--coral);
    font: italic 300 clamp(3rem, 5.2vw, 6rem)/1 var(--display);
    transform: rotate(-9deg);
}

.about {
    padding-top: clamp(5rem, 10vw, 10rem);
    padding-bottom: clamp(5rem, 10vw, 10rem);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
}

.section-label p {
    margin: 0;
}

.section-label.light {
    color: rgba(250, 249, 244, .72);
}

.about-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1.1fr .7fr .6fr;
    align-items: start;
    gap: clamp(2rem, 5vw, 7rem);
}

.about-heading h2,
.collection-head h2,
.speaking-intro h2,
.journal-heading h2,
.gallery-copy h2,
.testimonial h2,
.contact h2 {
    margin: 0;
    font: 500 clamp(3rem, 6vw, 4.5rem)/.95 var(--display);
    letter-spacing: -.045em;
}

.about-story {
    padding-top: .75rem;
}

.about-story p {
    color: rgba(23, 26, 20, .72);
}

.about-story .lead {
    margin-top: 0;
    color: var(--ink);
    font-size: 1.25rem;
}

.about-story .text-link {
    margin-top: 1.2rem;
}

.about-image {
    margin: 0;
}

.about-image img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top;
    filter: grayscale(1);
}

.about-image figcaption {
    margin-top: .8rem;
    font: 400 .65rem/1.45 var(--mono);
    text-transform: uppercase;
}

.value-grid {
    margin-top: clamp(4rem, 8vw, 8rem);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}

.value-card {
    min-height: 280px;
    padding: 1.4rem;
    border-right: 1px solid var(--line);
}

.value-card:last-child {
    border-right: 0;
}

.value-card > span {
    font: 400 .66rem/1 var(--mono);
}

.value-card h3 {
    margin: 4rem 0 .7rem;
    font: 300 clamp(2.6rem, 4vw, 4.8rem)/1 var(--display);
}

.value-card p {
    max-width: 270px;
    color: rgba(23, 26, 20, .68);
}

.collection {
    padding-top: clamp(5rem, 9vw, 9rem);
    padding-bottom: clamp(5rem, 9vw, 9rem);
    color: var(--paper);
    background: var(--emerald-deep);
}

.collection-head {
    max-width: 960px;
}

.collection-head h2 {
    margin-top: 2.5rem;
}

.collection-head > p {
    max-width: 600px;
    margin: 1.6rem 0 0;
    color: rgba(250, 249, 244, .62);
    font-size: 1.1rem;
}

.book-grid {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(250, 249, 244, .2);
    border: 1px solid rgba(250, 249, 244, .2);
}

.book-card {
    display: grid;
    grid-template-columns: minmax(180px, .85fr) 1.15fr;
    min-height: 470px;
    background: var(--emerald-deep);
}

.book-image {
    position: relative;
    padding: clamp(1.5rem, 3vw, 3rem);
    overflow: hidden;
    display: grid;
    place-items: center;
    background: var(--emerald);
}

.book-image img {
    width: 80%;
    max-height: 340px;
    object-fit: contain;
    filter: drop-shadow(0 24px 22px rgba(0, 0, 0, .34));
    transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}

.book-card:hover .book-image img {
    transform: rotate(-3deg) scale(1.06);
}

.book-index {
    position: absolute;
    left: 1rem;
    top: 1rem;
    font: 400 .65rem/1 var(--mono);
    color: rgba(250, 249, 244, .55);
}

.book-details {
    padding: clamp(1.6rem, 3vw, 3.2rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid rgba(250, 249, 244, .2);
}

.book-details h3 {
    max-width: 330px;
    margin: .55rem 0 0;
    font: 300 clamp(2rem, 3.2vw, 3.8rem)/.98 var(--display);
}

.book-details > p {
    color: rgba(250, 249, 244, .63);
}

.card-kicker {
    margin: 0;
    color: var(--acid);
}

.book-meta {
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(250, 249, 244, .2);
    font: 400 .65rem/1.4 var(--mono);
    text-transform: uppercase;
}

.book-meta a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(250, 249, 244, .35);
    border-radius: 50%;
}

.speaking {
    padding-top: clamp(5rem, 9vw, 9rem);
    padding-bottom: clamp(5rem, 9vw, 9rem);
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(3rem, 8vw, 10rem);
}

.speaking-intro {
    position: sticky;
    top: 8rem;
    align-self: start;
}

.speaking-intro h2 {
    margin-top: 2.5rem;
}

.speaking-intro > p {
    max-width: 550px;
    margin: 1.5rem 0 2rem;
    color: rgba(23, 26, 20, .68);
    font-size: 1.08rem;
}

.topic {
    position: relative;
    min-height: 240px;
    padding: 1.5rem 3.5rem 2rem 0;
    border-top: 1px solid var(--line);
}

.topic > span {
    font: 400 .66rem/1 var(--mono);
}

.topic h3 {
    margin: 3rem 0 .7rem;
    font: 300 clamp(2.2rem, 4vw, 4.5rem)/1 var(--display);
}

.topic p {
    max-width: 600px;
    color: rgba(23, 26, 20, .66);
}

.topic i {
    position: absolute;
    right: 0;
    top: 1.3rem;
    font-style: normal;
    font-size: 1.35rem;
}

.journal-hub {
    padding-top: 2rem;
    padding-bottom: clamp(5rem, 9vw, 9rem);
}

.hub-card {
    position: relative;
    min-height: 670px;
    padding: clamp(2rem, 6vw, 7rem);
    overflow: hidden;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 4rem;
    color: var(--paper);
    background: var(--emerald-deep);
    border-radius: 4px;
}

.hub-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    right: -120px;
    top: -130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(189, 98, 72, .85), rgba(189, 98, 72, 0) 66%);
    filter: blur(18px);
}

.hub-copy,
.prompt-stack {
    position: relative;
    z-index: 2;
}

.hub-copy h2 {
    margin: 1rem 0;
    font: 500 clamp(3.5rem, 7vw, 4.5rem)/.9 var(--display);
    letter-spacing: -.05em;
}

.hub-copy > p {
    max-width: 520px;
    color: rgba(250, 249, 244, .7);
}

.waitlist-form {
    max-width: 560px;
    margin-top: 2.2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    border-bottom: 1px solid rgba(250, 249, 244, .55);
}

.waitlist-form input,
.waitlist-form button {
    min-height: 58px;
    border: 0;
    color: var(--paper);
    background: transparent;
    outline: 0;
}

.waitlist-form input::placeholder {
    color: rgba(250, 249, 244, .5);
}

.waitlist-form button {
    cursor: pointer;
    font: 500 .67rem/1 var(--mono);
    text-transform: uppercase;
}

.form-message {
    font: 400 .7rem/1.4 var(--mono);
}

.prompt-stack {
    min-height: 470px;
}

.prompt-card {
    position: absolute;
    width: min(420px, 80%);
    min-height: 170px;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--ink);
    background: var(--cream);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .2);
}

.prompt-card span {
    font: 500 .65rem/1 var(--mono);
    text-transform: uppercase;
}

.prompt-card strong {
    font: 300 2.25rem/1 var(--display);
}

.prompt-card.one {
    top: 0;
    right: 5%;
    transform: rotate(5deg);
}

.prompt-card.two {
    top: 30%;
    left: 2%;
    background: var(--acid);
    transform: rotate(-7deg);
}

.prompt-card.three {
    bottom: 0;
    right: 13%;
    background: var(--coral);
    transform: rotate(2deg);
}

.journal {
    padding-top: clamp(4rem, 8vw, 8rem);
    padding-bottom: clamp(5rem, 9vw, 9rem);
}

.journal-heading {
    max-width: 920px;
}

.journal-heading h2 {
    margin-top: 2.4rem;
}

.post-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.post-card {
    padding-bottom: 1.6rem;
    border-bottom: 1px solid var(--line);
}

.post-image {
    display: block;
    overflow: hidden;
    margin-bottom: 1.2rem;
}

.post-image img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: saturate(.7);
    transition: transform .4s ease, filter .4s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.035);
    filter: saturate(1);
}

.post-meta {
    display: flex;
    justify-content: space-between;
    font: 400 .63rem/1 var(--mono);
    text-transform: uppercase;
}

.post-card h3 {
    margin: 1.2rem 0 .7rem;
    font: 300 clamp(2rem, 3vw, 3.1rem)/1 var(--display);
}

.post-card > p {
    color: rgba(23, 26, 20, .66);
}

.post-card .text-link {
    margin-top: .6rem;
}

.gallery {
    padding-top: clamp(5rem, 9vw, 9rem);
    padding-bottom: clamp(5rem, 9vw, 9rem);
    color: var(--paper);
    background: var(--ink);
}

.gallery-copy {
    display: grid;
    grid-template-columns: .5fr 1.1fr .5fr;
    gap: 3rem;
    align-items: end;
}

.gallery-copy > p {
    color: rgba(250, 249, 244, .6);
}

.gallery-grid {
    min-height: 850px;
    margin-top: 5rem;
    position: relative;
}

.gallery-item {
    position: absolute;
    margin: 0;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    filter: grayscale(.25) saturate(.75);
}

.gallery-item figcaption {
    margin-top: .6rem;
    display: flex;
    justify-content: space-between;
    font: 400 .65rem/1.2 var(--mono);
    text-transform: uppercase;
}

.gallery-item figcaption span {
    color: rgba(250, 249, 244, .5);
}

.gallery-item-1 {
    left: 0;
    top: 5%;
    width: 36%;
    height: 590px;
}

.gallery-item-2 {
    left: 42%;
    top: 0;
    width: 25%;
    height: 390px;
}

.gallery-item-3 {
    right: 0;
    top: 27%;
    width: 27%;
    height: 520px;
}

.testimonial {
    position: relative;
    min-height: 720px;
    display: grid;
    place-items: center;
    overflow: hidden;
    text-align: center;
    background: var(--acid);
}

.testimonial-mark {
    position: absolute;
    left: 50%;
    top: 47%;
    color: rgba(23, 26, 20, .08);
    font: 300 44rem/.6 var(--display);
    transform: translate(-50%, -50%);
}

.testimonial-copy {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    padding: 6rem 0;
}

.testimonial h2 {
    margin: 1rem 0;
}

.testimonial blockquote {
    margin: 2rem 0 1rem;
    font: 300 clamp(1.55rem, 2.8vw, 2.9rem)/1.25 var(--display);
}

.testimonial cite {
    font: normal 400 .67rem/1 var(--mono);
    text-transform: uppercase;
}

.contact {
    padding-top: clamp(5rem, 10vw, 10rem);
    padding-bottom: clamp(5rem, 10vw, 10rem);
}

.contact-copy {
    display: grid;
    grid-template-columns: .35fr 1fr;
    align-items: start;
    gap: 3rem;
}

.contact-link {
    margin-top: 5rem;
    padding: 1.6rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    font: 300 clamp(1.7rem, 4vw, 4.5rem)/1 var(--display);
}

.contact-link i {
    font-style: normal;
}

.site-footer {
    padding-top: 4rem;
    color: var(--paper);
    background: var(--emerald-deep);
}

.footer-main {
    padding-bottom: 5rem;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
}

.brand-logo-footer {
    height: 130px;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .24));
}

.footer-brand > p {
    max-width: 260px;
    color: rgba(250, 249, 244, .55);
}

.footer-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;
}

.footer-group a {
    color: rgba(250, 249, 244, .72);
    font-size: .84rem;
}

.footer-group a:hover {
    color: var(--acid);
}

.footer-label {
    margin: 0 0 1rem;
    color: rgba(250, 249, 244, .42);
}

.footer-bottom {
    min-height: 76px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(250, 249, 244, .18);
    font: 400 .63rem/1.3 var(--mono);
    text-transform: uppercase;
}

.site-nav a.active::after {
    right: 0;
    height: 2px;
    background: var(--terracotta);
}

.inner-body {
    background:
        linear-gradient(rgba(214, 169, 54, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(214, 169, 54, .07) 1px, transparent 1px),
        var(--paper);
    background-size: 64px 64px;
}

.page-hero {
    min-height: 76vh;
    padding-top: clamp(10rem, 16vw, 15rem);
    padding-bottom: clamp(4rem, 8vw, 8rem);
    display: grid;
    grid-template-columns: .45fr 1.55fr;
    gap: clamp(2rem, 6vw, 7rem);
    align-items: start;
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    max-width: 1120px;
    margin: 0;
    color: var(--emerald-deep);
    font: 500 6rem/.86 var(--display);
    letter-spacing: -.06em;
}

.page-intro {
    grid-column: 2;
    max-width: 660px;
    margin: 1.5rem 0 0;
    padding-left: clamp(0rem, 8vw, 9rem);
    color: rgba(8, 47, 40, .7);
    font-size: clamp(1rem, 1.45vw, 1.35rem);
}

.page-content {
    padding-top: clamp(5rem, 9vw, 9rem);
    padding-bottom: clamp(5rem, 9vw, 9rem);
    background: var(--paper);
}

.page-content-dark {
    color: var(--paper);
    background: var(--emerald-deep);
}

.split-story {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(3rem, 9vw, 11rem);
    align-items: center;
}

.split-story figure {
    margin: 0;
}

.split-story figure img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top;
}

.story-copy {
    max-width: 730px;
}

.story-copy p {
    color: rgba(8, 47, 40, .69);
    font-size: 1.08rem;
}

.story-copy .lead {
    margin-top: 0;
    color: var(--emerald-deep);
    font: 300 clamp(2rem, 4vw, 4.8rem)/1.05 var(--display);
}

.story-copy .button {
    margin-top: 1.5rem;
}

.inner-values {
    margin-bottom: 0;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(251, 247, 238, .2);
    border: 1px solid rgba(251, 247, 238, .2);
}

.catalog-card {
    min-width: 0;
    padding: clamp(1.2rem, 2.5vw, 2.4rem);
    background: var(--emerald-deep);
}

.catalog-image {
    position: relative;
    min-height: 420px;
    margin-bottom: 1.5rem;
    padding: 2rem;
    display: grid;
    place-items: center;
    color: var(--gold);
    background: var(--emerald);
    overflow: hidden;
}

.catalog-image img {
    width: 78%;
    max-height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 22px 20px rgba(0, 0, 0, .32));
    transition: transform .35s ease;
}

.catalog-card:hover .catalog-image img {
    transform: rotate(-3deg) scale(1.05);
}

.catalog-image > span {
    font: 300 3rem/1 var(--display);
}

.catalog-image i {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: rgba(251, 247, 238, .55);
    font: normal 400 .65rem/1 var(--mono);
}

.catalog-card h2 {
    margin: .7rem 0 1rem;
    font: 500 clamp(2rem, 3.2vw, 4.5rem)/1 var(--display);
}

.catalog-card > p:not(.card-kicker) {
    min-height: 72px;
    color: rgba(251, 247, 238, .64);
}

.catalog-meta {
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(251, 247, 238, .2);
    font: 400 .62rem/1.45 var(--mono);
    text-transform: uppercase;
}

.catalog-meta a {
    color: var(--gold);
}

.speaking-page-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: clamp(3rem, 9vw, 11rem);
}

.speaking-statement {
    position: sticky;
    top: 9rem;
    align-self: start;
}

.speaking-statement > p {
    margin: 0 0 2rem;
    font: 300 clamp(1.8rem, 3.3vw, 3.8rem)/1.08 var(--display);
}

.inner-hub {
    min-height: 720px;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(1rem, 2.5vw, 2.5rem);
    align-items: start;
}

.gallery-page-item {
    margin: 0 0 5rem;
}

.gallery-page-item:nth-child(3n + 1) {
    grid-column: 1 / span 5;
}

.gallery-page-item:nth-child(3n + 2) {
    grid-column: 7 / span 6;
    margin-top: 7rem;
}

.gallery-page-item:nth-child(3n + 3) {
    grid-column: 3 / span 7;
}

.gallery-page-item img {
    max-height: 760px;
    object-fit: cover;
    object-position: top;
}

.gallery-page-item figcaption {
    margin-top: .8rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font: 400 .65rem/1.3 var(--mono);
    text-transform: uppercase;
}

.gallery-page-item figcaption span {
    color: var(--gold);
}

.page-post-grid {
    margin-top: 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: clamp(3rem, 9vw, 11rem);
}

.contact-details > a {
    display: inline-block;
    margin: 0 0 4rem;
    font: 300 clamp(1.5rem, 2.7vw, 3rem)/1 var(--display);
    overflow-wrap: anywhere;
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem 1.3rem;
}

.contact-socials a {
    font: 400 .67rem/1 var(--mono);
    text-transform: uppercase;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    font: 500 .65rem/1 var(--mono);
    text-transform: uppercase;
}

.contact-form label:last-of-type {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 0;
    border: 0;
    border-bottom: 1px solid var(--emerald-deep);
    color: var(--emerald-deep);
    background: transparent;
    border-radius: 0;
    outline: 0;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--terracotta);
}

.contact-form .button {
    margin-top: 1rem;
    border: 0;
    cursor: pointer;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .site-header,
    .site-header.scrolled {
        position: fixed;
        top: 0;
        height: 84px;
        min-height: 84px;
        max-height: 84px;
        padding: .75rem var(--pad);
        grid-template-columns: 1fr auto;
        background: rgba(251, 247, 238, .98);
        border-color: var(--line);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .site-header {
        transition: none;
    }

    .brand,
    .menu-toggle {
        position: relative;
        z-index: 1;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 0;
        width: 100%;
        height: 100dvh;
        min-height: 100svh;
        padding: 7rem var(--pad) 3rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 1.1rem;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        background: var(--acid);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-18px);
        transition: .3s ease;
    }

    .site-nav.open {
        z-index: 0;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav a {
        font: 300 clamp(2.7rem, 7vw, 5.5rem)/.9 var(--display);
        text-transform: none;
    }

    .site-nav a:first-child {
        margin-top: auto;
    }

    .site-nav a:last-child {
        margin-bottom: auto;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        justify-self: end;
        display: flex;
        align-items: center;
        gap: .8rem;
        padding: .8rem 0;
        border: 0;
        background: transparent;
        cursor: pointer;
        font: 500 .68rem/1 var(--mono);
        text-transform: uppercase;
    }

    .menu-toggle i {
        position: relative;
        width: 22px;
        height: 1px;
        background: var(--ink);
    }

    .menu-toggle i::after {
        content: "";
        position: absolute;
        left: 0;
        top: 6px;
        width: 22px;
        height: 1px;
        background: var(--ink);
    }

    .hero {
        grid-template-columns: 1fr .8fr;
        gap: 2rem;
    }

    .hero h1 {
        font-size: clamp(4rem, 8.7vw, 7rem);
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-heading {
        grid-column: 1 / -1;
    }

    .book-card {
        grid-template-columns: 1fr;
    }

    .book-details {
        min-height: 330px;
        border-left: 0;
        border-top: 1px solid rgba(250, 249, 244, .2);
    }

    .gallery-copy {
        grid-template-columns: 1fr 2fr;
    }

    .gallery-copy > p {
        grid-column: 2;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 780px) {
    .site-header,
    .site-header.scrolled {
        height: 66px;
        min-height: 66px;
        max-height: 66px;
        padding: .5rem var(--pad);
    }

    .brand-logo {
        height: 48px;
    }

    .hero {
        min-height: auto;
        padding-top: 8.5rem;
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: clamp(4rem, 17vw, 6.2rem);
    }

    .hero-visual {
        min-height: 570px;
        margin-top: 1.5rem;
    }

    .hero-image {
        width: 82%;
        height: 520px;
    }

    .hero-note {
        max-width: 155px;
    }

    .about-grid,
    .speaking,
    .hub-card,
    .contact-copy {
        grid-template-columns: 1fr;
    }

    .about-heading {
        grid-column: auto;
    }

    .about-story {
        order: 3;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: 230px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .book-grid,
    .post-grid {
        grid-template-columns: 1fr;
    }

    .book-card {
        min-height: 0;
    }

    .speaking-intro {
        position: static;
    }

    .hub-card {
        min-height: 950px;
    }

    .prompt-stack {
        min-height: 470px;
    }

    .post-grid {
        gap: 3rem;
    }

    .gallery-copy {
        grid-template-columns: 1fr;
    }

    .gallery-copy > p {
        grid-column: auto;
    }

    .gallery-grid {
        min-height: 1500px;
    }

    .gallery-item-1 {
        width: 72%;
        height: 510px;
    }

    .gallery-item-2 {
        left: auto;
        right: 0;
        top: 36%;
        width: 60%;
        height: 380px;
    }

    .gallery-item-3 {
        left: 8%;
        right: auto;
        top: 68%;
        width: 68%;
        height: 430px;
    }

    .contact-copy {
        gap: 1.4rem;
    }

    .contact-link {
        align-items: flex-end;
        gap: 1rem;
        overflow-wrap: anywhere;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .brand-logo-footer {
        height: 115px;
    }

    .page-hero {
        min-height: 70vh;
        padding-top: 9rem;
        grid-template-columns: 1fr;
    }

    .page-hero h1,
    .page-intro {
        grid-column: 1;
    }

    .page-hero h1 {
        font-size: clamp(4rem, 16vw, 6rem);
    }

    .page-intro {
        padding-left: 0;
    }

    .split-story,
    .speaking-page-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .speaking-statement {
        position: static;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .catalog-image {
        min-height: 360px;
    }

    .gallery-page-item:nth-child(n) {
        grid-column: 1 / -1;
        margin-top: 0;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form label:last-of-type {
        grid-column: 1;
    }
}

@media (max-width: 520px) {
    .hero h1 {
        font-size: 3.9rem;
    }

    .button-row,
    .button {
        width: 100%;
    }

    .button-row .text-link {
        width: fit-content;
    }

    .hero-visual {
        min-height: 500px;
    }

    .hero-image {
        width: 87%;
        height: 455px;
    }

    .note-top {
        top: 6%;
    }

    .note-bottom {
        bottom: 7%;
    }

    .about-heading h2,
    .collection-head h2,
    .speaking-intro h2,
    .journal-heading h2,
    .gallery-copy h2,
    .testimonial h2,
    .contact h2 {
        font-size: 2.9rem;
    }

    .book-card {
        display: block;
    }

    .book-image {
        min-height: 360px;
    }

    .hub-card {
        min-height: 920px;
        padding: 2rem 1.25rem;
    }

    .waitlist-form {
        grid-template-columns: 1fr;
    }

    .waitlist-form button {
        justify-self: start;
    }

    .prompt-card {
        width: 88%;
    }

    .gallery-grid {
        min-height: 1300px;
    }

    .gallery-item-1,
    .gallery-item-2,
    .gallery-item-3 {
        width: 82%;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        padding: 1.4rem 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
