.demo-el-descanso {
    --eda-ink: #2c241d;
    --eda-brown: #4b3527;
    --eda-wine: #6d4634;
    --eda-clay: #a78167;
    --eda-sand: #d9c7b5;
    --eda-cream: #f2ede6;
    --eda-paper: #fbf8f3;
    --eda-sage: #7d8375;
    --eda-line: rgba(75, 53, 39, .18);
    --eda-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
    --eda-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--eda-cream);
    color: var(--eda-ink);
}

.demo-el-descanso .site-header,
.demo-el-descanso .site-footer {
    display: none;
}

.demo-el-descanso .landing-wrap,
.demo-el-descanso .eda-page {
    background: var(--eda-paper);
}

.demo-el-descanso .landing-wrap {
    overflow: visible;
}

.eda-page {
    min-width: 0;
    overflow: hidden;
    color: var(--eda-ink);
    font-family: var(--eda-sans);
}

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

.eda-page img {
    display: block;
    width: 100%;
}

.eda-page button,
.eda-page input,
.eda-page select {
    font: inherit;
}

.eda-page a {
    color: inherit;
    text-decoration: none;
}

.eda-shell {
    width: min(1240px, calc(100% - 80px));
    margin: 0 auto;
}

.eda-section {
    padding: 126px 0;
}

.eda-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;
}

.eda-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    transform: translateY(-160%);
    padding: 12px 18px;
    background: var(--eda-paper);
    color: var(--eda-ink);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}

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

.eda-kicker {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, .76);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .34em;
    text-transform: uppercase;
}

.eda-kicker--ink {
    color: var(--eda-wine);
}

.eda-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 70;
    display: grid;
    width: 100%;
    min-height: 96px;
    grid-template-columns: minmax(235px, 1fr) auto minmax(120px, 1fr);
    align-items: center;
    gap: 28px;
    padding: 16px clamp(24px, 4vw, 72px);
    color: #fff;
    transition: min-height .3s ease, color .3s ease, background .3s ease, box-shadow .3s ease;
}

.eda-header::after {
    position: absolute;
    right: clamp(24px, 4vw, 72px);
    bottom: 0;
    left: clamp(24px, 4vw, 72px);
    height: 1px;
    background: rgba(255, 255, 255, .25);
    content: "";
}

.eda-header.is-scrolled {
    min-height: 76px;
    background: rgba(251, 248, 243, .95);
    color: var(--eda-ink);
    box-shadow: 0 12px 45px rgba(45, 34, 25, .1);
    backdrop-filter: blur(18px);
}

.eda-header.is-scrolled::after {
    background: var(--eda-line);
}

.eda-logo {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 12px;
}

.eda-logo__mark {
    width: 50px;
    height: 40px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.eda-logo__text {
    display: grid;
    line-height: 1;
}

.eda-logo__text strong {
    font-family: var(--eda-serif);
    font-size: 25px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -.02em;
}

.eda-logo__text small {
    justify-self: center;
    margin-top: 5px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
}

.eda-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2.5vw, 40px);
}

.eda-nav a {
    position: relative;
    padding: 12px 0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.eda-nav a::after {
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    background: currentColor;
    content: "";
    transform-origin: right;
    transition: transform .25s ease;
}

.eda-nav a:hover::after,
.eda-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.eda-header__book {
    justify-self: end;
    min-width: 126px;
    min-height: 43px;
    border: 1px solid rgba(255, 255, 255, .6);
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.eda-header__book:hover,
.eda-header__book:focus-visible {
    background: #fff;
    color: var(--eda-ink);
}

.eda-header.is-scrolled .eda-header__book {
    border-color: var(--eda-brown);
}

.eda-header.is-scrolled .eda-header__book:hover,
.eda-header.is-scrolled .eda-header__book:focus-visible {
    background: var(--eda-brown);
    color: #fff;
}

.eda-menu-toggle {
    display: none;
}

.eda-hero {
    position: relative;
    display: grid;
    min-height: 860px;
    height: 100svh;
    place-items: center;
    overflow: hidden;
    background: #392b22;
    color: #fff;
}

.eda-hero__media,
.eda-hero__veil {
    position: absolute;
    inset: 0;
}

.eda-hero__media img {
    height: 100%;
    object-fit: cover;
    object-position: 52% center;
    animation: edaHeroDrift 18s ease-out both;
}

.eda-hero__veil {
    background:
        linear-gradient(90deg, rgba(20, 14, 10, .63), rgba(20, 14, 10, .12) 60%, rgba(20, 14, 10, .28)),
        linear-gradient(0deg, rgba(20, 14, 10, .42), transparent 42%, rgba(20, 14, 10, .14));
}

.eda-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 70px;
}

.eda-hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: var(--eda-serif);
    font-size: clamp(66px, 8vw, 124px);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .82;
    text-wrap: balance;
}

.eda-hero h1 em,
.eda-intro h2 em,
.eda-stay h2 em,
.eda-story h2 em,
.eda-place h2 em,
.eda-booking h2 em {
    font-weight: 400;
}

.eda-hero__lead {
    max-width: 520px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, .82);
    font-family: var(--eda-serif);
    font-size: clamp(21px, 2vw, 28px);
    line-height: 1.42;
}

.eda-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

.eda-btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    padding: 14px 24px;
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.eda-btn:hover,
.eda-btn:focus-visible {
    transform: translateY(-2px);
}

.eda-btn--light {
    background: var(--eda-paper);
    color: var(--eda-ink);
}

.eda-btn--light:hover,
.eda-btn--light:focus-visible {
    background: #fff;
}

.eda-btn--outline {
    border-color: rgba(255, 255, 255, .62);
    color: #fff;
}

.eda-btn--outline:hover,
.eda-btn--outline:focus-visible {
    background: rgba(255, 255, 255, .12);
}

.eda-scroll {
    position: absolute;
    right: clamp(30px, 5vw, 80px);
    bottom: 52px;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .72);
}

.eda-scroll span {
    writing-mode: vertical-rl;
    font-size: 9px;
    letter-spacing: .3em;
    text-transform: uppercase;
}

.eda-scroll i {
    width: 1px;
    height: 54px;
    overflow: hidden;
    background: rgba(255, 255, 255, .28);
}

.eda-scroll i::after {
    display: block;
    width: 1px;
    height: 24px;
    transform: translateY(-24px);
    background: #fff;
    content: "";
    animation: edaScroll 2s ease-in-out infinite;
}

.eda-quick {
    position: relative;
    z-index: 5;
    width: min(1120px, calc(100% - 80px));
    margin: -36px auto 0;
    background: var(--eda-paper);
    box-shadow: 0 28px 80px rgba(44, 36, 29, .16);
}

.eda-quick__form {
    display: grid;
    min-height: 112px;
    grid-template-columns: repeat(3, 1fr) 1.3fr;
    align-items: stretch;
}

.eda-quick label,
.eda-booking__form label,
.eda-dialog__form label {
    display: grid;
    align-content: center;
    gap: 7px;
}

.eda-quick label {
    border-right: 1px solid var(--eda-line);
    padding: 20px 28px;
}

.eda-quick label span,
.eda-booking__form label span,
.eda-dialog__form label span {
    color: var(--eda-wine);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eda-quick input,
.eda-quick select,
.eda-booking__form input,
.eda-booking__form select,
.eda-dialog__form input,
.eda-dialog__form select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--eda-ink);
    font-family: var(--eda-serif);
    font-size: 17px;
}

.eda-quick input:focus,
.eda-quick select:focus,
.eda-booking__form input:focus,
.eda-booking__form select:focus,
.eda-dialog__form input:focus,
.eda-dialog__form select:focus {
    box-shadow: 0 2px 0 var(--eda-wine);
}

.eda-quick button,
.eda-booking__form button,
.eda-dialog__form button {
    border: 0;
    background: var(--eda-brown);
    color: #fff;
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: background .2s ease;
}

.eda-quick button:hover,
.eda-quick button:focus-visible,
.eda-booking__form button:hover,
.eda-booking__form button:focus-visible,
.eda-dialog__form button:hover,
.eda-dialog__form button:focus-visible {
    background: var(--eda-wine);
}

.eda-quick button span,
.eda-booking__form button span,
.eda-dialog__form button span {
    margin-left: 8px;
    font-size: 17px;
}

.eda-intro {
    padding-top: 156px;
    background: var(--eda-paper);
}

.eda-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(440px, 1.12fr);
    align-items: center;
    gap: clamp(70px, 9vw, 150px);
}

.eda-intro__copy {
    padding-left: clamp(0px, 3vw, 46px);
}

.eda-intro h2,
.eda-stay h2,
.eda-story h2,
.eda-place h2,
.eda-booking h2 {
    margin: 0;
    font-family: var(--eda-serif);
    font-size: clamp(46px, 5.6vw, 82px);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .98;
}

.eda-intro__lead {
    margin-top: 34px;
    color: var(--eda-brown);
    font-family: var(--eda-serif);
    font-size: 22px;
    line-height: 1.55;
}

.eda-intro__copy > p:not(.eda-kicker):not(.eda-intro__lead) {
    margin-top: 20px;
    color: #6e635b;
    font-size: 15px;
    line-height: 1.9;
}

.eda-text-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
    border-bottom: 1px solid var(--eda-ink);
    padding-bottom: 7px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eda-intro__visual {
    position: relative;
    min-height: 680px;
}

.eda-intro__photo {
    position: absolute;
    inset: 0 7% 0 9%;
    margin: 0;
    overflow: hidden;
}

.eda-intro__photo img {
    height: 100%;
    object-fit: cover;
}

.eda-intro__brand {
    position: absolute;
    right: 0;
    bottom: 50px;
    width: 43%;
    margin: 0;
    border: 12px solid var(--eda-paper);
    box-shadow: 0 22px 55px rgba(44, 36, 29, .18);
}

.eda-intro__note {
    position: absolute;
    top: 70px;
    left: 0;
    transform: rotate(-90deg) translateX(-100%);
    transform-origin: left top;
    color: var(--eda-wine);
    font-family: var(--eda-serif);
    font-size: 15px;
    font-style: italic;
    line-height: 1.3;
}

.eda-pillars {
    border-top: 1px solid var(--eda-line);
    border-bottom: 1px solid var(--eda-line);
    background: var(--eda-cream);
}

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

.eda-pillar {
    position: relative;
    min-height: 310px;
    border-right: 1px solid var(--eda-line);
    padding: 54px 38px 46px;
    transition: background .25s ease, color .25s ease;
}

.eda-pillar:first-child {
    border-left: 1px solid var(--eda-line);
}

.eda-pillar > span {
    color: var(--eda-clay);
    font-family: var(--eda-serif);
    font-size: 13px;
}

.eda-pillar h3 {
    margin: 38px 0 15px;
    font-family: var(--eda-serif);
    font-size: 31px;
    font-weight: 400;
}

.eda-pillar p {
    margin: 0;
    color: #73675e;
    font-size: 13px;
    line-height: 1.75;
}

.eda-pillar i {
    position: absolute;
    right: 34px;
    bottom: 35px;
    font-size: 19px;
    font-style: normal;
    transition: transform .2s ease;
}

.eda-pillar:hover,
.eda-pillar:focus-visible {
    background: var(--eda-brown);
    color: #fff;
}

.eda-pillar:hover p,
.eda-pillar:focus-visible p {
    color: rgba(255, 255, 255, .72);
}

.eda-pillar:hover i,
.eda-pillar:focus-visible i {
    transform: translateX(6px);
}

.eda-stay {
    background: var(--eda-paper);
}

.eda-stay__head {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 68px;
}

.eda-stay__head > p {
    max-width: 440px;
    margin: 0 0 8px;
    color: #6e635b;
    font-size: 15px;
    line-height: 1.9;
}

.eda-gallery {
    display: grid;
    height: 690px;
    grid-template-columns: 1.28fr .8fr .78fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.eda-gallery figure {
    margin: 0;
    overflow: hidden;
    background: #ddd2c7;
}

.eda-gallery figure:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.eda-gallery__wide {
    grid-row: 1 / 3;
}

.eda-gallery__tall {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

.eda-gallery img {
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.eda-gallery figure:hover img {
    transform: scale(1.035);
}

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

.eda-stay__facts > div {
    display: flex;
    min-height: 102px;
    align-items: center;
    gap: 12px;
    border-right: 1px solid var(--eda-line);
    padding: 20px 28px;
}

.eda-stay__facts strong {
    color: var(--eda-wine);
    font-family: var(--eda-serif);
    font-size: 34px;
    font-weight: 400;
}

.eda-stay__facts span {
    color: #6e635b;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eda-stay__facts button {
    border: 0;
    background: var(--eda-brown);
    color: #fff;
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eda-stay__facts button:hover,
.eda-stay__facts button:focus-visible {
    background: var(--eda-wine);
}

.eda-stay__facts button span {
    margin-left: 12px;
    color: #fff;
    font-size: 18px;
}

.eda-story {
    background: var(--eda-ink);
    color: #fff;
}

.eda-story__grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    align-items: center;
    gap: clamp(70px, 9vw, 150px);
}

.eda-story__copy > p:not(.eda-kicker) {
    margin: 32px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.9;
}

.eda-story blockquote {
    margin: 42px 0 0;
    border-left: 1px solid var(--eda-clay);
    padding-left: 25px;
    color: var(--eda-sand);
    font-family: var(--eda-serif);
    font-size: 20px;
    font-style: italic;
    line-height: 1.5;
}

.eda-story__before-after {
    display: grid;
    height: 680px;
    grid-template-columns: .76fr 1.24fr;
    gap: 8px;
}

.eda-story__before-after figure {
    position: relative;
    margin: 0;
    overflow: hidden;
}

.eda-story__before-after img {
    height: 100%;
    object-fit: cover;
}

.eda-story__before-after figure:first-child img {
    filter: saturate(.55) contrast(.95);
}

.eda-story__before-after figcaption {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 12px 14px;
    background: rgba(27, 21, 17, .72);
    color: #fff;
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.eda-experience {
    position: relative;
    display: grid;
    min-height: 790px;
    place-items: center;
    overflow: hidden;
    color: #fff;
}

.eda-experience__media,
.eda-experience__veil {
    position: absolute;
    inset: 0;
}

.eda-experience__media img {
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.eda-experience__veil {
    background: linear-gradient(90deg, rgba(28, 20, 15, .75), rgba(28, 20, 15, .3) 60%, rgba(28, 20, 15, .1));
}

.eda-experience__content {
    position: relative;
    z-index: 1;
}

.eda-experience h2 {
    max-width: 650px;
    margin: 0;
    font-family: var(--eda-serif);
    font-size: clamp(62px, 8vw, 112px);
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: .92;
}

.eda-experience__content > p:not(.eda-kicker) {
    max-width: 440px;
    margin: 25px 0 0;
    font-family: var(--eda-serif);
    font-size: 26px;
    line-height: 1.5;
}

.eda-experience__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin: 36px 0;
}

.eda-experience__list span {
    border-bottom: 1px solid rgba(255, 255, 255, .45);
    padding: 0 0 7px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eda-place {
    background: var(--eda-cream);
}

.eda-place__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(70px, 10vw, 160px);
}

.eda-place__image {
    position: relative;
    height: 650px;
    margin-left: 8%;
}

.eda-place__image::before {
    position: absolute;
    top: -28px;
    right: 28px;
    bottom: 28px;
    left: -28px;
    border: 1px solid rgba(109, 70, 52, .35);
    content: "";
}

.eda-place__image img {
    position: relative;
    height: 100%;
    object-fit: cover;
}

.eda-place__image span {
    position: absolute;
    right: -30px;
    bottom: 36px;
    padding: 22px 24px;
    background: var(--eda-paper);
    color: var(--eda-wine);
    font-family: var(--eda-serif);
    font-size: 18px;
    font-style: italic;
    line-height: 1.35;
    box-shadow: 0 18px 45px rgba(44, 36, 29, .13);
}

.eda-place__copy > p:not(.eda-kicker) {
    max-width: 500px;
    margin: 34px 0 0;
    color: #6e635b;
    font-size: 15px;
    line-height: 1.9;
}

.eda-quote {
    padding: 100px 0;
    background: var(--eda-paper);
    text-align: center;
}

.eda-quote p {
    margin: 0;
    font-family: var(--eda-serif);
    font-size: clamp(35px, 4.4vw, 62px);
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1.2;
}

.eda-quote span {
    display: inline-block;
    margin-top: 34px;
    color: var(--eda-wine);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
}

.eda-quote span::before {
    display: block;
    width: 36px;
    height: 1px;
    margin: 0 auto 22px;
    background: var(--eda-wine);
    content: "";
}

.eda-booking {
    padding: 116px 0;
    background: var(--eda-brown);
    color: #fff;
}

.eda-booking__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: clamp(70px, 10vw, 160px);
}

.eda-booking__copy > p:not(.eda-kicker) {
    max-width: 510px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
    line-height: 1.85;
}

.eda-booking__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 42px;
    background: var(--eda-paper);
    color: var(--eda-ink);
}

.eda-booking__form label {
    min-height: 82px;
    border-bottom: 1px solid var(--eda-line);
    padding: 10px 0;
}

.eda-booking__form label:nth-child(3) {
    grid-column: 1 / 3;
}

.eda-booking__form button {
    min-height: 58px;
    grid-column: 1 / 3;
    margin-top: 8px;
}

.eda-booking__form small {
    grid-column: 1 / 3;
    color: #7b7067;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

.eda-contact {
    padding: 100px 0;
    background: var(--eda-ink);
    color: #fff;
}

.eda-contact__grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    align-items: start;
    gap: clamp(70px, 10vw, 150px);
}

.eda-logo--footer {
    color: var(--eda-sand);
}

.eda-logo--footer .eda-logo__mark {
    width: 68px;
    height: 55px;
}

.eda-logo--footer .eda-logo__text strong {
    font-size: 35px;
}

.eda-contact__brand > p {
    max-width: 380px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, .56);
    font-family: var(--eda-serif);
    font-size: 21px;
    line-height: 1.6;
}

.eda-contact__actions {
    display: grid;
}

.eda-contact-card {
    position: relative;
    display: grid;
    min-height: 106px;
    align-content: center;
    border-top: 1px solid rgba(255, 255, 255, .16);
    padding: 20px 60px 20px 0;
}

.eda-contact-card:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.eda-contact-card span {
    color: var(--eda-clay);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eda-contact-card strong {
    margin-top: 8px;
    font-family: var(--eda-serif);
    font-size: 25px;
    font-weight: 400;
}

.eda-contact-card i {
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    font-size: 24px;
    font-style: normal;
    transition: transform .2s ease;
}

.eda-contact-card:hover i,
.eda-contact-card:focus-visible i {
    transform: translate(7px, -50%);
}

.eda-contact-card--whatsapp strong {
    color: #b7d9be;
}

.eda-footer {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 26px 0;
    background: var(--eda-ink);
    color: rgba(255, 255, 255, .46);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.eda-footer .eda-shell {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.eda-footer a:hover,
.eda-footer a:focus-visible {
    color: #fff;
}

.eda-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 65;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 0 20px 0 15px;
    background: #2d6b43;
    color: #fff !important;
    box-shadow: 0 16px 40px rgba(29, 66, 42, .35);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease;
}

.eda-whatsapp-float:hover,
.eda-whatsapp-float:focus-visible {
    transform: translateY(-3px);
    background: #245b38;
}

.eda-whatsapp-float svg {
    display: block;
    flex: 0 0 auto;
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.eda-dialog {
    width: min(610px, calc(100% - 32px));
    max-height: calc(100svh - 32px);
    overflow: auto;
    border: 0;
    padding: 52px;
    background: var(--eda-paper);
    color: var(--eda-ink);
    box-shadow: 0 28px 100px rgba(24, 17, 12, .42);
}

.eda-dialog::backdrop {
    background: rgba(28, 21, 16, .72);
    backdrop-filter: blur(6px);
}

.eda-dialog__close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: var(--eda-ink);
    cursor: pointer;
    font-family: var(--eda-serif);
    font-size: 34px;
    line-height: 1;
}

.eda-dialog h2 {
    max-width: 470px;
    margin: 0;
    font-family: var(--eda-serif);
    font-size: clamp(38px, 6vw, 56px);
    font-weight: 400;
    letter-spacing: -.03em;
    line-height: 1;
}

.eda-dialog > p:not(.eda-kicker) {
    margin: 22px 0 0;
    color: #70645b;
    line-height: 1.7;
}

.eda-dialog__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.eda-dialog__form label {
    min-height: 76px;
    border-bottom: 1px solid var(--eda-line);
    padding: 8px 0;
}

.eda-dialog__form label:nth-child(3),
.eda-dialog__form button {
    grid-column: 1 / 3;
}

.eda-dialog__form button {
    min-height: 58px;
    margin-top: 8px;
}

.eda-dialog > small {
    display: block;
    margin-top: 15px;
    color: #81756c;
    font-size: 11px;
    text-align: center;
}

.eda-js .eda-reveal {
    transform: translateY(26px);
    opacity: 0;
    transition: transform .8s cubic-bezier(.2, .7, .2, 1), opacity .8s ease;
}

.eda-js .eda-reveal.is-visible {
    transform: translateY(0);
    opacity: 1;
}

@keyframes edaHeroDrift {
    from { transform: scale(1.055); }
    to { transform: scale(1); }
}

@keyframes edaScroll {
    0% { transform: translateY(-24px); }
    70%, 100% { transform: translateY(62px); }
}

@media (max-width: 1100px) {
    .eda-shell {
        width: min(100% - 52px, 1240px);
    }

    .eda-header {
        grid-template-columns: 1fr auto;
    }

    .eda-nav {
        display: none;
    }

    .eda-header__book {
        margin-right: 60px;
    }

    .eda-menu-toggle {
        position: absolute;
        right: clamp(24px, 4vw, 72px);
        display: grid;
        width: 42px;
        height: 42px;
        place-content: center;
        gap: 6px;
        border: 0;
        background: transparent;
        color: inherit;
        cursor: pointer;
    }

    .eda-menu-toggle > span:not(.eda-sr-only) {
        display: block;
        width: 23px;
        height: 1px;
        background: currentColor;
        transition: transform .2s ease;
    }

    .eda-header.menu-open .eda-menu-toggle > span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .eda-header.menu-open .eda-menu-toggle > span:nth-child(2) {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .eda-header.menu-open {
        background: var(--eda-paper);
        color: var(--eda-ink);
    }

    .eda-header.menu-open .eda-nav {
        position: fixed;
        top: 76px;
        right: 0;
        left: 0;
        display: grid;
        gap: 0;
        padding: 24px clamp(26px, 5vw, 60px) 34px;
        background: var(--eda-paper);
        box-shadow: 0 30px 45px rgba(44, 36, 29, .14);
    }

    .eda-header.menu-open .eda-nav a {
        border-bottom: 1px solid var(--eda-line);
        padding: 17px 0;
    }

    .eda-header.menu-open .eda-header__book {
        border-color: var(--eda-brown);
    }

    .eda-quick,
    .eda-quick__form {
        width: min(100% - 52px, 1120px);
    }

    .eda-quick__form {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }

    .eda-quick button {
        min-height: 58px;
        grid-column: 1 / 4;
    }

    .eda-intro__grid,
    .eda-story__grid,
    .eda-booking__grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .eda-pillars__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .eda-pillar:nth-child(3) {
        border-left: 1px solid var(--eda-line);
    }

    .eda-pillar:nth-child(-n + 2) {
        border-bottom: 1px solid var(--eda-line);
    }

    .eda-gallery {
        height: 600px;
    }

    .eda-story__before-after {
        height: 600px;
    }

    .eda-contact__grid {
        grid-template-columns: .8fr 1.2fr;
        gap: 60px;
    }
}

@media (max-width: 800px) {
    .eda-section {
        padding: 88px 0;
    }

    .eda-hero {
        min-height: 740px;
    }

    .eda-hero__content {
        padding-top: 20px;
    }

    .eda-hero h1 {
        font-size: clamp(58px, 15vw, 88px);
    }

    .eda-scroll {
        display: none;
    }

    .eda-intro__grid,
    .eda-stay__head,
    .eda-story__grid,
    .eda-place__grid,
    .eda-booking__grid,
    .eda-contact__grid {
        grid-template-columns: 1fr;
    }

    .eda-intro__grid,
    .eda-story__grid,
    .eda-place__grid,
    .eda-booking__grid,
    .eda-contact__grid {
        gap: 64px;
    }

    .eda-intro__copy {
        padding-left: 0;
    }

    .eda-intro__visual {
        min-height: 620px;
    }

    .eda-gallery {
        height: auto;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 380px 300px 420px;
    }

    .eda-gallery__wide {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .eda-gallery__tall {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }

    .eda-gallery figure:nth-child(4) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .eda-stay__facts {
        grid-template-columns: repeat(3, 1fr);
    }

    .eda-stay__facts button {
        min-height: 72px;
        grid-column: 1 / 4;
    }

    .eda-story__before-after {
        height: 560px;
    }

    .eda-place__image {
        width: calc(100% - 30px);
        height: 600px;
        margin-left: 30px;
    }

    .eda-contact__brand > p {
        margin-bottom: 0;
    }
}

@media (max-width: 560px) {
    .eda-shell,
    .eda-quick {
        width: calc(100% - 32px);
    }

    .eda-section {
        padding: 72px 0;
    }

    .eda-header {
        min-height: 74px;
        padding: 10px 16px;
    }

    .eda-header::after {
        right: 16px;
        left: 16px;
    }

    .eda-logo {
        gap: 8px;
    }

    .eda-logo__mark {
        width: 39px;
        height: 33px;
    }

    .eda-logo__text strong {
        font-size: 19px;
    }

    .eda-logo__text small {
        font-size: 7px;
    }

    .eda-header__book {
        display: none;
    }

    .eda-menu-toggle {
        right: 13px;
    }

    .eda-header.menu-open .eda-nav {
        top: 74px;
    }

    .eda-hero {
        min-height: 680px;
        height: 100svh;
        align-items: end;
        padding-bottom: 90px;
    }

    .eda-hero__media img {
        object-position: 67% center;
    }

    .eda-hero__veil {
        background: linear-gradient(0deg, rgba(20, 14, 10, .72), rgba(20, 14, 10, .08) 75%, rgba(20, 14, 10, .32));
    }

    .eda-hero h1 {
        font-size: clamp(51px, 16.5vw, 72px);
        line-height: .88;
    }

    .eda-hero__lead {
        margin-top: 23px;
        font-size: 19px;
    }

    .eda-actions {
        display: grid;
        margin-top: 26px;
    }

    .eda-btn {
        width: 100%;
    }

    .eda-quick {
        margin-top: 0;
        box-shadow: none;
    }

    .eda-quick__form {
        width: 100%;
        grid-template-columns: 1fr 1fr;
        padding-top: 18px;
    }

    .eda-quick label {
        border-bottom: 1px solid var(--eda-line);
        padding: 18px 12px;
    }

    .eda-quick label:nth-child(2) {
        border-right: 0;
    }

    .eda-quick label:nth-child(3),
    .eda-quick button {
        grid-column: 1 / 3;
    }

    .eda-quick label:nth-child(3) {
        border-right: 0;
    }

    .eda-intro {
        padding-top: 86px;
    }

    .eda-intro h2,
    .eda-stay h2,
    .eda-story h2,
    .eda-place h2,
    .eda-booking h2 {
        font-size: 44px;
    }

    .eda-intro__lead {
        font-size: 19px;
    }

    .eda-intro__visual {
        min-height: 510px;
    }

    .eda-intro__photo {
        inset: 0 0 0 20px;
    }

    .eda-intro__brand {
        right: -6px;
        bottom: 28px;
        width: 54%;
        border-width: 7px;
    }

    .eda-intro__note {
        display: none;
    }

    .eda-pillars__grid {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .eda-pillar,
    .eda-pillar:first-child,
    .eda-pillar:nth-child(3) {
        min-height: 250px;
        border-right: 0;
        border-bottom: 1px solid var(--eda-line);
        border-left: 0;
        padding: 38px 26px;
    }

    .eda-pillar h3 {
        margin-top: 25px;
    }

    .eda-stay__head {
        gap: 28px;
        margin-bottom: 42px;
    }

    .eda-gallery {
        width: 100%;
        grid-template-columns: 1fr;
        grid-template-rows: 420px 280px 380px 280px;
        gap: 5px;
    }

    .eda-gallery__wide,
    .eda-gallery__tall,
    .eda-gallery figure:nth-child(4) {
        grid-column: 1 / 2;
    }

    .eda-gallery__wide { grid-row: 1 / 2; }
    .eda-gallery figure:nth-child(2) { grid-row: 2 / 3; }
    .eda-gallery__tall { grid-row: 3 / 4; }
    .eda-gallery figure:nth-child(4) { grid-row: 4 / 5; }

    .eda-stay__facts {
        width: 100%;
        grid-template-columns: 1fr;
        border-right: 0;
        border-left: 0;
    }

    .eda-stay__facts > div {
        min-height: 76px;
        border-right: 0;
        border-bottom: 1px solid var(--eda-line);
        padding: 14px 22px;
    }

    .eda-stay__facts button {
        grid-column: 1 / 2;
    }

    .eda-story__before-after {
        height: auto;
        grid-template-columns: 1fr;
    }

    .eda-story__before-after figure:first-child {
        height: 400px;
    }

    .eda-story__before-after figure:last-child {
        height: 310px;
    }

    .eda-experience {
        min-height: 690px;
        align-items: end;
        padding-bottom: 72px;
    }

    .eda-experience__media img {
        object-position: 58% center;
    }

    .eda-experience h2 {
        font-size: 58px;
    }

    .eda-experience__content > p:not(.eda-kicker) {
        font-size: 21px;
    }

    .eda-experience__list {
        display: grid;
        gap: 12px;
    }

    .eda-place__image {
        width: calc(100% - 16px);
        height: 500px;
        margin-left: 16px;
    }

    .eda-place__image::before {
        top: -14px;
        right: 14px;
        bottom: 14px;
        left: -14px;
    }

    .eda-place__image span {
        right: -16px;
        bottom: 22px;
    }

    .eda-quote {
        padding: 74px 0;
    }

    .eda-quote p {
        font-size: 34px;
    }

    .eda-booking {
        padding: 76px 0;
    }

    .eda-booking__form {
        grid-template-columns: 1fr;
        padding: 26px 22px;
    }

    .eda-booking__form label:nth-child(3),
    .eda-booking__form button,
    .eda-booking__form small {
        grid-column: 1 / 2;
    }

    .eda-contact {
        padding: 76px 0;
    }

    .eda-logo--footer .eda-logo__text strong {
        font-size: 29px;
    }

    .eda-contact-card strong {
        font-size: 21px;
    }

    .eda-footer .eda-shell {
        display: grid;
        justify-content: center;
        text-align: center;
    }

    .eda-whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 50px;
        min-height: 50px;
        justify-content: center;
        padding: 0;
    }

    .eda-whatsapp-float span {
        display: none;
    }

    .eda-dialog {
        padding: 48px 22px 28px;
    }

    .eda-dialog__form {
        grid-template-columns: 1fr;
    }

    .eda-dialog__form label:nth-child(3),
    .eda-dialog__form button {
        grid-column: 1 / 2;
    }
}

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

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