:root {
    --ivory: #f2eee8;
    --chalk: #fbfaf7;
    --ink: #24292d;
    --muted: #707478;
    --blue: #64798a;
    --blue-deep: #354c5d;
    --clay: #bd7868;
    --rose: #d9b5ad;
    --wine: #714248;
    --line: rgba(36, 41, 45, 0.18);
    --line-light: rgba(255, 255, 255, 0.24);
    --display: "Prata", Georgia, serif;
    --sans: "Manrope", Arial, sans-serif;
    --page: min(1380px, calc(100% - 80px));
    --section-space: clamp(90px, 10vw, 160px);
    --ease: cubic-bezier(.22, .72, .2, 1);
}

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

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

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body::before {
    position: fixed;
    z-index: 20;
    inset: 0;
    opacity: .035;
    pointer-events: none;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

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

figure,
blockquote,
dl,
dd,
p,
h1,
h2,
h3 {
    margin: 0;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

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

button,
select {
    cursor: pointer;
}

address {
    font-style: normal;
}

:focus-visible {
    outline: 2px solid var(--clay);
    outline-offset: 4px;
}

.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;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    transform: translateY(-150%);
    background: var(--ink);
    color: var(--chalk);
}

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

.section-shell {
    width: var(--page);
    margin-inline: auto;
}

.eyebrow,
.section-kicker {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.section-kicker {
    display: flex;
    gap: 18px;
    align-items: center;
    color: var(--muted);
}

.section-kicker span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
}

.section-kicker--light {
    color: rgba(255,255,255,.65);
}

.section-kicker--light span {
    border-color: var(--line-light);
}

.text-link {
    display: inline-flex;
    width: fit-content;
    gap: 38px;
    align-items: center;
    padding-bottom: 9px;
    border-bottom: 1px solid currentColor;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.text-link span {
    color: var(--clay);
    font-size: 17px;
    transition: transform .25s ease;
}

.text-link:hover span {
    transform: translateY(3px);
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding: 0 28px;
    border: 1px solid transparent;
    background: transparent;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .25s, color .25s, border-color .25s, transform .25s;
}

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

.button--light {
    border-color: rgba(255,255,255,.5);
    color: var(--chalk);
}

.button--light:hover {
    background: var(--chalk);
    color: var(--blue-deep);
}

.button--accent {
    background: var(--clay);
    color: #fff;
}

.button--accent:hover {
    background: #cc8473;
}

/* Header */
.site-header {
    position: absolute;
    z-index: 30;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
    transition: background .3s, transform .3s;
}

.site-header.is-fixed {
    position: fixed;
    background: rgba(242, 238, 232, .96);
    backdrop-filter: blur(12px);
}

.site-header__inner {
    display: grid;
    width: var(--page);
    height: 86px;
    margin-inline: auto;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.brand {
    display: inline-flex;
    width: fit-content;
    gap: 13px;
    align-items: center;
}

.brand__mark {
    display: grid;
    width: 42px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 22px 22px 2px 2px;
    font-family: var(--display);
    font-size: 12px;
}

.brand__name {
    font-family: var(--display);
    font-size: 13px;
    line-height: 1.25;
}

.site-nav {
    display: flex;
    gap: clamp(22px, 3vw, 46px);
}

.site-nav a,
.header-booking {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-nav a {
    position: relative;
    padding: 8px 0;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--ink);
    content: "";
    transition: transform .3s var(--ease);
}

.site-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-booking {
    display: flex;
    min-height: 38px;
    gap: 30px;
    align-items: center;
    justify-self: end;
    border-bottom: 1px solid var(--ink);
}

.header-booking span:last-child {
    color: var(--clay);
    font-size: 16px;
}

.menu-toggle {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    min-height: 900px;
    padding: 136px 0 72px;
    overflow: hidden;
}

.hero__grid {
    display: grid;
    width: var(--page);
    min-height: 680px;
    margin-inline: auto;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: auto 1fr;
    gap: 28px;
    align-items: start;
}

.hero__intro {
    z-index: 2;
    grid-column: 1 / 7;
    grid-row: 1;
    padding-top: 54px;
}

.hero__intro .eyebrow {
    margin-bottom: 30px;
    color: var(--blue-deep);
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(68px, 8.4vw, 142px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .86;
}

.hero h1 span {
    position: relative;
    left: clamp(42px, 5vw, 92px);
    color: var(--wine);
}

.hero__lead {
    max-width: 430px;
    margin: 46px 0 32px;
    color: #565d61;
    font-size: 16px;
}

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

.hero__phone {
    color: var(--muted);
    font-size: 12px;
}

.hero__main-photo {
    grid-column: 7 / 11;
    grid-row: 1 / 3;
    align-self: stretch;
    padding-top: 8px;
}

.hero__main-photo img {
    height: 650px;
    object-fit: cover;
    object-position: center;
    border-radius: 210px 210px 0 0;
}

.hero figure figcaption {
    margin-top: 11px;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hero__detail-photo {
    grid-column: 11 / 13;
    grid-row: 1;
    margin-top: 160px;
}

.hero__detail-photo img {
    height: 230px;
    object-fit: cover;
}

.hero__stay-note {
    display: grid;
    grid-column: 1 / 5;
    grid-row: 2;
    grid-template-columns: 90px 1fr;
    align-self: end;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.hero__stay-index {
    color: var(--clay);
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hero__stay-note > p {
    font-family: var(--display);
    font-size: 20px;
    line-height: 1.5;
}

.hero__stay-note dl {
    display: flex;
    grid-column: 2;
    gap: 28px;
    margin-top: 26px;
}

.hero__stay-note dl div {
    display: grid;
    gap: 2px;
}

.hero__stay-note dt {
    color: var(--muted);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hero__stay-note dd {
    font-size: 11px;
}

.hero__address {
    position: absolute;
    right: 18px;
    bottom: 140px;
    color: var(--muted);
    font-size: 8px;
    letter-spacing: .2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

/* About */
.about {
    padding: var(--section-space) 0;
    background: var(--chalk);
}

.section-heading {
    display: grid;
    grid-template-columns: 3fr 9fr;
    gap: 24px;
    margin-bottom: clamp(70px, 8vw, 120px);
}

.section-heading h2,
.rooms__heading h2,
.comfort__heading h2,
.nearby__heading h2,
.location__copy h2,
.booking__intro h2 {
    font-family: var(--display);
    font-size: clamp(44px, 5.5vw, 82px);
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: 1.08;
}

.section-heading h2 em {
    color: var(--clay);
    font-weight: 400;
}

.about__layout {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.about__story {
    grid-column: 2 / 6;
    padding-top: 30px;
}

.about__lead {
    margin-bottom: 24px;
    font-family: var(--display);
    font-size: clamp(21px, 2.1vw, 31px);
    line-height: 1.5;
}

.about__story > p:not(.about__lead) {
    color: var(--muted);
}

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

.about__facts div {
    padding: 17px 12px 0 0;
    border-right: 1px solid var(--line);
}

.about__facts div + div {
    padding-left: 12px;
}

.about__facts dt {
    color: var(--wine);
    font-family: var(--display);
    font-size: 30px;
}

.about__facts dd {
    color: var(--muted);
    font-size: 9px;
    line-height: 1.4;
    text-transform: uppercase;
}

.about__courtyard {
    grid-column: 7 / 13;
}

.about__courtyard img {
    height: 560px;
    object-fit: cover;
    filter: saturate(.7);
}

.about__courtyard figcaption,
.gallery figcaption,
.nearby__photo figcaption {
    margin-top: 12px;
    color: var(--muted);
    font-size: 10px;
}

.about__window {
    grid-column: 1 / 4;
    margin-top: 36px;
}

.about__window img {
    height: 390px;
    object-fit: cover;
}

.about__quote {
    grid-column: 5 / 10;
    padding: 70px 0 0 30px;
}

.about__quote p {
    font-family: var(--display);
    font-size: clamp(24px, 3vw, 42px);
    line-height: 1.38;
}

.about__quote cite {
    display: block;
    margin-top: 26px;
    color: var(--clay);
    font-size: 9px;
    font-style: normal;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* Rooms */
.rooms {
    padding: var(--section-space) 0 90px;
    background: var(--blue-deep);
    color: var(--chalk);
}

.rooms__heading {
    display: grid;
    grid-template-columns: 3fr 9fr;
    gap: 24px;
    margin-bottom: 70px;
}

.rooms__heading > div {
    display: flex;
    gap: 50px;
    align-items: end;
    justify-content: space-between;
}

.rooms__heading h2 {
    max-width: 720px;
}

.rooms__heading > div > p {
    max-width: 310px;
    padding-bottom: 9px;
    color: rgba(255,255,255,.65);
}

.room-viewer {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(330px, .8fr);
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.room-viewer__image-wrap {
    position: relative;
    overflow: hidden;
}

.room-viewer__image {
    height: 610px;
    object-fit: cover;
    transition: opacity .25s, transform .7s var(--ease);
}

.room-viewer__image.is-changing {
    opacity: .2;
    transform: scale(1.02);
}

.room-viewer__count {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 14px 18px;
    background: var(--blue-deep);
    font-size: 10px;
    letter-spacing: .15em;
}

.room-viewer__count b {
    color: var(--rose);
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
}

.room-viewer__content {
    display: flex;
    padding: 58px clamp(28px, 4vw, 64px);
    flex-direction: column;
    border-left: 1px solid var(--line-light);
}

.room-viewer__label {
    color: rgba(255,255,255,.55);
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.room-viewer__content h3 {
    margin: 22px 0 20px;
    font-family: var(--display);
    font-size: clamp(38px, 4vw, 59px);
    font-weight: 400;
    line-height: 1.12;
}

.room-viewer__description {
    max-width: 370px;
    color: rgba(255,255,255,.68);
}

.room-viewer__facts {
    display: grid;
    gap: 0;
    margin-top: 42px;
    border-top: 1px solid var(--line-light);
}

.room-viewer__facts div {
    display: flex;
    padding: 10px 0;
    justify-content: space-between;
    border-bottom: 1px solid var(--line-light);
    font-size: 10px;
}

.room-viewer__facts dt {
    color: rgba(255,255,255,.48);
    text-transform: uppercase;
}

.room-viewer__price {
    display: flex;
    margin-top: auto;
    align-items: end;
    justify-content: space-between;
    padding: 32px 0 24px;
}

.room-viewer__price span {
    color: rgba(255,255,255,.5);
    font-size: 9px;
    text-transform: uppercase;
}

.room-viewer__price strong {
    color: var(--rose);
    font-family: var(--display);
    font-size: 34px;
    font-weight: 400;
}

.room-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.room-selector__item {
    display: grid;
    min-height: 112px;
    padding: 24px 22px;
    grid-template-columns: 45px 1fr;
    grid-template-rows: auto auto;
    text-align: left;
    border: 0;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    background: transparent;
    color: rgba(255,255,255,.52);
    transition: background .25s, color .25s;
}

.room-selector__item span {
    grid-row: 1 / 3;
    color: var(--rose);
    font-size: 9px;
}

.room-selector__item strong {
    font-family: var(--display);
    font-size: 19px;
    font-weight: 400;
}

.room-selector__item small {
    margin-top: 8px;
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.room-selector__item:hover,
.room-selector__item.is-active {
    background: rgba(255,255,255,.08);
    color: #fff;
}

.demo-note {
    margin-top: 20px;
    color: rgba(255,255,255,.45);
    font-size: 9px;
    letter-spacing: .06em;
}

/* Gallery */
.gallery {
    padding: var(--section-space) 0;
    background: var(--chalk);
}

.section-heading--split {
    grid-template-columns: 3fr 6fr 3fr;
    align-items: end;
}

.section-heading--split > p:last-child {
    color: var(--muted);
}

.gallery__collage {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    gap: 28px;
    align-items: start;
}

.gallery__item img {
    object-fit: cover;
}

.gallery__item figcaption {
    display: flex;
    gap: 18px;
}

.gallery__item figcaption span {
    color: var(--clay);
}

.gallery__item--room {
    grid-column: 1 / 8;
}

.gallery__item--room img {
    height: 620px;
}

.gallery__item--breakfast {
    grid-column: 9 / 13;
    margin-top: 120px;
}

.gallery__item--breakfast img {
    height: 330px;
}

.gallery__interlude {
    grid-column: 2 / 6;
    max-width: 430px;
    padding: 80px 0 50px;
    color: var(--wine);
    font-family: var(--display);
    font-size: clamp(24px, 2.6vw, 38px);
    line-height: 1.45;
}

.gallery__item--brick {
    grid-column: 7 / 13;
    margin-top: 80px;
}

.gallery__item--brick img {
    height: 440px;
}

.gallery__item--court {
    grid-column: 1 / 5;
    margin-top: -120px;
}

.gallery__item--court img {
    height: 420px;
}

/* Comfort */
.comfort {
    padding: var(--section-space) 0;
    border-top: 1px solid var(--line);
    background: var(--ivory);
}

.comfort__heading {
    display: grid;
    margin-bottom: clamp(70px, 9vw, 130px);
    grid-template-columns: 3fr 6fr 3fr;
    gap: 28px;
    align-items: end;
}

.comfort__heading h2 {
    font-size: clamp(42px, 5vw, 76px);
}

.comfort__heading h2 em {
    color: var(--clay);
    font-weight: 400;
}

.comfort__heading > p:last-child {
    max-width: 310px;
    color: var(--muted);
}

.comfort-plan {
    position: relative;
    min-height: 840px;
}

.comfort-plan::before,
.comfort-plan::after {
    position: absolute;
    z-index: 0;
    content: "";
    pointer-events: none;
}

.comfort-plan::before {
    top: 0;
    bottom: 130px;
    left: 50%;
    width: 1px;
    background: var(--line);
}

.comfort-plan::after {
    top: 292px;
    right: 3%;
    left: 3%;
    height: 1px;
    background: var(--line);
}

.comfort-plan__photo {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 50%;
    width: min(46%, 580px);
    transform: translateX(-50%);
}

.comfort-plan__photo::before {
    position: absolute;
    z-index: 2;
    top: 22px;
    right: 22px;
    bottom: 22px;
    left: 22px;
    border: 1px solid rgba(255,255,255,.48);
    content: "";
    pointer-events: none;
}

.comfort-plan__photo img {
    height: 610px;
    object-fit: cover;
}

.comfort-plan__photo figcaption {
    margin-top: 11px;
    color: var(--muted);
    font-size: 8px;
    letter-spacing: .1em;
    text-align: center;
    text-transform: uppercase;
}

.comfort-note {
    position: absolute;
    z-index: 3;
    width: min(23%, 285px);
    padding-top: 17px;
    border-top: 1px solid var(--ink);
}

.comfort-note::after {
    position: absolute;
    top: -1px;
    width: 34px;
    height: 1px;
    background: var(--clay);
    content: "";
}

.comfort-note dt {
    margin-bottom: 11px;
    font-family: var(--display);
    font-size: clamp(19px, 1.8vw, 27px);
}

.comfort-note dd {
    max-width: 240px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.65;
}

.comfort-note--bath {
    top: 72px;
    left: 0;
}

.comfort-note--bath::before,
.comfort-note--tea::before {
    position: absolute;
    top: -1px;
    left: 100%;
    width: 48%;
    height: 1px;
    background: var(--line);
    content: "";
}

.comfort-note--work {
    top: 145px;
    right: 0;
}

.comfort-note--work::before,
.comfort-note--luggage::before {
    position: absolute;
    top: -1px;
    right: 100%;
    width: 48%;
    height: 1px;
    background: var(--line);
    content: "";
}

.comfort-note--tea {
    top: 420px;
    left: 0;
}

.comfort-note--luggage {
    top: 470px;
    right: 0;
}

.comfort-plan__arrival {
    position: absolute;
    z-index: 4;
    right: 9%;
    bottom: 0;
    left: 9%;
    display: grid;
    min-height: 120px;
    padding: 26px 34px;
    grid-template-columns: 120px 1fr 1fr;
    gap: 35px;
    align-items: center;
    background: var(--blue-deep);
    color: var(--chalk);
}

.comfort-plan__arrival > span {
    color: var(--rose);
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.comfort-plan__arrival p {
    color: rgba(255,255,255,.58);
    font-size: 10px;
}

.comfort-plan__arrival strong {
    display: block;
    margin-bottom: 4px;
    color: var(--chalk);
    font-family: var(--display);
    font-size: 16px;
    font-weight: 400;
}

/* Nearby */
.nearby {
    padding: var(--section-space) 0;
    background: var(--wine);
    color: var(--chalk);
}

.nearby__heading {
    display: grid;
    grid-template-columns: 3fr 9fr;
    gap: 24px;
    margin-bottom: 80px;
}

.nearby__layout {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: clamp(40px, 7vw, 100px);
    align-items: start;
}

.nearby__photo img {
    height: 650px;
    object-fit: cover;
    filter: saturate(.6) contrast(.9);
}

.nearby__photo figcaption {
    max-width: 420px;
    color: rgba(255,255,255,.58);
}

.nearby__guide {
    padding-top: 30px;
}

.nearby__intro {
    max-width: 430px;
    margin-bottom: 48px;
    color: rgba(255,255,255,.68);
}

.nearby__guide ol {
    position: relative;
    display: grid;
    gap: 34px;
    padding-left: 8px;
}

.nearby__guide ol::before {
    position: absolute;
    top: 8px;
    bottom: 10px;
    left: 18px;
    width: 1px;
    background: rgba(255,255,255,.28);
    content: "";
}

.nearby__guide li {
    position: relative;
    display: grid;
    min-height: 74px;
    padding-left: 58px;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: start;
}

.nearby__guide li > span {
    position: absolute;
    z-index: 1;
    top: 3px;
    left: 0;
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;
    background: var(--wine);
    color: var(--rose);
    font-size: 8px;
}

.nearby__guide li div {
    display: grid;
    gap: 6px;
}

.nearby__guide strong {
    font-family: var(--display);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 400;
}

.nearby__guide small {
    color: rgba(255,255,255,.52);
    font-size: 9px;
}

.nearby__guide b {
    padding-top: 8px;
    color: var(--rose);
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* Location */
.location {
    padding: var(--section-space) 0;
    background: var(--ivory);
}

.location__layout {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: clamp(40px, 8vw, 130px);
    align-items: center;
}

.location__copy h2 {
    margin: 48px 0 26px;
    font-size: clamp(44px, 4.5vw, 67px);
}

.location__copy address {
    margin-bottom: 50px;
    font-family: var(--display);
    font-size: 21px;
    line-height: 1.55;
}

.location__copy address small {
    color: var(--muted);
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.map-placeholder {
    position: relative;
    height: 560px;
    overflow: hidden;
    border: 1px solid var(--line);
    background-color: #d9d4cd;
    background-image:
        linear-gradient(28deg, transparent 49%, rgba(255,255,255,.5) 50%, transparent 51%),
        linear-gradient(104deg, transparent 49%, rgba(255,255,255,.36) 50%, transparent 51%),
        repeating-linear-gradient(90deg, transparent 0 84px, rgba(53,76,93,.06) 85px 86px),
        repeating-linear-gradient(0deg, transparent 0 66px, rgba(53,76,93,.06) 67px 68px);
}

.map-placeholder::after {
    position: absolute;
    right: -12%;
    bottom: -70px;
    width: 64%;
    height: 230px;
    transform: rotate(-8deg);
    border-radius: 50%;
    background: var(--blue);
    content: "";
    opacity: .8;
}

.map-placeholder__river {
    position: absolute;
    z-index: 1;
    right: 7%;
    bottom: 50px;
    color: rgba(255,255,255,.8);
    font-size: 8px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.map-placeholder__district {
    position: absolute;
    top: 14%;
    right: 12%;
    color: rgba(36,41,45,.45);
    font-family: var(--display);
    font-size: 21px;
    line-height: 1.35;
}

.map-placeholder__road {
    position: absolute;
    height: 1px;
    background: rgba(36,41,45,.3);
    transform-origin: left;
}

.map-placeholder__road--one { top: 28%; left: 5%; width: 70%; transform: rotate(17deg); }
.map-placeholder__road--two { top: 60%; left: 8%; width: 64%; transform: rotate(-20deg); }
.map-placeholder__road--three { top: 13%; left: 45%; width: 55%; transform: rotate(78deg); }

.map-placeholder__pin {
    position: absolute;
    z-index: 2;
    top: 45%;
    left: 42%;
    display: flex;
    gap: 12px;
    align-items: center;
}

.map-placeholder__pin i {
    display: block;
    width: 28px;
    height: 36px;
    border-radius: 18px 18px 18px 2px;
    background: var(--wine);
    transform: rotate(-45deg);
}

.map-placeholder__pin b {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
}

.map-placeholder__caption {
    position: absolute;
    z-index: 2;
    bottom: 18px;
    left: 20px;
    font-size: 8px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* Booking */
.booking {
    padding: var(--section-space) 0;
    background: var(--ink);
    color: var(--chalk);
}

.booking__layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: clamp(60px, 10vw, 160px);
}

.booking__intro h2 {
    margin: 48px 0 32px;
}

.booking__intro > p:not(.section-kicker) {
    max-width: 450px;
    color: rgba(255,255,255,.6);
}

.booking__intro > a {
    display: inline-block;
    margin-top: 38px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line-light);
    font-size: 12px;
}

.booking-form {
    display: grid;
    gap: 30px;
    padding-top: 10px;
}

.booking-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.booking-form label {
    display: grid;
    gap: 10px;
}

.booking-form label > span {
    color: rgba(255,255,255,.48);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.booking-form input,
.booking-form select {
    width: 100%;
    height: 54px;
    padding: 0 0 4px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.34);
    border-radius: 0;
    outline: none;
    background: transparent;
    color: #fff;
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: var(--clay);
}

.booking-form input::placeholder {
    color: rgba(255,255,255,.35);
}

.booking-form select option {
    background: var(--ink);
}

.booking-form .button {
    width: fit-content;
    margin-top: 14px;
    border: 0;
}

.booking-form__note {
    max-width: 520px;
    color: rgba(255,255,255,.38);
    font-size: 9px;
}

/* Footer */
.site-footer {
    padding: 70px 0 24px;
    background: #191d20;
    color: var(--chalk);
}

.site-footer__top,
.site-footer__bottom {
    display: grid;
    width: var(--page);
    margin-inline: auto;
}

.site-footer__top {
    padding-bottom: 70px;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
}

.brand--footer .brand__mark {
    border-color: var(--chalk);
}

.site-footer__top > p {
    color: rgba(255,255,255,.5);
    font-family: var(--display);
    font-size: 18px;
}

.site-footer__top address {
    display: grid;
    gap: 8px;
    justify-self: end;
    font-family: var(--display);
    font-size: 21px;
    text-align: right;
}

.site-footer__bottom {
    padding-top: 18px;
    grid-template-columns: 1fr 2fr auto;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.36);
    font-size: 8px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.site-footer__bottom a {
    color: rgba(255,255,255,.7);
}

/* Motion */
.js .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.js .reveal--image {
    transform: translateY(24px) scale(.985);
}

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

/* Tablet */
@media (max-width: 1120px) {
    :root { --page: min(100% - 48px, 1040px); }

    .hero { min-height: auto; }
    .hero__grid { grid-template-rows: auto auto; }
    .hero__intro { grid-column: 1 / 7; }
    .hero__main-photo { grid-column: 7 / 12; }
    .hero__main-photo img { height: 600px; }
    .hero__detail-photo { display: none; }
    .hero__stay-note { grid-column: 1 / 6; }

    .about__story { grid-column: 1 / 6; }
    .about__courtyard { grid-column: 7 / 13; }
    .about__window { grid-column: 1 / 4; margin-top: 30px; }
    .about__quote { grid-column: 5 / 11; }

    .room-viewer { grid-template-columns: 1.45fr 1fr; }
    .room-viewer__image { height: 560px; }
    .room-viewer__content { padding: 42px 32px; }

    .gallery__item--room img { height: 520px; }
    .nearby__photo img { height: 560px; }
}

@media (max-width: 900px) {
    :root { --page: calc(100% - 40px); }

    .site-header__inner { grid-template-columns: 1fr auto; }
    .header-booking { display: none; }
    .menu-toggle {
        position: relative;
        z-index: 3;
        display: grid;
        width: 44px;
        height: 44px;
        padding: 12px 8px;
        align-content: center;
        gap: 7px;
        justify-self: end;
        border: 0;
        background: transparent;
    }
    .menu-toggle > span:not(.sr-only) { display: block; height: 1px; background: currentColor; transition: transform .25s; }
    .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(4px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
    .site-nav {
        position: fixed;
        z-index: 2;
        inset: 0;
        display: flex;
        padding: 130px 28px 50px;
        flex-direction: column;
        gap: 4px;
        visibility: hidden;
        opacity: 0;
        background: var(--ivory);
        transition: opacity .25s, visibility .25s;
    }
    .site-nav.is-open { visibility: visible; opacity: 1; }
    .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 30px; font-weight: 400; text-transform: none; }
    body.menu-open { overflow: hidden; }

    .hero { padding-top: 120px; }
    .hero__grid { grid-template-columns: repeat(8, 1fr); }
    .hero__intro { grid-column: 1 / 6; }
    .hero__main-photo { grid-column: 6 / 9; }
    .hero__main-photo img { height: 520px; border-radius: 150px 150px 0 0; }
    .hero__stay-note { grid-column: 1 / 6; }
    .hero__address { display: none; }

    .section-heading,
    .rooms__heading,
    .nearby__heading { grid-template-columns: 1fr; }
    .section-heading .section-kicker,
    .rooms__heading .section-kicker,
    .nearby__heading .section-kicker { margin-bottom: 22px; }

    .about__layout { grid-template-columns: repeat(8, 1fr); }
    .about__story { grid-column: 1 / 6; }
    .about__courtyard { grid-column: 6 / 9; margin-top: 90px; }
    .about__courtyard img { height: 470px; }
    .about__window { grid-column: 1 / 4; }
    .about__quote { grid-column: 4 / 9; padding-left: 0; }

    .rooms__heading > div { display: block; }
    .rooms__heading > div > p { margin-top: 24px; }
    .room-viewer { grid-template-columns: 1fr; }
    .room-viewer__image { height: 500px; }
    .room-viewer__content { min-height: 530px; border-top: 1px solid var(--line-light); border-left: 0; }
    .room-selector__item { grid-template-columns: 30px 1fr; padding: 20px 12px; }

    .section-heading--split { grid-template-columns: 1fr 1fr; }
    .section-heading--split .section-kicker { grid-column: 1 / 3; }
    .gallery__collage { grid-template-columns: repeat(8, 1fr); }
    .gallery__item--room { grid-column: 1 / 6; }
    .gallery__item--breakfast { grid-column: 6 / 9; }
    .gallery__interlude { grid-column: 1 / 5; }
    .gallery__item--brick { grid-column: 5 / 9; }
    .gallery__item--court { grid-column: 1 / 4; }

    .location__layout,
    .booking__layout { grid-template-columns: 1fr; }
    .comfort__heading { grid-template-columns: 1fr 1fr; }
    .comfort__heading .section-kicker { grid-column: 1 / 3; margin-bottom: 16px; }
    .comfort-plan__photo { width: 50%; }
    .comfort-note { width: 21%; }
    .comfort-plan__arrival { right: 4%; left: 4%; }

    .nearby__layout { grid-template-columns: 1fr; }
    .nearby__photo { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }
    .nearby__photo img { height: 480px; }

    .location__copy { display: grid; grid-template-columns: 1fr 1fr; align-items: end; }
    .location__copy .section-kicker { grid-column: 1 / 3; }
    .location__copy h2 { grid-column: 1; }
    .location__copy address { grid-column: 2; }
    .location__copy .text-link { grid-column: 2; }

    .site-footer__top { grid-template-columns: 1fr 1fr; gap: 50px; }
    .site-footer__top > p { display: none; }
}

@media (max-width: 720px) {
    :root { --page: calc(100% - 32px); --section-space: 84px; }
    body { font-size: 14px; }
    .site-header__inner { height: 74px; }
    .brand__mark { width: 36px; height: 42px; }

    .hero { padding: 106px 0 70px; }
    .hero__grid { display: flex; min-height: 0; flex-direction: column; gap: 34px; }
    .hero__intro { padding-top: 20px; }
    .hero h1 { font-size: clamp(60px, 21vw, 94px); }
    .hero h1 span { left: 28px; }
    .hero__lead { margin: 34px 0 26px; }
    .hero__actions { flex-wrap: wrap; gap: 20px 28px; }
    .hero__main-photo { width: calc(100% - 42px); margin-left: auto; order: 2; }
    .hero__main-photo img { height: 520px; border-radius: 170px 170px 0 0; }
    .hero__stay-note { width: 100%; order: 3; grid-template-columns: 70px 1fr; }

    .section-heading h2,
    .rooms__heading h2,
    .comfort__heading h2,
    .nearby__heading h2,
    .location__copy h2,
    .booking__intro h2 { font-size: clamp(39px, 12vw, 56px); }

    .about__layout { display: flex; flex-direction: column; }
    .about__story { order: 1; }
    .about__courtyard { width: calc(100% - 34px); margin: 38px 0 0 auto; order: 2; }
    .about__courtyard img { height: 390px; }
    .about__window { width: 62%; margin: 24px 0 0; order: 3; }
    .about__window img { height: 280px; }
    .about__quote { padding: 50px 0 0 30px; order: 4; }
    .about__facts dd { font-size: 7px; }

    .room-viewer__image { height: 390px; }
    .room-viewer__content { min-height: 520px; padding: 36px 22px; }
    .room-viewer__content h3 { font-size: 40px; }
    .room-selector { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
    .room-selector__item { min-width: 78%; scroll-snap-align: start; }
    .room-viewer__price strong { font-size: 29px; }

    .section-heading--split { display: block; }
    .section-heading--split h2 { margin: 28px 0; }
    .gallery__collage { display: flex; flex-direction: column; gap: 45px; }
    .gallery__item--room { width: 90%; }
    .gallery__item--room img { height: 440px; }
    .gallery__item--breakfast { width: 68%; margin: 0 0 0 auto; }
    .gallery__item--breakfast img { height: 270px; }
    .gallery__interlude { padding: 30px 18px; }
    .gallery__item--brick { margin: 0; }
    .gallery__item--brick img { height: 310px; }
    .gallery__item--court { width: 65%; margin: 0; }
    .gallery__item--court img { height: 330px; }

    .comfort__heading { display: block; margin-bottom: 58px; }
    .comfort__heading h2 { margin: 28px 0 22px; }
    .comfort-plan { display: grid; min-height: 0; gap: 32px; }
    .comfort-plan::before,
    .comfort-plan::after { display: none; }
    .comfort-plan__photo { position: relative; top: auto; left: auto; width: calc(100% - 28px); margin-left: auto; transform: none; }
    .comfort-plan__photo img { height: 470px; }
    .comfort-plan__notes { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 20px; }
    .comfort-note { position: relative; top: auto; right: auto; left: auto; width: auto; }
    .comfort-note::before { display: none; }
    .comfort-note dt { font-size: 20px; }
    .comfort-plan__arrival { position: relative; right: auto; bottom: auto; left: auto; grid-template-columns: 1fr; gap: 18px; padding: 26px; }

    .nearby__photo { display: block; }
    .nearby__photo img { height: 440px; }
    .nearby__guide li { grid-template-columns: 1fr; padding-left: 52px; }
    .nearby__guide li b { display: none; }

    .location__copy { display: block; }
    .location__copy address { margin: 28px 0 38px; }
    .map-placeholder { height: 430px; }

    .booking-form__row { grid-template-columns: 1fr; }
    .booking-form .button { width: 100%; }

    .site-footer__top { grid-template-columns: 1fr; }
    .site-footer__top address { justify-self: start; text-align: left; }
    .site-footer__bottom { grid-template-columns: 1fr auto; }
    .site-footer__bottom p:nth-child(2) { display: none; }
}

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