:root {
    --ink: #123a45;
    --ink-deep: #082b34;
    --ink-soft: #315761;
    --paper: #fcfaf5;
    --sand: #f2eadc;
    --sand-deep: #dfd1b9;
    --sun: #efb853;
    --sun-bright: #f7c86c;
    --coral: #db7259;
    --sea: #8eb9b1;
    --sea-light: #dbe9e4;
    --white: #ffffff;
    --muted: #68777a;
    --danger: #a54335;
    --danger-soft: #f9e7e1;
    --success: #397462;
    --line: rgba(18, 58, 69, 0.16);
    --shadow-sm: 0 10px 30px rgba(8, 43, 52, 0.08);
    --shadow-md: 0 24px 70px rgba(8, 43, 52, 0.15);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 30px;
    --container: 1180px;
    --serif: Georgia, "Times New Roman", serif;
    --sans: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

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

button,
select {
    cursor: pointer;
}

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

h1,
h2,
h3 {
    line-height: 1.06;
}

h1,
h2 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.035em;
}

h1 em,
h2 em {
    color: var(--coral);
    font-weight: 400;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
}

fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

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

.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;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 15px;
    color: var(--white);
    background: var(--ink);
    border-radius: 6px;
    transform: translateY(-160%);
}

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

.is-hidden {
    display: none !important;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink-soft);
    font-size: 0.73rem;
    font-weight: 750;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow--light {
    color: var(--sea-light);
}

.eyebrow__line {
    width: 34px;
    height: 1px;
    background: currentColor;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.83rem;
    font-weight: 760;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.primary-nav a:focus-visible,
.brand:focus-visible,
.back-link:focus-visible,
.print-button:focus-visible {
    outline: 3px solid rgba(239, 184, 83, 0.75);
    outline-offset: 4px;
}

.button--small {
    min-height: 42px;
    padding: 11px 18px;
}

.button--large {
    min-height: 58px;
    padding: 17px 28px;
}

.button--full {
    width: 100%;
}

.button--sun {
    color: var(--ink-deep);
    background: var(--sun);
    box-shadow: 0 10px 24px rgba(108, 73, 16, 0.17);
}

.button--sun:hover {
    background: var(--sun-bright);
    box-shadow: 0 14px 34px rgba(108, 73, 16, 0.23);
}

.button--ink {
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 10px 24px rgba(8, 43, 52, 0.18);
}

.button--ink:hover {
    background: var(--ink-deep);
    box-shadow: 0 14px 34px rgba(8, 43, 52, 0.24);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 760;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.text-link--light {
    color: var(--white);
}

.site-notice {
    position: relative;
    z-index: 31;
    color: var(--white);
    background: var(--ink-deep);
    font-size: 0.78rem;
}

.site-notice__inner {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.site-notice__dot {
    width: 6px;
    height: 6px;
    background: var(--sun);
    border-radius: 50%;
}

.site-header {
    position: relative;
    z-index: 30;
    background: rgba(252, 250, 245, 0.94);
    border-bottom: 1px solid rgba(18, 58, 69, 0.08);
    backdrop-filter: blur(14px);
}

.site-header__inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand__mark {
    position: relative;
    display: block;
    width: 44px;
    height: 44px;
    overflow: hidden;
    background: var(--sun);
    border-radius: 50%;
}

.brand__mark::before {
    position: absolute;
    top: 9px;
    left: 13px;
    width: 18px;
    height: 18px;
    content: "";
    background: var(--coral);
    border-radius: 50%;
}

.brand__mark span {
    position: absolute;
    z-index: 1;
    right: -6px;
    bottom: 7px;
    width: 40px;
    height: 10px;
    border-top: 3px solid var(--ink);
    border-radius: 50%;
    transform: rotate(-6deg);
}

.brand__mark span:last-child {
    right: 7px;
    bottom: 1px;
    border-color: var(--ink-soft);
}

.brand__copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand__copy strong {
    font-family: var(--serif);
    font-size: 1.06rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand__copy small {
    margin-top: 4px;
    color: var(--coral);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.primary-nav > a:not(.button) {
    position: relative;
    padding: 12px 0;
    color: var(--ink-soft);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
}

.primary-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--coral);
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 11px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    height: 1px;
    margin: 4px 0;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
}

.site-footer {
    padding: 74px 0 24px;
    color: var(--white);
    background: var(--ink-deep);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.6fr;
    gap: 60px;
    align-items: start;
}

.brand--footer {
    color: var(--white);
}

.site-footer__grid > div:first-child p {
    max-width: 330px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.62);
}

.site-footer__location {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer__location strong {
    font-family: var(--serif);
    font-size: 1.35rem;
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    text-decoration: none;
}

.site-footer__links a:hover {
    color: var(--sun);
}

.site-footer__fine-print {
    display: flex;
    margin-top: 65px;
    padding-top: 20px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: rgba(255, 255, 255, 0.44);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.7rem;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 12%, rgba(239, 184, 83, 0.14), transparent 22rem),
        var(--paper);
}

.hero::after {
    position: absolute;
    right: -110px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    content: "";
    border: 1px solid rgba(18, 58, 69, 0.09);
    border-radius: 50%;
}

.hero__grid {
    display: grid;
    min-height: 690px;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 70px;
    align-items: center;
    padding-top: 52px;
    padding-bottom: 86px;
}

.hero__copy {
    position: relative;
    z-index: 2;
}

.hero h1 {
    max-width: 750px;
    margin: 24px 0 26px;
    font-size: clamp(4rem, 7.3vw, 7.15rem);
}

.hero__lead {
    max-width: 590px;
    margin-bottom: 34px;
    color: var(--ink-soft);
    font-size: 1.08rem;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero__assurance {
    display: flex;
    margin-top: 54px;
    gap: 26px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__assurance span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__assurance i {
    color: var(--coral);
    font-size: 0.62rem;
    font-style: normal;
}

.hero__art {
    position: relative;
    min-height: 560px;
}

.hero__photo {
    position: absolute;
    top: 32px;
    right: 18px;
    bottom: 14px;
    left: 42px;
    z-index: 2;
    overflow: hidden;
    border-radius: 44% 44% 12px 12px;
    box-shadow: var(--shadow-md);
}

.hero__photo::after {
    position: absolute;
    inset: 0;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: inherit;
    pointer-events: none;
}

.hero__sun {
    position: absolute;
    top: -28px;
    right: -48px;
    width: 210px;
    height: 210px;
    background: var(--sun);
    border-radius: 50%;
}

.hero__location-card {
    position: absolute;
    z-index: 3;
    right: -12px;
    bottom: 62px;
    display: flex;
    padding: 18px 22px;
    align-items: center;
    gap: 12px;
    color: var(--white);
    background: var(--ink);
    border-radius: 2px;
    box-shadow: var(--shadow-sm);
    font-family: var(--serif);
    font-size: 1rem;
}

.hero__location-card > span {
    color: var(--sun);
    font-family: var(--sans);
    font-size: 1.2rem;
}

.hero__scribble {
    position: absolute;
    z-index: 3;
    bottom: 2px;
    left: -18px;
    color: var(--coral);
    font-family: var(--serif);
    font-size: 1.08rem;
    font-style: italic;
    transform: rotate(-7deg);
}

.placeholder-photo {
    position: relative;
    display: flex;
    min-height: 180px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--ink);
    background:
        linear-gradient(155deg, transparent 60%, rgba(18, 58, 69, 0.13) 60.5%, transparent 61.5%),
        linear-gradient(25deg, transparent 69%, rgba(255, 255, 255, 0.32) 69.5%, transparent 70.5%),
        linear-gradient(135deg, var(--sea-light), #b8d0c8 52%, #c8aa7e);
}

.placeholder-photo::before {
    position: absolute;
    top: 15%;
    right: 14%;
    width: 24%;
    aspect-ratio: 1;
    content: "";
    background: rgba(239, 184, 83, 0.84);
    border-radius: 50%;
}

.placeholder-photo--filled::before {
    display: none;
}

.placeholder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-photo__label {
    position: relative;
    z-index: 2;
    padding: 9px 13px;
    color: rgba(8, 43, 52, 0.78);
    background: rgba(252, 250, 245, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.quick-search {
    position: relative;
    z-index: 5;
    margin-top: -38px;
}

.quick-search__form {
    position: relative;
    display: grid;
    padding: 25px 28px;
    grid-template-columns: 1.4fr 1fr 1fr 0.8fr auto;
    gap: 0;
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(18, 58, 69, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.quick-search__intro {
    display: flex;
    padding-right: 30px;
    flex-direction: column;
    gap: 5px;
}

.quick-search__intro strong {
    font-family: var(--serif);
    font-size: 1.25rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field > span,
.field > label {
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.field > span small {
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 15px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(18, 58, 69, 0.22);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
    min-height: 120px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #93a0a1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(219, 114, 89, 0.14);
}

.field--compact {
    padding: 4px 22px;
    border-left: 1px solid var(--line);
}

.field--compact input,
.field--compact select {
    min-width: 0;
    padding: 2px 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 0.88rem;
    font-weight: 650;
    box-shadow: none;
}

.field--error input,
.field--error select,
.field--error textarea {
    border-color: var(--danger);
}

.field__error {
    color: var(--danger);
    font-size: 0.72rem;
}

.form-message {
    min-height: 22px;
    margin: 12px 0 0;
    color: var(--danger);
    font-size: 0.78rem;
}

.form-message.is-success {
    color: var(--success);
}

.quick-search__message {
    position: absolute;
    right: 28px;
    bottom: -27px;
}

.section {
    padding: 125px 0;
}

.section--ink {
    color: var(--white);
    background: var(--ink);
}

.section-heading--split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 90px;
    align-items: end;
}

.section-heading h2 {
    margin: 15px 0 12px;
}

.section-heading__aside {
    padding-bottom: 16px;
}

.section-heading__aside p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.property-meta {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--muted);
    font-size: 0.83rem;
}

.status-chip {
    padding: 5px 9px;
    color: var(--ink-soft);
    background: var(--sea-light);
    border-radius: 999px;
    font-size: 0.61rem;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    min-height: 530px;
    margin-top: 62px;
    grid-template-columns: 1.45fr 0.75fr 0.75fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.gallery-grid__item {
    overflow: hidden;
    margin: 0;
    border-radius: 4px;
}

.gallery-grid__item--feature {
    grid-row: 1 / 3;
}

.gallery-grid__button {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    cursor: zoom-in;
}

.gallery-grid__button img {
    transition: transform 320ms ease;
}

.gallery-grid__button:hover img {
    transform: scale(1.025);
}

.gallery-grid__button:focus-visible {
    outline: 4px solid var(--sun);
    outline-offset: -4px;
}

.gallery-grid__all {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    padding: 10px 13px;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    background: rgba(252, 250, 245, 0.93);
    border: 1px solid rgba(18, 58, 69, 0.14);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.gallery-grid__item figcaption {
    position: absolute;
    z-index: 2;
    right: 12px;
    bottom: 12px;
    padding: 5px 8px;
    color: rgba(8, 43, 52, 0.66);
    background: rgba(252, 250, 245, 0.76);
    border-radius: 999px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.placeholder-photo__number {
    position: absolute;
    z-index: 2;
    top: 15px;
    left: 17px;
    color: rgba(8, 43, 52, 0.62);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.property-details {
    display: grid;
    margin-top: 62px;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
}

.property-facts {
    display: grid;
    margin: 0;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.property-facts > div {
    padding: 25px 18px;
    border-right: 1px solid var(--line);
}

.property-facts > div:last-child {
    border-right: 0;
}

.property-facts dt {
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.property-facts dd {
    margin: 6px 0 0;
    font-family: var(--serif);
    font-size: 1.3rem;
}

.verified-highlights {
    padding-left: 35px;
    border-left: 1px solid var(--line);
}

.check-list,
.simple-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.simple-list li {
    position: relative;
    padding: 9px 0 9px 28px;
}

.check-list li::before,
.simple-list li::before {
    position: absolute;
    top: 11px;
    left: 0;
    width: 15px;
    height: 15px;
    content: "";
    border: 1px solid var(--coral);
    border-radius: 50%;
}

.check-list li::after,
.simple-list li::after {
    position: absolute;
    top: 15px;
    left: 4px;
    width: 7px;
    height: 4px;
    content: "";
    border-bottom: 1px solid var(--coral);
    border-left: 1px solid var(--coral);
    transform: rotate(-45deg);
}

.content-placeholder {
    display: flex;
    margin-top: 55px;
    padding: 28px 30px;
    align-items: center;
    gap: 20px;
    background: var(--sand);
    border: 1px dashed rgba(18, 58, 69, 0.25);
    border-radius: var(--radius-md);
}

.content-placeholder__icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    border-radius: 50%;
}

.content-placeholder strong {
    font-family: var(--serif);
    font-size: 1.14rem;
}

.content-placeholder p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.photo-viewer {
    width: 100vw;
    max-width: none;
    height: 100vh;
    max-height: none;
    padding: 0;
    color: var(--white);
    background: rgba(8, 43, 52, 0.98);
    border: 0;
}

.photo-viewer::backdrop {
    background: rgba(8, 43, 52, 0.84);
}

.photo-viewer__panel {
    display: grid;
    width: min(calc(100% - 42px), 1180px);
    min-height: 100%;
    margin: 0 auto;
    padding: 22px 0 28px;
    grid-template-rows: auto minmax(260px, 1fr) auto auto;
    gap: 16px;
}

.photo-viewer__topbar,
.photo-viewer__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.photo-viewer__topbar strong {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
}

.photo-viewer__close,
.photo-viewer__controls button {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    flex: 0 0 auto;
    place-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    cursor: pointer;
}

.photo-viewer__close {
    font-size: 1.5rem;
}

.photo-viewer__close:hover,
.photo-viewer__controls button:hover {
    color: var(--ink);
    background: var(--sun);
    border-color: var(--sun);
}

.photo-viewer__close:focus-visible,
.photo-viewer__controls button:focus-visible,
.photo-viewer__thumbs button:focus-visible {
    outline: 3px solid var(--sun);
    outline-offset: 3px;
}

.photo-viewer__figure {
    display: grid;
    min-height: 0;
    margin: 0;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 10px;
    text-align: center;
}

.photo-viewer__figure img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
}

.photo-viewer__figure figcaption {
    color: rgba(255, 255, 255, 0.73);
    font-size: 0.78rem;
}

.photo-viewer__controls {
    justify-content: center;
}

.photo-viewer__controls span {
    min-width: 82px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.photo-viewer__thumbs {
    display: flex;
    padding: 4px;
    overflow-x: auto;
    gap: 8px;
    scrollbar-width: thin;
}

.photo-viewer__thumbs button {
    width: 92px;
    height: 62px;
    padding: 0;
    flex: 0 0 auto;
    overflow: hidden;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.62;
}

.photo-viewer__thumbs button[aria-current="true"] {
    border-color: var(--sun);
    opacity: 1;
}

.photo-viewer__thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-viewer-open {
    overflow: hidden;
}

.property-facts--wide {
    margin-top: 34px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    background: var(--white);
}

.stay-highlights {
    display: grid;
    margin-top: 38px;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.stay-highlight {
    min-height: 210px;
    padding: 27px;
    background: var(--sand);
    border: 1px solid rgba(18, 58, 69, 0.08);
    border-radius: var(--radius-sm);
}

.stay-highlight > span {
    color: var(--coral);
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.stay-highlight h3 {
    margin: 34px 0 9px;
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
}

.stay-highlight p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.stay-story {
    display: grid;
    margin-top: 84px;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 90px;
    align-items: start;
}

.stay-story h3,
.amenities-panel h3,
.stay-details-panel h3 {
    margin: 14px 0 18px;
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.04;
}

.stay-story > div:first-child > p {
    max-width: 660px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.8;
}

.sleeping-list {
    display: grid;
    gap: 11px;
}

.sleeping-list > .eyebrow {
    margin-bottom: 5px;
}

.sleeping-list article {
    display: grid;
    padding: 20px;
    grid-template-columns: 45px 1fr;
    gap: 15px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.sleeping-list__bed {
    position: relative;
    width: 42px;
    height: 27px;
    border: 2px solid var(--sea);
    border-radius: 4px 4px 2px 2px;
}

.sleeping-list__bed::before {
    position: absolute;
    right: 3px;
    bottom: 7px;
    left: 3px;
    height: 9px;
    content: "";
    background: var(--sea-light);
    border: 1px solid var(--sea);
    border-radius: 2px;
}

.sleeping-list__bed::after {
    position: absolute;
    right: -3px;
    bottom: -5px;
    left: -3px;
    height: 2px;
    content: "";
    background: var(--sea);
}

.sleeping-list h4 {
    margin: 0 0 3px;
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 400;
}

.sleeping-list p {
    margin: 0;
    color: var(--muted);
    font-size: 0.76rem;
}

.amenities-panel {
    margin-top: 84px;
    padding: 44px;
    background: var(--sand);
    border-radius: var(--radius-md);
}

.amenities-panel__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
}

.amenities-panel__heading h3 {
    margin-bottom: 0;
}

.amenities-panel__heading > span {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.amenities-grid {
    display: grid;
    margin: 34px 0 0;
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 28px;
    list-style: none;
}

.amenities-grid li {
    position: relative;
    padding: 13px 0 13px 25px;
    border-bottom: 1px solid rgba(18, 58, 69, 0.1);
    font-size: 0.84rem;
}

.amenities-grid li::before {
    position: absolute;
    top: 18px;
    left: 2px;
    width: 8px;
    height: 8px;
    content: "";
    background: var(--sea);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(79, 131, 139, 0.12);
}

.amenities-more {
    margin-top: 28px;
}

.amenities-more summary,
.stay-details-panel summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    list-style: none;
}

.amenities-more summary::-webkit-details-marker,
.stay-details-panel summary::-webkit-details-marker {
    display: none;
}

.amenities-more summary {
    width: fit-content;
    padding: 12px 16px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(18, 58, 69, 0.2);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
}

.amenities-more summary span,
.stay-details-panel summary span {
    font-size: 1.05rem;
    line-height: 1;
    transition: transform 180ms ease;
}

.amenities-more[open] summary span,
.stay-details-panel details[open] summary span {
    transform: rotate(45deg);
}

.amenities-grid--all {
    margin-top: 24px;
}

.stay-details-panel {
    display: grid;
    margin-top: 84px;
    padding-top: 72px;
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
    gap: 88px;
    border-top: 1px solid var(--line);
}

.stay-details-panel__heading p {
    max-width: 410px;
    margin: 0;
    color: var(--muted);
}

.stay-details-panel__cards {
    border-top: 1px solid var(--line);
}

.stay-details-panel__cards > details {
    border-bottom: 1px solid var(--line);
}

.stay-details-panel summary {
    padding: 22px 4px;
    font-family: var(--serif);
    font-size: 1.12rem;
}

.stay-details-panel details > ul {
    display: grid;
    margin: -2px 0 24px;
    padding: 0 4px 0 22px;
    grid-template-columns: 1fr 1fr;
    gap: 9px 28px;
    color: var(--ink-soft);
    font-size: 0.8rem;
}

.stay-details-panel details > .safety-list {
    grid-template-columns: 1fr;
    list-style: none;
}

.safety-list li {
    position: relative;
    display: flex;
    padding: 11px 14px;
    flex-direction: column;
    gap: 3px;
    background: var(--sea-light);
    border-left: 3px solid var(--sea);
}

.safety-list li.is-warning {
    background: #fff1dc;
    border-left-color: var(--sun-deep);
}

.safety-list strong {
    color: var(--ink);
}

.safety-list span {
    color: var(--muted);
}

.process {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 120px;
    align-items: start;
}

.process__heading h2 {
    margin: 22px 0 28px;
}

.process__heading p {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.67);
}

.process__steps {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process__steps li {
    display: grid;
    padding: 31px 0;
    grid-template-columns: 52px 1fr;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process__steps > li > span {
    color: var(--sun);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.process__steps h3 {
    margin: 0 0 8px;
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 400;
}

.process__steps p {
    max-width: 470px;
    margin: 0;
    color: rgba(255, 255, 255, 0.61);
    font-size: 0.88rem;
}

.direct-section {
    background: var(--sand);
}

.direct-section__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 115px;
    align-items: center;
}

.direct-section__art {
    position: relative;
    min-height: 490px;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.16), transparent),
        var(--sea);
    border-radius: 48% 48% 4px 4px;
}

.direct-section__art::before,
.direct-section__art::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(18, 58, 69, 0.27);
    border-radius: 50%;
}

.direct-section__art::before {
    inset: 80px 44px 60px;
}

.direct-section__art::after {
    inset: 135px 100px 105px;
}

.direct-section__circle {
    position: absolute;
    top: 40px;
    right: 48px;
    width: 126px;
    height: 126px;
    background: var(--sun);
    border-radius: 50%;
}

.direct-section__card {
    position: absolute;
    right: -34px;
    bottom: 58px;
    z-index: 2;
    display: flex;
    width: min(330px, 78%);
    padding: 30px;
    flex-direction: column;
    color: var(--white);
    background: var(--ink);
    box-shadow: var(--shadow-md);
}

.direct-section__card span {
    color: var(--sun);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.direct-section__card strong {
    margin-top: 8px;
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 400;
}

.direct-section__card small {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.58);
}

.direct-section__copy h2 {
    margin: 20px 0 28px;
    font-size: clamp(2.6rem, 4.6vw, 4.7rem);
}

.direct-section__copy > p {
    max-width: 600px;
    color: var(--ink-soft);
}

.simple-list {
    display: grid;
    margin: 26px 0 34px;
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
}

.simple-list li {
    font-size: 0.86rem;
}

.closing-cta {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(rgba(8, 43, 52, 0.88), rgba(8, 43, 52, 0.9)),
        linear-gradient(130deg, var(--sea), var(--ink));
}

.closing-cta::before,
.closing-cta::after {
    position: absolute;
    width: 700px;
    height: 280px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.closing-cta::before {
    right: -220px;
    bottom: -160px;
}

.closing-cta::after {
    right: -100px;
    bottom: -195px;
}

.closing-cta__inner {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 520px;
    place-content: center;
    text-align: center;
}

.closing-cta__kicker {
    color: var(--sun);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.closing-cta h2 {
    margin: 24px 0 38px;
    font-size: clamp(3.8rem, 7vw, 7.5rem);
}

.closing-cta .button {
    justify-self: center;
}

.page-hero {
    color: var(--white);
    background: var(--ink);
}

.page-hero__inner {
    position: relative;
    display: grid;
    min-height: 390px;
    padding-top: 44px;
    padding-bottom: 64px;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    gap: 25px 60px;
    align-items: end;
}

.back-link {
    grid-column: 1 / -1;
    justify-self: start;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
}

.back-link:hover {
    color: var(--sun);
}

.page-hero__copy h1 {
    margin: 20px 0 12px;
    font-size: clamp(3.8rem, 7vw, 7rem);
}

.page-hero__copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
}

.page-hero__note {
    display: flex;
    max-width: 310px;
    padding: 24px;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hero__note-number {
    color: var(--sun);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.page-hero__note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.73);
    font-size: 0.82rem;
}

.booking-section {
    padding: 80px 0 120px;
    background:
        linear-gradient(90deg, transparent calc(50% - 1px), rgba(18, 58, 69, 0.025) 50%, transparent calc(50% + 1px)),
        var(--paper);
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.68fr);
    gap: 80px;
    align-items: start;
}

.booking-form {
    min-width: 0;
}

.form-section {
    padding: 0 0 48px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--line);
}

.form-section--final {
    margin-bottom: 0;
    border-bottom: 0;
}

.form-section legend {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--serif);
    font-size: 1.75rem;
}

.form-section legend span {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    color: var(--coral);
    border: 1px solid var(--coral);
    border-radius: 50%;
    font-family: var(--sans);
    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.form-section__intro {
    max-width: 620px;
    margin: 15px 0 26px 50px;
    color: var(--muted);
    font-size: 0.87rem;
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.field-grid--dates {
    grid-template-columns: 1fr 1fr 0.72fr;
}

.availability-section {
    padding-top: 92px;
    padding-bottom: 100px;
    background: var(--sand);
}

.availability-calendar {
    margin-top: 30px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.availability-calendar--home {
    margin-top: 0;
    padding: 38px;
    box-shadow: var(--shadow-md);
}

.availability-calendar__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: end;
}

.availability-calendar__header h2 {
    margin: 9px 0 8px;
    font-size: clamp(1.9rem, 4vw, 3.25rem);
}

.availability-calendar:not(.availability-calendar--home) .availability-calendar__header h2 {
    font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.availability-calendar__header p {
    max-width: 690px;
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.availability-calendar__controls {
    display: flex;
    gap: 8px;
}

.availability-calendar__nav {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-weight: 800;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.availability-calendar__nav:hover:not(:disabled) {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
}

.availability-calendar__nav:disabled {
    cursor: not-allowed;
    opacity: 0.35;
}

.availability-calendar__nav:focus-visible,
.availability-calendar__day:focus-visible {
    position: relative;
    z-index: 2;
    outline: 3px solid rgba(239, 184, 83, 0.78);
    outline-offset: 2px;
}

.availability-calendar__body {
    min-height: 330px;
    margin-top: 28px;
}

.availability-calendar--home .availability-calendar__body {
    min-height: 385px;
}

.availability-calendar__loading,
.availability-calendar__error {
    display: flex;
    min-height: 300px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.availability-calendar__loading {
    color: var(--muted);
    font-size: 0.82rem;
}

.availability-calendar__error {
    padding: 35px;
    color: var(--danger);
    background: var(--danger-soft);
    border-radius: var(--radius-sm);
}

.availability-calendar__error strong {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
}

.availability-calendar__error p {
    max-width: 450px;
    margin: 0 0 5px;
    color: var(--ink-soft);
    font-size: 0.8rem;
}

.availability-calendar__months {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.availability-calendar__month {
    min-width: 0;
}

.availability-calendar__month h3 {
    margin: 0 0 14px;
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 400;
    text-align: center;
}

.availability-calendar__table {
    width: 100%;
    table-layout: fixed;
    border-spacing: 3px;
}

.availability-calendar__table th {
    height: 28px;
    color: var(--muted);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
}

.availability-calendar__table td {
    padding: 0;
    text-align: center;
}

.availability-calendar__empty-day,
.availability-calendar__day {
    height: 43px;
}

.availability-calendar__day {
    position: relative;
    width: 100%;
    padding: 0;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(18, 58, 69, 0.17);
    border-radius: 7px;
    font-size: 0.78rem;
    font-weight: 720;
    line-height: 1;
    transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.availability-calendar__day.is-available:hover {
    background: var(--sea-light);
    border-color: var(--success);
}

.availability-calendar__day.is-past,
.availability-calendar__day.is-outside-range {
    color: #a8b0b0;
    background: #f3f1ec;
    border-color: transparent;
    cursor: not-allowed;
    text-decoration: line-through;
}

.availability-calendar__day.is-blocked {
    color: var(--danger);
    background:
        repeating-linear-gradient(
            135deg,
            var(--danger-soft) 0,
            var(--danger-soft) 5px,
            #f3d7cf 5px,
            #f3d7cf 8px
        );
    border-color: rgba(165, 67, 53, 0.38);
}

.availability-calendar__day.is-blocked:hover {
    border-color: var(--danger);
    box-shadow: inset 0 0 0 1px var(--danger);
}

.availability-calendar__day.is-in-stay {
    color: var(--ink-deep);
    background: var(--sea-light);
    border-color: rgba(57, 116, 98, 0.42);
    border-radius: 2px;
}

.availability-calendar__day.is-arrival,
.availability-calendar__day.is-departure {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
    border-radius: 50%;
    box-shadow: 0 5px 12px rgba(8, 43, 52, 0.18);
}

.availability-calendar__day.is-departure.is-blocked {
    color: var(--white);
    background: var(--coral);
    border-color: var(--coral);
}

.availability-calendar__day[aria-current="date"]::after {
    position: absolute;
    right: 5px;
    bottom: 4px;
    left: 5px;
    height: 2px;
    content: "";
    background: var(--coral);
    border-radius: 999px;
}

.availability-calendar__footer {
    display: flex;
    margin-top: 24px;
    padding-top: 19px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid var(--line);
}

.availability-calendar__legend {
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 12px 20px;
    color: var(--muted);
    font-size: 0.68rem;
    list-style: none;
}

.availability-calendar__legend li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.availability-calendar__swatch {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
}

.availability-calendar__swatch.is-available {
    background: var(--white);
    border-color: var(--success);
}

.availability-calendar__swatch.is-blocked {
    background:
        repeating-linear-gradient(
            135deg,
            var(--danger-soft) 0,
            var(--danger-soft) 3px,
            #f3d7cf 3px,
            #f3d7cf 5px
        );
    border-color: rgba(165, 67, 53, 0.5);
}

.availability-calendar__swatch.is-past {
    background: #f3f1ec;
    border-color: transparent;
}

.availability-calendar__swatch.is-selected {
    background: var(--ink);
    border-color: var(--ink);
    border-radius: 50%;
}

.availability-calendar__continue:disabled {
    cursor: not-allowed;
    filter: grayscale(0.7);
    opacity: 0.5;
    transform: none;
}

.availability-calendar__status {
    min-height: 21px;
    margin: 14px 0 0;
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 700;
}

.availability-calendar__status.is-error {
    color: var(--danger);
}

.availability-calendar__note {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.68rem;
}

.calendar-status {
    display: flex;
    margin-top: 24px;
    padding: 16px 18px;
    align-items: flex-start;
    gap: 12px;
    background: rgba(219, 233, 228, 0.58);
    border-radius: var(--radius-sm);
}

.calendar-status__indicator {
    width: 9px;
    height: 9px;
    margin-top: 7px;
    flex: 0 0 auto;
    background: var(--success);
    border: 2px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(57, 116, 98, 0.22);
}

.calendar-status strong {
    font-size: 0.8rem;
}

.calendar-status p {
    margin: 1px 0 0;
    color: var(--muted);
    font-size: 0.73rem;
}

.check-field {
    position: relative;
    display: grid;
    margin-bottom: 26px;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
    color: var(--ink-soft);
    cursor: pointer;
    font-size: 0.84rem;
}

.check-field input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.check-field__box {
    position: relative;
    width: 21px;
    height: 21px;
    border: 1px solid rgba(18, 58, 69, 0.34);
    border-radius: 4px;
}

.check-field input:focus-visible + .check-field__box {
    outline: 3px solid rgba(239, 184, 83, 0.55);
    outline-offset: 2px;
}

.check-field input:checked + .check-field__box {
    background: var(--ink);
    border-color: var(--ink);
}

.check-field input:checked + .check-field__box::after {
    position: absolute;
    top: 4px;
    left: 6px;
    width: 6px;
    height: 10px;
    content: "";
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

.check-field--error .check-field__box {
    border-color: var(--danger);
}

.submit-note {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.71rem;
    text-align: center;
}

.alert {
    display: flex;
    margin-bottom: 34px;
    padding: 18px 20px;
    flex-direction: column;
    color: var(--danger);
    background: var(--danger-soft);
    border-left: 3px solid var(--danger);
    border-radius: 4px;
    font-size: 0.82rem;
}

.alert--draft {
    display: grid;
    padding: 24px;
    grid-template-columns: 38px 1fr;
    color: var(--ink);
    background: #fff4db;
    border-left-color: var(--sun);
}

.alert--draft p {
    margin: 5px 0 0;
    color: var(--ink-soft);
}

.alert__icon {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: var(--ink);
    background: var(--sun);
    border-radius: 50%;
    font-weight: 800;
}

.quote-card {
    position: sticky;
    top: 28px;
    padding: 31px;
    background: var(--white);
    border: 1px solid rgba(18, 58, 69, 0.1);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.quote-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.quote-card__badge {
    padding: 6px 9px;
    color: var(--muted);
    background: var(--sand);
    border-radius: 999px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.quote-card__badge.is-available {
    color: var(--success);
    background: var(--sea-light);
}

.quote-card__badge.is-unavailable {
    color: var(--danger);
    background: var(--danger-soft);
}

.quote-card h2 {
    margin: 22px 0 4px;
    font-size: 2rem;
}

.quote-card > p {
    color: var(--muted);
    font-size: 0.75rem;
}

.quote-card__stay {
    display: grid;
    margin: 26px 0;
    padding: 17px 0;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.quote-card__stay > div {
    display: flex;
    flex-direction: column;
}

.quote-card__stay > div:last-child {
    text-align: right;
}

.quote-card__stay span {
    color: var(--muted);
    font-size: 0.62rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.quote-card__stay strong {
    margin-top: 4px;
    font-size: 0.78rem;
}

.quote-card__empty {
    padding: 30px 15px 35px;
    text-align: center;
}

.quote-card__wave {
    position: relative;
    display: block;
    width: 58px;
    height: 30px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.quote-card__wave::before,
.quote-card__wave::after {
    position: absolute;
    width: 52px;
    height: 22px;
    content: "";
    border-top: 2px solid var(--sea);
    border-radius: 50%;
}

.quote-card__wave::before {
    top: 4px;
    left: -8px;
}

.quote-card__wave::after {
    top: 13px;
    left: 13px;
    border-color: var(--sun);
}

.quote-card__empty strong {
    font-family: var(--serif);
    font-size: 1.05rem;
}

.quote-card__empty p,
.quote-card__unavailable p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.75rem;
}

.quote-card__loading {
    display: flex;
    min-height: 135px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--muted);
    font-size: 0.8rem;
}

.loading-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid var(--sea-light);
    border-top-color: var(--coral);
    border-radius: 50%;
    animation: spin 700ms linear infinite;
}

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

.quote-card__unavailable {
    padding: 22px;
    color: var(--danger);
    background: var(--danger-soft);
    border-radius: var(--radius-sm);
}

.quote-card__nights,
.quote-lines > div,
.quote-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.quote-card__nights {
    padding-bottom: 16px;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    font-size: 0.72rem;
}

.quote-card__nights strong {
    color: var(--ink);
}

.quote-lines {
    padding: 14px 0;
}

.quote-lines > div {
    padding: 7px 0;
    color: var(--muted);
    font-size: 0.79rem;
}

.quote-lines strong {
    color: var(--ink);
    font-weight: 650;
}

.quote-total {
    padding: 18px 0;
    border-top: 1px solid var(--ink);
}

.quote-total span {
    font-family: var(--serif);
    font-size: 1.15rem;
}

.quote-total strong {
    font-family: var(--serif);
    font-size: 1.55rem;
}

.quote-card__details > p {
    margin: 0;
    color: var(--muted);
    font-size: 0.68rem;
}

.quote-card__fine-print {
    display: grid;
    margin: 24px -31px -31px;
    padding: 17px 24px;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    color: var(--muted);
    background: var(--sand);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.quote-card__fine-print > span {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    color: var(--white);
    background: var(--ink-soft);
    border-radius: 50%;
    font-family: var(--serif);
    font-size: 0.7rem;
}

.quote-card__fine-print p {
    margin: 0;
    font-size: 0.68rem;
}

.success-page {
    position: relative;
    min-height: 780px;
    padding: 95px 0 130px;
    overflow: hidden;
}

.success-page__art {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    overflow: hidden;
    background: var(--sea-light);
}

.success-page__sun {
    position: absolute;
    top: 90px;
    right: 20%;
    width: 160px;
    height: 160px;
    background: var(--sun);
    border-radius: 50%;
}

.success-page__shore {
    position: absolute;
    right: -30%;
    bottom: 15%;
    width: 150%;
    height: 260px;
    border: 2px solid rgba(18, 58, 69, 0.22);
    border-radius: 50%;
    transform: rotate(-12deg);
}

.success-page__shore::after {
    position: absolute;
    inset: 30px -20px -30px 50px;
    content: "";
    border: 1px solid rgba(18, 58, 69, 0.18);
    border-radius: 50%;
}

.success-page__content {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 48px), 760px);
    margin-left: max(24px, calc((100% - var(--container)) / 2));
}

.success-mark {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 26px;
    place-items: center;
    color: var(--white);
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 10px rgba(57, 116, 98, 0.1);
}

.success-page h1 {
    margin: 18px 0 22px;
    font-size: clamp(3.7rem, 7vw, 6.8rem);
}

.success-page__lead {
    max-width: 610px;
    color: var(--ink-soft);
    font-size: 1rem;
}

.request-ticket {
    max-width: 680px;
    margin-top: 38px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.request-ticket__header {
    display: flex;
    padding: 23px 25px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    color: var(--white);
    background: var(--ink);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.request-ticket__header > div {
    display: flex;
    flex-direction: column;
}

.request-ticket__header > div:last-child {
    text-align: right;
}

.request-ticket__header span,
.request-ticket__details dt {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.request-ticket__header strong {
    margin-top: 3px;
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
}

.request-ticket__details {
    display: grid;
    margin: 0;
    padding: 22px 25px;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--line);
}

.request-ticket__details > div {
    padding: 0 18px;
    border-right: 1px solid var(--line);
}

.request-ticket__details > div:first-child {
    padding-left: 0;
}

.request-ticket__details > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.request-ticket__details dt {
    color: var(--muted);
}

.request-ticket__details dd {
    margin: 4px 0 0;
    font-weight: 700;
}

.request-ticket__status {
    display: flex;
    padding: 20px 25px;
    align-items: flex-start;
    gap: 12px;
}

.request-ticket__status-dot {
    width: 9px;
    height: 9px;
    margin-top: 7px;
    flex: 0 0 auto;
    background: var(--sun);
    border-radius: 50%;
}

.request-ticket__status strong {
    font-size: 0.82rem;
}

.request-ticket__status p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 0.73rem;
}

.next-steps {
    max-width: 680px;
    margin-top: 48px;
}

.next-steps h2 {
    margin-bottom: 22px;
    font-size: 1.9rem;
}

.next-steps ol {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    list-style: none;
}

.next-steps li {
    padding-top: 15px;
    border-top: 1px solid var(--line);
}

.next-steps li span {
    color: var(--coral);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.next-steps li p {
    margin: 7px 0 0;
    color: var(--ink-soft);
    font-size: 0.77rem;
}

.success-page__actions {
    display: flex;
    margin-top: 38px;
    align-items: center;
    gap: 28px;
}

.no-payment-note {
    max-width: 680px;
    margin: 34px 0 0;
    padding: 14px 17px;
    color: var(--muted);
    background: var(--sand);
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
}

.document-hero {
    padding: 75px 0 65px;
    background: var(--sand);
    border-bottom: 1px solid var(--sand-deep);
}

.document-hero__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: end;
}

.document-hero h1 {
    margin: 18px 0 11px;
    font-size: clamp(3.2rem, 6vw, 6rem);
}

.document-hero p {
    margin: 0;
    color: var(--muted);
}

.document-hero__meta {
    display: flex;
    align-items: center;
    gap: 22px;
}

.document-hero__meta > span {
    display: flex;
    flex-direction: column;
    color: var(--muted);
    font-size: 0.61rem;
    font-weight: 750;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.document-hero__meta strong {
    margin-top: 3px;
    color: var(--ink);
    font-size: 0.75rem;
}

.print-button {
    padding: 11px 15px;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--ink);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 750;
}

.document-section {
    padding: 80px 0 120px;
}

.document-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 750px);
    gap: 90px;
    justify-content: center;
    align-items: start;
}

.document-nav {
    position: sticky;
    top: 30px;
    padding: 22px 0;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--line);
}

.document-nav ol {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.document-nav li + li {
    border-top: 1px solid var(--line);
}

.document-nav a {
    display: grid;
    padding: 11px 0;
    grid-template-columns: 25px 1fr;
    gap: 8px;
    color: var(--ink-soft);
    font-size: 0.73rem;
    text-decoration: none;
}

.document-nav a:hover {
    color: var(--coral);
}

.document-nav a span {
    color: var(--coral);
    font-size: 0.58rem;
    font-weight: 800;
}

.document-nav > p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 0.75rem;
}

.agreement__intro {
    margin-bottom: 50px;
    padding: 28px;
    background: var(--sea-light);
    border-radius: var(--radius-sm);
}

.agreement__intro > span {
    color: var(--ink-soft);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.agreement__intro p {
    margin: 9px 0 0;
    color: var(--ink-soft);
}

.agreement__sections > section {
    display: grid;
    padding: 38px 0;
    grid-template-columns: 55px 1fr;
    gap: 25px;
    scroll-margin-top: 30px;
    border-top: 1px solid var(--line);
}

.agreement__section-number {
    color: var(--coral);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.agreement__sections h2 {
    margin: 0 0 18px;
    font-size: 2rem;
}

.agreement__sections p,
.agreement__sections li {
    color: var(--ink-soft);
    font-size: 0.91rem;
}

.agreement__sections ul {
    padding-left: 20px;
}

.agreement-placeholder {
    padding: 70px 50px;
    text-align: center;
    background: var(--sand);
    border: 1px dashed var(--sand-deep);
    border-radius: var(--radius-md);
}

.agreement-placeholder__mark {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 0 auto 23px;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    border-radius: 50%;
    font-family: var(--serif);
}

.agreement-placeholder h2 {
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.agreement-placeholder p {
    color: var(--muted);
}

.agreement-placeholder .button {
    margin-top: 16px;
}

.agreement-acceptance {
    margin-top: 60px;
    padding: 38px;
    background: var(--ink);
    border-radius: var(--radius-md);
}

.agreement-acceptance h2 {
    margin: 13px 0 8px;
    color: var(--white);
    font-size: 2.3rem;
}

.agreement-acceptance > p {
    color: rgba(255, 255, 255, 0.62);
}

.agreement-acceptance .field {
    margin: 24px 0;
}

.agreement-acceptance .field > span,
.agreement-acceptance .check-field {
    color: rgba(255, 255, 255, 0.73);
}

.agreement-acceptance .check-field__box {
    border-color: rgba(255, 255, 255, 0.42);
}

.error-page {
    position: relative;
    display: grid;
    min-height: 720px;
    place-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--ink-deep);
}

.error-page__sky {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.error-page__sun {
    position: absolute;
    top: 10%;
    right: 15%;
    width: min(24vw, 290px);
    height: min(24vw, 290px);
    background: var(--sun);
    border-radius: 50%;
    opacity: 0.9;
}

.error-page__wave {
    position: absolute;
    right: -10%;
    bottom: -12%;
    width: 78%;
    height: 43%;
    border: 2px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.error-page__wave--two {
    right: 5%;
    bottom: -21%;
    width: 92%;
    border-color: rgba(142, 185, 177, 0.28);
}

.error-page__content {
    position: relative;
    z-index: 2;
    padding-top: 70px;
    padding-bottom: 70px;
    text-align: center;
}

.error-page__code {
    display: block;
    margin-bottom: -24px;
    color: rgba(255, 255, 255, 0.055);
    font-family: var(--serif);
    font-size: clamp(10rem, 26vw, 24rem);
    line-height: 0.7;
}

.error-page h1 {
    margin: 18px 0;
    font-size: clamp(3.2rem, 6.5vw, 6rem);
}

.error-page__content > p {
    max-width: 540px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.65);
}

.error-page__actions {
    display: flex;
    margin-top: 34px;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.error-page__content > small {
    display: block;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1050px) {
    .hero__grid {
        gap: 30px;
    }

    .hero__assurance {
        flex-wrap: wrap;
    }

    .quick-search__form {
        grid-template-columns: 1.2fr 1fr 1fr;
        row-gap: 18px;
    }

    .quick-search__intro {
        grid-column: 1 / -1;
    }

    .quick-search__form .button {
        grid-column: 3;
        grid-row: 2;
    }

    .quick-search__form .field:nth-of-type(3) {
        display: none;
    }

    .section-heading--split,
    .process,
    .direct-section__grid {
        gap: 65px;
    }

    .booking-layout {
        gap: 45px;
    }

    .field-grid--dates {
        grid-template-columns: 1fr 1fr;
    }

    .field-grid--dates .field:last-child {
        grid-column: 1 / -1;
    }

    .success-page__art {
        width: 25%;
        opacity: 0.7;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(calc(100% - 34px), var(--container));
    }

    .site-header__inner {
        min-height: 70px;
    }

    .nav-toggle {
        display: block;
    }

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

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

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

    .primary-nav {
        position: fixed;
        top: 70px;
        right: 0;
        left: 0;
        display: none;
        min-height: calc(100vh - 70px);
        padding: 38px 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        background: var(--paper);
        border-top: 1px solid var(--line);
    }

    .site-notice + .site-header .primary-nav {
        top: 106px;
        min-height: calc(100vh - 106px);
    }

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

    .primary-nav > a:not(.button) {
        padding: 18px 5px;
        border-bottom: 1px solid var(--line);
        font-family: var(--serif);
        font-size: 1.45rem;
        font-weight: 400;
    }

    .primary-nav .button {
        margin-top: 20px;
    }

    .hero__grid {
        min-height: auto;
        padding-top: 70px;
        padding-bottom: 55px;
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: clamp(3.8rem, 14vw, 6.3rem);
    }

    .hero__art {
        min-height: 520px;
    }

    .hero__photo {
        right: 8%;
        left: 8%;
    }

    .hero__sun {
        right: 0;
    }

    .hero__location-card {
        right: 4%;
    }

    .quick-search {
        margin-top: 0;
        padding: 35px 0;
        background: var(--sand);
    }

    .quick-search__form {
        grid-template-columns: 1fr 1fr;
    }

    .quick-search__form .button {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .quick-search__message {
        position: static;
        grid-column: 1 / -1;
        margin: 0;
    }

    .section {
        padding: 85px 0;
    }

    .section-heading--split,
    .process,
    .direct-section__grid,
    .property-details {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .section-heading__aside {
        max-width: 620px;
        padding: 0;
    }

    .gallery-grid {
        min-height: 650px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1.6fr 1fr 1fr;
    }

    .gallery-grid__item--feature {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .stay-highlights {
        grid-template-columns: 1fr;
    }

    .stay-highlight {
        min-height: 0;
    }

    .stay-highlight h3 {
        margin-top: 22px;
    }

    .stay-story,
    .stay-details-panel {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .stay-details-panel__heading p {
        max-width: 620px;
    }

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

    .verified-highlights {
        padding: 30px 0 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .direct-section__art {
        width: min(90%, 560px);
    }

    .simple-list {
        grid-template-columns: 1fr;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__grid > div:first-child {
        grid-column: 1 / -1;
    }

    .page-hero__inner {
        grid-template-columns: 1fr;
    }

    .page-hero__note {
        max-width: 500px;
    }

    .booking-layout {
        grid-template-columns: 1fr;
    }

    .quote-card {
        position: static;
        grid-row: 1;
    }

    .success-page__art {
        display: none;
    }

    .success-page__content {
        width: min(calc(100% - 34px), 760px);
        margin-inline: auto;
    }

    .document-hero__grid,
    .document-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .document-hero__meta {
        flex-wrap: wrap;
    }

    .document-nav {
        position: static;
    }

    .document-nav ol {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 25px;
    }
}

@media (max-width: 720px) {
    .availability-calendar,
    .availability-calendar--home {
        padding: 24px;
    }

    .availability-calendar__header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .availability-calendar__controls {
        justify-content: space-between;
    }

    .availability-calendar__body,
    .availability-calendar--home .availability-calendar__body {
        min-height: 365px;
    }

    .availability-calendar__months {
        grid-template-columns: minmax(0, 1fr);
    }

    .availability-calendar__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .availability-calendar__continue {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .site-notice__inner {
        min-height: 44px;
        text-align: center;
    }

    .site-header__inner {
        min-height: 66px;
    }

    .brand__mark {
        width: 39px;
        height: 39px;
    }

    .primary-nav {
        top: 66px;
    }

    .site-notice + .site-header .primary-nav {
        top: 110px;
        min-height: calc(100vh - 110px);
    }

    .hero__grid {
        padding-top: 55px;
    }

    .hero h1 {
        font-size: clamp(3.4rem, 16vw, 5.2rem);
    }

    .hero__lead {
        font-size: 0.97rem;
    }

    .hero__actions,
    .success-page__actions,
    .error-page__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero__actions .button,
    .success-page__actions .button,
    .error-page__actions .button {
        width: 100%;
    }

    .hero__actions .text-link,
    .success-page__actions .text-link,
    .error-page__actions .text-link {
        align-self: center;
    }

    .hero__assurance {
        display: grid;
        gap: 11px;
    }

    .hero__art {
        min-height: 420px;
    }

    .hero__photo {
        top: 25px;
        right: 4%;
        left: 4%;
    }

    .hero__sun {
        width: 140px;
        height: 140px;
    }

    .hero__scribble {
        display: none;
    }

    .quick-search__form {
        padding: 23px 20px;
        grid-template-columns: 1fr;
    }

    .availability-calendar,
    .availability-calendar--home {
        padding: 19px 14px;
    }

    .availability-calendar__header,
    .availability-calendar__footer,
    .availability-calendar__status,
    .availability-calendar__note {
        margin-right: 5px;
        margin-left: 5px;
    }

    .availability-calendar__table {
        border-spacing: 2px;
    }

    .availability-calendar__empty-day,
    .availability-calendar__day {
        height: 40px;
    }

    .quick-search__intro,
    .quick-search__form .button,
    .quick-search__message {
        grid-column: auto;
    }

    .field--compact {
        padding: 12px 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .section {
        padding: 70px 0;
    }

    .section-heading h2 {
        font-size: 2.8rem;
    }

    .property-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-grid {
        min-height: 760px;
        grid-template-columns: 1fr;
        grid-template-rows: 1.6fr repeat(4, 1fr);
    }

    .gallery-grid__item--feature {
        grid-column: auto;
    }

    .gallery-grid__all {
        right: 9px;
        bottom: 9px;
        padding: 8px 10px;
        font-size: 0.59rem;
    }

    .photo-viewer__panel {
        width: min(calc(100% - 20px), 1180px);
        padding: 12px 0 18px;
    }

    .photo-viewer__thumbs button {
        width: 72px;
        height: 50px;
    }

    .property-facts {
        grid-template-columns: 1fr;
    }

    .property-facts > div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .property-facts > div:last-child {
        border-bottom: 0;
    }

    .content-placeholder {
        align-items: flex-start;
    }

    .stay-story,
    .amenities-panel,
    .stay-details-panel {
        margin-top: 60px;
    }

    .stay-story {
        gap: 34px;
    }

    .amenities-panel {
        padding: 28px 20px;
    }

    .amenities-panel__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

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

    .stay-details-panel {
        padding-top: 55px;
    }

    .stay-details-panel details > ul {
        grid-template-columns: 1fr;
    }

    .process__steps li {
        grid-template-columns: 38px 1fr;
    }

    .direct-section__art {
        width: 100%;
        min-height: 390px;
    }

    .direct-section__card {
        right: -5px;
    }

    .closing-cta__inner {
        min-height: 450px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__grid > div:first-child {
        grid-column: auto;
    }

    .site-footer__fine-print {
        align-items: flex-start;
        flex-direction: column;
    }

    .page-hero__inner {
        min-height: 430px;
    }

    .page-hero__copy h1 {
        font-size: 3.7rem;
    }

    .booking-section {
        padding: 55px 0 85px;
    }

    .booking-layout {
        gap: 48px;
    }

    .quote-card {
        padding: 23px;
    }

    .quote-card__fine-print {
        margin: 24px -23px -23px;
    }

    .field-grid,
    .field-grid--dates {
        grid-template-columns: 1fr;
    }

    .field-grid--dates .field:last-child {
        grid-column: auto;
    }

    .form-section__intro {
        margin-left: 0;
    }

    .request-ticket__header,
    .request-ticket__details {
        grid-template-columns: 1fr;
        align-items: flex-start;
        flex-direction: column;
    }

    .request-ticket__header > div:last-child {
        text-align: left;
    }

    .request-ticket__details > div {
        padding: 12px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .request-ticket__details > div:last-child {
        border-bottom: 0;
    }

    .next-steps ol {
        grid-template-columns: 1fr;
    }

    .document-hero {
        padding: 55px 0;
    }

    .document-hero h1 {
        font-size: 3.2rem;
    }

    .document-nav ol {
        grid-template-columns: 1fr;
    }

    .agreement__sections > section {
        grid-template-columns: 32px 1fr;
        gap: 12px;
    }

    .agreement-placeholder,
    .agreement-acceptance {
        padding: 32px 22px;
    }
}

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

@media print {
    .site-notice,
    .site-header,
    .site-footer,
    .document-nav,
    .print-button,
    .agreement-acceptance {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
        font-size: 11pt;
    }

    .document-hero,
    .document-section {
        padding: 20px 0;
        background: #fff;
    }

    .document-layout {
        display: block;
    }

    .agreement__sections > section {
        break-inside: avoid;
    }
}
