:root {
    --paper: #fff8ef;
    --paper-2: #fcf3e0;
    --paper-3: #eae2d0;
    --ink: #1f1b10;
    --muted: #4d4632;
    --yellow: #fad000;
    --yellow-soft: #ffe176;
    --red: #bb152c;
    --green: #2e4a3d;
    --green-2: #3a5c4d;
    --line: #1f1b10;
    --display: "Bricolage Grotesque", system-ui, sans-serif;
    --serif: "Cormorant Garamond", Georgia, serif;
    --body: "Epilogue", system-ui, sans-serif;
    --mono: "Space Mono", monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .18;
    background-image: radial-gradient(#1f1b10 0.7px, transparent 0.7px),
    linear-gradient(90deg, rgba(31,27,16,.05), transparent 35%);
    background-size: 11px 11px, 100% 100%;
    z-index: -2;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px clamp(18px, 5vw, 64px);
    background: rgba(255, 248, 239, .92);
    border-bottom: 1px solid rgba(31, 27, 16, .12);
    backdrop-filter: blur(14px);
}

.brand {
    color: var(--red);
    font-family: var(--display);
    font-size: clamp(17px, 2vw, 26px);
    font-weight: 800;
    text-transform: uppercase;
}

nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font: 700 12px/1 var(--mono);
    text-transform: uppercase;
}

nav a:not(.nav-cta):hover {
    color: var(--red);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 42px;
    padding: 9px;
    border: 2px solid var(--ink);
    background: var(--yellow);
    box-shadow: 4px 4px 0 var(--ink);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
    transition: transform .18s ease, opacity .18s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-cta,
.button,
.booking button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 12px 18px;
    border: 2px solid var(--line);
    border-radius: 2px;
    font: 700 12px/1 var(--mono);
    text-transform: uppercase;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.nav-cta,
.button.primary,
.booking button {
    background: var(--yellow);
    color: var(--ink);
}

.button.primary,
.booking button {
    box-shadow: 6px 6px 0 var(--ink);
}

.button.primary:hover,
.booking button:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--ink);
}

.button.secondary {
    background: transparent;
}

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

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

.button.ghost-dark {
    color: var(--paper);
    border-color: var(--paper);
}

.button.ghost-dark:hover {
    background: var(--paper);
    color: var(--green);
}

.hero {
    position: relative;
    min-height: calc(100vh - 62px);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    padding: clamp(8px, 2.2vw, 28px) clamp(18px, 6vw, 88px) 0;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(90deg, #f5f1df 0%, var(--paper) 44%, #f2efdf 100%);
}

.hero-copy {
    position: relative;
    z-index: 5;
    align-self: center;
    max-width: 760px;
    padding-bottom: 0;
    transform: translateY(-110px);
}

.eyebrow,
.chip,
.meta,
.publisher,
.post-grid p {
    font: 700 12px/1.25 var(--mono);
    text-transform: uppercase;
    color: var(--red);
}

.eyebrow {
    display: inline-block;
    padding: 8px 10px;
    margin: 0 0 24px;
    color: #6d5900;
    background: var(--yellow);
}

h1,
h2,
h3,
h4 {
    font-family: var(--display);
    line-height: 1.02;
    margin: 0;
}

.hero h1 {
    letter-spacing: 0;
}

.hero-name {
    display: block;
    max-width: 7.4ch;
    font-family: var(--display);
    font-size: clamp(52px, 7.4vw, 106px);
    font-weight: 800;
    line-height: 1;
}

.hero-role {
    display: block;
    max-width: 690px;
    margin-top: .08em;
    color: var(--red);
    font-family: var(--serif);
    font-size: clamp(50px, 5.9vw, 82px);
    font-style: italic;
    font-weight: 700;
    line-height: .88;
}

.hero-role span {
    display: block;
    white-space: nowrap;
}

.hero p:not(.eyebrow) {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 22px);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.hero-art {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-art::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: min(56vw, 760px);
    background: linear-gradient(90deg, rgba(245, 241, 223, .96) 0%, rgba(245, 241, 223, .86) 55%, rgba(245, 241, 223, 0) 100%);
    z-index: 4;
}

.portrait-cutout {
    position: absolute;
    right: max(-7vw, -120px);
    bottom: -6px;
    z-index: 8;
    max-width: none;
    width: min(58vw, 895px);
    height: min(92vh, 925px);
    object-fit: contain;
    object-position: bottom right;
    transform: translate(var(--parallax-x, 0), calc(var(--parallax-y, 0) + 26px)) scale(1.12);
    transform-origin: bottom center;
    transition: transform .12s linear;
}

.floating-piece {
    position: absolute;
    max-width: none;
    pointer-events: none;
    transform: translate(var(--parallax-x, 0), var(--parallax-y, 0)) rotate(var(--rotate, 0deg));
    transform-origin: center;
    transition: transform .16s linear;
    user-select: none;
}

.piece-yellow {
    width: min(34vw, 500px);
    left: 18%;
    top: -10%;
    z-index: 1;
    opacity: .9;
    --rotate: -1deg;
}

.piece-red-disc {
    width: min(25vw, 390px);
    left: 47%;
    top: -7%;
    z-index: 2;
    --rotate: 9deg;
}

.piece-plastic {
    width: min(35vw, 560px);
    right: 11%;
    top: -4%;
    z-index: 3;
    mix-blend-mode: multiply;
    opacity: .72;
    --rotate: -2deg;
}

.piece-blue {
    width: min(37vw, 590px);
    right: -10%;
    top: -2%;
    z-index: 1;
    --rotate: 6deg;
}

.piece-bw-left {
    width: min(18vw, 260px);
    left: -4%;
    top: -1%;
    z-index: 2;
    opacity: .88;
    --rotate: -7deg;
}

.piece-bw-right {
    width: min(20vw, 310px);
    right: 8%;
    top: 37%;
    z-index: 6;
    opacity: .84;
    --rotate: 11deg;
}

.piece-red-dots-top {
    width: min(8vw, 118px);
    left: 53%;
    top: 41%;
    z-index: 6;
    --rotate: -21deg;
}

.piece-circle {
    width: min(13vw, 205px);
    left: 33%;
    bottom: 7%;
    z-index: 6;
    --rotate: -14deg;
}

.piece-confetti {
    width: min(14vw, 230px);
    left: -2%;
    bottom: -3%;
    z-index: 7;
    --rotate: -82deg;
}

.piece-triangle {
    width: min(13vw, 205px);
    right: 1%;
    bottom: 0;
    z-index: 6;
    --rotate: 6deg;
}

.piece-arrow {
    width: min(24vw, 360px);
    left: 37%;
    top: 55%;
    z-index: 10;
    opacity: .96;
    --rotate: -6deg;
}

.piece-stamp {
    width: min(10vw, 150px);
    right: 20%;
    bottom: 4%;
    z-index: 11;
    opacity: .9;
    mix-blend-mode: multiply;
    --rotate: -10deg;
}

.feature {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 520px) minmax(360px, 640px);
    gap: clamp(44px, 7vw, 118px);
    align-items: center;
    justify-content: center;
    padding: clamp(82px, 10vw, 148px) clamp(18px, 7vw, 120px);
    color: var(--paper);
    background: radial-gradient(circle at 22% 24%, rgba(250, 208, 0, .18), transparent 25%),
    radial-gradient(circle at 83% 20%, rgba(255, 255, 255, .08), transparent 20%),
    linear-gradient(105deg, rgba(15, 38, 31, .9) 0%, rgba(27, 59, 48, .82) 48%, rgba(31, 74, 61, .78) 100%),
    url("assets/image-assets/waldundwort/forest_background.jpg") center / cover no-repeat;
    overflow: hidden;
}

.feature::after {
    content: "";
    position: absolute;
    right: -14vw;
    top: 0;
    width: 40vw;
    height: 100%;
    transform: skewX(-14deg);
    background: var(--green-2);
    opacity: .58;
}

.feature::before {
    content: "";
    position: absolute;
    left: -6%;
    bottom: -20%;
    width: 36vw;
    height: 36vw;
    min-width: 320px;
    min-height: 320px;
    border-radius: 50%;
    border: 34px solid rgba(250, 208, 0, .14);
    z-index: 0;
}

.ww-deco {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    mix-blend-mode: screen;
}

.ww-butterfly {
    width: min(26vw, 360px);
    right: 4%;
    top: 7%;
    opacity: .22;
    transform: rotate(12deg);
}

.ww-flower-a {
    width: min(23vw, 340px);
    left: -4%;
    bottom: -12%;
    opacity: .18;
    transform: rotate(-12deg);
}

.ww-flower-b {
    width: min(15vw, 220px);
    right: 28%;
    bottom: 2%;
    opacity: .15;
    transform: rotate(18deg);
}

.feature-media,
.feature-copy {
    position: relative;
    z-index: 1;
}

.feature-media {
    justify-self: end;
}

.feature-copy {
    justify-self: start;
}

.feature-media {
    display: grid;
    place-items: center;
    perspective: 1200px;
}

.book-stage {
    position: relative;
    display: grid;
    place-items: center;
    width: min(88%, 520px);
    color: inherit;
    transform: rotateY(-10deg) rotateZ(-1deg);
    transform-style: preserve-3d;
    filter: drop-shadow(28px 32px 0 rgba(12, 25, 20, .22));
    transition: transform .28s ease, filter .28s ease;
}

.book-stage:hover {
    transform: rotateY(-5deg) rotateZ(0deg) translateY(-8px);
    filter: drop-shadow(18px 24px 0 rgba(12, 25, 20, .2));
}

.feature-media img {
    position: relative;
    z-index: 2;
    width: min(78%, 420px);
    border: 2px solid var(--ink);
    box-shadow: 12px 10px 0 rgba(12, 25, 20, .28),
    28px 28px 0 rgba(12, 25, 20, .14);
    transform: translateZ(36px);
}

.feature-copy {
    max-width: 760px;
}

.launch-label {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 18px;
    padding: 8px 12px;
    color: var(--ink);
    background: var(--yellow);
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 rgba(12, 25, 20, .7);
    font: 700 12px/1 var(--mono);
    text-transform: uppercase;
}

.feature h2 {
    color: var(--yellow);
    font-size: clamp(64px, 8vw, 111px);
    text-transform: uppercase;
    line-height: .9;
    max-width: 7.5ch;
    margin-bottom: 18px;
}

.feature p {
    max-width: 660px;
    font-size: clamp(18px, 1.5vw, 22px);
}

.feature-lead {
    margin: 0 0 12px;
    color: #fff;
    font-family: var(--serif);
    font-size: clamp(30px, 3.2vw, 46px) !important;
    font-style: italic;
    line-height: 1;
}

.feature .meta {
    color: #fff;
    margin-top: 26px;
    letter-spacing: .04em;
}

.feature .meta a {
    color: inherit;
    border-bottom: 2px solid var(--yellow);
}

.feature .meta a:hover {
    color: var(--yellow);
}

.credits {
    margin-top: 12px;
    color: rgba(255, 248, 239, .82);
    font-size: 16px !important;
}

.credits a {
    color: #fff;
    border-bottom: 2px solid var(--yellow);
}

.credits a:hover {
    color: var(--yellow);
}

.section-pad {
    padding: clamp(56px, 8vw, 105px) clamp(18px, 6vw, 88px);
}

.books {
    background: var(--paper-2);
}

.section-heading {
    margin-bottom: 42px;
}

.section-heading h2,
.center-heading h2,
.about h2,
.events-intro h2 {
    font-size: clamp(46px, 7vw, 86px);
}

.section-heading span {
    display: block;
    width: 112px;
    height: 10px;
    margin-top: 12px;
    background: var(--red);
}

.book-group + .book-group {
    margin-top: 64px;
}

.book-group h3 {
    margin-bottom: 22px;
    color: var(--red);
    font-size: 28px;
}

.book-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.book-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 14px;
    background: #fff;
    border: 2px solid var(--ink);
    transition: transform .18s ease;
}

.book-card:hover {
    transform: translateY(-8px) rotate(.4deg);
}

.book-card .book-cover {
    display: block;
}

.book-card .book-cover:hover img {
    transform: translateY(-3px);
}

.book-card img {
    width: 100%;
    aspect-ratio: 3 / 4.25;
    object-fit: contain;
    padding: 14px;
    background: radial-gradient(circle at 18% 18%, var(--cover-glow, rgba(250, 208, 0, .16)), transparent 34%),
    linear-gradient(145deg, var(--cover-a, #eae2d0), var(--cover-b, #fff8ef));
    transition: transform .18s ease;
}

.book-card.square img {
    aspect-ratio: 1 / 1;
}

.book-card.cover-forest {
    --cover-a: #dce9dc;
    --cover-b: #f7f1d9;
    --cover-glow: rgba(77, 128, 91, .28);
}

.book-card.cover-yellow {
    --cover-a: #fff5b8;
    --cover-b: #f3f0e7;
    --cover-glow: rgba(250, 208, 0, .42);
}

.book-card.cover-mint {
    --cover-a: #e8f3d4;
    --cover-b: #fff7cf;
    --cover-glow: rgba(138, 185, 139, .3);
}

.book-card.cover-coral {
    --cover-a: #ffe0dc;
    --cover-b: #dff4f2;
    --cover-glow: rgba(255, 179, 177, .34);
}

.book-card.cover-plum {
    --cover-a: #e8dff6;
    --cover-b: #f5e5ca;
    --cover-glow: rgba(91, 16, 60, .2);
}

.book-card.cover-peach {
    --cover-a: #ffe6d6;
    --cover-b: #fff4bc;
    --cover-glow: rgba(200, 72, 40, .18);
}

.book-card.cover-green {
    --cover-a: #dcebcf;
    --cover-b: #f2edd5;
    --cover-glow: rgba(110, 138, 58, .28);
}

.book-card.cover-rose {
    --cover-a: #ffe1ec;
    --cover-b: #e4f5dd;
    --cover-glow: rgba(187, 21, 44, .18);
}

.book-card h4 {
    margin-top: 14px;
    font-size: 22px;
    text-transform: uppercase;
    line-height: 1.08;
}

.book-card p {
    color: var(--muted);
    font-size: 14px;
}

.book-card .publisher {
    margin: 8px 0 0;
    color: #715d00;
    font-size: 11px;
}

.book-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
}

.book-actions a {
    padding: 10px 8px;
    color: var(--paper);
    background: var(--ink);
    border: 1px solid var(--ink);
    text-align: center;
    font: 700 10px/1 var(--mono);
    text-transform: uppercase;
}

.book-actions a:not(.buy) {
    color: var(--ink);
    background: transparent;
}

.book-actions a:hover {
    background: var(--yellow);
    color: var(--ink);
}

.events {
    background: var(--paper);
}

.events-intro {
    max-width: 900px;
    margin-bottom: 52px;
}

.chip {
    display: inline-block;
    color: var(--muted);
    background: var(--paper-3);
    border: 1px solid rgba(31,27,16,.2);
    padding: 10px 14px;
    border-radius: 999px;
    transform: rotate(-1.5deg);
}

.events-intro p:last-child {
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    margin-bottom: 72px;
}

.package {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: #fff;
    border: 2px solid var(--ink);
}

.package::after {
    content: "";
    position: absolute;
    inset: 8px -10px -10px 8px;
    z-index: -1;
    background: var(--yellow);
}

.package.highlighted {
    transform: translateY(-18px);
}

.package.highlighted::after {
    background: #ffc6c4;
}

.package b {
    position: absolute;
    top: -18px;
    right: -14px;
    padding: 6px 10px;
    background: var(--red);
    color: #fff;
    border: 2px solid var(--ink);
    border-radius: 999px;
    font: 700 11px/1 var(--mono);
    text-transform: uppercase;
    transform: rotate(8deg);
}

.package-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.package-top h3 {
    font-size: 30px;
}

.package-top span {
    padding: 6px 9px;
    background: var(--paper-3);
    border-radius: 999px;
    font: 700 11px/1 var(--mono);
    white-space: nowrap;
}

.package p,
.package li {
    color: var(--muted);
}

.package ul {
    padding-left: 20px;
    margin: 8px 0 26px;
}

.package .button {
    margin-top: auto;
}

.ticker {
    overflow: hidden;
    width: 100vw;
    margin: 0 0 72px calc(50% - 50vw);
    padding: 40px 0;
    border-block: 2px solid var(--ink);
    background: rgba(250, 208, 0, .18);
}

.ticker div {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: ticker 24s linear infinite;
}

.ticker span {
    font: 700 clamp(18px, 3vw, 32px)/1 var(--display);
    text-transform: uppercase;
    white-space: nowrap;
}

.ticker i {
    width: 8px;
    height: 8px;
    align-self: center;
    background: var(--red);
    transform: rotate(45deg);
}

@keyframes ticker {
    to {
        transform: translateX(-35%);
    }
}

.booking {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.booking h2 {
    font-size: clamp(34px, 5vw, 54px);
}

.booking > p {
    color: var(--muted);
}

.booking form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 28px;
    padding: clamp(22px, 5vw, 46px);
    text-align: left;
    background: #fff;
    border: 2px solid var(--ink);
    box-shadow: 6px 6px 0 var(--ink);
}

label {
    display: grid;
    gap: 8px;
    font: 700 12px/1.2 var(--mono);
    text-transform: uppercase;
    color: var(--muted);
}

.full {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;
    border: 0;
    border-bottom: 2px solid var(--ink);
    border-radius: 0;
    padding: 10px 0;
    background: transparent;
    color: var(--ink);
    font: 16px/1.4 var(--body);
}

textarea {
    border: 2px solid var(--ink);
    padding: 12px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(250, 208, 0, .55);
    outline-offset: 2px;
}

.booking button {
    grid-column: 1 / -1;
    justify-self: center;
    cursor: pointer;
}

.booking-direct {
    margin-top: 18px;
    color: var(--muted);
    font-size: 16px;
}

.booking-direct a {
    color: var(--red);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--yellow);
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.blog {
    background: var(--paper-3);
}

.blog-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto 42px;
}

.blog-header h2 {
    font-size: clamp(46px, 7vw, 86px);
}

.blog-header p {
    max-width: 760px;
    margin: 14px 0 0;
    color: var(--muted);
    font: 400 clamp(17px, 1.8vw, 21px)/1.55 var(--body);
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.post-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #fff;
    padding: 24px;
    border: 2px solid rgba(31,27,16,.82);
    transition: transform .18s ease;
}

.post-card:hover {
    transform: translateY(-6px);
}

.post-card p {
    margin: 0 0 8px;
    color: var(--red);
    font: 700 11px/1.35 var(--mono);
    text-transform: uppercase;
}

.post-card h3 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.08;
}

.post-card span {
    color: var(--muted);
    font-size: 14px;
}

.post-card .read-more {
    margin-top: auto;
    padding-top: 16px;
    color: var(--ink);
    font: 700 11px/1 var(--mono);
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--yellow);
    text-underline-offset: 4px;
}

.about {
    display: grid;
    grid-template-columns: minmax(300px, 520px) minmax(0, 680px);
    gap: clamp(32px, 6vw, 90px);
    align-items: center;
    justify-content: center;
    max-width: 1360px;
    margin-inline: auto;
}

.about-photo {
    position: relative;
}

.about-photo::before {
    content: "";
    position: absolute;
    inset: -18px 18px 18px -18px;
    border: 2px solid var(--yellow);
    z-index: -1;
}

.about-photo img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 2px solid var(--ink);
}

.about p {
    color: var(--muted);
    font-size: 18px;
}

.about-quote {
    margin: 30px 0 0;
    max-width: 560px;
    color: var(--red);
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 42px);
    font-style: italic;
    font-weight: 700;
    line-height: 1.05;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.about-tags span {
    padding: 8px 10px;
    border: 1px solid var(--ink);
    background: var(--yellow);
    color: var(--ink);
    font: 700 11px/1 var(--mono);
    text-transform: uppercase;
}

footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 36px;
    padding: 100px clamp(18px, 6vw, 88px) 48px;
    background: var(--paper-3);
    clip-path: polygon(0 36px, 5% 0, 10% 36px, 15% 0, 20% 36px, 25% 0, 30% 36px, 35% 0, 40% 36px, 45% 0, 50% 36px, 55% 0, 60% 36px, 65% 0, 70% 36px, 75% 0, 80% 36px, 85% 0, 90% 36px, 95% 0, 100% 36px, 100% 100%, 0 100%);
}

footer h2 {
    color: #715d00;
    font-size: 34px;
    text-transform: uppercase;
}

footer h3 {
    font: 700 13px/1 var(--mono);
    text-transform: uppercase;
}

footer p {
    max-width: 420px;
    color: var(--muted);
}

footer a {
    display: block;
    margin: 8px 0;
    color: var(--muted);
}

.footer-newsletter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 14px;
    padding: 12px 18px;
    border: 2px solid var(--ink);
    background: var(--yellow);
    color: var(--ink);
    font: 700 12px/1 var(--mono);
    text-transform: uppercase;
    box-shadow: 5px 5px 0 var(--ink);
    transition: transform .18s ease, box-shadow .18s ease;
}

.footer-newsletter:hover {
    color: var(--ink);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--ink);
}

.legal-page {
    padding: clamp(56px, 8vw, 110px) clamp(18px, 6vw, 88px);
}

.legal-page section {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 56px);
    background: #fff;
    border: 2px solid var(--ink);
    box-shadow: 8px 8px 0 var(--ink);
}

.legal-page h1 {
    margin-bottom: 38px;
    font-size: clamp(48px, 8vw, 86px);
}

.legal-page h2 {
    margin: 34px 0 10px;
    font-size: clamp(24px, 3vw, 34px);
}

.legal-page p {
    max-width: 720px;
    color: var(--muted);
}

.legal-page a:not(.button) {
    color: var(--red);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--yellow);
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.legal-back {
    margin-top: 38px;
}

@media (max-width: 760px) {
    .site-header {
        position: sticky;
        align-items: center;
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        display: none;
        order: 3;
        width: 100%;
        padding-top: 12px;
    }

    .site-nav.is-open {
        display: grid;
        gap: 0;
    }

    .site-nav a {
        padding: 16px 0;
        border-top: 1px solid rgba(31, 27, 16, .18);
        font-size: 14px;
    }

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

    .hero {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
        min-height: calc(100vh - 62px);
        padding-top: clamp(24px, 5vw, 48px);
    }

    .hero-copy {
        position: relative;
        z-index: 5;
        max-width: 100%;
        padding-bottom: 0;
        transform: none;
    }

    .hero-name {
        max-width: none;
    }

    .hero-role {
        max-width: 690px;
    }

    .hero-art {
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        overflow: hidden;
    }

    .hero-art::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        width: 100%;
        height: 45%;
        background: linear-gradient(180deg, rgba(245, 241, 223, .98) 0%, rgba(245, 241, 223, .65) 55%, rgba(245, 241, 223, 0) 100%);
        z-index: 4;
    }

    .portrait-cutout {
        position: absolute;
        right: -5%;
        bottom: -10px;
        height: min(52vh, 480px);
        width: auto;
        max-width: none;
        object-fit: contain;
        object-position: bottom right;
        transform: translate(var(--parallax-x, 0), calc(var(--parallax-y, 0) + 12px)) scale(1.05);
    }

    .book-grid,
    .package-grid,
    .post-grid,
    footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .package.highlighted {
        transform: none;
    }
}

@media (min-width: 761px) and (max-width: 980px) {
    .site-header {
        gap: 18px;
    }

    .site-nav {
        gap: 18px;
    }

    .site-nav a {
        font-size: 11px;
    }

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

    .hero {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
        min-height: calc(100vh - 62px);
        padding-top: clamp(24px, 5vw, 48px);
    }

    .hero-copy {
        position: relative;
        z-index: 5;
        max-width: 100%;
        padding-bottom: 0;
        transform: none;
    }

    .hero-name {
        max-width: none;
    }

    .hero-role {
        max-width: 690px;
    }

    .hero-art {
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        overflow: hidden;
    }

    .hero-art::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        width: 100%;
        height: 45%;
        background: linear-gradient(180deg, rgba(245, 241, 223, .98) 0%, rgba(245, 241, 223, .65) 52%, rgba(245, 241, 223, 0) 100%);
        z-index: 4;
    }

    .portrait-cutout {
        position: absolute;
        right: -5%;
        bottom: -10px;
        height: min(52vh, 480px);
        width: auto;
        max-width: none;
        object-fit: contain;
        object-position: bottom right;
        transform: translate(var(--parallax-x, 0), calc(var(--parallax-y, 0) + 12px)) scale(1.05);
    }

    .book-grid,
    .package-grid,
    .post-grid,
    footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .package.highlighted {
        transform: none;
    }
}

@media (max-width: 640px) {
    .site-header {
        position: sticky;
    }

    .hero {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
        min-height: calc(100svh - 68px);
        padding: clamp(16px, 4vw, 24px) 18px 0;
    }

    .hero-name {
        font-size: 48px;
    }

    .hero-role {
        max-width: 100%;
        font-size: 39px;
    }

    .hero-role span {
        white-space: normal;
    }

    .hero-art {
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        overflow: hidden;
    }

    .portrait-cutout {
        position: absolute;
        right: -10%;
        bottom: -10px;
        height: min(48vh, 380px);
        width: auto;
        max-width: none;
        object-fit: contain;
        object-position: bottom right;
        transform: translate(var(--parallax-x, 0), calc(var(--parallax-y, 0) + 10px)) scale(1.05);
    }

    .piece-yellow {
        width: 86vw;
        left: 10%;
        top: -2%;
    }

    .piece-red-disc {
        width: 42vw;
        left: 55%;
        top: -5%;
    }

    .piece-plastic {
        width: 70vw;
        right: -10%;
        top: -5%;
    }

    .piece-blue {
        width: 62vw;
        right: -20%;
        top: 5%;
    }

    .piece-bw-left {
        width: 36vw;
        left: -15%;
        top: 10%;
    }

    .piece-bw-right {
        width: 34vw;
        right: -3%;
        top: 30%;
    }

    .piece-red-dots-top {
        width: 18vw;
        left: 7%;
        top: 63%;
    }

    .piece-circle {
        width: 31vw;
        left: 10%;
        bottom: 5%;
    }

    .piece-confetti {
        width: 30vw;
        left: -12%;
        bottom: -4%;
    }

    .piece-triangle {
        width: 31vw;
        right: -7%;
        bottom: -2%;
    }

    .piece-arrow {
        width: 47vw;
        left: 18%;
        top: 42%;
        --rotate: 6deg;
    }

    .piece-stamp {
        width: 21vw;
        right: 36%;
        bottom: 6%;
    }

    .book-grid,
    .package-grid,
    .post-grid,
    .booking form,
    footer {
        grid-template-columns: 1fr;
    }

    .feature {
        padding-block: 64px;
    }

    .feature h2 {
        font-size: clamp(54px, 16vw, 78px);
    }

    .feature-media,
    .feature-copy {
        justify-self: center;
    }

    .feature-media img {
        width: min(62%, 260px);
    }

    .section-heading h2,
    .center-heading h2,
    .about h2,
    .events-intro h2 {
        font-size: 42px;
    }

    .actions {
        align-items: stretch;
    }

    .actions .button {
        width: 100%;
    }

    footer {
        padding-top: 72px;
    }
}
