:root {
    --ana-paper: #f6f1ec;
    --ana-cream: #f2d1a1;
    --ana-pink: #e8b9b6;
    --ana-mauve: #a9677b;
    --ana-peach: #e8a06f;
    --ana-terracotta: #805337;
    --ana-sage: #aeb17a;
    --ana-mustard: #bcae5d;
    --ana-olive: #403d16;
    --ana-plum: #3d1835;
    --ana-white: #fffaf4;
    --ana-line: rgba(98, 94, 52, 0.52);
    --ana-mono: "DM Mono", ui-monospace, monospace;
    --ana-sans: "DM Sans", Arial, sans-serif;
    --ana-serif: "DM Serif Display", Georgia, serif;
    --ana-cursor-default: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M5 3.5L6.5 25l5.2-5.2L17 29l4.2-2.4-5.1-8.9h7.4Z' fill='%23f2d1a1' stroke='%23403d16' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M7.3 6.4l1.1 13.6' fill='none' stroke='%23fffaf4' stroke-width='1.3' stroke-linecap='round'/%3E%3C/svg%3E") 5 4, auto;
    --ana-cursor-action: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 64 64'%3E%3Cpath d='M29 5c3 0 5 2 5 5v18h2V14c0-3 2-5 5-5s5 2 5 5v21h2V20c0-3 2-5 5-5s5 2 5 5v22c0 10-7 17-17 17H29c-6 0-10-2-14-7L5 38c-2-3-1-6 2-8 3-2 6-1 8 2l4 6V12c0-3 2-5 5-5s5 2 5 5v16h1V10c0-3 2-5 5-5z' fill='%23e8a06f' stroke='%23403d16' stroke-width='3' stroke-linejoin='round'/%3E%3C/svg%3E") 16 4, pointer;
}

.editorial-site {
    margin: 0;
    color: var(--ana-olive);
    background: var(--ana-paper);
    font-family: var(--ana-sans);
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0;
    overflow-x: hidden;
}

.editorial-site::before {
    display: none;
}

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

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

.editorial-site h1,
.editorial-site h2,
.editorial-site h3,
.editorial-site p {
    margin: 0;
}

.editorial-site h1,
.editorial-site h2,
.editorial-site h3 {
    color: inherit;
    font-family: var(--ana-sans);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0;
}

.editorial-site a {
    color: inherit;
}

.editorial-site [hidden] {
    display: none !important;
}

@media (hover: hover) and (pointer: fine) {
    .editorial-site {
        cursor: var(--ana-cursor-default);
    }

    .editorial-site :is(a, button, summary, select, input[type="radio"], input[type="checkbox"], input[type="date"], .mode-switch label) {
        cursor: var(--ana-cursor-action);
    }

    .editorial-site :is(input[type="text"], input[type="email"], input[type="tel"], textarea) {
        cursor: text;
    }

    .editorial-site :is(button, input, select, textarea):disabled {
        cursor: not-allowed;
    }
}

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

.skip-link {
    position: fixed;
    left: 16px;
    top: -90px;
    z-index: 1000;
    padding: 10px 14px;
    background: var(--ana-white);
    color: var(--ana-olive);
    font-family: var(--ana-mono);
    font-size: 12px;
    transition: top 180ms ease;
}

.skip-link:focus {
    top: 12px;
}

.skip-link-form {
    left: 190px;
}

.a11y-tools {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 900;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 10px;
    color: var(--ana-olive);
    font-family: var(--ana-sans);
}

.a11y-tools button {
    color: inherit;
    font: 600 14px/1.2 var(--ana-sans);
    letter-spacing: 0;
}

.a11y-toggle {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 2px solid var(--ana-olive);
    border-radius: 50%;
    background: var(--ana-cream);
    box-shadow: 0 8px 24px rgba(49, 47, 24, 0.22);
}

.a11y-toggle > span[aria-hidden="true"] {
    font-family: var(--ana-serif);
    font-size: 21px;
    font-weight: 400;
}

.a11y-toggle[aria-expanded="true"] {
    color: var(--ana-white);
    background: var(--ana-olive);
}

.a11y-panel {
    width: min(310px, calc(100vw - 32px));
    padding: 17px;
    border: 2px solid var(--ana-olive);
    border-radius: 6px;
    background: var(--ana-paper);
    box-shadow: 0 14px 36px rgba(49, 47, 24, 0.24);
}

.a11y-title {
    margin-bottom: 14px !important;
    font-family: var(--ana-serif);
    font-size: 24px;
    line-height: 1.1;
}

.a11y-size-controls {
    display: grid;
    grid-template-columns: 52px 1fr 52px;
    min-height: 46px;
    margin-bottom: 10px;
    border: 1px solid var(--ana-line);
}

.a11y-size-controls button,
.a11y-size-controls output {
    display: grid;
    min-width: 0;
    place-items: center;
    border: 0;
    background: transparent;
}

.a11y-size-controls button + output,
.a11y-size-controls output + button {
    border-left: 1px solid var(--ana-line);
}

.a11y-size-controls button:hover:not(:disabled) {
    color: var(--ana-white);
    background: var(--ana-olive);
}

.a11y-size-controls button:disabled {
    opacity: 0.42;
}

.a11y-size-controls output {
    font-family: var(--ana-mono);
    font-size: 12px;
}

.a11y-option {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
    width: 100%;
    min-height: 46px;
    padding: 8px 10px;
    border: 1px solid var(--ana-line);
    background: transparent;
    text-align: left;
}

.a11y-option + .a11y-option {
    margin-top: 8px;
}

.a11y-option[aria-pressed="true"] {
    color: var(--ana-white);
    background: var(--ana-olive);
}

.a11y-option-icon {
    font-size: 21px;
    text-align: center;
}

.a11y-link-icon {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.a11y-reset {
    min-height: 44px;
    margin-top: 9px;
    padding: 8px 2px;
    border: 0;
    background: transparent;
    font-family: var(--ana-mono) !important;
    font-size: 11px !important;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.availability-bar {
    position: relative;
    z-index: 51;
    height: 32px;
    overflow: hidden;
    background: var(--ana-cream);
    color: var(--ana-olive);
    font-family: var(--ana-mono);
    font-size: 11px;
    line-height: 32px;
    white-space: nowrap;
}

.availability-track {
    display: flex;
    width: max-content;
    animation: anaMarquee 28s linear infinite;
}

.availability-track span {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    min-width: 520px;
    justify-content: center;
}

.availability-track span::after {
    content: "*";
    color: var(--ana-mauve);
    font-family: var(--ana-sans);
}

.editorial-header {
    position: relative;
    z-index: 50;
    display: grid;
    grid-template-columns: minmax(220px, 0.72fr) minmax(420px, 1.35fr) auto;
    align-items: center;
    gap: 34px;
    min-height: 118px;
    padding: 15px clamp(30px, 4.2vw, 68px);
    border: 0;
    background: var(--ana-paper);
}

.ana-wordmark {
    display: inline-grid;
    justify-self: start;
    text-decoration: none;
    line-height: 1;
}

.ana-wordmark strong {
    color: var(--ana-mauve);
    font-family: var(--ana-serif);
    font-size: clamp(62px, 6.2vw, 92px);
    font-weight: 400;
    line-height: 0.7;
}

.ana-wordmark small {
    margin: 10px 0 0 5px;
    color: var(--ana-olive);
    font-family: var(--ana-mono);
    font-size: 9px;
    text-transform: lowercase;
}

.editorial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 3vw, 52px);
}

.editorial-nav a {
    position: relative;
    color: var(--ana-olive);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.editorial-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -5px;
    height: 1px;
    background: currentColor;
    transition: right 220ms ease;
}

.editorial-nav a:hover::after,
.editorial-nav a:focus-visible::after {
    right: 0;
}

.pill-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 10px 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--ana-cream);
    color: var(--ana-olive);
    font-family: var(--ana-mono);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.pill-button:hover,
.pill-button:focus-visible {
    transform: translateY(-3px);
    background: var(--ana-olive);
    color: var(--ana-white);
}

.header-cta {
    justify-self: end;
    min-width: 190px;
}

.menu-toggle {
    display: none;
}

.ana-hero {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(270px, 0.85fr) minmax(430px, 1.25fr) minmax(230px, 0.72fr);
    min-height: 478px;
    overflow: hidden;
    background: var(--ana-pink);
}

.hero-illustration {
    position: relative;
    align-self: stretch;
    min-width: 0;
}

.hero-illustration img {
    position: absolute;
    left: clamp(28px, 7vw, 112px);
    bottom: -28px;
    width: min(82%, 365px);
    height: auto;
    filter: saturate(0.88) contrast(0.98);
    transform-origin: 50% 100%;
    animation: anaFloat 6.8s ease-in-out infinite;
}

.ana-hero-copy {
    position: relative;
    z-index: 2;
    align-self: center;
    justify-self: center;
    width: min(100%, 590px);
    padding: 48px 20px;
    text-align: center;
}

.micro-label {
    color: var(--ana-olive);
    font-family: var(--ana-mono);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: lowercase;
}

.ana-hero-copy h1 {
    max-width: 590px;
    margin: 20px auto 0;
    color: var(--ana-olive);
    font-size: clamp(34px, 3.3vw, 53px);
    line-height: 1.04;
}

.hero-text-link {
    display: inline-block;
    margin-top: 26px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(98, 94, 52, 0.7);
    color: var(--ana-olive);
    font-family: var(--ana-mono);
    font-size: 11px;
    text-decoration: none;
}

.hero-ornaments {
    position: relative;
    min-width: 0;
}

.editorial-sun,
.question-sun {
    position: absolute;
    display: grid;
    place-items: center;
    width: 108px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--ana-peach);
}

.editorial-sun {
    top: 88px;
    left: 30%;
    animation: sunDrift 7s ease-in-out infinite;
}

.editorial-sun::before,
.question-sun::before {
    content: "";
    position: absolute;
    inset: -27px;
    border-radius: 50%;
    background: repeating-conic-gradient(from 0deg, var(--ana-peach) 0 9deg, transparent 9deg 20deg);
    -webkit-mask: radial-gradient(circle, transparent 0 57%, #000 59%);
    mask: radial-gradient(circle, transparent 0 57%, #000 59%);
    animation: sunTurn 26s linear infinite;
}

.editorial-sun i,
.question-sun i {
    position: relative;
    width: 38px;
    height: 18px;
    border-bottom: 3px solid rgba(98, 94, 52, 0.62);
    border-radius: 0 0 50% 50%;
}

.editorial-sun i::before,
.editorial-sun i::after,
.question-sun i::before,
.question-sun i::after {
    content: "";
    position: absolute;
    top: -7px;
    width: 8px;
    border-top: 2px solid rgba(98, 94, 52, 0.62);
}

.editorial-sun i::before,
.question-sun i::before {
    left: 1px;
}

.editorial-sun i::after,
.question-sun i::after {
    right: 1px;
}

.editorial-waves {
    position: absolute;
    left: 7%;
    bottom: 67px;
    display: flex;
    align-items: flex-end;
    color: var(--ana-mauve);
    animation: waveDrift 6s ease-in-out infinite;
}

.editorial-waves i,
.booking-wave i {
    display: block;
    width: 48px;
    height: 43px;
    margin-left: -4px;
    border: 14px solid currentColor;
    border-top-color: transparent;
    border-right-color: transparent;
    border-radius: 50%;
    transform: rotate(-45deg);
}

.recognition-band {
    display: grid;
    place-items: center;
    min-height: 360px;
    padding: 62px 24px;
    background: var(--ana-mustard);
    color: var(--ana-olive);
    text-align: center;
}

.recognition-band > div {
    display: grid;
    gap: 16px;
    width: min(100%, 850px);
}

.recognition-band p {
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.5;
}

.recognition-band strong {
    margin-top: 12px;
    font-family: var(--ana-mono);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.recognition-band span {
    color: var(--ana-olive);
    font-size: 14px;
}

.story-split {
    display: grid;
    grid-template-columns: 1fr 1.18fr;
    min-height: 690px;
}

.story-visual {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    padding: clamp(58px, 7vw, 100px);
    background: var(--ana-mauve);
}

.story-image-wrap {
    position: relative;
    width: min(100%, 500px);
    height: 500px;
    overflow: hidden;
}

.story-image-wrap img {
    width: 100%;
    height: 118%;
    object-fit: cover;
    object-position: 72% center;
    transform: translate3d(0, var(--parallax-y, -8%), 0) scale(1.03);
    will-change: transform;
}

.dandelion-mark {
    position: relative;
    display: block;
    isolation: isolate;
}

.dandelion-fallback,
.dandelion-cycle {
    display: block;
    width: 100%;
    height: 100%;
}

.dandelion-fallback {
    background: currentColor;
    -webkit-mask: url("../img/dandelion-mark.svg") center / contain no-repeat;
    mask: url("../img/dandelion-mark.svg") center / contain no-repeat;
}

.dandelion-mark.is-enhanced .dandelion-fallback {
    display: none;
}

.dandelion-cycle {
    overflow: visible;
    color: inherit;
    transform: translateX(var(--dandelion-scroll-shift, 0px)) rotate(var(--dandelion-scroll-tilt, 0deg));
    transform-origin: 50% 78%;
    transition: transform 260ms cubic-bezier(0.22, 0.7, 0.25, 1);
}

.dandelion-cycle :is(.dandelion-stem, .dandelion-floret) {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.dandelion-cycle :is(.dandelion-core, .dandelion-achene) {
    fill: currentColor;
    stroke: none;
}

.dandelion-wind-body {
    transform-box: view-box;
    transform-origin: 113px 247px;
    animation: dandelionWindSway 7.4s cubic-bezier(0.42, 0, 0.22, 1) infinite;
    will-change: transform;
}

.dandelion-stalk {
    animation: dandelionStalkBend 7.4s cubic-bezier(0.42, 0, 0.22, 1) infinite;
}

.dandelion-head {
    transform-box: view-box;
    transform-origin: 120px 91px;
    animation: dandelionHeadDrift 7.4s cubic-bezier(0.42, 0, 0.22, 1) infinite;
    will-change: transform;
}

.dandelion-leaf {
    transform-box: view-box;
    animation: dandelionLeafBreathe 5.8s ease-in-out infinite;
    will-change: transform;
}

.dandelion-leaf-left {
    transform-origin: 115px 187px;
}

.dandelion-leaf-right {
    transform-origin: 113px 218px;
    animation-delay: -1.6s;
}

.dandelion-cycle .dandelion-floret {
    opacity: 1;
    transform-box: view-box;
    transform-origin: 120px 91px;
    animation: dandelionFloretBreeze var(--floret-duration) ease-in-out var(--floret-delay) infinite;
    will-change: transform, opacity;
}

.dandelion-seed-pappus {
    transform-box: view-box;
    animation: dandelionPappusFlutter var(--pappus-duration) ease-in-out var(--pappus-delay) infinite;
    will-change: transform;
}

.dandelion-seed-shaft {
    transform-box: view-box;
    transform-origin: 120px 91px;
    animation: dandelionSeedFlex var(--shaft-duration) ease-in-out var(--shaft-delay) infinite;
    will-change: transform;
}

.dandelion-cycle .dandelion-flight-floret {
    opacity: 1 !important;
    animation: none !important;
    transform-box: view-box;
    transform-origin: 120px 91px;
}

.dandelion-airborne-seed {
    position: fixed;
    z-index: 48;
    overflow: visible;
    pointer-events: none;
    transform: none;
    transition: none;
    will-change: transform, opacity;
}

.story-dandelion {
    position: absolute;
    right: -86px;
    top: 50%;
    z-index: 3;
    width: 190px;
    aspect-ratio: 1;
    padding: 13px 23px 8px;
    border: 2px solid rgba(61, 24, 53, 0.82);
    border-radius: 50%;
    color: var(--ana-plum);
    background: rgba(242, 209, 161, 0.96);
    box-shadow: 0 0 0 7px rgba(232, 160, 111, 0.8);
    transform: translateY(-50%) rotate(-5deg);
}

.story-message {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(70px, 9vw, 136px) clamp(50px, 10vw, 170px);
    background: var(--ana-peach);
}

.story-message h2 {
    max-width: 650px;
    margin-top: 18px;
    color: var(--ana-olive);
    font-size: clamp(38px, 4.4vw, 70px);
}

.story-message > p:not(.micro-label) {
    max-width: 620px;
    margin-top: 24px;
    color: var(--ana-olive);
    font-size: clamp(17px, 1.4vw, 20px);
}

.light-pill {
    margin-top: 32px;
    background: var(--ana-cream);
}

.ana-bio {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
    gap: clamp(70px, 9vw, 150px);
    align-items: center;
    min-height: 900px;
    padding: clamp(86px, 9vw, 140px) clamp(34px, 6vw, 106px);
    background: var(--ana-terracotta);
    color: var(--ana-white);
}

.bio-editorial-copy {
    max-width: 760px;
}

.ana-bio .micro-label {
    color: var(--ana-white);
    text-transform: uppercase;
}

.bio-editorial-copy h2 {
    margin-top: 14px;
    color: var(--ana-white);
    font-size: clamp(42px, 4.5vw, 72px);
}

.bio-editorial-copy > p:not(.micro-label) {
    margin-top: 23px;
    color: rgba(255, 250, 244, 0.94);
    font-size: clamp(17px, 1.25vw, 20px);
    line-height: 1.65;
}

.bio-editorial-copy .bio-aside {
    font-style: italic;
}

.bio-editorial-copy .bio-highlight {
    color: var(--ana-white);
    font-family: var(--ana-mono);
    font-size: 14px;
    font-weight: 500;
}

.bio-editorial-photo {
    width: min(100%, 520px);
    margin: 0;
    justify-self: center;
}

.dotted-frame {
    padding: 20px;
    border: 8px dotted var(--ana-pink);
}

.dotted-frame img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    filter: none;
}

.bio-editorial-photo figcaption {
    margin-top: 14px;
    color: var(--ana-white);
    font-family: var(--ana-mono);
    font-size: 10px;
    text-align: center;
}

.credentials-pattern {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 640px;
    padding: 90px clamp(80px, 11vw, 190px);
    overflow: hidden;
    background-color: #f0d1ad;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cpath fill='%23c2b76b' fill-opacity='.76' d='M65 18h50v47h47v50h-47v47H65v-47H18V65h47z'/%3E%3C/svg%3E");
    background-position: 0 0;
    background-size: 180px 180px;
}

.credentials-panel {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.85fr;
    gap: clamp(36px, 5vw, 76px);
    width: min(100%, 1220px);
    min-height: 410px;
    padding: clamp(50px, 6vw, 84px);
    background: var(--ana-pink);
    box-shadow: 0 22px 50px rgba(98, 94, 52, 0.08);
}

.credentials-panel h2 {
    margin-top: 18px;
    color: var(--ana-olive);
    font-family: var(--ana-serif);
    font-size: clamp(35px, 3.3vw, 52px);
    font-weight: 400;
}

.credentials-panel p:not(.micro-label),
.credentials-panel li {
    margin-top: 18px;
    color: var(--ana-olive);
    font-family: var(--ana-mono);
    font-size: 12px;
    line-height: 1.65;
}

.credentials-panel ul {
    display: grid;
    gap: 9px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.credentials-panel li {
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(98, 94, 52, 0.22);
}

.vertical-label {
    position: absolute;
    z-index: 2;
    top: 50%;
    color: var(--ana-olive);
    font-family: var(--ana-mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: translateY(-50%);
}

.label-left {
    left: clamp(28px, 5vw, 80px);
    transform: translateY(-50%) rotate(180deg);
}

.label-right {
    right: clamp(28px, 5vw, 80px);
}

.values-band {
    display: grid;
    align-content: center;
    min-height: 520px;
    padding: 86px clamp(30px, 7vw, 120px);
    background: var(--ana-peach);
    color: var(--ana-white);
    text-align: center;
}

.values-band .micro-label {
    color: var(--ana-olive);
}

.values-band h2 {
    margin-top: 14px;
    color: var(--ana-olive);
    font-size: clamp(34px, 3.6vw, 58px);
}

.values-scatter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas:
        "a b c d"
        ". e f g";
    gap: 46px 70px;
    width: min(100%, 1200px);
    margin: 62px auto 0;
}

.values-scatter span {
    color: var(--ana-olive);
    font-family: var(--ana-mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.values-scatter span:nth-child(1) { grid-area: a; }
.values-scatter span:nth-child(2) { grid-area: b; }
.values-scatter span:nth-child(3) { grid-area: c; }
.values-scatter span:nth-child(4) { grid-area: d; }
.values-scatter span:nth-child(5) { grid-area: e; }
.values-scatter span:nth-child(6) { grid-area: f; }
.values-scatter span:nth-child(7) { grid-area: g; }

.values-note {
    max-width: 540px;
    margin: 58px auto 0;
    color: var(--ana-olive);
    font-size: 16px;
    font-weight: 600;
}

.services-editorial,
.faq-editorial,
.booking-editorial {
    display: grid;
    grid-template-columns: 39% 61%;
}

.services-intro,
.faq-intro,
.booking-editorial-copy {
    display: flex;
    min-height: 650px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(60px, 8vw, 120px) clamp(36px, 6vw, 90px);
    text-align: center;
}

.services-intro {
    background: var(--ana-sage);
}

.profile-medallion {
    display: grid;
    place-items: center;
    width: 126px;
    aspect-ratio: 1;
    margin-bottom: 42px;
    border: 6px double var(--ana-peach);
    border-radius: 50%;
    color: var(--ana-plum);
    background: var(--ana-cream);
    font-family: var(--ana-serif);
    font-size: 42px;
    animation: stampRock 8s ease-in-out infinite reverse;
}

.services-intro h2,
.faq-intro h2 {
    max-width: 460px;
    margin-top: 18px;
    color: var(--ana-olive);
    font-size: clamp(34px, 3.5vw, 55px);
}

.services-intro > p:not(.micro-label) {
    max-width: 420px;
    margin-top: 24px;
    color: var(--ana-olive);
    font-size: 17px;
}

.services-list,
.faq-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 650px;
    padding: clamp(60px, 8vw, 120px) clamp(44px, 8vw, 130px);
    background: var(--ana-pink);
}

.services-list details,
.faq-list details {
    border-top: 1px solid var(--ana-line);
}

.services-list details:last-child,
.faq-list details:last-child {
    border-bottom: 1px solid var(--ana-line);
}

.services-list summary,
.faq-list summary {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 82px;
    padding: 22px 44px 22px 0;
    color: var(--ana-olive);
    cursor: pointer;
    font-family: var(--ana-mono);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    list-style: none;
    text-transform: uppercase;
}

.services-list summary {
    grid-template-columns: 50px 1fr;
}

.services-list summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
    display: none;
}

.services-list summary::after,
.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    font-family: var(--ana-sans);
    font-size: 27px;
    font-weight: 300;
    transform: translateY(-50%);
    transition: transform 180ms ease;
}

.services-list details[open] summary::after,
.faq-list details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.services-list details.is-closing summary::after,
.faq-list details.is-closing summary::after {
    transform: translateY(-50%) rotate(0);
}

.services-list details.is-animating > div,
.faq-list details.is-animating > p {
    will-change: height, opacity;
}

.services-list summary span {
    font-size: 10px;
}

.services-list details > div,
.faq-list details > p {
    max-width: 720px;
    padding: 0 50px 28px;
    color: rgba(98, 94, 52, 0.9);
    font-size: 16px;
    line-height: 1.65;
}

.services-list details > div a {
    display: inline-block;
    margin-top: 14px;
    padding-bottom: 3px;
    border-bottom: 1px solid currentColor;
    font-family: var(--ana-mono);
    font-size: 11px;
    text-decoration: none;
}

.faq-intro {
    background: var(--ana-sage);
}

.question-sun {
    position: relative;
    width: 102px;
    margin-bottom: 52px;
    background: var(--ana-cream);
}

.question-sun::before {
    background: repeating-conic-gradient(from 0deg, var(--ana-peach) 0 8deg, transparent 8deg 17deg);
}

.faq-list details > p {
    margin: 0;
}

.booking-editorial {
    background: var(--ana-paper);
}

.booking-editorial-copy {
    position: relative;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 980px;
    overflow: hidden;
    background: var(--ana-peach);
    color: var(--ana-olive);
    text-align: left;
}

.booking-editorial-copy .micro-label {
    color: var(--ana-olive);
}

.booking-editorial-copy h2 {
    max-width: 520px;
    margin-top: 20px;
    color: var(--ana-olive);
    font-size: clamp(42px, 4.4vw, 70px);
}

.booking-editorial-copy > p:not(.micro-label) {
    max-width: 480px;
    margin-top: 28px;
    color: var(--ana-olive);
    font-size: 18px;
}

.booking-editorial-copy dl {
    width: 100%;
    max-width: 510px;
    margin: 44px 0 0;
}

.booking-editorial-copy dl div {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 16px;
    padding: 17px 0;
    border-top: 1px solid rgba(98, 94, 52, 0.5);
}

.booking-editorial-copy dl div:last-child {
    border-bottom: 1px solid rgba(98, 94, 52, 0.5);
}

.booking-editorial-copy dt,
.booking-editorial-copy dd {
    margin: 0;
    color: var(--ana-olive);
    font-family: var(--ana-mono);
    font-size: 11px;
}

.booking-editorial-copy dt {
    font-weight: 500;
    text-transform: uppercase;
}

.booking-wave {
    position: absolute;
    left: 50%;
    bottom: 90px;
    display: flex;
    color: var(--ana-mauve);
    transform: translateX(-50%);
    animation: bookingWaveDrift 6s ease-in-out infinite;
}

.booking-wave i {
    width: 70px;
    height: 62px;
    border-width: 18px;
}

.booking-editorial-form {
    min-width: 0;
    padding: clamp(58px, 7vw, 110px) clamp(42px, 7vw, 112px);
    border: 0;
    border-radius: 0;
    background: var(--ana-paper);
    color: var(--ana-olive);
    box-shadow: none;
}

.form-access-help {
    max-width: 720px;
    margin-bottom: 26px !important;
    padding-left: 14px;
    border-left: 3px solid var(--ana-mauve);
    color: var(--ana-olive);
    font-size: 14px;
    line-height: 1.55;
}

.booking-editorial-form .alert {
    margin-bottom: 28px;
    padding: 16px 18px;
    border: 1px solid rgba(98, 94, 52, 0.3);
    border-radius: 0;
    font-size: 14px;
}

.booking-editorial-form .alert-success {
    background: rgba(174, 177, 122, 0.25);
    color: #4f5f38;
}

.booking-editorial-form .alert-error {
    background: rgba(199, 145, 159, 0.24);
    color: #74444d;
}

.request-mode {
    margin: 0 0 34px;
    padding: 0;
    border: 0;
}

.request-mode legend,
.editorial-form-grid label > span {
    display: block;
    margin-bottom: 9px;
    color: var(--ana-olive);
    font-family: var(--ana-mono);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.mode-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(98, 94, 52, 0.5);
}

.mode-switch label {
    position: relative;
    min-width: 0;
    cursor: pointer;
}

.mode-switch label + label {
    border-left: 1px solid rgba(98, 94, 52, 0.5);
}

.mode-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mode-switch span {
    display: grid;
    place-items: center;
    min-height: 50px;
    padding: 10px;
    color: var(--ana-olive);
    background: transparent;
    font-size: 13px;
    text-align: center;
    transition: color 180ms ease, background-color 180ms ease;
}

.mode-switch input:checked + span {
    color: var(--ana-white);
    background: var(--ana-olive);
}

.mode-switch input:focus-visible + span {
    outline: 3px solid var(--ana-mauve);
    outline-offset: -3px;
}

.editorial-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 20px;
}

.editorial-form-grid label {
    display: block;
    min-width: 0;
}

.editorial-form-grid input,
.editorial-form-grid select,
.editorial-form-grid textarea {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid rgba(98, 94, 52, 0.5);
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--ana-olive);
    font: 16px/1.4 var(--ana-sans);
    box-shadow: none;
}

.editorial-form-grid textarea {
    min-height: 92px;
    resize: vertical;
}

.editorial-form-grid input:focus,
.editorial-form-grid select:focus,
.editorial-form-grid textarea:focus {
    border-bottom-color: var(--ana-mauve);
    box-shadow: 0 2px 0 var(--ana-mauve);
}

.editorial-form-grid .form-wide {
    grid-column: 1 / -1;
}

.submit-pill {
    margin-top: 34px;
    border: 0;
    background: var(--ana-cream);
    cursor: pointer;
}

.booking-editorial-form .form-footnote {
    margin-top: 16px;
    color: var(--ana-olive);
    font-family: var(--ana-mono);
    font-size: 11px;
}

.editorial-footer {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 54px;
    min-height: 380px;
    padding: 72px clamp(36px, 8vw, 132px);
    background: var(--ana-sage);
    color: var(--ana-olive);
}

.editorial-footer > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.editorial-footer h2 {
    margin-bottom: 20px;
    font-family: var(--ana-serif);
    font-size: clamp(34px, 3vw, 48px);
    font-weight: 400;
}

.editorial-footer a,
.editorial-footer p,
.editorial-footer small {
    margin-top: 7px;
    font-family: var(--ana-mono);
    font-size: 10px;
    line-height: 1.55;
}

.editorial-footer a {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding-block: 4px;
    text-decoration: none;
}

.editorial-footer a:hover {
    text-decoration: underline;
}

.editorial-footer .footer-center {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-dandelion {
    width: 122px;
    height: 136px;
    margin-bottom: 12px;
    color: var(--ana-plum);
}

.js [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 850ms ease, transform 850ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js [data-reveal="left"] {
    transform: translateY(28px);
}

.js [data-reveal="right"] {
    transform: translateY(28px);
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.editorial-site :focus-visible {
    outline: 3px solid var(--ana-plum);
    outline-offset: 4px;
    box-shadow: 0 0 0 2px var(--ana-white);
}

.editorial-site :is(main, #turnos)[tabindex="-1"]:focus {
    outline: 0;
    box-shadow: none;
}

html[data-a11y-font="1"] {
    --a11y-readable-size: 18px;
    --a11y-small-size: 15px;
}

html[data-a11y-font="2"] {
    --a11y-readable-size: 20px;
    --a11y-small-size: 17px;
}

html[data-a11y-font]:not([data-a11y-font="0"]) .editorial-site :is(p, li, a:not(.ana-wordmark), button, summary, legend, label, input, select, textarea, dt, dd, figcaption, small, .values-scatter span) {
    font-size: var(--a11y-readable-size) !important;
    line-height: 1.65;
}

html[data-a11y-font]:not([data-a11y-font="0"]) .editorial-site :is(.micro-label, .vertical-label, .availability-bar, .availability-bar span, .values-scatter span, .services-list summary span, .editorial-form-grid label > span, .request-mode legend, .booking-editorial-copy dt, .booking-editorial-copy dd, figcaption, small) {
    font-size: var(--a11y-small-size) !important;
    line-height: 1.55;
}

html[data-a11y-font]:not([data-a11y-font="0"]) .a11y-tools button {
    font-size: 15px !important;
    line-height: 1.2;
}

html[data-a11y-font]:not([data-a11y-font="0"]) .a11y-tools .a11y-title {
    font-size: 24px !important;
}

html[data-a11y-font]:not([data-a11y-font="0"]) .a11y-tools output {
    font-size: 13px !important;
}

html[data-a11y-links="visible"] .editorial-site a:not(.pill-button):not(.ana-wordmark) {
    text-decoration: underline !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: 0.22em;
}

html[data-a11y-contrast="high"] .editorial-site {
    --ana-line: #000;
    color: #000;
    background: #fff;
    color-scheme: light;
}

html[data-a11y-contrast="high"] .editorial-site :is(
    .availability-bar,
    .editorial-header,
    .ana-hero,
    .recognition-band,
    .story-visual,
    .story-message,
    .services-intro,
    .services-list,
    .ana-bio,
    .credentials-pattern,
    .credentials-panel,
    .values-band,
    .faq-intro,
    .faq-list,
    .booking-editorial-copy,
    .booking-editorial-form,
    .editorial-footer,
    .a11y-panel
) {
    color: #000 !important;
    background-color: #fff !important;
    background-image: none !important;
}

html[data-a11y-contrast="high"] .editorial-site :is(h1, h2, h3, p, a, span, small, label, legend, summary, li, dt, dd, figcaption) {
    color: #000 !important;
}

html[data-a11y-contrast="high"] .editorial-site :is(.pill-button, .a11y-toggle, .a11y-option[aria-pressed="true"], .mode-switch input:checked + span) {
    border-color: #000 !important;
    color: #fff !important;
    background: #000 !important;
}

html[data-a11y-contrast="high"] .editorial-site :is(.a11y-toggle, .a11y-option[aria-pressed="true"]) span {
    color: #fff !important;
}

html[data-a11y-contrast="high"] .editorial-site :is(input, select, textarea) {
    border-color: #000 !important;
    color: #000 !important;
    background: #fff !important;
}

html[data-a11y-contrast="high"] .editorial-site :is(a:not(.pill-button):not(.ana-wordmark), .a11y-reset) {
    text-decoration: underline !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: 0.22em;
}

html[data-a11y-contrast="high"] .editorial-site :is(details, .mode-switch, .a11y-panel, .a11y-size-controls, .a11y-option, .dotted-frame) {
    border-color: #000 !important;
}

html[data-a11y-contrast="high"] .editorial-site img {
    filter: none !important;
}

html[data-a11y-contrast="high"] .story-dandelion {
    border-color: #000;
    color: #000;
    background: #fff;
    box-shadow: none;
}

html[data-a11y-contrast="high"] .editorial-site :focus-visible {
    outline: 4px solid #005fcc;
    outline-offset: 4px;
    box-shadow: 0 0 0 2px #fff;
}

@keyframes anaMarquee {
    to { transform: translateX(-33.333%); }
}

@keyframes anaFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-11px) rotate(1deg); }
}

@keyframes sunTurn {
    to { transform: rotate(360deg); }
}

@keyframes sunDrift {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(10px) rotate(3deg); }
}

@keyframes waveDrift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

@keyframes bookingWaveDrift {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-9px); }
}

@keyframes stampRock {
    0%, 100% { rotate: -4deg; }
    50% { rotate: 4deg; }
}

@keyframes dandelionWindSway {
    0%, 100% { transform: rotate(-0.2deg); }
    18% { transform: rotate(-0.45deg); }
    46% { transform: rotate(0.1deg); }
    68% { transform: rotate(0.45deg); }
    84% { transform: rotate(-0.08deg); }
}

@keyframes dandelionStalkBend {
    0%, 100% { d: path("M113 247C109 202 116 146 120 96"); }
    18% { d: path("M113 247C109 201 112 145 116 96"); }
    46% { d: path("M113 247C112 202 118 147 122 96"); }
    68% { d: path("M113 247C116 199 120 143 125 96"); }
    84% { d: path("M113 247C113 201 116 146 119 96"); }
}

@keyframes dandelionHeadDrift {
    0%, 100% { transform: translate(0, 0) rotate(-0.4deg); }
    22% { transform: translate(-4px, 1px) rotate(-1.4deg); }
    50% { transform: translate(2px, 0) rotate(0.5deg); }
    72% { transform: translate(5px, -1px) rotate(1.7deg); }
    88% { transform: translate(-1px, 0) rotate(-0.7deg); }
}

@keyframes dandelionLeafBreathe {
    0%, 100% { transform: rotate(-0.35deg); }
    50% { transform: rotate(0.75deg); }
}

@keyframes dandelionFloretBreeze {
    0%, 100% { transform: rotate(var(--floret-from)); }
    50% { transform: rotate(var(--floret-to)); }
}

@keyframes dandelionPappusFlutter {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--pappus-from)); }
    45% { transform: translate3d(var(--pappus-shift), -0.35px, 0) rotate(var(--pappus-to)); }
    72% { transform: translate3d(0, 0.2px, 0) rotate(var(--pappus-mid)); }
}

@keyframes dandelionSeedFlex {
    0%, 100% { transform: rotate(var(--shaft-from)); }
    54% { transform: rotate(var(--shaft-to)); }
}

@media (max-width: 1120px) {
    .editorial-header {
        grid-template-columns: minmax(190px, 0.6fr) minmax(390px, 1.2fr) auto;
        gap: 20px;
        padding-inline: 28px;
    }

    .editorial-nav {
        gap: 22px;
    }

    .header-cta {
        min-width: 160px;
        padding-inline: 18px;
    }

    .ana-hero {
        grid-template-columns: minmax(240px, 0.8fr) minmax(390px, 1.2fr) minmax(190px, 0.65fr);
    }

    .hero-illustration img {
        left: 30px;
    }

    .story-message {
        padding-inline: 90px;
    }

    .credentials-panel {
        grid-template-columns: 1fr 1fr;
    }

    .credentials-panel > div:last-child {
        grid-column: 1 / -1;
    }

    .services-list,
    .faq-list,
    .booking-editorial-form {
        padding-inline: 58px;
    }
}

@media (max-width: 900px) {
    .editorial-header {
        position: sticky;
        top: 0;
        grid-template-columns: 1fr auto;
        min-height: 92px;
        padding: 16px 22px;
        box-shadow: 0 10px 30px rgba(98, 94, 52, 0.08);
    }

    .ana-wordmark strong {
        font-size: 64px;
    }

    .menu-toggle {
        position: relative;
        z-index: 3;
        display: grid;
        place-items: center;
        width: 46px;
        height: 46px;
        padding: 11px;
        border: 0;
        border-radius: 50%;
        background: var(--ana-cream);
        cursor: pointer;
    }

    .menu-toggle > span:not(.sr-only) {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--ana-olive);
        transition: transform 180ms ease, opacity 180ms ease;
    }

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

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

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

    .editorial-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px 22px 24px;
        background: var(--ana-paper);
        box-shadow: 0 18px 30px rgba(98, 94, 52, 0.12);
    }

    .editorial-nav.is-open {
        display: flex;
    }

    .editorial-nav a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(98, 94, 52, 0.2);
    }

    .header-cta {
        display: none;
    }

    .ana-hero {
        grid-template-columns: 36% 64%;
        min-height: 620px;
    }

    .hero-illustration {
        grid-column: 1;
        grid-row: 1;
        z-index: 2;
    }

    .hero-illustration img {
        left: 5px;
        bottom: -8px;
        width: min(115%, 330px);
        max-width: none;
    }

    .ana-hero-copy {
        grid-column: 1 / -1;
        grid-row: 1;
        align-self: start;
        width: min(72%, 560px);
        margin-left: auto;
        padding-top: 86px;
        padding-right: 40px;
        text-align: right;
    }

    .ana-hero-copy h1 {
        margin-right: 0;
        font-size: clamp(36px, 6vw, 48px);
    }

    .hero-ornaments {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .editorial-sun {
        left: auto;
        right: 38px;
        top: auto;
        bottom: 92px;
        width: 88px;
    }

    .editorial-waves {
        left: auto;
        right: 34px;
        bottom: 32px;
    }

    .editorial-waves i {
        width: 37px;
        height: 34px;
        border-width: 11px;
    }

    .story-split,
    .ana-bio,
    .services-editorial,
    .faq-editorial,
    .booking-editorial {
        grid-template-columns: 1fr;
    }

    .story-visual {
        min-height: 560px;
    }

    .story-message {
        min-height: 560px;
        padding: 80px 64px;
    }

    .story-dandelion {
        right: 50%;
        top: auto;
        bottom: -95px;
        transform: translateX(50%) rotate(-5deg);
    }

    .ana-bio {
        gap: 70px;
        padding: 86px 54px;
    }

    .bio-editorial-photo {
        width: min(100%, 480px);
    }

    .credentials-pattern {
        padding: 80px 70px;
    }

    .credentials-panel {
        grid-template-columns: 1fr;
    }

    .credentials-panel > div:last-child {
        grid-column: auto;
    }

    .values-scatter {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: none;
        gap: 34px;
    }

    .values-scatter span:nth-child(n) {
        grid-area: auto;
    }

    .services-intro,
    .faq-intro {
        min-height: 480px;
    }

    .booking-editorial-copy {
        min-height: 680px;
    }

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

    .editorial-footer .footer-center {
        grid-column: 1 / -1;
        grid-row: 1;
    }
}

@media (max-width: 620px) {
    .availability-bar {
        height: 28px;
        font-size: 9px;
        line-height: 28px;
    }

    .availability-track span {
        min-width: 390px;
    }

    .editorial-header {
        min-height: 82px;
        padding: 13px 18px;
    }

    .ana-wordmark strong {
        font-size: 56px;
    }

    .ana-wordmark small {
        margin-top: 8px;
        font-size: 8px;
    }

    .ana-hero {
        display: block;
        min-height: 650px;
    }

    .ana-hero-copy {
        position: relative;
        z-index: 3;
        width: 100%;
        padding: 58px 24px 0;
        text-align: center;
    }

    .ana-hero-copy .micro-label {
        max-width: 280px;
        margin: 0 auto;
        font-size: 9px;
    }

    .ana-hero-copy h1 {
        max-width: 340px;
        margin: 16px auto 0;
        font-size: clamp(34px, 10vw, 43px);
    }

    .hero-text-link {
        margin-top: 18px;
    }

    .hero-illustration {
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .hero-illustration img {
        left: 10px;
        bottom: -8px;
        width: 245px;
    }

    .editorial-sun {
        right: 34px;
        bottom: 120px;
        width: 64px;
    }

    .editorial-sun::before {
        inset: -18px;
    }

    .editorial-waves {
        right: 12px;
        bottom: 48px;
    }

    .editorial-waves i {
        width: 31px;
        height: 28px;
        margin-left: -7px;
        border-width: 9px;
    }

    .recognition-band {
        min-height: 450px;
        padding: 66px 26px;
    }

    .recognition-band p {
        font-size: 16px;
    }

    .story-visual {
        min-height: 430px;
        padding: 54px 28px;
    }

    .story-image-wrap {
        height: 330px;
    }

    .story-dandelion {
        width: 138px;
        bottom: -69px;
        padding: 9px 17px 5px;
        box-shadow: 0 0 0 5px rgba(232, 160, 111, 0.8);
    }

    .footer-dandelion {
        width: 108px;
        height: 120px;
    }

    .story-message {
        min-height: 590px;
        padding: 96px 28px 70px;
    }

    .story-message h2 {
        font-size: 39px;
    }

    .story-message > p:not(.micro-label) {
        font-size: 16px;
    }

    .ana-bio {
        gap: 58px;
        min-height: 0;
        padding: 74px 28px;
    }

    .bio-editorial-copy h2 {
        font-size: 43px;
    }

    .bio-editorial-copy > p:not(.micro-label) {
        font-size: 16px;
        line-height: 1.62;
    }

    .dotted-frame {
        padding: 12px;
        border-width: 6px;
    }

    .credentials-pattern {
        min-height: 0;
        padding: 68px 30px;
        background-size: 126px 126px;
    }

    .credentials-panel {
        gap: 42px;
        min-height: 0;
        padding: 42px 26px;
    }

    .credentials-panel h2 {
        font-size: 37px;
    }

    .vertical-label {
        display: none;
    }

    .values-band {
        min-height: 650px;
        padding: 72px 24px;
    }

    .values-band h2 {
        font-size: 39px;
    }

    .values-scatter {
        grid-template-columns: 1fr 1fr;
        gap: 34px 16px;
        margin-top: 52px;
    }

    .values-scatter span {
        font-size: 9px;
    }

    .services-intro,
    .faq-intro,
    .booking-editorial-copy {
        min-height: 470px;
        padding: 64px 28px;
    }

    .services-intro h2,
    .faq-intro h2 {
        font-size: 39px;
    }

    .profile-medallion,
    .question-sun {
        margin-bottom: 36px;
    }

    .services-list,
    .faq-list {
        min-height: 0;
        padding: 50px 24px;
    }

    .services-list summary,
    .faq-list summary {
        min-height: 76px;
        padding-block: 18px;
        font-size: 11px;
    }

    .services-list summary {
        grid-template-columns: 36px 1fr;
    }

    .services-list details > div,
    .faq-list details > p {
        padding: 0 28px 24px 36px;
        font-size: 14px;
    }

    .booking-editorial-copy {
        min-height: 630px;
        padding-bottom: 170px;
    }

    .booking-editorial-copy h2 {
        font-size: 43px;
    }

    .booking-editorial-copy dl div {
        grid-template-columns: 100px 1fr;
    }

    .booking-wave {
        bottom: 66px;
    }

    .booking-wave i {
        width: 53px;
        height: 46px;
        border-width: 14px;
    }

    .booking-editorial-form {
        padding: 58px 24px 70px;
    }

    .mode-switch,
    .editorial-form-grid {
        grid-template-columns: 1fr;
    }

    .mode-switch label + label {
        border-top: 1px solid rgba(98, 94, 52, 0.5);
        border-left: 0;
    }

    .editorial-form-grid .form-wide {
        grid-column: auto;
    }

    .submit-pill {
        width: 100%;
    }

    .editorial-footer {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 64px 28px;
        text-align: center;
    }

    .editorial-footer > div {
        align-items: center;
    }

    .editorial-footer .footer-center {
        grid-column: auto;
        grid-row: auto;
        order: -1;
    }

    .editorial-footer h2 {
        font-size: 38px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .availability-track,
    .hero-illustration img,
    .editorial-sun,
    .editorial-sun::before,
    .question-sun::before,
    .editorial-waves,
    .booking-wave,
    .dandelion-cycle,
    .dandelion-wind-body,
    .dandelion-stalk,
    .dandelion-head,
    .dandelion-leaf,
    .dandelion-floret,
    .dandelion-seed-shaft,
    .dandelion-seed-pappus,
    .profile-medallion {
        animation: none !important;
    }

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

@media (max-width: 600px) {
    .skip-link-form {
        left: 16px;
    }

    .a11y-tools {
        right: 12px;
        bottom: 12px;
    }

    .a11y-toggle {
        width: 48px;
        height: 48px;
    }
}

@media (prefers-contrast: more) {
    .editorial-site {
        --ana-line: rgba(0, 0, 0, 0.82);
    }

    .editorial-site a:not(.pill-button):not(.ana-wordmark) {
        text-decoration: underline;
        text-decoration-thickness: 2px;
        text-underline-offset: 0.2em;
    }

    .editorial-site :focus-visible {
        outline-width: 4px;
    }
}

@media (forced-colors: active) {
    .editorial-site {
        cursor: auto;
    }

    .editorial-site :is(a, button, summary, select, input[type="radio"], input[type="checkbox"], input[type="date"], .mode-switch label) {
        cursor: pointer;
    }

    .editorial-site :is(.pill-button, .a11y-toggle, .a11y-panel, .a11y-option, .a11y-size-controls, details, input, select, textarea) {
        border: 2px solid ButtonText;
        forced-color-adjust: auto;
    }
}

@media print {
    .a11y-tools,
    .skip-link,
    .availability-bar,
    .dandelion-airborne-seed {
        display: none !important;
    }
}
