:root {
    --goh-ink: #181214;
    --goh-ink-soft: #473d3f;
    --goh-paper: #fffdf9;
    --goh-cream: #f5efe8;
    --goh-blush: #efe1dc;
    --goh-red: #b70f22;
    --goh-red-dark: #731321;
    --goh-red-deep: #4c0b15;
    --goh-gold: #c5a276;
    --goh-line: rgba(24, 18, 20, .14);
    --goh-serif: "Cormorant Garamond", Georgia, serif;
    --goh-sans: "Manrope", Arial, sans-serif;
    --goh-shadow: 0 24px 70px rgba(67, 19, 29, .16);
    --goh-radius: 28px;
    --goh-container: 1240px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    background: var(--goh-paper);
    color: var(--goh-ink);
    font-family: var(--goh-sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button,
input {
    font: inherit;
}

::selection {
    background: var(--goh-red-dark);
    color: #fff;
}

.goh-main {
    overflow: hidden;
}

.goh-container {
    width: min(100% - 40px, var(--goh-container));
    margin-inline: auto;
}

.goh-section {
    position: relative;
    padding: 92px 0;
}

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

.goh-skip-link {
    position: fixed;
    top: 8px;
    left: 12px;
    z-index: 9999;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--goh-ink);
    color: #fff;
    font: 700 13px/1 var(--goh-sans);
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.goh-skip-link:focus {
    transform: translateY(0);
}

/* Header */
.goh-site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid rgba(115, 19, 33, .08);
    background: rgba(255, 253, 249, .91);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .72);
    backdrop-filter: blur(22px) saturate(1.15);
    transition: box-shadow .35s ease, border-color .35s ease, background-color .35s ease;
}

body.admin-bar .goh-site-header {
    top: 32px;
}

.goh-site-header::before {
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--goh-red-deep), var(--goh-red) 46%, #d91f38 63%, var(--goh-red-dark));
    content: "";
}

.goh-site-header.is-scrolled {
    border-color: rgba(115, 19, 33, .12);
    background: rgba(255, 253, 249, .975);
    box-shadow: 0 14px 40px rgba(55, 21, 28, .09);
}

.goh-nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 28px, 1400px);
    height: 78px;
    margin-inline: auto;
    padding-top: 3px;
    transition: height .35s ease;
}

.goh-site-header.is-scrolled .goh-nav-shell {
    height: 70px;
}

.goh-brand {
    position: relative;
    z-index: 1002;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.goh-brand-mark {
    display: inline-grid;
    width: 42px;
    height: 28px;
    place-items: center;
}

.goh-brand-mark svg {
    width: 100%;
    overflow: visible;
    fill: none;
    stroke: var(--goh-red);
    stroke-linecap: round;
    stroke-width: 3;
}

.goh-brand-copy {
    font: 600 22px/1 var(--goh-serif);
    letter-spacing: -.02em;
}

.goh-brand-copy strong {
    color: var(--goh-red);
    font-weight: 700;
}

.goh-site-header .goh-brand {
    gap: 11px;
}

.goh-site-header .goh-brand-mark {
    width: 48px;
    height: 36px;
    border: 1px solid rgba(183, 15, 34, .14);
    border-radius: 999px;
    background: linear-gradient(145deg, #fff, #f8ebe8);
    box-shadow: inset 0 1px 0 #fff, 0 7px 18px rgba(115, 19, 33, .08);
}

.goh-site-header .goh-brand-mark svg {
    width: 32px;
}

.goh-site-header .goh-brand-copy {
    font-size: 22px;
    white-space: nowrap;
}

.goh-menu-toggle {
    position: relative;
    z-index: 1002;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 12px 11px;
    border: 1px solid rgba(115, 19, 33, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 8px 22px rgba(61, 13, 22, .08);
    cursor: pointer;
    transition: border-color .25s ease, background-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.goh-menu-toggle:hover {
    border-color: rgba(183, 15, 34, .42);
    box-shadow: 0 10px 24px rgba(61, 13, 22, .13);
    transform: translateY(-1px);
}

.goh-menu-toggle > span:not(.goh-sr-only) {
    display: block;
    width: 21px;
    height: 1.5px;
    margin: auto;
    border-radius: 999px;
    background: var(--goh-red-dark);
    transition: transform .25s ease, opacity .25s ease;
}

.goh-menu-toggle > span:nth-of-type(3) {
    width: 14px;
    margin-right: 0;
}

.goh-menu-toggle[aria-expanded="true"] {
    border-color: var(--goh-red-dark);
    background: var(--goh-red-dark);
    box-shadow: 0 10px 28px rgba(75, 9, 20, .2);
}

.goh-menu-toggle[aria-expanded="true"] > span:not(.goh-sr-only) {
    width: 21px;
    background: #fff;
}

.goh-menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(6px) rotate(45deg);
}

.goh-menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
}

.goh-menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-6px) rotate(-45deg);
}

.goh-primary-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: 19px;
    overflow-y: auto;
    padding: calc(104px + env(safe-area-inset-top)) 24px calc(28px + env(safe-area-inset-bottom));
    background:
        radial-gradient(circle at 100% 15%, rgba(183, 15, 34, .09), transparent 34%),
        linear-gradient(145deg, #fffdf9 0%, #faf4ef 62%, #f2e4df 100%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-10px) scale(.99);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}

.goh-primary-nav::after {
    position: fixed;
    right: -150px;
    bottom: -220px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(183, 15, 34, .11);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(183, 15, 34, .025), 0 0 0 90px rgba(183, 15, 34, .018);
    content: "";
    pointer-events: none;
}

body.menu-open .goh-site-header {
    height: 100dvh;
    background: var(--goh-paper);
    backdrop-filter: none;
}

.goh-primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
}

.goh-nav-kicker,
.goh-nav-links,
.goh-primary-nav .goh-nav-cta,
.goh-nav-note {
    position: relative;
    z-index: 1;
    width: min(100%, 430px);
    margin-inline: auto;
}

.goh-nav-kicker {
    display: block;
    color: var(--goh-red);
    font: 700 10px/1.2 var(--goh-sans);
    letter-spacing: .19em;
    text-transform: uppercase;
}

.goh-nav-links {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(115, 19, 33, .16);
}

.goh-nav-link {
    position: relative;
    display: flex;
    min-height: clamp(50px, 9vh, 64px);
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(115, 19, 33, .14);
    font: 600 clamp(27px, 8vw, 36px)/1 var(--goh-serif);
    letter-spacing: -.025em;
    transition: color .2s ease, padding-left .25s ease;
}

.goh-nav-link::after {
    position: absolute;
    right: 2px;
    color: rgba(115, 19, 33, .38);
    content: "→";
    font: 400 18px/1 var(--goh-sans);
    transition: color .2s ease, transform .25s ease;
}

.goh-nav-link:hover {
    padding-left: 6px;
    color: var(--goh-red);
}

.goh-nav-link:hover::after {
    color: var(--goh-red);
    transform: translateX(4px);
}

.goh-nav-index {
    width: 18px;
    color: rgba(115, 19, 33, .55);
    font: 700 8px/1 var(--goh-sans);
    letter-spacing: .08em;
}

.goh-primary-nav .goh-nav-cta {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 12px 10px 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--goh-red-dark), #95152a);
    box-shadow: 0 16px 32px rgba(83, 12, 25, .2);
    color: #fff;
    transition: box-shadow .25s ease, transform .25s ease;
}

.goh-primary-nav .goh-nav-cta:hover {
    box-shadow: 0 20px 38px rgba(83, 12, 25, .27);
    transform: translateY(-2px);
}

.goh-nav-cta-copy {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font: 700 13px/1 var(--goh-sans);
}

.goh-nav-cta-copy small {
    color: rgba(255, 255, 255, .67);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .025em;
}

.goh-nav-cta-arrow {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 50%;
    background: rgba(255, 255, 255, .11);
    font-size: 15px;
}

.goh-nav-note {
    margin-top: 1px;
    margin-bottom: 0;
    color: rgba(71, 61, 63, .68);
    font: italic 500 17px/1.2 var(--goh-serif);
}

@media (max-width: 359px) {
    .goh-site-header .goh-brand {
        gap: 8px;
    }

    .goh-site-header .goh-brand-mark {
        width: 43px;
    }

    .goh-site-header .goh-brand-copy {
        font-size: 20px;
    }

    .goh-brand-prefix {
        display: none;
    }

    .goh-primary-nav {
        gap: 14px;
        padding-inline: 18px;
    }
}

@media screen and (max-width: 782px) {
    body.admin-bar .goh-site-header {
        top: 46px;
    }
}

/* Type and controls */
.goh-kicker,
.goh-eyebrow {
    margin: 0 0 18px;
    color: var(--goh-red);
    font: 700 11px/1.3 var(--goh-sans);
    letter-spacing: .18em;
    text-transform: uppercase;
}

.goh-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.goh-eyebrow span {
    width: 30px;
    height: 1px;
    background: currentColor;
}

.goh-section h2 {
    max-width: 850px;
    margin: 0;
    font: 600 clamp(40px, 7vw, 70px)/.98 var(--goh-serif);
    letter-spacing: -.045em;
}

.goh-section h2 em {
    color: var(--goh-red);
    font-weight: 500;
}

.goh-section-heading {
    margin-bottom: 44px;
}

.goh-section-heading--center {
    max-width: 780px;
    margin-inline: auto;
    text-align: center;
}

.goh-section-heading--center h2 {
    margin-inline: auto;
}

.goh-section-heading > p:not(.goh-kicker) {
    max-width: 580px;
    margin: 22px 0 0;
    color: var(--goh-ink-soft);
    font-size: 17px;
}

.goh-section-heading--center > p:not(.goh-kicker) {
    margin-inline: auto;
}

.goh-button-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
}

.goh-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font: 700 13px/1.2 var(--goh-sans);
    letter-spacing: .015em;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

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

.goh-button:focus-visible,
.goh-text-link:focus-visible,
.goh-primary-nav a:focus-visible,
.goh-menu-toggle:focus-visible,
.goh-signup-form input:focus-visible {
    outline: 3px solid rgba(183, 15, 34, .32);
    outline-offset: 4px;
}

.goh-button--primary {
    background: var(--goh-red-dark);
    box-shadow: 0 12px 28px rgba(115, 19, 33, .22);
    color: #fff;
}

.goh-button--primary:hover {
    background: var(--goh-red);
    box-shadow: 0 16px 36px rgba(115, 19, 33, .3);
}

.goh-button--light {
    background: #fff;
    box-shadow: 0 12px 30px rgba(32, 9, 14, .18);
    color: var(--goh-red-dark);
}

.goh-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0 5px;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 700;
    transition: color .2s ease, gap .2s ease;
}

.goh-text-link:hover {
    gap: 15px;
    color: var(--goh-red);
}

.goh-text-link--large {
    margin-top: 25px;
    font-size: 15px;
}

/* Hero */
.goh-hero {
    position: relative;
    display: flex;
    min-height: 760px;
    align-items: center;
    padding: 118px 0 76px;
    background:
        radial-gradient(circle at 92% 12%, rgba(183, 15, 34, .09), transparent 32%),
        linear-gradient(135deg, #fffdf9 0%, #faf5ef 58%, #f3e7e1 100%);
}

.goh-hero::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 70%, rgba(255, 255, 255, .7), transparent 35%);
    content: "";
    pointer-events: none;
}

.goh-hero-orbit {
    position: absolute;
    top: 13%;
    right: -19vw;
    width: 61vw;
    aspect-ratio: 1;
    border: 1px solid rgba(183, 15, 34, .075);
    border-radius: 50%;
    pointer-events: none;
}

.goh-hero-orbit::before,
.goh-hero-orbit::after {
    display: none;
}

.goh-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 48px;
}

.goh-hero-copy {
    max-width: 680px;
}

.goh-hero h1 {
    max-width: 680px;
    margin: 0;
    font: 600 clamp(50px, 14vw, 72px)/.92 var(--goh-serif);
    letter-spacing: -.045em;
}

.goh-hero h1 span {
    display: block;
}

.goh-hero-emphasis {
    margin: 20px 0 24px;
    color: var(--goh-red);
    font: italic 500 clamp(27px, 7vw, 38px)/1.08 var(--goh-serif);
}

.goh-hero-lede {
    max-width: 620px;
    margin: 0;
    color: var(--goh-ink-soft);
    font-size: 18px;
    line-height: 1.7;
}

.goh-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 10px;
    margin-top: 28px;
    color: #655a5c;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.goh-hero .goh-button-row {
    width: 100%;
    gap: 14px;
    margin-top: 30px;
}

.goh-hero .goh-button {
    width: 100%;
    min-height: 56px;
    padding: 16px 24px;
    font-size: 16px;
}

.goh-button--secondary {
    border-color: rgba(115, 19, 33, .28);
    background: rgba(255, 253, 249, .62);
    color: var(--goh-red-dark);
}

.goh-button--secondary:hover {
    border-color: var(--goh-red-dark);
    background: var(--goh-paper);
    box-shadow: 0 12px 28px rgba(67, 19, 29, .1);
}

.goh-hero-art {
    position: relative;
    width: min(100%, 500px);
    min-height: 510px;
    margin-inline: auto;
}

.goh-portrait-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 90%;
    overflow: hidden;
    border: 8px solid rgba(255, 253, 249, .9);
    border-radius: 260px 260px 34px 34px;
    box-shadow: 0 24px 60px rgba(67, 19, 29, .14);
}

.goh-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% 20%;
}

.goh-book-float {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
    display: block;
    width: min(42%, 210px);
    aspect-ratio: 5 / 8;
    transform: rotate(-2deg);
    transition: transform .35s cubic-bezier(.2, .7, .2, 1);
}

.goh-book-float:hover {
    transform: rotate(0) translateY(-6px);
}

.goh-book-float img {
    width: 100%;
    height: 100%;
    border-radius: 3px 8px 8px 3px;
    box-shadow: 16px 22px 42px rgba(52, 13, 22, .24);
    object-fit: cover;
}

/* Hidden grief */
.goh-grief {
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 88% 18%, rgba(203, 53, 74, .12), transparent 32%),
        linear-gradient(140deg, #430912 0%, #5b0d1b 52%, #3b0811 100%);
    color: #fff;
}

.goh-grief::before {
    display: none;
}

.goh-grief::after {
    position: absolute;
    inset: 0 0 auto;
    z-index: 2;
    height: 4px;
    background: linear-gradient(90deg, #801426, #d84a5d 50%, #801426);
    content: "";
}

.goh-grief-ambient {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.goh-grief-ambient::before {
    position: absolute;
    top: -23vw;
    right: -15vw;
    width: 58vw;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 211, 216, .065);
    border-radius: 50%;
    content: "";
}

.goh-grief-ambient::after {
    display: none;
}

.goh-grief-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 56px;
}

.goh-grief-intro {
    position: relative;
}

.goh-grief-intro .goh-kicker {
    margin-bottom: 20px;
    font-size: 12px;
}

.goh-grief h2 {
    max-width: 610px;
    font-size: clamp(46px, 10vw, 76px);
    line-height: .96;
}

.goh-grief-intro p:not(.goh-kicker) {
    max-width: 540px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
    line-height: 1.7;
}

.goh-grief .goh-kicker {
    color: #f1b8be;
}

.goh-grief h2 em {
    color: #f8bdc3;
}

.goh-grief-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 30px;
}

.goh-grief-signals span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .055);
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 600;
}

.goh-grief-signals span::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e25c6d;
    box-shadow: 0 0 0 4px rgba(226, 92, 109, .12);
    content: "";
}

.goh-grief .goh-question-card {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 4vw, 48px);
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 30px;
    background: #fffaf6;
    box-shadow: 0 32px 80px rgba(18, 0, 4, .28), 0 1px 0 rgba(255, 255, 255, .7) inset;
    color: var(--goh-ink);
}

.goh-question-card::before {
    position: absolute;
    inset: 0 0 auto;
    z-index: 2;
    height: 5px;
    background: linear-gradient(90deg, var(--goh-red-dark), #d73f54, var(--goh-red-dark));
    content: "";
}

.goh-question-card-kicker {
    margin: 0;
    color: var(--goh-red-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.goh-question-small {
    margin: 0;
    color: #796d70;
    font-size: 15px;
    font-weight: 600;
}

.goh-question-card blockquote {
    margin: 8px 0 0;
    font: italic 500 clamp(40px, 6vw, 56px)/1 var(--goh-serif);
    letter-spacing: -.025em;
}

.goh-question-prompt {
    margin-top: 34px;
}

.goh-question-shift {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 28px 0;
    color: #966f76;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-align: center;
    text-transform: uppercase;
}

.goh-question-shift span {
    width: min(64px, 12vw);
    height: 1px;
    background: rgba(115, 19, 33, .23);
}

.goh-question-answer-panel {
    position: relative;
    padding: clamp(22px, 3vw, 30px);
    border: 1px solid rgba(115, 19, 33, .11);
    border-radius: 20px;
    background: linear-gradient(140deg, #f7e9e5, #f3dedb);
}

.goh-question-card .goh-question-answer {
    margin-top: 0;
    color: var(--goh-red-dark);
    font-size: clamp(48px, 6vw, 66px);
}

.goh-question-answer-panel > p {
    max-width: 470px;
    margin: 14px 0 0;
    color: var(--goh-ink-soft);
    font-size: 16px;
    line-height: 1.6;
}

.goh-question-losses {
    margin-top: 28px;
}

.goh-question-losses > p {
    margin: 0;
    color: var(--goh-red-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.goh-question-card .goh-losses-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.goh-question-card .goh-losses-strip span {
    padding: 9px 13px;
    border: 1px solid rgba(115, 19, 33, .16);
    border-radius: 999px;
    background: rgba(115, 19, 33, .035);
    color: #66575a;
    font-size: 14px;
    line-height: 1.3;
}

.goh-question-card > .goh-button {
    min-height: 56px;
    margin-top: 28px;
    padding-inline: 24px;
    font-size: 16px;
}

.goh-disclaimer {
    margin: 28px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(115, 19, 33, .12);
    color: #766a6c;
    font-size: 13px;
    line-height: 1.6;
}

.goh-disclaimer strong {
    color: var(--goh-red-dark);
}

@media (max-width: 479px) {
    .goh-grief .goh-question-card {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .goh-grief-signals {
        display: grid;
    }

    .goh-grief-signals span {
        width: 100%;
    }

    .goh-question-answer-panel {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .goh-question-card .goh-losses-strip {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .goh-question-card .goh-losses-strip span {
        display: grid;
        min-height: 42px;
        place-items: center;
        padding-inline: 8px;
        font-size: 13px;
        text-align: center;
    }

    .goh-question-card > .goh-button {
        width: 100%;
    }
}

/* Book */
.goh-book-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 2% 10%, rgba(183, 15, 34, .08), transparent 27%),
        radial-gradient(circle at 100% 48%, rgba(197, 162, 118, .13), transparent 34%),
        linear-gradient(145deg, #f8f2ec 0%, #f2e8df 52%, #faf6f1 100%);
}

.goh-book-section::before {
    position: absolute;
    top: 4%;
    left: -24vw;
    width: 58vw;
    aspect-ratio: 1;
    border: 1px solid rgba(183, 15, 34, .09);
    border-radius: 50%;
    box-shadow: 0 0 0 6vw rgba(183, 15, 34, .018), 0 0 0 12vw rgba(183, 15, 34, .012);
    content: "";
    pointer-events: none;
}

.goh-book-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 58px;
}

.goh-book-stage {
    position: relative;
    display: grid;
    min-height: 470px;
    overflow: hidden;
    padding: 35px;
    border: 1px solid rgba(115, 19, 33, .12);
    border-radius: 36px;
    background:
        linear-gradient(155deg, rgba(255, 255, 255, .8), rgba(255, 250, 246, .42)),
        repeating-linear-gradient(90deg, transparent 0 39px, rgba(115, 19, 33, .025) 39px 40px);
    box-shadow: 0 32px 80px rgba(72, 20, 31, .12), inset 0 1px 0 rgba(255, 255, 255, .8);
    place-items: center;
}

.goh-book-stage::before {
    position: absolute;
    bottom: 9%;
    left: 20%;
    width: 60%;
    height: 30px;
    border-radius: 50%;
    background: rgba(63, 15, 24, .22);
    content: "";
    filter: blur(16px);
}

.goh-book-stage::after {
    position: absolute;
    right: -9%;
    bottom: 10%;
    z-index: 1;
    width: 78%;
    height: 90px;
    border-top: 11px solid rgba(183, 15, 34, .94);
    border-radius: 50%;
    box-shadow: 0 -5px 0 rgba(218, 49, 69, .55);
    content: "";
    transform: rotate(-9deg);
}

.goh-book-stage-label {
    position: absolute;
    top: 25px;
    left: 27px;
    color: rgba(115, 19, 33, .55);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.goh-book-halo {
    position: absolute;
    width: 76%;
    aspect-ratio: 1;
    border: 1px solid rgba(183, 15, 34, .14);
    border-radius: 50%;
}

.goh-book-halo::before,
.goh-book-halo::after {
    position: absolute;
    inset: 12%;
    border: inherit;
    border-radius: inherit;
    content: "";
}

.goh-book-halo::after {
    inset: 26%;
}

.goh-book-cover {
    position: relative;
    z-index: 2;
    display: block;
    width: min(68%, 255px);
    height: auto;
    aspect-ratio: 5 / 8;
    border-radius: 3px 8px 8px 3px;
    box-shadow: 28px 34px 60px rgba(61, 14, 23, .25), -8px 0 0 #eee8e2;
    object-fit: cover;
    transform: perspective(1200px) rotateY(-7deg) rotateZ(-2deg);
}

.goh-book-formats {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 5px;
}

.goh-book-formats span {
    padding: 8px 11px;
    border: 1px solid rgba(115, 19, 33, .16);
    border-radius: 999px;
    background: rgba(255, 253, 249, .88);
    box-shadow: 0 8px 18px rgba(62, 12, 22, .08);
    color: var(--goh-ink-soft);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.goh-book-copy .goh-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.goh-book-copy .goh-kicker span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(183, 15, 34, .2);
    border-radius: 50%;
    font-size: 8px;
    letter-spacing: .05em;
}

.goh-book-copy h2 {
    max-width: 650px;
}

.goh-book-copy > p:not(.goh-kicker):not(.goh-book-subtitle) {
    max-width: 610px;
    color: var(--goh-ink-soft);
    font-size: 16px;
    line-height: 1.75;
}

.goh-book-subtitle {
    max-width: 540px;
    margin: 24px 0;
    color: var(--goh-red-dark);
    font: italic 500 clamp(23px, 3vw, 28px)/1.15 var(--goh-serif);
}

.goh-foreword {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding: 14px 18px;
    border: 1px solid rgba(115, 19, 33, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .52);
}

.goh-foreword span {
    color: #74686b;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.goh-foreword strong {
    font: 600 23px/1 var(--goh-serif);
}

.goh-book-gallery {
    position: relative;
    z-index: 1;
    margin-top: clamp(80px, 10vw, 130px);
    padding-top: clamp(42px, 6vw, 70px);
    border-top: 1px solid rgba(115, 19, 33, .14);
}

.goh-book-gallery-heading {
    display: grid;
    gap: 16px;
    margin-bottom: 34px;
}

.goh-book-gallery-heading .goh-kicker {
    margin: 0;
}

.goh-book-gallery-heading h3 {
    max-width: 720px;
    margin: 0;
    font: 600 clamp(40px, 8vw, 62px)/.98 var(--goh-serif);
    letter-spacing: -.04em;
}

.goh-book-gallery-heading h3 em {
    color: var(--goh-red);
    font-weight: 500;
}

.goh-book-gallery-heading > p:not(.goh-kicker) {
    max-width: 560px;
    margin: 0;
    color: var(--goh-ink-soft);
    font-size: 15px;
}

.goh-photo-directions {
    display: grid;
    gap: 16px;
}

.goh-book-photo {
    position: relative;
    height: 300px;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(115, 19, 33, .16);
    border-radius: 24px;
    background: var(--goh-red-deep);
    box-shadow: 0 20px 50px rgba(63, 16, 26, .12);
}

.goh-book-photo::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 42%, rgba(31, 3, 10, .84));
    content: "";
    pointer-events: none;
}

.goh-book-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2, .7, .2, 1), filter .4s ease;
}

.goh-book-photo:hover img {
    filter: saturate(1.04) contrast(1.02);
    transform: scale(1.035);
}

.goh-book-photo figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px;
    color: #fff;
}

.goh-book-photo figcaption span {
    color: #f5bcc2;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.goh-book-photo figcaption strong {
    max-width: 420px;
    font: 600 clamp(22px, 4vw, 30px)/1 var(--goh-serif);
    letter-spacing: -.02em;
}

.goh-book-photo--portrait img {
    object-position: center 18%;
}

@media (max-width: 479px) {
    .goh-book-stage {
        padding: 24px;
        border-radius: 28px;
    }

    .goh-book-stage-label {
        top: 20px;
        left: 20px;
    }

    .goh-book-cover {
        width: min(76%, 240px);
    }

    .goh-book-formats {
        right: 16px;
        bottom: 16px;
    }
}

/* Reviews */
.goh-reviews {
    background: var(--goh-paper);
}

.goh-rating {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 0 10px;
    margin-top: 24px;
}

.goh-stars {
    grid-column: 1 / -1;
    color: var(--goh-red);
    font-size: 13px;
    letter-spacing: .15em;
}

.goh-rating strong {
    font: 600 36px/1 var(--goh-serif);
}

.goh-rating small {
    padding-bottom: 4px;
    color: #74686b;
    font-size: 10px;
}

.goh-review-grid {
    display: grid;
    gap: 14px;
}

.goh-review-card {
    position: relative;
    display: flex;
    min-height: 270px;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--goh-line);
    border-radius: 20px;
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.goh-review-card:hover {
    border-color: rgba(183, 15, 34, .28);
    box-shadow: 0 18px 46px rgba(52, 16, 24, .09);
    transform: translateY(-5px);
}

.goh-review-card::after {
    position: absolute;
    right: -38px;
    bottom: -38px;
    width: 105px;
    height: 105px;
    border: 1px solid rgba(183, 15, 34, .13);
    border-radius: 50%;
    content: "";
}

.goh-quote-mark {
    color: var(--goh-red);
    font: 600 58px/.5 var(--goh-serif);
}

.goh-review-card blockquote {
    margin: 20px 0 36px;
    font: italic 500 30px/1.08 var(--goh-serif);
}

.goh-review-card figcaption {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.goh-review-card figcaption strong {
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.goh-review-card figcaption span {
    color: #7c7173;
    font-size: 10px;
}

.goh-review-source {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 30px;
}

.goh-review-source p {
    margin: 0;
    color: #7c7173;
    font-size: 10px;
}

/* Masterclass */
.goh-learn {
    background: #201719;
    color: #fff;
}

.goh-learn .goh-kicker {
    color: #efb7bd;
}

.goh-learn .goh-section-heading > p:not(.goh-kicker) {
    color: rgba(255, 255, 255, .65);
}

.goh-masterclass-card {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--goh-radius);
    background: #f7f1eb;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
    color: var(--goh-ink);
}

.goh-masterclass-visual {
    position: relative;
    display: flex;
    min-height: 420px;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 25px;
    background: #4a151e;
    color: #fff;
}

.goh-masterclass-visual::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(35, 7, 13, .88) 0%, rgba(49, 10, 18, .24) 48%, rgba(35, 7, 13, .08) 72%);
    content: "";
    pointer-events: none;
}

.goh-masterclass-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
}

.goh-upcoming {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    padding: 9px 13px;
    border: 1px solid rgba(115, 19, 33, .14);
    border-radius: 999px;
    background: rgba(255, 250, 246, .94);
    box-shadow: 0 10px 26px rgba(35, 7, 13, .16);
    color: var(--goh-red-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.goh-masterclass-visual-copy {
    position: relative;
    z-index: 2;
    max-width: 420px;
}

.goh-masterclass-visual-copy span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .74);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.goh-masterclass-visual-copy strong {
    display: block;
    font: 600 clamp(30px, 4vw, 42px)/.98 var(--goh-serif);
    letter-spacing: -.025em;
    text-wrap: balance;
}

.goh-masterclass-content {
    padding: 32px 25px;
}

.goh-masterclass-content > p {
    margin-top: 0;
    color: var(--goh-ink-soft);
    font-size: 15px;
}

.goh-topic-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 25px 0;
}

.goh-topic-list span {
    padding: 8px 11px;
    border: 1px solid rgba(115, 19, 33, .15);
    border-radius: 999px;
    background: rgba(115, 19, 33, .035);
    color: var(--goh-red-dark);
    font-size: 9px;
    font-weight: 700;
}

.goh-event-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 30px 0;
    border-top: 1px solid var(--goh-line);
    border-left: 1px solid var(--goh-line);
}

.goh-event-meta div {
    min-height: 80px;
    padding: 14px;
    border-right: 1px solid var(--goh-line);
    border-bottom: 1px solid var(--goh-line);
}

.goh-event-meta dt {
    color: #85797b;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.goh-event-meta dd {
    margin: 6px 0 0;
    font: 600 17px/1.1 var(--goh-serif);
}

/* About */
.goh-about {
    background: var(--goh-paper);
}

.goh-about-grid {
    display: grid;
    gap: 60px;
}

.goh-about-visual {
    position: relative;
    width: min(100%, 520px);
    margin-inline: auto;
}

.goh-about-photo {
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border-radius: 220px 220px 24px 24px;
    background: var(--goh-blush);
    box-shadow: var(--goh-shadow);
}

.goh-about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 22%;
}

.goh-experience-seal {
    position: absolute;
    right: -8px;
    bottom: 28px;
    display: flex;
    width: 120px;
    height: 120px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--goh-paper);
    border-radius: 50%;
    background: var(--goh-red-dark);
    box-shadow: 0 18px 40px rgba(66, 11, 22, .2);
    color: #fff;
    text-align: center;
}

.goh-experience-seal strong {
    font: 600 36px/.9 var(--goh-serif);
}

.goh-experience-seal span {
    margin-top: 6px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .07em;
    line-height: 1.25;
    text-transform: uppercase;
}

.goh-about-copy > p:not(.goh-kicker) {
    max-width: 650px;
    color: var(--goh-ink-soft);
}

.goh-credential-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 620px;
    margin: 28px 0 0;
    padding: 0;
    border-top: 1px solid var(--goh-line);
    border-left: 1px solid var(--goh-line);
    list-style: none;
}

.goh-credential-list li {
    position: relative;
    padding: 15px 10px 15px 28px;
    border-right: 1px solid var(--goh-line);
    border-bottom: 1px solid var(--goh-line);
    font-size: 10px;
    font-weight: 700;
}

.goh-credential-list li::before {
    position: absolute;
    top: 50%;
    left: 12px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--goh-red);
    content: "";
    transform: translateY(-50%);
}

/* Resources */
.goh-resources {
    background: var(--goh-cream);
}

.goh-resource-grid {
    display: grid;
    gap: 18px;
}

.goh-resource-card {
    overflow: hidden;
    border: 1px solid var(--goh-line);
    border-radius: 22px;
    background: var(--goh-paper);
    transition: transform .3s ease, box-shadow .3s ease;
}

.goh-resource-card:hover {
    box-shadow: 0 20px 50px rgba(63, 17, 26, .1);
    transform: translateY(-6px);
}

.goh-resource-card > a {
    display: block;
    height: 100%;
    padding: 14px 14px 25px;
}

.goh-resource-image {
    position: relative;
    display: flex;
    min-height: 210px;
    align-items: flex-end;
    overflow: hidden;
    margin-bottom: 22px;
    padding: 15px;
    border-radius: 14px;
    background-color: #ded3cc;
}

.goh-resource-image::before,
.goh-resource-image::after {
    position: absolute;
    content: "";
}

.goh-resource-image::before {
    inset: 0;
    background: linear-gradient(to top, rgba(35, 14, 18, .42), transparent 60%);
}

.goh-resource-image::after {
    top: 18%;
    left: 18%;
    width: 64%;
    height: 56%;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50% 50% 10px 10px;
}

.goh-resource-image--one {
    background: linear-gradient(145deg, #bcae9f, #eee4d9 48%, #a14650);
}

.goh-resource-image--two {
    background: linear-gradient(145deg, #5e2c36, #c7a6a5 52%, #e9ded4);
}

.goh-resource-image--three {
    background: linear-gradient(145deg, #e6d4cb, #b78581 48%, #6b3039);
}

.goh-resource-image--photo::after {
    display: none;
}

.goh-resource-image span {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, .92);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.goh-resource-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter .35s ease, transform .55s cubic-bezier(.2, .7, .2, 1);
}

.goh-resource-card:hover .goh-resource-image img {
    filter: saturate(1.04) contrast(1.02);
    transform: scale(1.04);
}

.goh-resource-image--two img {
    object-position: center 58%;
}

.goh-resource-image--three img {
    object-position: center 54%;
}

.goh-resource-type {
    color: var(--goh-red);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.goh-resource-card h3 {
    margin: 10px 0 12px;
    font: 600 29px/1.02 var(--goh-serif);
    letter-spacing: -.025em;
}

.goh-resource-card p {
    color: var(--goh-ink-soft);
    font-size: 12px;
}

.goh-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 10px;
    font-weight: 700;
}

.goh-resource-topics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.goh-resource-topics span {
    padding: 8px 11px;
    border: 1px solid var(--goh-line);
    border-radius: 999px;
    color: #73676a;
    font-size: 9px;
}

/* Ecosystem */
.goh-ecosystem {
    background: var(--goh-paper);
}

.goh-ecosystem-grid {
    display: grid;
    gap: 14px;
}

.goh-ecosystem-card {
    position: relative;
    display: flex;
    min-height: 310px;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--goh-line);
    border-radius: 22px;
    background: linear-gradient(145deg, #fff, #f6f0eb);
    transition: color .35s ease, transform .35s ease, box-shadow .35s ease;
}

.goh-ecosystem-card::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, var(--goh-red-dark), var(--goh-red-deep));
    content: "";
    opacity: 0;
    transition: opacity .35s ease;
}

.goh-ecosystem-card::after {
    position: absolute;
    top: -65px;
    right: -65px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(183, 15, 34, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 35px rgba(183, 15, 34, .03), 0 0 0 70px rgba(183, 15, 34, .02);
    content: "";
}

.goh-ecosystem-card:hover {
    box-shadow: 0 24px 55px rgba(65, 12, 22, .16);
    color: #fff;
    transform: translateY(-6px);
}

.goh-ecosystem-card:hover::before {
    opacity: 1;
}

.goh-ecosystem-card > * {
    position: relative;
    z-index: 2;
}

.goh-eco-index {
    position: absolute;
    top: 24px;
    left: 28px;
    color: var(--goh-red);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
}

.goh-ecosystem-card:hover .goh-eco-index {
    color: #ffcbd0;
}

.goh-ecosystem-card h3 {
    margin: 0 0 10px;
    font: 600 40px/1 var(--goh-serif);
}

.goh-ecosystem-card p {
    min-height: 58px;
    margin: 0;
    color: var(--goh-ink-soft);
    font-size: 12px;
}

.goh-ecosystem-card:hover p {
    color: rgba(255, 255, 255, .7);
}

.goh-ecosystem-card > span:last-child {
    margin-top: 26px;
    font-size: 10px;
    font-weight: 700;
}

/* Community */
.goh-community {
    overflow: hidden;
    background: linear-gradient(140deg, #821323, #4d0b15 75%);
    color: #fff;
}

.goh-community-ribbon {
    position: absolute;
    inset: auto -3% -5%;
    height: 60%;
    pointer-events: none;
}

.goh-community-ribbon svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    fill: none;
    stroke: rgba(255, 255, 255, .12);
    stroke-linecap: round;
    stroke-width: 18;
}

.goh-community-ribbon path + path {
    stroke: rgba(255, 255, 255, .055);
    stroke-width: 7;
}

.goh-community-grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 44px;
}

.goh-community .goh-kicker {
    color: #ffc4ca;
}

.goh-community-grid > div > p:not(.goh-kicker):not(.goh-community-promise) {
    max-width: 560px;
    color: rgba(255, 255, 255, .68);
}

.goh-community-promise {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 25px;
    color: rgba(255, 255, 255, .82);
    font-size: 10px;
    font-weight: 700;
}

.goh-community-promise span {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
}

.goh-signup-form {
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 22px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
}

.goh-form-row {
    display: grid;
    gap: 16px;
}

.goh-signup-form label > span:not(.goh-consent span) {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, .7);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.goh-signup-form input[type="text"],
.goh-signup-form input[type="email"] {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, .21);
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    outline: 0;
}

.goh-signup-form input::placeholder {
    color: rgba(255, 255, 255, .42);
}

.goh-consent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    margin: 18px 0;
    color: rgba(255, 255, 255, .62);
    font-size: 9px;
    line-height: 1.5;
}

.goh-consent input {
    width: 17px;
    height: 17px;
    margin: 1px 0 0;
    accent-color: var(--goh-red);
}

.goh-privacy-note {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .46);
    font-size: 9px;
}

.goh-privacy-note a {
    color: rgba(255, 255, 255, .78);
    text-decoration: underline;
}

.goh-form-message {
    margin-bottom: 18px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 195, 202, .3);
    border-radius: 10px;
    background: rgba(255, 195, 202, .1);
    font-size: 11px;
}

.goh-form-message--success {
    border-color: rgba(190, 240, 205, .3);
    background: rgba(190, 240, 205, .1);
}

/* Footer */
.goh-footer {
    position: relative;
    overflow: hidden;
    padding: 75px 0 25px;
    background: #170f11;
    color: #fff;
}

.goh-footer-ribbon {
    position: absolute;
    top: -22px;
    left: -5%;
    width: 110%;
    height: 44px;
    background: linear-gradient(90deg, var(--goh-red), #e14b57 45%, var(--goh-red-dark));
    transform: rotate(-1deg);
}

.goh-footer-grid {
    display: grid;
    gap: 45px;
}

.goh-brand--footer .goh-brand-copy {
    font-size: 25px;
}

.goh-footer-intro > p:not(.goh-footer-byline) {
    margin: 25px 0 0;
    color: rgba(255, 255, 255, .67);
    font: italic 500 27px/1.12 var(--goh-serif);
}

.goh-footer-byline {
    color: #eabcc0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.goh-footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 25px;
}

.goh-footer-nav h2 {
    margin: 0 0 15px;
    color: rgba(255, 255, 255, .42);
    font: 700 9px/1 var(--goh-sans);
    letter-spacing: .15em;
    text-transform: uppercase;
}

.goh-footer-nav a {
    display: block;
    margin: 8px 0;
    color: rgba(255, 255, 255, .73);
    font-size: 11px;
    transition: color .2s ease;
}

.goh-footer-nav a:hover,
.goh-legal-links a:hover {
    color: #ffc6cb;
}

.goh-footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 55px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .11);
    color: rgba(255, 255, 255, .42);
    font-size: 9px;
}

.goh-footer-bottom p {
    margin: 0;
}

.goh-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 17px;
}

/* Reveal motion */
[data-reveal] {
    opacity: 1;
    transform: none;
}

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

.js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.js [data-reveal-delay="1"] {
    transition-delay: .1s;
}

.js [data-reveal-delay="2"] {
    transition-delay: .2s;
}

.js [data-reveal-delay="3"] {
    transition-delay: .3s;
}

@media (min-width: 640px) {
    .goh-container {
        width: min(100% - 64px, var(--goh-container));
    }

    .goh-section {
        padding: 110px 0;
    }

    .goh-button-row {
        flex-direction: row;
        align-items: center;
    }

    .goh-hero .goh-button {
        width: auto;
    }

    .goh-hero-art {
        min-height: 600px;
    }

    .goh-question-card,
    .goh-masterclass-content,
    .goh-signup-form {
        padding: 40px;
    }

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

    .goh-book-photo--wide {
        grid-column: 1 / -1;
        min-height: 320px;
    }

    .goh-book-photo:not(.goh-book-photo--wide) {
        min-height: 320px;
    }

    .goh-review-grid,
    .goh-resource-grid,
    .goh-ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .goh-footer-nav {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 960px) {
    .goh-hero {
        min-height: 100svh;
        padding: 126px 0 76px;
    }

    .goh-hero-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(410px, .9fr);
        align-items: center;
        gap: 52px;
    }

    .goh-hero h1 {
        font-size: clamp(68px, 6vw, 88px);
    }

    .goh-hero-art {
        height: clamp(510px, 56vh, 610px);
        min-height: 0;
    }

    .goh-grief-grid,
    .goh-book-grid,
    .goh-about-grid,
    .goh-community-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
        gap: 8vw;
    }

    .goh-book-grid {
        grid-template-columns: minmax(410px, .9fr) minmax(0, 1.1fr);
        gap: clamp(60px, 7vw, 105px);
    }

    .goh-question-card {
        padding: 50px;
    }

    .goh-grief-grid {
        grid-template-columns: minmax(0, .86fr) minmax(500px, 1.14fr);
        gap: clamp(60px, 7vw, 110px);
    }

    .goh-book-stage {
        min-height: 560px;
    }

    .goh-book-cover {
        width: min(58%, 290px);
    }

    .goh-book-gallery-heading {
        grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
        align-items: end;
        gap: 18px 70px;
    }

    .goh-book-gallery-heading .goh-kicker {
        grid-column: 1 / -1;
    }

    .goh-photo-directions {
        grid-template-columns: 1.35fr .82fr .82fr;
        margin-top: 0;
    }

    .goh-book-photo,
    .goh-book-photo--wide,
    .goh-book-photo:not(.goh-book-photo--wide) {
        min-height: 0;
        height: 340px;
    }

    .goh-book-photo--wide {
        grid-column: auto;
    }

    .goh-section-heading--split {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 40px;
    }

    .goh-section-heading--split > p:not(.goh-kicker) {
        margin-bottom: 5px;
    }

    .goh-rating {
        flex: 0 0 auto;
        margin-top: 0;
    }

    .goh-review-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .goh-review-card:nth-child(even) {
        margin-top: 30px;
    }

    .goh-review-source {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-top: 42px;
    }

    .goh-masterclass-card {
        grid-template-columns: .94fr 1.06fr;
    }

    .goh-masterclass-visual {
        min-height: 610px;
    }

    .goh-masterclass-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 55px;
    }

    .goh-about-visual {
        margin-inline: 0;
    }

    .goh-resource-grid,
    .goh-ecosystem-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .goh-resource-card:nth-child(2) {
        transform: translateY(30px);
    }

    .goh-resource-card:nth-child(2):hover {
        transform: translateY(24px);
    }

    .goh-community-grid {
        grid-template-columns: .9fr 1.1fr;
    }

    .goh-footer-grid {
        grid-template-columns: .9fr 1.4fr;
        gap: 8vw;
    }

    .goh-footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 960px) and (max-width: 1079px) {
    .goh-grief-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .goh-grief-intro {
        max-width: 700px;
    }

    .goh-grief .goh-question-card {
        width: min(100%, 740px);
        margin-inline: auto;
    }
}

@media (min-width: 1080px) {
    .goh-nav-shell {
        width: min(100% - 36px, 1400px);
        height: 86px;
    }

    .goh-site-header.is-scrolled .goh-nav-shell {
        height: 74px;
    }

    .goh-site-header .goh-brand {
        gap: 12px;
    }

    .goh-site-header .goh-brand-mark {
        width: 52px;
        height: 38px;
    }

    .goh-site-header .goh-brand-mark svg {
        width: 34px;
    }

    .goh-site-header .goh-brand-copy {
        font-size: 23px;
    }

    .goh-menu-toggle {
        display: none;
    }

    .goh-primary-nav {
        position: static;
        display: flex;
        width: auto;
        height: auto;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        overflow: visible;
        padding: 0;
        background: transparent;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transform: none;
    }

    .goh-primary-nav::after,
    .goh-nav-kicker,
    .goh-nav-note,
    .goh-nav-index {
        display: none;
    }

    .goh-nav-links {
        display: flex;
        width: auto;
        flex-direction: row;
        align-items: center;
        gap: 2px;
        border: 0;
        margin: 0;
    }

    .goh-nav-link {
        min-height: 44px;
        gap: 0;
        padding: 0 9px;
        border: 0;
        font: 700 10px/1 var(--goh-sans);
        letter-spacing: .015em;
    }

    .goh-nav-link::before {
        position: absolute;
        right: 9px;
        bottom: 8px;
        left: 9px;
        height: 1px;
        background: var(--goh-red);
        content: "";
        opacity: 0;
        transform: scaleX(.4);
        transition: opacity .2s ease, transform .25s ease;
    }

    .goh-nav-link::after {
        display: none;
    }

    .goh-nav-link:hover {
        padding-left: 9px;
        color: var(--goh-red-dark);
    }

    .goh-nav-link:hover::before {
        opacity: 1;
        transform: scaleX(1);
    }

    .goh-primary-nav .goh-nav-cta {
        width: auto;
        min-height: 46px;
        gap: 12px;
        margin: 0;
        padding: 6px 7px 6px 17px;
        border-radius: 999px;
        box-shadow: 0 10px 24px rgba(83, 12, 25, .17);
    }

    .goh-nav-cta-copy {
        font-size: 10px;
        white-space: nowrap;
    }

    .goh-nav-cta-copy small {
        display: none;
    }

    .goh-nav-cta-arrow {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

@media (min-width: 1200px) {
    .goh-nav-link {
        padding-inline: 12px;
        font-size: 11px;
    }

    .goh-nav-link::before {
        right: 12px;
        left: 12px;
    }

    .goh-nav-link:hover {
        padding-left: 12px;
    }

    .goh-primary-nav .goh-nav-cta {
        padding-left: 20px;
    }

    .goh-site-header .goh-brand-copy {
        font-size: 25px;
    }

    .goh-hero-grid {
        gap: 72px;
    }
}

@media (max-width: 479px) {
    .goh-hero {
        min-height: 0;
        padding: 108px 0 64px;
    }

    .goh-hero-orbit {
        display: none;
    }

    .goh-hero-art {
        min-height: 440px;
    }

    .goh-hero-trust {
        display: grid;
        gap: 2px;
        text-transform: none;
    }

    .goh-hero-trust span[aria-hidden="true"] {
        display: 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;
    }

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