/* Wisp Warden — botanical night-forest profile */
:root {
    --ww-moss: #081912;
    --ww-moss-deep: #030c08;
    --ww-forest: #102b1e;
    --ww-fern: #27533b;
    --ww-sage: #9cbea1;
    --ww-cream: #f4edd8;
    --ww-cream-dim: #d8cfb8;
    --ww-amber: #f1b24d;
    --ww-amber-hot: #ffd97e;
    --ww-lilac: #c9b4ef;
    --ww-lilac-deep: #8975b6;
    --ww-line: rgba(244, 237, 216, 0.24);
    --ww-line-soft: rgba(244, 237, 216, 0.12);
    --ww-ink-line: rgba(8, 25, 18, 0.24);
    --ww-shell: min(1280px, calc(100% - 72px));
    --ww-serif: Georgia, "Times New Roman", serif;
    --ww-sans: "Segoe UI", Tahoma, Arial, sans-serif;
}

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

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

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ww-cream);
    background: var(--ww-moss);
    font-family: var(--ww-sans);
    font-size: 17px;
    line-height: 1.65;
}

body.ww-menu-open,
body.ww-dialog-open {
    overflow: hidden;
}

button,
input {
    color: inherit;
    font: inherit;
}

button,
a,
input {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: 0;
}

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

svg {
    display: block;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

[hidden] {
    display: none !important;
}

::selection {
    color: var(--ww-moss);
    background: var(--ww-amber-hot);
}

:focus-visible {
    outline: 3px solid var(--ww-lilac);
    outline-offset: 5px;
}

.ww-skip-link {
    position: fixed;
    z-index: 1000;
    top: 14px;
    left: 14px;
    padding: 11px 18px;
    color: var(--ww-moss);
    background: var(--ww-amber-hot);
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

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

.ww-night-texture {
    position: fixed;
    z-index: -2;
    inset: 0;
    pointer-events: none;
    opacity: 0.48;
    background:
        radial-gradient(circle at 12% 17%, rgba(78, 131, 89, 0.15) 0 1px, transparent 2px),
        radial-gradient(circle at 86% 28%, rgba(201, 180, 239, 0.16) 0 1px, transparent 2px),
        radial-gradient(circle at 31% 84%, rgba(241, 178, 77, 0.12) 0 1px, transparent 2px),
        linear-gradient(118deg, transparent 49%, rgba(244, 237, 216, 0.02) 50%, transparent 51%);
    background-size: 67px 67px, 91px 91px, 117px 117px, 23px 23px;
}

.ww-fireflies {
    position: fixed;
    z-index: 4;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ww-fireflies i {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ww-amber-hot);
    box-shadow: 0 0 5px 2px rgba(255, 217, 126, 0.48), 0 0 18px 5px rgba(241, 178, 77, 0.18);
    animation: ww-firefly 7s ease-in-out infinite;
}

.ww-fireflies i:nth-child(1) { top: 18%; left: 7%; animation-delay: -1s; }
.ww-fireflies i:nth-child(2) { top: 32%; left: 22%; animation-delay: -5s; }
.ww-fireflies i:nth-child(3) { top: 72%; left: 10%; animation-delay: -3s; }
.ww-fireflies i:nth-child(4) { top: 82%; left: 37%; animation-delay: -6s; }
.ww-fireflies i:nth-child(5) { top: 15%; left: 76%; animation-delay: -2s; }
.ww-fireflies i:nth-child(6) { top: 45%; left: 92%; animation-delay: -4s; }
.ww-fireflies i:nth-child(7) { top: 68%; left: 70%; animation-delay: -7s; }
.ww-fireflies i:nth-child(8) { top: 91%; left: 87%; animation-delay: -2.5s; }

.ww-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid var(--ww-line-soft);
    background: rgba(8, 25, 18, 0.9);
    backdrop-filter: blur(18px);
}

.ww-header::after {
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;
    height: 3px;
    content: "";
    opacity: 0.45;
    background: radial-gradient(ellipse at center, var(--ww-amber) 0 1px, transparent 2px) 0 0 / 13px 3px repeat-x;
}

.ww-nav-shell {
    width: var(--ww-shell);
    height: 78px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 36px;
}

.ww-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 11px;
}

.ww-brand-mark {
    width: 38px;
    height: 44px;
    overflow: visible;
}

.ww-brand-mark path {
    fill: none;
    stroke: var(--ww-cream);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.ww-brand-mark .ww-mark-flame {
    fill: var(--ww-amber);
    stroke: var(--ww-amber-hot);
    filter: drop-shadow(0 0 5px rgba(241, 178, 77, 0.65));
}

.ww-brand-mark .ww-mark-leaf {
    fill: rgba(156, 190, 161, 0.35);
    stroke: var(--ww-sage);
}

.ww-brand-words {
    display: grid;
    font-family: var(--ww-serif);
    font-size: 16px;
    line-height: 0.93;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ww-brand-words strong {
    color: var(--ww-amber-hot);
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0.12em;
}

.ww-desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: stretch;
    gap: clamp(22px, 2.7vw, 42px);
}

.ww-desktop-nav a {
    position: relative;
    padding: 26px 0 24px;
    color: var(--ww-cream-dim);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.045em;
}

.ww-desktop-nav a::before {
    position: absolute;
    right: 50%;
    bottom: 15px;
    left: 50%;
    height: 7px;
    content: "";
    border-bottom: 1px solid var(--ww-amber);
    border-radius: 50%;
    transition: right 220ms ease, left 220ms ease;
}

.ww-desktop-nav a:hover,
.ww-desktop-nav a[aria-current="true"] {
    color: var(--ww-cream);
}

.ww-desktop-nav a:hover::before,
.ww-desktop-nav a[aria-current="true"]::before {
    right: 0;
    left: 0;
}

.ww-nav-actions {
    display: flex;
    align-items: center;
    gap: 17px;
}

.ww-language {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--ww-cream-dim);
}

.ww-language button {
    padding: 7px 4px;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.ww-language button[aria-pressed="true"] {
    color: var(--ww-amber-hot);
    text-decoration: underline;
    text-decoration-color: var(--ww-amber);
    text-underline-offset: 5px;
}

.ww-button {
    position: relative;
    min-height: 52px;
    padding: 13px 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    border: 1px solid var(--ww-cream-dim);
    color: var(--ww-cream);
    background: rgba(244, 237, 216, 0.04);
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.045em;
    clip-path: polygon(9px 0, calc(100% - 9px) 0, 100% 50%, calc(100% - 9px) 100%, 9px 100%, 0 50%);
    transition: color 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.ww-button:hover {
    color: var(--ww-moss);
    background: var(--ww-cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.ww-button:disabled {
    cursor: wait;
    opacity: 0.64;
    transform: none;
}

.ww-button-small {
    min-height: 40px;
    padding: 8px 15px;
    font-size: 12px;
}

.ww-button-bright {
    border-color: var(--ww-amber-hot);
    color: var(--ww-moss);
    background: var(--ww-amber-hot);
    box-shadow: 0 0 34px rgba(241, 178, 77, 0.12);
}

.ww-button-bright:hover {
    background: var(--ww-cream);
    box-shadow: 0 0 38px rgba(241, 178, 77, 0.25);
}

.ww-menu-button {
    width: 42px;
    height: 42px;
    padding: 10px;
    display: none;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--ww-line);
    color: var(--ww-cream);
    background: transparent;
    cursor: pointer;
    clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
}

.ww-menu-button i {
    width: 18px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 220ms ease, opacity 220ms ease;
}

.ww-menu-button[aria-expanded="true"] i:first-child { transform: translateY(6px) rotate(45deg); }
.ww-menu-button[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.ww-menu-button[aria-expanded="true"] i:last-child { transform: translateY(-6px) rotate(-45deg); }

.ww-mobile-menu {
    padding: 7px max(24px, calc((100% - 1280px) / 2)) 28px;
    border-top: 1px solid var(--ww-line-soft);
    background: var(--ww-moss);
}

.ww-mobile-menu a {
    padding: 14px 2px;
    display: block;
    border-bottom: 1px solid var(--ww-line-soft);
    font-family: var(--ww-serif);
    font-size: 27px;
}

.ww-mobile-menu .ww-button {
    width: 100%;
    margin-top: 22px;
}

.ww-hero {
    position: relative;
    width: var(--ww-shell);
    min-height: calc(100svh - 78px);
    margin: auto;
    padding: clamp(64px, 7vw, 116px) 0 90px;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
    align-items: center;
    gap: clamp(42px, 5vw, 86px);
}

.ww-hero::before {
    position: absolute;
    z-index: -1;
    top: 2%;
    left: -16%;
    width: 670px;
    height: 670px;
    content: "";
    border: 1px solid rgba(156, 190, 161, 0.06);
    border-radius: 46% 54% 53% 47%;
    box-shadow: inset 0 0 120px rgba(39, 83, 59, 0.08);
    transform: rotate(17deg);
}

.ww-kicker {
    margin-bottom: 19px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ww-sage);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.ww-kicker > span:first-child {
    color: var(--ww-amber);
}

.ww-hero h1,
.ww-section-heading h2,
.ww-wilds-copy h2,
.ww-ritual-heading h2,
.ww-join h2,
.ww-faq-heading h2 {
    font-family: var(--ww-serif);
    font-weight: 400;
    letter-spacing: -0.047em;
}

.ww-hero h1 {
    margin: 0 0 26px;
    font-size: clamp(67px, 7.3vw, 115px);
    line-height: 0.83;
}

.ww-hero h1 span,
.ww-hero h1 em {
    display: block;
}

.ww-hero h1 em,
.ww-section-heading h2 em,
.ww-wilds-copy h2 em,
.ww-ritual-heading h2 em,
.ww-join h2 em {
    color: var(--ww-amber-hot);
    font-weight: 400;
}

.ww-hero h1 em {
    margin-left: 0.4em;
    font-size: 0.79em;
}

.ww-hero-lead {
    max-width: 640px;
    margin-bottom: 0;
    color: var(--ww-cream-dim);
    font-family: var(--ww-serif);
    font-size: clamp(18px, 1.55vw, 22px);
    line-height: 1.55;
}

.ww-hero-actions {
    margin-top: 38px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
}

.ww-text-link {
    padding: 8px 0 7px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--ww-sage);
    color: var(--ww-cream);
    font-size: 13px;
    font-weight: 750;
}

.ww-text-link span:last-child {
    color: var(--ww-amber);
    font-size: 18px;
    transition: transform 180ms ease;
}

.ww-text-link:hover span:last-child {
    transform: translate(3px, 2px);
}

.ww-hero-notes {
    max-width: 620px;
    margin: 62px 0 0;
    padding: 21px 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    border-top: 1px solid var(--ww-line);
    list-style: none;
}

.ww-hero-notes li {
    display: grid;
    gap: 2px;
}

.ww-hero-notes strong {
    color: var(--ww-lilac);
    font-family: var(--ww-serif);
    font-size: 24px;
    font-weight: 400;
}

.ww-hero-notes span {
    color: var(--ww-cream-dim);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ww-hero-art {
    position: relative;
    width: min(100%, 720px);
    justify-self: end;
}

.ww-hero-art::before,
.ww-hero-art::after {
    position: absolute;
    z-index: 2;
    content: "";
    pointer-events: none;
}

.ww-hero-art::before {
    inset: 3.5% 3%;
    border: 1px solid rgba(244, 237, 216, 0.34);
    border-radius: 49% 51% 45% 55% / 42% 46% 54% 58%;
    transform: rotate(-1.5deg);
}

.ww-hero-art::after {
    inset: 5.2% 5%;
    border: 1px solid rgba(156, 190, 161, 0.17);
    border-radius: 51% 49% 55% 45% / 48% 54% 46% 52%;
    transform: rotate(1deg);
}

.ww-hero-art > svg {
    width: 100%;
    filter: drop-shadow(0 32px 45px rgba(0, 0, 0, 0.26));
}

.ww-plate-label,
.ww-art-caption {
    position: absolute;
    z-index: 3;
    margin: 0;
    color: var(--ww-sage);
    font-family: var(--ww-serif);
    font-style: italic;
}

.ww-plate-label {
    top: 8.5%;
    left: 9%;
    font-size: 12px;
    letter-spacing: 0.07em;
}

.ww-art-caption {
    right: 12%;
    bottom: 8.5%;
    width: 43%;
    font-size: 12px;
    line-height: 1.45;
    text-align: right;
}

.ww-hero-art .ww-moon {
    fill: var(--ww-cream);
    opacity: 0.92;
}

.ww-hero-art .ww-moon-mark {
    fill: none;
    stroke: rgba(8, 25, 18, 0.19);
    stroke-linecap: round;
    stroke-width: 8;
}

.ww-hero-art .ww-tree path,
.ww-hero-art .ww-leaf-sprays > path,
.ww-hero-art .ww-ground,
.ww-hero-art .ww-fern path {
    fill: none;
    stroke: var(--ww-cream-dim);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 11;
}

.ww-hero-art .ww-tree .ww-tree-fine,
.ww-hero-art .ww-leaf-sprays > path,
.ww-hero-art .ww-fern path {
    stroke: var(--ww-sage);
    stroke-width: 3.2;
}

.ww-hero-art .ww-ground {
    stroke-width: 2.2;
}

.ww-hero-art .ww-leaves ellipse {
    fill: var(--ww-fern);
    stroke: var(--ww-sage);
    stroke-width: 2;
}

.ww-wisp path {
    fill: rgba(201, 180, 239, 0.1);
    stroke: var(--ww-lilac);
    stroke-linecap: round;
    stroke-width: 3;
    filter: drop-shadow(0 0 8px rgba(201, 180, 239, 0.65));
}

.ww-wisp circle {
    fill: var(--ww-cream);
}

.ww-wisp-one { animation: ww-float-left 5s ease-in-out infinite; transform-origin: 220px 340px; }
.ww-wisp-two { animation: ww-float-right 5.7s ease-in-out infinite; transform-origin: 500px 340px; }
.ww-wisp-three { animation: ww-float-left 4.8s ease-in-out -2s infinite; transform-origin: 355px 110px; }

.ww-lantern-aura {
    animation: ww-aura 3s ease-in-out infinite;
    transform-origin: 360px 576px;
}

.ww-lantern .ww-lantern-metal {
    fill: rgba(8, 25, 18, 0.65);
    stroke: var(--ww-cream);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 4;
}

.ww-lantern .ww-lantern-light {
    fill: var(--ww-amber-hot);
    filter: drop-shadow(0 0 18px var(--ww-amber));
    animation: ww-flame 1.8s ease-in-out infinite;
    transform-origin: 365px 568px;
}

.ww-stars {
    fill: var(--ww-amber-hot);
    filter: drop-shadow(0 0 5px rgba(241, 178, 77, 0.85));
}

.ww-story-ribbon {
    position: relative;
    min-height: 142px;
    padding: 33px max(28px, calc((100vw - 1080px) / 2));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 5vw, 72px);
    border-top: 1px solid var(--ww-line);
    border-bottom: 1px solid var(--ww-line);
    color: var(--ww-moss);
    background: var(--ww-lilac);
}

.ww-story-ribbon::before,
.ww-story-ribbon::after {
    position: absolute;
    right: 0;
    left: 0;
    height: 8px;
    content: "";
    background: radial-gradient(ellipse at center, var(--ww-moss) 0 2px, transparent 2.4px) 0 0 / 18px 8px repeat-x;
}

.ww-story-ribbon::before { top: 7px; }
.ww-story-ribbon::after { bottom: 7px; transform: rotate(180deg); }

.ww-story-ribbon > span {
    font-size: 30px;
}

.ww-story-ribbon p {
    max-width: 900px;
    margin: 0;
    font-family: var(--ww-serif);
    font-size: clamp(19px, 2vw, 27px);
    font-style: italic;
    line-height: 1.45;
    text-align: center;
}

.ww-section {
    padding: clamp(100px, 10vw, 164px) 0;
}

.ww-section-heading,
.ww-warden-grid,
.ww-section-note,
.ww-spirit-book,
.ww-faq {
    width: var(--ww-shell);
    margin-right: auto;
    margin-left: auto;
}

.ww-section-heading {
    margin-bottom: 78px;
    display: grid;
    grid-template-columns: 150px minmax(360px, 1.1fr) minmax(270px, 0.65fr);
    align-items: start;
    gap: clamp(28px, 4vw, 64px);
}

.ww-section-number {
    display: block;
    color: var(--ww-lilac);
    font-family: var(--ww-serif);
    font-size: 52px;
    font-style: italic;
    line-height: 1;
}

.ww-section-heading .ww-kicker {
    margin-top: 14px;
}

.ww-section-heading h2,
.ww-wilds-copy h2,
.ww-ritual-heading h2,
.ww-join h2,
.ww-faq-heading h2 {
    margin: 0;
    font-size: clamp(49px, 5.3vw, 78px);
    line-height: 0.98;
}

.ww-section-heading > p {
    margin: 7px 0 0;
    color: var(--ww-cream-dim);
}

.ww-warden-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ww-warden-card {
    position: relative;
    min-height: 570px;
    padding: 31px 28px 29px;
    border: 1px solid var(--ww-line);
    overflow: hidden;
}

.ww-warden-card + .ww-warden-card {
    border-left: 0;
}

.ww-warden-card::before,
.ww-warden-card::after {
    position: absolute;
    width: 70px;
    height: 70px;
    content: "";
    border: solid var(--ww-sage);
    opacity: 0.38;
}

.ww-warden-card::before {
    top: 9px;
    left: 9px;
    border-width: 1px 0 0 1px;
    border-radius: 45px 0 0;
}

.ww-warden-card::after {
    right: 9px;
    bottom: 9px;
    border-width: 0 1px 1px 0;
    border-radius: 0 0 45px;
}

.ww-card-index {
    position: absolute;
    top: 22px;
    right: 23px;
    color: var(--ww-sage);
    font-family: var(--ww-serif);
    font-size: 14px;
    font-style: italic;
}

.ww-role-portrait {
    position: relative;
    width: 190px;
    height: 210px;
    margin: 30px auto 26px;
    border: 1px solid var(--ww-line);
    border-radius: 52% 48% 48% 52% / 42% 43% 57% 58%;
    background: radial-gradient(circle at 50% 42%, rgba(201, 180, 239, 0.13), transparent 55%);
}

.ww-role-portrait::before {
    position: absolute;
    top: 52px;
    left: 50%;
    width: 72px;
    height: 90px;
    content: "";
    border: 2px solid var(--ww-cream-dim);
    border-radius: 50% 50% 44% 44%;
    transform: translateX(-50%);
}

.ww-role-portrait::after {
    position: absolute;
    bottom: 24px;
    left: 50%;
    width: 132px;
    height: 65px;
    content: "";
    border: 2px solid var(--ww-cream-dim);
    border-bottom: 0;
    border-radius: 70px 70px 0 0;
    transform: translateX(-50%);
}

.ww-role-portrait i,
.ww-role-portrait b {
    position: absolute;
    z-index: 2;
    display: block;
}

.ww-role-portrait i:first-child {
    top: 63px;
    left: 63px;
    width: 18px;
    height: 7px;
    border-bottom: 2px solid var(--ww-cream);
    border-radius: 50%;
    box-shadow: 47px 0 0 -2px transparent;
}

.ww-role-portrait i:nth-child(2) {
    top: 62px;
    right: 60px;
    width: 18px;
    height: 7px;
    border-bottom: 2px solid var(--ww-cream);
    border-radius: 50%;
}

.ww-role-portrait i:nth-child(3) {
    top: 36px;
    left: 50%;
    width: 104px;
    height: 55px;
    border: 2px solid var(--ww-sage);
    border-bottom: 0;
    border-radius: 62% 45% 0 0;
    transform: translateX(-50%) rotate(-4deg);
}

.ww-role-portrait b {
    top: 100px;
    left: 50%;
    width: 25px;
    height: 10px;
    border-bottom: 1px solid var(--ww-lilac);
    border-radius: 50%;
    transform: translateX(-50%);
}

.ww-portrait-tender { background: radial-gradient(circle at 50% 42%, rgba(241, 178, 77, 0.22), transparent 55%); }
.ww-portrait-tender i:nth-child(3) { width: 118px; border-color: var(--ww-amber); border-radius: 8% 70% 0 0; transform: translateX(-50%) rotate(3deg); }
.ww-portrait-mender { background: radial-gradient(circle at 50% 42%, rgba(156, 190, 161, 0.2), transparent 55%); }
.ww-portrait-mender i:nth-child(3) { height: 69px; border-color: var(--ww-sage); border-radius: 70% 20% 0 0; }
.ww-portrait-caller { background: radial-gradient(circle at 50% 42%, rgba(201, 180, 239, 0.22), transparent 55%); }
.ww-portrait-caller i:nth-child(3) { top: 33px; width: 128px; border-color: var(--ww-lilac); border-radius: 45% 45% 0 0; }

.ww-role-type,
.ww-specimen {
    margin-bottom: 10px;
    color: var(--ww-sage);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.ww-warden-card h3,
.ww-spirit-page h3,
.ww-ritual-steps h3,
.ww-ritual-promise h3 {
    font-family: var(--ww-serif);
    font-weight: 400;
}

.ww-warden-card h3 {
    margin-bottom: 13px;
    font-size: 33px;
    line-height: 1;
}

.ww-warden-card > p:not(.ww-role-type) {
    color: var(--ww-cream-dim);
    font-size: 15px;
    line-height: 1.55;
}

.ww-warden-card > small {
    position: absolute;
    right: 28px;
    bottom: 26px;
    left: 28px;
    padding-top: 14px;
    border-top: 1px solid var(--ww-line-soft);
    color: var(--ww-lilac);
    font-family: var(--ww-serif);
    font-style: italic;
}

.ww-section-note {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    color: var(--ww-sage);
    font-family: var(--ww-serif);
    font-size: 15px;
    font-style: italic;
    text-align: center;
}

.ww-wilds {
    position: relative;
    color: var(--ww-moss);
    background: var(--ww-cream);
    overflow: hidden;
}

.ww-wilds::before,
.ww-wilds::after {
    position: absolute;
    right: -70px;
    width: 440px;
    height: 210px;
    content: "";
    border: 1px solid rgba(8, 25, 18, 0.2);
    border-radius: 100% 0 0 0;
    transform: rotate(-12deg);
}

.ww-wilds::before { top: 25px; }
.ww-wilds::after { bottom: 15px; transform: rotate(192deg); }

.ww-wilds-shell,
.ww-ritual-shell {
    position: relative;
    z-index: 1;
    width: var(--ww-shell);
    margin: auto;
    display: grid;
    grid-template-columns: minmax(350px, 0.82fr) minmax(520px, 1.18fr);
    align-items: center;
    gap: clamp(60px, 9vw, 145px);
}

.ww-wilds .ww-section-number {
    color: var(--ww-lilac-deep);
}

.ww-wilds .ww-kicker {
    margin-top: 14px;
    color: var(--ww-fern);
}

.ww-wilds-copy h2 {
    margin-bottom: 27px;
}

.ww-wilds-copy h2 em {
    color: #9a5e10;
}

.ww-wilds-copy > p:not(.ww-kicker) {
    color: #385044;
}

.ww-wilds-list {
    margin: 44px 0 0;
    padding: 0;
    border-top: 1px solid var(--ww-ink-line);
    list-style: none;
}

.ww-wilds-list li {
    padding: 18px 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    border-bottom: 1px solid var(--ww-ink-line);
}

.ww-wilds-list li > span {
    color: var(--ww-lilac-deep);
    font-family: var(--ww-serif);
    font-style: italic;
}

.ww-wilds-list div {
    display: grid;
    gap: 2px;
}

.ww-wilds-list strong {
    font-family: var(--ww-serif);
    font-size: 18px;
    font-weight: 400;
}

.ww-wilds-list small {
    color: #51665b;
}

.ww-map {
    position: relative;
    width: min(100%, 700px);
    aspect-ratio: 1.06;
    padding: 12px;
    border: 1px solid var(--ww-ink-line);
    border-radius: 50% 45% 52% 46% / 48% 52% 45% 55%;
    background: rgba(8, 25, 18, 0.035);
    transform: rotate(1deg);
}

.ww-map::before {
    position: absolute;
    inset: 15px;
    content: "";
    border: 1px solid rgba(8, 25, 18, 0.17);
    border-radius: 47% 53% 48% 52% / 51% 47% 53% 49%;
    transform: rotate(-2deg);
}

.ww-map svg {
    width: 100%;
    height: 100%;
}

.ww-map-border,
.ww-map-river,
.ww-map-path,
.ww-map-mushrooms path {
    fill: none;
    stroke: var(--ww-forest);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ww-map-border { stroke-width: 2; stroke-dasharray: 3 8; }
.ww-map-river { stroke: #6e79a6; stroke-width: 8; opacity: 0.55; }
.ww-map-path { stroke: #aa6d1a; stroke-width: 3; stroke-dasharray: 4 10; }
.ww-map-path-two { opacity: 0.58; }
.ww-map-trees path { fill: var(--ww-fern); opacity: 0.8; }
.ww-map-mushrooms path { stroke: var(--ww-lilac-deep); stroke-width: 3; }
.ww-map-sites circle { fill: var(--ww-cream); stroke: var(--ww-forest); stroke-width: 2; }
.ww-map-site-marks path { fill: none; stroke: #9a5e10; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }

.ww-map-north {
    position: absolute;
    top: 8%;
    left: 50%;
    color: #9a5e10;
    font-size: 30px;
    transform: translateX(-50%);
}

.ww-map-label {
    position: absolute;
    display: grid;
    color: var(--ww-moss);
    font-family: var(--ww-serif);
    font-size: 13px;
    line-height: 1.2;
}

.ww-map-label b {
    color: var(--ww-lilac-deep);
    font-size: 11px;
}

.ww-label-one { top: 24%; left: 26%; }
.ww-label-two { top: 20%; right: 12%; }
.ww-label-three { right: 25%; bottom: 17%; }

.ww-map > p {
    position: absolute;
    bottom: 3%;
    left: 50%;
    margin: 0;
    font-family: var(--ww-serif);
    font-size: 12px;
    font-style: italic;
    transform: translateX(-50%);
    white-space: nowrap;
}

.ww-spirits {
    background:
        radial-gradient(circle at 15% 20%, rgba(201, 180, 239, 0.07), transparent 24%),
        radial-gradient(circle at 88% 75%, rgba(241, 178, 77, 0.06), transparent 28%);
}

.ww-spirit-book {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--ww-line);
}

.ww-spirit-page {
    position: relative;
    min-height: 440px;
    padding: 42px 43px 34px 270px;
    border-bottom: 1px solid var(--ww-line);
    overflow: hidden;
}

.ww-spirit-page:nth-child(odd) {
    border-right: 1px solid var(--ww-line);
}

.ww-spirit-page:nth-child(n+3) {
    border-bottom: 0;
}

.ww-spirit-page::after {
    position: absolute;
    right: 16px;
    bottom: 15px;
    width: 58px;
    height: 58px;
    content: "❦";
    border-right: 1px solid var(--ww-line);
    border-bottom: 1px solid var(--ww-line);
    color: var(--ww-fern);
    font-size: 25px;
    line-height: 58px;
    text-align: right;
}

.ww-spirit-page h3 {
    margin: 13px 0 17px;
    color: var(--ww-amber-hot);
    font-size: 42px;
    line-height: 1;
}

.ww-spirit-page > p {
    color: var(--ww-cream-dim);
    font-size: 15px;
}

.ww-spirit-page dl {
    margin: 28px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ww-spirit-page dl div {
    padding-top: 11px;
    border-top: 1px solid var(--ww-line-soft);
}

.ww-spirit-page dt {
    color: var(--ww-sage);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.ww-spirit-page dd {
    margin: 3px 0 0;
    font-family: var(--ww-serif);
    font-style: italic;
}

.ww-spirit-sketch {
    position: absolute;
    top: 50%;
    left: 28px;
    width: 205px;
    height: 250px;
    border: 1px solid var(--ww-line-soft);
    border-radius: 48% 52% 43% 57% / 53% 43% 57% 47%;
    transform: translateY(-50%);
}

.ww-spirit-sketch::before {
    position: absolute;
    top: 67px;
    left: 50%;
    width: 108px;
    height: 102px;
    content: "";
    border: 2px solid var(--ww-lilac);
    border-radius: 54% 46% 60% 40% / 49% 55% 45% 51%;
    background: rgba(201, 180, 239, 0.08);
    filter: drop-shadow(0 0 10px rgba(201, 180, 239, 0.2));
    transform: translateX(-50%) rotate(-8deg);
}

.ww-spirit-sketch i,
.ww-spirit-sketch b {
    position: absolute;
    z-index: 2;
    display: block;
}

.ww-spirit-sketch i:first-child,
.ww-spirit-sketch i:nth-child(2) {
    top: 102px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ww-cream);
}

.ww-spirit-sketch i:first-child { left: 78px; }
.ww-spirit-sketch i:nth-child(2) { right: 73px; }

.ww-spirit-sketch i:nth-child(3) {
    top: 133px;
    left: 50%;
    width: 28px;
    height: 12px;
    border-bottom: 2px solid var(--ww-amber);
    border-radius: 50%;
    transform: translateX(-50%);
}

.ww-spirit-sketch b {
    top: 45px;
    left: 50%;
    width: 92px;
    height: 45px;
    border-top: 2px solid var(--ww-sage);
    border-radius: 50%;
    transform: translateX(-50%) rotate(-10deg);
}

.ww-sketch-tuft::before { border-radius: 25% 75% 36% 64% / 60% 38% 62% 40%; transform: translateX(-50%) rotate(7deg); }
.ww-sketch-tuft b { width: 126px; height: 65px; border-color: var(--ww-amber); border-radius: 80% 20% 60% 40%; }
.ww-sketch-gloam::before { border-color: var(--ww-lilac-deep); border-radius: 65% 35% 35% 65% / 38% 52% 48% 62%; }
.ww-sketch-gloam b { width: 54px; border-color: var(--ww-lilac); transform: translateX(-50%) rotate(14deg); }
.ww-sketch-moss::before { top: 84px; height: 87px; border-color: var(--ww-sage); border-radius: 52% 48% 38% 62%; }
.ww-sketch-moss b { top: 55px; width: 112px; border-color: var(--ww-sage); }

.ww-ritual {
    color: var(--ww-moss);
    background: var(--ww-lilac);
}

.ww-ritual-shell {
    grid-template-columns: minmax(310px, 0.72fr) minmax(520px, 1.28fr);
    align-items: start;
}

.ww-ritual-heading {
    position: sticky;
    top: 125px;
}

.ww-ritual .ww-section-number {
    color: #5f4a8f;
}

.ww-ritual .ww-kicker {
    margin-top: 18px;
    color: var(--ww-forest);
}

.ww-ritual-heading h2 em {
    color: #6b430d;
}

.ww-ritual-heading > p:not(.ww-kicker) {
    margin-top: 24px;
    color: #37483f;
}

.ww-ritual-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ww-ritual-steps li {
    min-height: 208px;
    padding: 28px 0;
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    gap: 34px;
    border-top: 1px solid rgba(8, 25, 18, 0.28);
}

.ww-ritual-steps li:last-child {
    border-bottom: 1px solid rgba(8, 25, 18, 0.28);
}

.ww-step-moon {
    position: relative;
    width: 112px;
    height: 112px;
    display: block;
    border: 1px solid rgba(8, 25, 18, 0.38);
    border-radius: 50%;
}

.ww-step-moon::before,
.ww-step-moon i {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.ww-step-moon::before {
    inset: 15px;
    border: 2px solid var(--ww-moss);
}

.ww-step-moon i {
    top: 28px;
    left: 22px;
    width: 48px;
    height: 48px;
    background: var(--ww-moss);
    box-shadow: 19px -6px 0 var(--ww-lilac);
}

.ww-step-moon-half i {
    left: 31px;
    box-shadow: 15px 0 0 var(--ww-lilac);
}

.ww-step-moon-full i {
    left: 31px;
    background: var(--ww-amber);
    box-shadow: none;
}

.ww-ritual-steps small {
    color: #5f4a8f;
    font-weight: 850;
    letter-spacing: 0.16em;
}

.ww-ritual-steps h3 {
    margin: 6px 0 9px;
    font-size: 31px;
    line-height: 1.1;
}

.ww-ritual-steps p {
    margin: 0;
    color: #37483f;
}

.ww-ritual-promise {
    grid-column: 1 / -1;
    margin-top: 65px;
    padding: 40px;
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;
    gap: 36px;
    border: 1px solid var(--ww-moss);
    background: rgba(244, 237, 216, 0.33);
    box-shadow: 10px 10px 0 rgba(8, 25, 18, 0.12);
}

.ww-ritual-promise svg path {
    fill: none;
    stroke: var(--ww-moss);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.ww-ritual-promise svg .ww-promise-flame {
    fill: var(--ww-amber);
    stroke: #8a5510;
}

.ww-ritual-promise .ww-kicker {
    margin-bottom: 9px;
}

.ww-ritual-promise h3 {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1.17;
}

.ww-ritual-promise p:last-child {
    margin: 0;
    color: #37483f;
}

.ww-join {
    position: relative;
    min-height: 760px;
    padding: 130px max(36px, calc((100vw - 1100px) / 2));
    display: grid;
    grid-template-columns: minmax(400px, 0.85fr) minmax(360px, 0.65fr);
    align-items: center;
    gap: 100px;
    background:
        radial-gradient(circle at 73% 50%, rgba(241, 178, 77, 0.2), transparent 25%),
        linear-gradient(180deg, #06130d, var(--ww-moss));
    overflow: hidden;
}

.ww-join::before {
    position: absolute;
    right: -16%;
    bottom: -49%;
    width: 900px;
    height: 900px;
    content: "";
    border: 1px solid rgba(201, 180, 239, 0.16);
    border-radius: 50%;
    box-shadow: inset 0 0 160px rgba(201, 180, 239, 0.03);
}

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

.ww-join .ww-kicker {
    margin-top: 18px;
}

.ww-join h2 {
    max-width: 730px;
}

.ww-join-copy > p:not(.ww-kicker) {
    max-width: 600px;
    margin: 28px 0 33px;
    color: var(--ww-cream-dim);
    font-family: var(--ww-serif);
    font-size: 20px;
}

.ww-join-copy > small {
    margin-top: 22px;
    display: block;
    color: var(--ww-sage);
    font-size: 12px;
}

.ww-join-lantern {
    position: relative;
    z-index: 1;
    width: min(360px, 100%);
    height: 480px;
    justify-self: center;
}

.ww-join-lantern i {
    position: absolute;
    display: block;
}

.ww-join-aura {
    inset: -50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 217, 126, 0.36), rgba(241, 178, 77, 0.1) 40%, transparent 70%);
    animation: ww-aura 3.2s ease-in-out infinite;
}

.ww-join-handle {
    top: 25px;
    left: 50%;
    width: 180px;
    height: 140px;
    border: 5px solid var(--ww-cream-dim);
    border-bottom: 0;
    border-radius: 95px 95px 0 0;
    transform: translateX(-50%);
}

.ww-join-frame {
    top: 130px;
    right: 46px;
    bottom: 30px;
    left: 46px;
    border: 5px solid var(--ww-cream);
    clip-path: polygon(14% 0, 86% 0, 100% 16%, 91% 100%, 9% 100%, 0 16%);
    background:
        linear-gradient(90deg, transparent 48.5%, var(--ww-cream-dim) 49%, var(--ww-cream-dim) 51%, transparent 51.5%),
        linear-gradient(rgba(241, 178, 77, 0.1), rgba(241, 178, 77, 0.26));
}

.ww-join-flame {
    bottom: 92px;
    left: 50%;
    width: 98px;
    height: 138px;
    border-radius: 70% 30% 62% 38% / 70% 54% 46% 30%;
    background: var(--ww-amber-hot);
    box-shadow: 0 0 48px var(--ww-amber), 0 0 100px rgba(241, 178, 77, 0.5);
    transform: translateX(-50%) rotate(9deg);
    animation: ww-flame-large 2.1s ease-in-out infinite;
}

.ww-join-branches i {
    position: absolute;
    z-index: 0;
    width: 620px;
    height: 260px;
    border-top: 8px solid var(--ww-fern);
    border-radius: 50%;
    opacity: 0.55;
}

.ww-join-branches {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ww-join-branches i:first-child { top: 40px; left: -110px; transform: rotate(14deg); }
.ww-join-branches i:last-child { right: -120px; bottom: -30px; transform: rotate(194deg); }

.ww-faq {
    display: grid;
    grid-template-columns: minmax(310px, 0.72fr) minmax(520px, 1.28fr);
    align-items: start;
    gap: clamp(60px, 9vw, 145px);
}

.ww-faq-heading {
    position: sticky;
    top: 125px;
}

.ww-faq-heading .ww-kicker {
    margin-top: 18px;
}

.ww-faq-heading h2 {
    margin-bottom: 24px;
}

.ww-faq-heading > p:not(.ww-kicker) {
    color: var(--ww-cream-dim);
}

.ww-faq-heading .ww-text-link {
    margin-top: 13px;
}

.ww-faq-list {
    border-top: 1px solid var(--ww-line);
}

.ww-faq-item {
    border-bottom: 1px solid var(--ww-line);
}

.ww-faq-item h3 {
    margin: 0;
}

.ww-faq-item button {
    width: 100%;
    padding: 28px 0;
    display: grid;
    grid-template-columns: 1fr 32px;
    align-items: center;
    gap: 24px;
    color: var(--ww-cream);
    background: transparent;
    cursor: pointer;
    font-family: var(--ww-serif);
    font-size: clamp(21px, 2vw, 29px);
    text-align: left;
}

.ww-faq-item button i {
    position: relative;
    width: 28px;
    height: 28px;
    border: 1px solid var(--ww-sage);
    border-radius: 50%;
}

.ww-faq-item button i::before,
.ww-faq-item button i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 1px;
    content: "";
    background: var(--ww-amber);
    transform: translate(-50%, -50%);
    transition: transform 180ms ease;
}

.ww-faq-item button i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.ww-faq-item button[aria-expanded="true"] i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.ww-faq-answer {
    padding: 0 70px 30px 0;
    color: var(--ww-cream-dim);
}

.ww-faq-answer p {
    margin: 0;
}

.ww-footer {
    position: relative;
    padding: 96px 0 0;
    border-top: 1px solid var(--ww-line);
    background: var(--ww-moss-deep);
    overflow: hidden;
}

.ww-footer-canopy {
    position: absolute;
    top: -110px;
    left: 50%;
    width: 135%;
    height: 170px;
    border-bottom: 2px solid var(--ww-fern);
    border-radius: 50%;
    transform: translateX(-50%);
}

.ww-footer-main,
.ww-footer-bottom {
    width: var(--ww-shell);
    margin: auto;
}

.ww-footer-main {
    padding-bottom: 75px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.ww-footer-brand > p {
    max-width: 330px;
    margin: 25px 0 0;
    color: var(--ww-cream-dim);
    font-family: var(--ww-serif);
    font-style: italic;
}

.ww-footer-nav {
    display: grid;
    grid-template-columns: 0.7fr 0.7fr 1.2fr;
    gap: 50px;
}

.ww-footer-nav div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.ww-footer-nav strong {
    margin-bottom: 8px;
    color: var(--ww-sage);
    font-size: 10px;
    letter-spacing: 0.16em;
}

.ww-footer-nav a,
.ww-footer-nav button,
.ww-footer-nav span {
    padding: 2px 0;
    color: var(--ww-cream-dim);
    background: none;
    font-size: 14px;
    text-align: left;
}

.ww-footer-nav a:hover,
.ww-footer-nav button:hover {
    color: var(--ww-amber-hot);
}

.ww-footer-nav button {
    cursor: pointer;
}

.ww-footer-bottom {
    min-height: 72px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-top: 1px solid var(--ww-line-soft);
    color: var(--ww-sage);
    font-size: 11px;
    letter-spacing: 0.045em;
}

.ww-dialog {
    width: min(940px, calc(100% - 36px));
    max-height: calc(100dvh - 36px);
    padding: 0;
    border: 1px solid var(--ww-sage);
    color: var(--ww-cream);
    background: var(--ww-moss);
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.68);
}

.ww-dialog::backdrop {
    background: rgba(2, 8, 5, 0.82);
    backdrop-filter: blur(6px);
}

.ww-dialog-shell {
    position: relative;
    min-height: 640px;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
}

.ww-dialog-close {
    position: absolute;
    z-index: 4;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--ww-line);
    border-radius: 50%;
    color: var(--ww-cream);
    background: var(--ww-moss);
    cursor: pointer;
    font-size: 29px;
    line-height: 1;
}

.ww-dialog-close:hover {
    color: var(--ww-moss);
    background: var(--ww-cream);
}

.ww-dialog-art {
    position: relative;
    min-height: 640px;
    border-right: 1px solid var(--ww-line);
    background:
        radial-gradient(circle at 50% 37%, rgba(241, 178, 77, 0.13), transparent 28%),
        linear-gradient(160deg, #163c2a, #081912 73%);
    overflow: hidden;
}

.ww-dialog-art::before,
.ww-dialog-art::after {
    position: absolute;
    width: 130%;
    height: 240px;
    content: "";
    border: solid var(--ww-sage);
    border-width: 2px 0 0;
    border-radius: 50%;
    opacity: 0.38;
}

.ww-dialog-art::before { top: 5px; left: -43%; transform: rotate(46deg); }
.ww-dialog-art::after { right: -44%; bottom: -76px; transform: rotate(211deg); }

.ww-dialog-moon {
    position: absolute;
    top: 79px;
    left: 50%;
    width: 185px;
    height: 185px;
    border-radius: 50%;
    background: var(--ww-cream);
    box-shadow: 0 0 85px rgba(244, 237, 216, 0.22);
    transform: translateX(-50%);
}

.ww-dialog-tree i {
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: 18px;
    height: 490px;
    border-radius: 50% 50% 0 0;
    background: var(--ww-moss-deep);
    transform-origin: bottom;
}

.ww-dialog-tree i:first-child { left: 31px; transform: rotate(-14deg); }
.ww-dialog-tree i:nth-child(2) { left: 66px; height: 410px; transform: rotate(10deg); }
.ww-dialog-tree i:last-child { right: 33px; transform: rotate(13deg); }

.ww-dialog-lantern {
    position: absolute;
    z-index: 2;
    bottom: 100px;
    left: 50%;
    width: 90px;
    height: 123px;
    border: 3px solid var(--ww-cream);
    background: rgba(241, 178, 77, 0.15);
    transform: translateX(-50%);
}

.ww-dialog-lantern i {
    position: absolute;
    top: -37px;
    left: 50%;
    width: 55px;
    height: 40px;
    border: 3px solid var(--ww-cream);
    border-bottom: 0;
    border-radius: 50% 50% 0 0;
    transform: translateX(-50%);
}

.ww-dialog-lantern b {
    position: absolute;
    bottom: 15px;
    left: 50%;
    width: 38px;
    height: 61px;
    border-radius: 65% 35% 59% 41%;
    background: var(--ww-amber-hot);
    box-shadow: 0 0 32px var(--ww-amber);
    transform: translateX(-50%) rotate(6deg);
}

.ww-dialog-art > p {
    position: absolute;
    z-index: 3;
    bottom: 24px;
    left: 27px;
    margin: 0;
    color: var(--ww-cream);
    font-family: var(--ww-serif);
    font-size: 19px;
    letter-spacing: 0.12em;
}

.ww-dialog-art > p small {
    color: var(--ww-sage);
    font-family: var(--ww-sans);
    font-size: 9px;
}

.ww-dialog-main {
    padding: 66px 60px 44px;
    overflow-y: auto;
}

.ww-dialog-main h2 {
    margin: 6px 0 14px;
    font-family: var(--ww-serif);
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
}

.ww-dialog-intro {
    color: var(--ww-cream-dim);
    font-size: 15px;
}

.ww-registration-form {
    margin-top: 29px;
}

.ww-field {
    margin-bottom: 20px;
}

.ww-field label {
    margin-bottom: 7px;
    display: block;
    color: var(--ww-sage);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ww-field input {
    width: 100%;
    min-height: 54px;
    padding: 13px 15px;
    border: 1px solid var(--ww-line);
    border-radius: 0;
    outline: 0;
    color: var(--ww-cream);
    background: rgba(244, 237, 216, 0.035);
}

.ww-field input::placeholder {
    color: #829287;
}

.ww-field input:focus {
    border-color: var(--ww-amber);
    box-shadow: 0 0 0 3px rgba(241, 178, 77, 0.12);
}

.ww-field input[aria-invalid="true"] {
    border-color: #f5a391;
}

.ww-field-hint,
.ww-field-error {
    margin-top: 6px;
    display: block;
    font-size: 11px;
    line-height: 1.4;
}

.ww-field-hint { color: var(--ww-sage); }
.ww-field-error { color: #ffc1b4; }

.ww-form-note {
    margin: 8px 0 21px;
    padding-left: 15px;
    border-left: 2px solid var(--ww-lilac);
    color: var(--ww-cream-dim);
    font-size: 12px;
}

.ww-submit-button {
    width: 100%;
}

.ww-submit-button i {
    width: 15px;
    height: 15px;
    display: none;
    border: 2px solid rgba(8, 25, 18, 0.35);
    border-top-color: var(--ww-moss);
    border-radius: 50%;
    animation: ww-spin 700ms linear infinite;
}

.ww-submit-button.ww-loading i {
    display: block;
}

.ww-form-status {
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid var(--ww-line);
    background: rgba(201, 180, 239, 0.08);
}

.ww-form-status[data-kind="success"] {
    border-color: var(--ww-sage);
    background: rgba(156, 190, 161, 0.1);
}

.ww-form-status[data-kind="error"] {
    border-color: rgba(255, 193, 180, 0.58);
}

.ww-form-status strong {
    display: block;
    font-family: var(--ww-serif);
    font-size: 19px;
    font-weight: 400;
}

.ww-form-status p {
    margin: 3px 0 0;
    color: var(--ww-cream-dim);
    font-size: 13px;
}

.ww-reveal {
    transition: opacity 700ms ease, transform 700ms ease;
}

.ww-js .ww-reveal:not(.ww-visible) {
    opacity: 0;
    transform: translateY(26px);
}

@keyframes ww-firefly {
    0%, 100% { opacity: 0.16; transform: translate(0, 0) scale(0.7); }
    35% { opacity: 1; transform: translate(15px, -18px) scale(1); }
    70% { opacity: 0.36; transform: translate(-10px, -35px) scale(0.75); }
}

@keyframes ww-float-left {
    0%, 100% { transform: translate(0, 0) rotate(0); }
    50% { transform: translate(-8px, -13px) rotate(-3deg); }
}

@keyframes ww-float-right {
    0%, 100% { transform: translate(0, 0) rotate(0); }
    50% { transform: translate(9px, -11px) rotate(3deg); }
}

@keyframes ww-aura {
    0%, 100% { opacity: 0.72; transform: scale(0.94); }
    50% { opacity: 1; transform: scale(1.04); }
}

@keyframes ww-flame {
    0%, 100% { transform: scale(0.96) rotate(-2deg); }
    50% { transform: scale(1.04, 0.97) rotate(3deg); }
}

@keyframes ww-flame-large {
    0%, 100% { border-radius: 70% 30% 62% 38% / 70% 54% 46% 30%; transform: translateX(-50%) scale(0.96) rotate(7deg); }
    50% { border-radius: 42% 58% 34% 66% / 62% 68% 32% 38%; transform: translateX(-50%) scale(1.04, 0.97) rotate(11deg); }
}

@keyframes ww-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 1160px) {
    :root { --ww-shell: min(100% - 48px, 1020px); }
    .ww-desktop-nav { display: none; }
    .ww-menu-button { display: grid; }
    .ww-header-cta { margin-left: auto; }
    .ww-hero { min-height: auto; grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr); }
    .ww-hero h1 { font-size: clamp(64px, 7.8vw, 90px); }
    .ww-section-heading { grid-template-columns: 115px 1fr; }
    .ww-section-heading > p { grid-column: 2; }
    .ww-warden-grid { grid-template-columns: repeat(2, 1fr); }
    .ww-warden-card + .ww-warden-card { border-left: 1px solid var(--ww-line); }
    .ww-warden-card:nth-child(even) { border-left: 0; }
    .ww-warden-card:nth-child(n+3) { border-top: 0; }
    .ww-wilds-shell { gap: 55px; }
    .ww-spirit-page { min-height: 470px; padding-left: 43px; padding-top: 285px; }
    .ww-spirit-sketch { top: 22px; left: 50%; height: 235px; transform: translateX(-50%); }
    .ww-ritual-shell,
    .ww-faq { gap: 68px; }
    .ww-footer-main { grid-template-columns: 0.65fr 1.35fr; gap: 48px; }
    .ww-footer-nav { gap: 30px; }
}

@media (max-width: 860px) {
    :root { --ww-shell: calc(100% - 40px); }
    .ww-nav-shell { height: 72px; }
    html { scroll-padding-top: 82px; }
    .ww-hero { padding-top: 72px; grid-template-columns: 1fr; }
    .ww-hero-copy { max-width: 730px; }
    .ww-hero-art { width: min(680px, 100%); margin-top: 25px; justify-self: center; }
    .ww-section-heading { grid-template-columns: 1fr; gap: 18px; }
    .ww-section-heading > p { grid-column: auto; max-width: 620px; }
    .ww-wilds-shell,
    .ww-ritual-shell,
    .ww-faq { grid-template-columns: 1fr; }
    .ww-wilds-copy { max-width: 650px; }
    .ww-map { justify-self: center; }
    .ww-ritual-heading,
    .ww-faq-heading { position: static; max-width: 650px; }
    .ww-spirit-page { padding-right: 28px; padding-left: 28px; }
    .ww-join { grid-template-columns: 1fr; gap: 60px; }
    .ww-join-lantern { grid-row: 1; height: 390px; transform: scale(0.82); transform-origin: bottom; }
    .ww-join-copy { text-align: center; }
    .ww-join-copy .ww-kicker { justify-content: center; }
    .ww-join-copy > p:not(.ww-kicker) { margin-right: auto; margin-left: auto; }
    .ww-footer-main { grid-template-columns: 1fr; }
    .ww-footer-nav { max-width: 680px; }
    .ww-dialog-shell { grid-template-columns: 1fr; min-height: 0; }
    .ww-dialog-art { display: none; }
    .ww-dialog-main { padding-top: 69px; }
}

@media (max-width: 600px) {
    :root { --ww-shell: calc(100% - 28px); }
    body { font-size: 16px; }
    .ww-nav-shell { height: 68px; gap: 9px; }
    .ww-brand-mark { width: 32px; height: 38px; }
    .ww-brand-words { font-size: 12px; }
    .ww-brand-words strong { font-size: 15px; }
    .ww-nav-actions { gap: 8px; }
    .ww-header-cta { display: none; }
    .ww-language { gap: 2px; }
    .ww-language button { padding: 7px 2px; }
    .ww-menu-button { width: 38px; height: 38px; }
    .ww-mobile-menu { padding-right: 18px; padding-left: 18px; }
    .ww-hero { padding: 53px 0 65px; }
    .ww-hero::before { left: 0; width: 100%; height: 520px; transform: none; }
    .ww-hero h1 { font-size: clamp(52px, 16vw, 72px); }
    .ww-hero h1 em { margin-left: 0.12em; }
    .ww-hero-actions { align-items: stretch; flex-direction: column; gap: 14px; }
    .ww-hero-actions .ww-text-link { align-self: center; }
    .ww-hero-notes { margin-top: 45px; grid-template-columns: 1fr 1fr; }
    .ww-hero-art { margin-top: 10px; }
    .ww-plate-label { top: 7.5%; font-size: 10px; }
    .ww-art-caption { right: 10%; bottom: 6%; width: 55%; font-size: 10px; }
    .ww-story-ribbon { padding-top: 37px; padding-bottom: 37px; }
    .ww-story-ribbon > span { display: none; }
    .ww-section { padding: 88px 0; }
    .ww-section-heading { margin-bottom: 50px; }
    .ww-section-number { font-size: 42px; }
    .ww-section-heading h2,
    .ww-wilds-copy h2,
    .ww-ritual-heading h2,
    .ww-join h2,
    .ww-faq-heading h2 { font-size: clamp(42px, 13vw, 58px); }
    .ww-warden-grid { display: block; }
    .ww-warden-card { min-height: 540px; }
    .ww-warden-card + .ww-warden-card { border-top: 0; border-left: 1px solid var(--ww-line); }
    .ww-wilds::before,
    .ww-wilds::after { display: none; }
    .ww-wilds-shell,
    .ww-ritual-shell,
    .ww-faq { gap: 60px; }
    .ww-map { width: calc(100% + 6px); margin-left: -3px; }
    .ww-map-label { font-size: 10px; }
    .ww-label-one { top: 24%; left: 21%; }
    .ww-label-two { right: 7%; }
    .ww-label-three { right: 20%; }
    .ww-map > p { font-size: 10px; }
    .ww-spirit-book { display: block; }
    .ww-spirit-page { min-height: 510px; border-right: 0 !important; border-bottom: 1px solid var(--ww-line) !important; }
    .ww-spirit-page:last-child { border-bottom: 0 !important; }
    .ww-spirit-page dl { gap: 10px; }
    .ww-ritual-steps li { grid-template-columns: 74px 1fr; gap: 18px; }
    .ww-step-moon { width: 70px; height: 70px; }
    .ww-step-moon::before { inset: 9px; }
    .ww-step-moon i { top: 18px; left: 14px; width: 30px; height: 30px; box-shadow: 12px -4px 0 var(--ww-lilac); }
    .ww-step-moon-half i { left: 19px; box-shadow: 10px 0 0 var(--ww-lilac); }
    .ww-step-moon-full i { left: 19px; box-shadow: none; }
    .ww-ritual-steps h3 { font-size: 25px; }
    .ww-ritual-promise { padding: 29px 22px; grid-template-columns: 1fr; }
    .ww-ritual-promise svg { width: 94px; }
    .ww-join { min-height: 820px; padding: 80px 22px 95px; gap: 30px; }
    .ww-join-branches { display: none; }
    .ww-join-lantern { width: 310px; height: 355px; transform: scale(0.72); }
    .ww-join-copy > small { line-height: 1.5; }
    .ww-faq-item button { padding: 23px 0; font-size: 21px; }
    .ww-faq-answer { padding-right: 10px; }
    .ww-footer { padding-top: 78px; }
    .ww-footer-canopy { left: 0; width: 100%; transform: none; }
    .ww-footer-main { padding-bottom: 50px; }
    .ww-footer-nav { grid-template-columns: 1fr 1fr; }
    .ww-footer-nav div:last-child { grid-column: 1 / -1; }
    .ww-footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
    .ww-dialog { width: calc(100% - 20px); max-height: calc(100dvh - 20px); }
    .ww-dialog-main { padding: 64px 21px 28px; }
    .ww-dialog-main h2 { font-size: 39px; }
    .ww-dialog-intro { font-size: 14px; }
}

@media (max-width: 380px) {
    .ww-brand-words { display: none; }
    .ww-spirit-page { padding-right: 20px; padding-left: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
    .ww-js .ww-reveal:not(.ww-visible) {
        opacity: 1;
        transform: none;
    }
}
