:root {
            --navy: #0e2d3d;
            --navy-deep: #092434;
            --navy-soft: #18394a;
            --cream: #f7f1e8;
            --cream-dark: #efe3d2;
            --paper: #fbf7ef;
            --terracotta: #c86f4b;
            --terracotta-dark: #a9583b;
            --gold: #c6a15c;
            --gold-soft: #dac28d;
            --ink: #403a35;
            --muted: #766c63;
            --line: rgba(94, 77, 59, 0.18);
            --white: #fffaf2;
            --shadow: 0 18px 45px rgba(34, 25, 18, 0.18);
            --serif: "Playfair Display", Georgia, serif;
            --sans: "Poppins", Arial, sans-serif;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            color: var(--ink);
            background: var(--paper);
            font-family: var(--sans);
            font-size: 15px;
            line-height: 1.6;
        }

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

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

        button {
            font: inherit;
        }

        .svg-sprite {
            position: absolute;
            width: 0;
            height: 0;
            overflow: hidden;
        }

        .icon {
            display: block;
            width: 1em;
            height: 1em;
            fill: none;
            stroke: currentColor;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 1.8;
        }

        .page {
            overflow: hidden;
            background:
                radial-gradient(circle at 14% 18%, rgba(198, 161, 92, 0.05), transparent 21rem),
                var(--paper);
        }

        .container {
            width: min(1110px, calc(100% - 44px));
            margin: 0 auto;
        }

        .section-kicker {
            margin: 0 0 13px;
            color: var(--terracotta);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.18em;
            line-height: 1;
            text-transform: uppercase;
        }

        .section-title {
            margin: 0;
            color: var(--ink);
            font-family: var(--serif);
            font-size: 36px;
            font-weight: 500;
            line-height: 1.05;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 0 28px;
            border: 1px solid transparent;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
        }

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

        .btn-primary {
            color: var(--white);
            background: var(--terracotta);
            box-shadow: 0 10px 22px rgba(160, 82, 52, 0.28);
        }

        .btn-primary:hover,
        .btn-primary:focus-visible {
            background: var(--terracotta-dark);
        }

        .btn-outline {
            color: var(--terracotta);
            background: rgba(255, 250, 242, 0.7);
            border-color: rgba(201, 111, 75, 0.42);
            box-shadow: none;
        }

        .btn-outline:hover,
        .btn-outline:focus-visible {
            color: var(--white);
            background: var(--terracotta);
            border-color: var(--terracotta);
        }

        .site-header {
            position: absolute;
            inset: 0 0 auto;
            z-index: 5;
            height: 94px;
            color: var(--white);
        }

        .nav-shell {
            width: min(1500px, calc(100% - 70px));
            height: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 330px 1fr 150px;
            align-items: center;
            gap: 24px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            width: fit-content;
            gap: 13px;
            color: var(--gold);
        }

        .brand-mark {
            width: 61px;
            height: 61px;
            flex: 0 0 61px;
        }

        .brand-mark svg {
            width: 100%;
            height: 100%;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.1;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .brand-copy {
            display: grid;
            gap: 1px;
            font-family: var(--serif);
            line-height: 1;
            text-transform: uppercase;
        }

        .brand-copy span {
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.18em;
        }

        .brand-copy strong {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: 0.13em;
        }

        .brand-copy em {
            font-size: 15px;
            font-style: normal;
            font-weight: 700;
            letter-spacing: 0.25em;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 29px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .nav-menu a {
            position: relative;
            display: inline-flex;
            color: rgba(255, 250, 242, 0.9);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .nav-menu a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -13px;
            width: 100%;
            height: 2px;
            opacity: 0;
            background: var(--gold);
            transition: opacity 180ms ease;
        }

        .nav-menu a:hover::after,
        .nav-menu a:focus-visible::after,
        .nav-menu .active a::after {
            opacity: 1;
        }

        .nav-toggle {
            display: none;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            gap: 5px;
            flex-direction: column;
            border: 1px solid rgba(198, 161, 92, 0.44);
            border-radius: 999px;
            color: var(--gold);
            background: rgba(9, 36, 52, 0.78);
            cursor: pointer;
            transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
        }

        .nav-toggle:hover,
        .nav-toggle:focus-visible {
            transform: translateY(-1px);
            border-color: var(--gold);
            background: rgba(9, 36, 52, 0.94);
        }

        .nav-toggle span {
            width: 18px;
            height: 2px;
            border-radius: 999px;
            background: currentColor;
            transition: transform 180ms ease, opacity 180ms ease;
        }

        .nav-toggle.is-open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-toggle.is-open span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.is-open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .header-cta {
            min-height: 46px;
            padding: 0 25px;
            border-radius: 999px;
            font-size: 11px;
            justify-self: end;
        }

        .hero {
            position: relative;
            min-height: 674px;
            color: var(--white);
            background-image:
                linear-gradient(90deg, rgba(8, 13, 17, 0.8) 0%, rgba(8, 13, 17, 0.68) 31%, rgba(8, 13, 17, 0.18) 62%, rgba(8, 13, 17, 0.28) 100%),
                linear-gradient(180deg, rgba(7, 10, 12, 0.38) 0%, rgba(7, 10, 12, 0.08) 45%, rgba(7, 10, 12, 0.72) 100%),
                url("../images/sfondo.jpg");
            background-position: center 49%;
            background-size: cover;
        }

        .hero-inner {
            position: relative;
            min-height: 674px;
        }

        .hero-copy {
            position: absolute;
            top: 196px;
            left: 93px;
            width: 525px;
        }

        .hero h1 {
            margin: 0 0 25px;
            font-family: var(--serif);
            font-size: 59px;
            font-weight: 500;
            line-height: 1.06;
            letter-spacing: 0;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
        }

        .hero p {
            width: 470px;
            margin: 0 0 30px;
            color: rgba(255, 250, 242, 0.92);
            font-size: 15px;
            font-weight: 600;
            line-height: 1.85;
            text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
        }

        .hero-main-cta {
            min-width: 250px;
        }

        .hero-stats {
            position: absolute;
            left: 105px;
            right: 60px;
            bottom: 70px;
            display: grid;
            grid-template-columns: repeat(4, max-content);
            align-items: end;
            gap: 72px;
        }

        .stat {
            display: grid;
            grid-template-columns: 44px auto;
            align-items: center;
            gap: 16px;
            min-width: 150px;
        }

        .stat-icon {
            display: grid;
            width: 44px;
            height: 44px;
            place-items: center;
            color: var(--gold);
            border: 2px solid rgba(198, 161, 92, 0.72);
            border-radius: 50%;
        }

        .stat-icon svg {
            width: 25px;
            height: 25px;
        }

        .stat-value {
            display: block;
            color: var(--white);
            font-family: var(--serif);
            font-size: 25px;
            font-weight: 700;
            line-height: 1;
        }

        .stat-label {
            display: block;
            margin-top: 5px;
            color: rgba(255, 250, 242, 0.86);
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.08em;
            line-height: 1.25;
            text-transform: uppercase;
        }

        .booking-search-section {
            position: relative;
            z-index: 4;
            margin-top: -52px;
            padding: 0 0 32px;
            background:
                linear-gradient(180deg, transparent 0 52px, var(--paper) 52px 100%);
        }

        .booking-quick-card {
            display: grid;
            grid-template-columns: minmax(330px, 1fr) minmax(190px, 0.45fr) minmax(200px, 0.5fr) 214px;
            overflow: hidden;
            min-height: 92px;
            border: 1px solid rgba(198, 161, 92, 0.24);
            border-radius: 8px;
            background:
                radial-gradient(circle at 8% 0%, rgba(198, 161, 92, 0.12), transparent 18rem),
                linear-gradient(180deg, rgba(255, 253, 247, 0.99), rgba(255, 250, 242, 0.97));
            box-shadow: 0 24px 56px rgba(34, 25, 18, 0.18);
            backdrop-filter: blur(14px);
        }

        .booking-quick-field {
            display: grid;
            align-content: center;
            gap: 9px;
            min-width: 0;
            padding: 18px 24px;
            border-right: 1px solid rgba(94, 77, 59, 0.13);
        }

        .booking-field-label {
            color: var(--gold);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .booking-quick-field input,
        .booking-quick-field select {
            width: 100%;
            min-width: 0;
            border: 0;
            color: var(--ink);
            background: transparent;
            font: 800 18px/1.2 var(--sans);
            outline: 0;
            cursor: pointer;
            text-overflow: ellipsis;
        }

        .booking-quick-field input:focus,
        .booking-quick-field select:focus {
            color: var(--terracotta);
        }

        .booking-input-line {
            display: grid;
            grid-template-columns: 24px minmax(0, 1fr);
            align-items: center;
            gap: 13px;
            min-width: 0;
        }

        .booking-mini-icon {
            display: block;
            width: 22px;
            height: 22px;
            color: var(--gold);
            fill: none;
            stroke: currentColor;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 1.8;
        }

        .guest-stepper {
            display: grid;
            grid-template-columns: 38px minmax(78px, 1fr) 38px;
            align-items: center;
            gap: 10px;
            min-width: 0;
            width: 100%;
        }

        .guest-step {
            display: grid;
            flex: 0 0 38px;
            width: 38px;
            height: 38px;
            place-items: center;
            border: 1px solid rgba(198, 161, 92, 0.38);
            border-radius: 50%;
            color: var(--navy);
            background: rgba(255, 250, 242, 0.9);
            cursor: pointer;
            transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, opacity 160ms ease;
        }

        .guest-step:hover,
        .guest-step:focus-visible {
            transform: translateY(-1px);
            border-color: var(--gold);
            background: rgba(198, 161, 92, 0.16);
        }

        .guest-step:disabled {
            cursor: not-allowed;
            opacity: 0.42;
            transform: none;
        }

        .guest-minus,
        .guest-plus {
            position: relative;
            display: block;
            width: 14px;
            height: 14px;
        }

        .guest-minus::before,
        .guest-plus::before,
        .guest-plus::after {
            content: "";
            position: absolute;
            left: 1px;
            right: 1px;
            top: 50%;
            height: 2px;
            border-radius: 999px;
            background: currentColor;
            transform: translateY(-50%);
        }

        .guest-plus::after {
            left: 50%;
            right: auto;
            top: 1px;
            bottom: 1px;
            width: 2px;
            height: auto;
            transform: translateX(-50%);
        }

        .guest-value {
            display: block;
            min-width: 0;
            color: var(--ink);
            font-size: 17px;
            font-weight: 800;
            text-align: center;
            white-space: nowrap;
            line-height: 1.1;
        }

        .booking-quick-submit {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 13px;
            overflow: hidden;
            border: 0;
            color: var(--white);
            background:
                radial-gradient(circle at 24% 20%, rgba(255, 250, 242, 0.2), transparent 34%),
                linear-gradient(135deg, #d9825d 0%, var(--terracotta) 48%, var(--terracotta-dark) 100%);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            cursor: pointer;
            transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
        }

        .booking-quick-submit:hover,
        .booking-quick-submit:focus-visible {
            transform: translateY(-1px);
            filter: brightness(1.04);
            box-shadow: 0 18px 36px rgba(160, 82, 52, 0.24);
        }

        .booking-quick-submit .icon {
            width: 31px;
            height: 31px;
            padding: 8px;
            border: 1px solid rgba(255, 250, 242, 0.34);
            border-radius: 50%;
            background: rgba(255, 250, 242, 0.12);
        }

        .litepicker {
            z-index: 80;
            margin-top: 12px;
            border: 1px solid rgba(198, 161, 92, 0.22);
            border-radius: 8px;
            color: var(--ink);
            background: var(--white);
            box-shadow: 0 24px 58px rgba(34, 25, 18, 0.22);
            font-family: var(--sans);
            overflow: hidden;
        }

        .litepicker .container__months {
            border-radius: 8px;
            background: var(--white);
            box-shadow: none;
        }

        .litepicker .container__months .month-item {
            padding: 16px 16px 14px;
        }

        .litepicker .container__months .month-item-header {
            color: var(--navy);
            font-weight: 800;
        }

        .litepicker .container__months .month-item-weekdays-row > div {
            color: var(--gold);
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
        }

        .litepicker .container__days .day-item {
            border-radius: 7px;
            color: var(--ink);
            font-weight: 600;
            transition: background 140ms ease, color 140ms ease, transform 140ms ease;
        }

        .litepicker .container__days .day-item:hover {
            color: var(--navy);
            background: rgba(198, 161, 92, 0.18);
            box-shadow: none;
        }

        .litepicker .container__days .day-item.is-today {
            color: var(--terracotta);
            box-shadow: inset 0 0 0 1px rgba(200, 111, 75, 0.36);
        }

        .litepicker .container__days .day-item.is-in-range {
            background: rgba(200, 111, 75, 0.14);
            color: var(--ink);
        }

        .litepicker .container__days .day-item.is-start-date,
        .litepicker .container__days .day-item.is-end-date {
            color: var(--white);
            background: var(--terracotta);
            box-shadow: 0 8px 18px rgba(160, 82, 52, 0.22);
        }
        .rooms-section {
            position: relative;
            padding: 52px 0 25px;
            background:
                radial-gradient(circle at 21% 4%, rgba(216, 197, 162, 0.2), transparent 23rem),
                linear-gradient(90deg, rgba(129, 102, 71, 0.035) 1px, transparent 1px),
                linear-gradient(180deg, rgba(129, 102, 71, 0.028) 1px, transparent 1px),
                var(--paper);
            background-size: auto, 34px 34px, 34px 34px, auto;
        }

        .rooms-layout {
            display: grid;
            grid-template-columns: 294px 1fr;
            gap: 66px;
            align-items: start;
        }

        .rooms-intro {
            padding-top: 6px;
        }

        .rooms-intro .section-title {
            font-size: 42px;
            line-height: 1;
        }

        .rooms-intro p {
            width: 265px;
            margin: 25px 0 28px;
            color: #696058;
            font-size: 15px;
            font-weight: 500;
            line-height: 1.8;
        }

        .rooms-intro .btn {
            min-width: 237px;
        }

        .featured-room {
            position: relative;
            height: 300px;
            overflow: visible;
            isolation: isolate;
            border-radius: 9px;
            background: #2c2118;
            box-shadow: var(--shadow);
        }

        .featured-room img {
            display: block;
            width: 100%;
            height: 100%;
            border-radius: inherit;
            object-fit: cover;
            object-position: center 58%;
            opacity: 0.95;
        }

        .featured-room::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            border-radius: inherit;
            background:
                linear-gradient(90deg, rgba(48, 28, 12, 0.68) 0%, rgba(48, 28, 12, 0.28) 42%, rgba(48, 28, 12, 0.03) 75%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.28));
            pointer-events: none;
            transform-origin: center;
            transition: transform 650ms ease, opacity 650ms ease;
        }

        .featured-copy {
            position: absolute;
            z-index: 2;
            left: 52px;
            top: 78px;
            width: 350px;
            color: var(--white);
        }

        .featured-eyebrow {
            display: block;
            margin-bottom: 7px;
            color: var(--gold-soft);
            font-size: 12px;
            font-style: italic;
            font-weight: 500;
            line-height: 1.2;
        }

        .featured-copy h3 {
            margin: 0 0 18px;
            font-family: var(--serif);
            font-size: 36px;
            font-weight: 500;
            line-height: 1.05;
        }

        .featured-copy p {
            width: 285px;
            margin: 0 0 22px;
            color: rgba(255, 250, 242, 0.9);
            font-size: 14px;
            font-weight: 500;
            line-height: 1.75;
        }

        .text-link {
            color: var(--gold);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.13em;
            text-transform: uppercase;
        }

        .slider-arrow {
            position: absolute;
            z-index: 3;
            top: 50%;
            display: grid;
            width: 42px;
            height: 42px;
            place-items: center;
            padding: 0;
            color: #9a7650;
            background: rgba(255, 250, 242, 0.96);
            border: 0;
            border-radius: 50%;
            box-shadow: 0 8px 20px rgba(29, 20, 13, 0.18);
            transform: translateY(-50%);
            cursor: pointer;
        }

        .slider-arrow svg {
            width: 18px;
            height: 18px;
        }

        .slider-arrow.prev {
            left: -18px;
        }

        .slider-arrow.next {
            right: -18px;
        }

        .room-card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 22px;
        }

        .room-tile {
            overflow: hidden;
            min-height: 216px;
            border: 1px solid rgba(80, 62, 43, 0.13);
            border-radius: 8px;
            background: rgba(255, 250, 242, 0.88);
            box-shadow: 0 10px 28px rgba(57, 42, 26, 0.07);
        }

        .room-tile img {
            width: 100%;
            height: 148px;
            object-fit: cover;
        }

        .room-tile:nth-child(1) img {
            object-position: center 46%;
        }

        .room-tile:nth-child(2) img {
            object-position: center 48%;
        }

        .room-tile:nth-child(3) img {
            object-position: 72% 52%;
        }

        .room-tile-body {
            padding: 11px 19px 14px;
        }

        .room-tile h3 {
            margin: 0 0 7px;
            color: #4a423b;
            font-size: 14px;
            font-weight: 700;
            line-height: 1.2;
        }

        .room-tile p {
            margin: 0;
            color: #776e65;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.07em;
            text-transform: uppercase;
        }

        .services-section {
            padding: 35px 0 50px;
            background:
                linear-gradient(90deg, rgba(123, 96, 62, 0.04) 1px, transparent 1px),
                linear-gradient(180deg, rgba(123, 96, 62, 0.035) 1px, transparent 1px),
                #f0e6d8;
            background-size: 36px 36px;
            text-align: center;
        }

        .services-section .section-kicker {
            margin-bottom: 11px;
            color: #a3815b;
        }

        .services-section .section-title {
            font-size: 31px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            margin-top: 37px;
        }

        .service-card {
            position: relative;
            min-height: 154px;
            padding: 0 26px;
            color: #645b53;
        }

        .service-card + .service-card {
            border-left: 1px solid rgba(99, 75, 48, 0.16);
        }

        .service-icon {
            display: grid;
            width: 62px;
            height: 62px;
            margin: 0 auto 14px;
            place-items: center;
            color: var(--gold);
            border: 2px solid rgba(198, 161, 92, 0.48);
            border-radius: 50%;
            background: rgba(255, 250, 242, 0.43);
        }

        .service-icon svg {
            width: 31px;
            height: 31px;
        }

        .service-card h3 {
            margin: 0 0 7px;
            color: #514941;
            font-size: 13px;
            font-weight: 700;
            line-height: 1.25;
        }

        .service-card p {
            margin: 0 auto;
            max-width: 136px;
            font-size: 12px;
            font-weight: 500;
            line-height: 1.55;
        }

        .services-btn {
            min-width: 151px;
            min-height: 35px;
            margin-top: 30px;
            padding: 0 21px;
            color: var(--terracotta);
            background: transparent;
            border-color: rgba(190, 111, 72, 0.52);
            box-shadow: none;
        }

        .testimonials-section {
            position: relative;
            min-height: 312px;
            padding: 23px 0 24px;
            color: var(--white);
            background:
                radial-gradient(circle at 50% 0%, rgba(255, 250, 242, 0.08), transparent 22rem),
                var(--navy-deep);
        }

        .testimonials-section::before,
        .testimonials-section::after {
            content: "";
            position: absolute;
            width: 330px;
            height: 330px;
            opacity: 0.08;
            border: 1px solid rgba(255, 250, 242, 0.55);
            border-radius: 42% 58% 52% 48%;
            transform: rotate(34deg);
        }

        .testimonials-section::before {
            left: -122px;
            top: -58px;
        }

        .testimonials-section::after {
            right: -132px;
            bottom: -116px;
        }

        .testimonial-header {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .testimonial-header .section-kicker {
            margin-bottom: 5px;
            color: rgba(255, 250, 242, 0.72);
        }

        .testimonial-header .section-title {
            color: var(--white);
            font-size: 35px;
            text-shadow: 0 5px 18px rgba(0, 0, 0, 0.32);
        }

        .testimonial-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 19px;
        }

        .review-card {
            min-height: 201px;
            padding: 28px 27px 23px;
            border: 1px solid rgba(198, 161, 92, 0.26);
            border-radius: 8px;
            background: rgba(255, 250, 242, 0.09);
            box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
        }

        .review-author {
            display: grid;
            grid-template-columns: 58px 1fr;
            gap: 16px;
            align-items: center;
            margin-bottom: 17px;
        }

        .review-author img {
            width: 58px;
            height: 58px;
            border: 3px solid rgba(255, 250, 242, 0.88);
            border-radius: 50%;
            object-fit: cover;
        }

        .review-author strong {
            display: block;
            margin-bottom: 4px;
            color: var(--white);
            font-size: 14px;
            font-weight: 700;
        }

        .stars {
            display: block;
            color: #e8bd35;
            font-size: 16px;
            letter-spacing: 0.08em;
            line-height: 1;
        }

        .review-card blockquote {
            margin: 0 0 18px;
            color: rgba(255, 250, 242, 0.9);
            font-size: 14px;
            font-style: italic;
            font-weight: 500;
            line-height: 1.58;
        }

        .review-date {
            color: rgba(198, 161, 92, 0.92);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        .experiences-section {
            position: relative;
            padding: 39px 0 47px;
            background:
                radial-gradient(circle at 96% 86%, rgba(208, 184, 148, 0.16), transparent 23rem),
                var(--paper);
        }

        .experiences-section::before,
        .experiences-section::after {
            content: "";
            position: absolute;
            width: 220px;
            height: 290px;
            opacity: 0.19;
            background:
                radial-gradient(ellipse at 50% 25%, transparent 17%, rgba(169, 142, 102, 0.52) 18%, transparent 19%),
                radial-gradient(ellipse at 36% 46%, transparent 15%, rgba(169, 142, 102, 0.42) 16%, transparent 17%),
                radial-gradient(ellipse at 64% 55%, transparent 15%, rgba(169, 142, 102, 0.42) 16%, transparent 17%);
            background-size: 70px 94px;
        }

        .experiences-section::before {
            left: -12px;
            top: 63px;
            transform: rotate(-20deg);
        }

        .experiences-section::after {
            right: -15px;
            bottom: -7px;
            transform: rotate(18deg);
        }

        .experiences-header {
            position: relative;
            z-index: 1;
            margin-bottom: 22px;
            text-align: center;
        }

        .experiences-header .section-kicker {
            margin-bottom: 8px;
            color: #a3815b;
        }

        .experiences-header .section-title {
            font-size: 35px;
        }

        .experience-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }

        .experience-card {
            display: block;
            position: relative;
            height: 148px;
            overflow: hidden;
            border-radius: 8px;
            background: #352920;
            box-shadow: 0 10px 26px rgba(57, 42, 26, 0.15);
            cursor: pointer;
        }

        .experience-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.86;
            filter: saturate(0.9);
        }

        .experience-card:nth-child(1) img {
            object-position: center;
        }

        .experience-card:nth-child(2) img {
            object-position: center 42%;
        }

        .experience-card:nth-child(3) img {
            object-position: center 53%;
        }

        .experience-card:nth-child(4) img {
            object-position: center 54%;
        }

        .experience-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 18%, rgba(0, 0, 0, 0.76) 100%);
            pointer-events: none;
        }

        .experience-copy {
            position: absolute;
            z-index: 1;
            left: 20px;
            right: 16px;
            bottom: 16px;
            color: var(--white);
            pointer-events: none;
        }

        .experience-card:focus-visible {
            outline: 3px solid var(--gold);
            outline-offset: 4px;
        }

        .experience-copy h3 {
            margin: 0 0 5px;
            font-family: var(--serif);
            font-size: 22px;
            font-weight: 600;
            line-height: 1;
        }

        .experience-copy p {
            margin: 0 0 4px;
            color: rgba(255, 250, 242, 0.86);
            font-size: 13px;
            font-weight: 600;
            line-height: 1.2;
        }

        .experience-copy span {
            color: var(--gold);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .map-cta {
            position: relative;
            z-index: 1;
            min-width: 214px;
            min-height: 36px;
            margin: 30px auto 0;
            color: var(--white);
            background: var(--navy);
            border-color: var(--navy);
            box-shadow: 0 8px 18px rgba(9, 36, 52, 0.22);
        }

        .faq-section {
            padding: 43px 0 40px;
            background:
                linear-gradient(90deg, rgba(115, 88, 56, 0.035) 1px, transparent 1px),
                linear-gradient(180deg, rgba(115, 88, 56, 0.03) 1px, transparent 1px),
                #f1e7d9;
            background-size: 34px 34px;
        }

        .faq-layout {
            display: grid;
            grid-template-columns: 335px 1fr;
            gap: 86px;
            align-items: start;
        }

        .faq-copy {
            padding-top: 16px;
        }

        .faq-copy .section-title {
            font-size: 35px;
            line-height: 1.1;
        }

        .faq-list {
            border-top: 1px solid rgba(93, 76, 55, 0.18);
        }

        .faq-item {
            border-bottom: 1px solid rgba(93, 76, 55, 0.18);
        }

        .faq-question {
            display: flex;
            width: 100%;
            min-height: 48px;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 0;
            color: #5f554b;
            background: transparent;
            border: 0;
            cursor: pointer;
            text-align: left;
        }

        .faq-question span {
            font-size: 14px;
            font-weight: 600;
        }

        .faq-question svg {
            width: 17px;
            height: 17px;
            color: #5f554b;
            transition: transform 160ms ease;
        }

        .faq-answer {
            display: none;
            margin: -4px 0 16px;
            color: #70675e;
            font-size: 13px;
            line-height: 1.6;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        .faq-item.open .faq-question svg {
            transform: rotate(45deg);
        }

        .contact-section {
            display: grid;
            grid-template-columns: minmax(0, 56.2%) minmax(0, 43.8%);
            min-height: 275px;
        }

        .contact-panel {
            position: relative;
            color: var(--white);
            background:
                radial-gradient(circle at 20% 45%, rgba(255, 250, 242, 0.07), transparent 19rem),
                var(--navy-deep);
            overflow: hidden;
        }

        .contact-panel::before {
            content: "";
            position: absolute;
            left: -62px;
            top: -58px;
            width: 375px;
            height: 375px;
            opacity: 0.08;
            border: 1px solid rgba(255, 250, 242, 0.62);
            border-radius: 50%;
            box-shadow:
                62px 38px 0 -20px rgba(255, 250, 242, 0.18),
                112px 98px 0 -32px rgba(255, 250, 242, 0.16);
        }

        .contact-inner {
            position: relative;
            z-index: 1;
            width: min(644px, calc(100% - 44px));
            margin-left: max(22px, calc((100vw - 1110px) / 2));
            padding: 34px 44px 30px 0;
        }

        .contact-inner .section-kicker {
            margin-bottom: 8px;
            color: var(--gold);
        }

        .contact-inner .section-title {
            color: var(--white);
            font-size: 32px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 275px minmax(210px, 1fr);
            gap: 52px;
            margin-top: 25px;
        }

        .contact-info {
            display: grid;
            gap: 13px;
        }

        .contact-row {
            display: grid;
            grid-template-columns: 24px 1fr;
            gap: 12px;
            color: rgba(255, 250, 242, 0.86);
            font-size: 13px;
            font-weight: 500;
            line-height: 1.45;
        }

        .contact-row svg {
            width: 20px;
            height: 20px;
            color: var(--gold);
        }

        .contact-row p {
            margin: 0;
        }

        .contact-actions {
            display: grid;
            gap: 14px;
            align-content: center;
            padding-top: 8px;
        }

        .contact-actions .btn {
            min-height: 47px;
            padding: 0 22px;
        }

        .btn-map {
            color: var(--white);
            background: rgba(12, 42, 59, 0.72);
            border-color: rgba(255, 250, 242, 0.55);
            box-shadow: none;
        }

        .btn-whatsapp {
            color: var(--white);
            background: var(--terracotta);
            border-color: var(--terracotta);
            box-shadow: none;
        }

        .map-panel {
            position: relative;
            min-height: 275px;
            overflow: hidden;
            background:
                linear-gradient(31deg, transparent 0 47%, rgba(192, 173, 142, 0.52) 48% 49%, transparent 50% 100%),
                linear-gradient(154deg, transparent 0 43%, rgba(192, 173, 142, 0.42) 44% 45%, transparent 46% 100%),
                linear-gradient(84deg, transparent 0 62%, rgba(196, 181, 151, 0.4) 63% 64%, transparent 65% 100%),
                #eee7dc;
            background-size: 360px 220px, 420px 260px, 300px 180px, auto;
        }

        .map-panel::before {
            content: "";
            position: absolute;
            inset: 0;
            opacity: 0.72;
            background:
                repeating-linear-gradient(8deg, transparent 0 58px, rgba(215, 204, 180, 0.58) 59px 62px, transparent 63px 119px),
                repeating-linear-gradient(103deg, transparent 0 68px, rgba(222, 211, 188, 0.58) 69px 72px, transparent 73px 134px);
        }

        .map-panel::after {
            content: "";
            position: absolute;
            right: -28px;
            top: 0;
            bottom: 0;
            width: 116px;
            background: #9fcbec;
            border-left: 12px solid rgba(237, 232, 219, 0.88);
            border-radius: 54% 0 0 46%;
        }

        .map-label {
            position: absolute;
            z-index: 2;
            left: 116px;
            top: 103px;
            width: 187px;
            padding: 10px 13px;
            color: #695c50;
            background: rgba(255, 250, 242, 0.93);
            border: 1px solid rgba(174, 143, 96, 0.32);
            box-shadow: 0 8px 18px rgba(91, 74, 53, 0.12);
            font-size: 11px;
            font-weight: 600;
            line-height: 1.35;
        }

        .map-pin {
            position: absolute;
            z-index: 2;
            left: 314px;
            top: 101px;
            display: grid;
            width: 44px;
            height: 44px;
            place-items: center;
            color: var(--terracotta);
        }

        .map-pin svg {
            width: 42px;
            height: 42px;
            fill: currentColor;
            stroke: rgba(255, 250, 242, 0.72);
            stroke-width: 1;
        }

        .map-panel.map-embed {
            min-height: 305px;
            background: var(--cream);
            box-shadow: inset 0 0 0 1px rgba(255, 250, 242, 0.24);
        }

        .map-panel.map-embed::before,
        .map-panel.map-embed::after {
            display: none;
        }

        .map-panel.map-embed iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
            filter: saturate(0.88) contrast(0.98);
        }

        .map-open-link {
            position: absolute;
            right: 18px;
            bottom: 18px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            min-height: 38px;
            padding: 0 16px;
            border: 1px solid rgba(198, 161, 92, 0.42);
            border-radius: 6px;
            color: var(--white);
            background: rgba(9, 36, 52, 0.88);
            box-shadow: 0 10px 24px rgba(9, 36, 52, 0.22);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
        }

        .map-open-link:hover,
        .map-open-link:focus-visible {
            transform: translateY(-2px);
            background: rgba(9, 36, 52, 0.96);
            border-color: var(--gold);
        }

        .site-footer {
            padding: 26px 0 21px;
            background: var(--paper);
            border-top: 1px solid rgba(89, 70, 48, 0.08);
        }

        .footer-top {
            display: grid;
            grid-template-columns: 228px 1fr;
            gap: 50px;
            align-items: end;
        }

        .footer-brand {
            color: var(--gold);
            transform: scale(0.72);
            transform-origin: left bottom;
        }

        .footer-brand .brand-mark {
            width: 58px;
            height: 58px;
            flex-basis: 58px;
        }

        .footer-nav {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 17px;
            padding-bottom: 11px;
        }

        .footer-nav a {
            position: relative;
            color: #706860;
            font-size: 12px;
            font-weight: 500;
            white-space: nowrap;
        }

        .footer-nav a.active::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -15px;
            height: 2px;
            background: var(--terracotta);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-top: 14px;
            padding-top: 15px;
            border-top: 1px solid rgba(89, 70, 48, 0.15);
            color: #867d74;
            font-size: 11px;
            font-weight: 500;
        }

        .legal-links {
            display: flex;
            gap: 26px;
        }

        @keyframes heroDrift {
            from {
                background-position: center 49%;
            }

            to {
                background-position: center 53%;
            }
        }

        @keyframes logoFloat {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-3px) rotate(2deg);
            }
        }

        @keyframes navDrop {
            from {
                opacity: 0;
                transform: translateY(-18px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes navItemRise {
            from {
                opacity: 0;
                transform: translateY(-8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeRise {
            from {
                opacity: 0;
                transform: translateY(18px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes roomPulse {
            0% {
                transform: scale(0.992);
                filter: brightness(0.96);
            }

            100% {
                transform: scale(1);
                filter: brightness(1);
            }
        }

        .hero {
            animation: heroDrift 16s ease-in-out infinite alternate;
        }

        .nav-shell {
            opacity: 0;
            animation: navDrop 680ms ease forwards;
        }

        .nav-menu li,
        .header-cta {
            opacity: 0;
            animation: navItemRise 520ms ease forwards;
        }

        .nav-menu li:nth-child(1) {
            animation-delay: 90ms;
        }

        .nav-menu li:nth-child(2) {
            animation-delay: 145ms;
        }

        .nav-menu li:nth-child(3) {
            animation-delay: 200ms;
        }

        .nav-menu li:nth-child(4) {
            animation-delay: 255ms;
        }

        .nav-menu li:nth-child(5) {
            animation-delay: 310ms;
        }

        .nav-menu li:nth-child(6) {
            animation-delay: 365ms;
        }

        .nav-menu li:nth-child(7) {
            animation-delay: 420ms;
        }

        .header-cta {
            animation-delay: 475ms;
        }

        .nav-menu a::after {
            transform: scaleX(0);
            transform-origin: left;
            transition: opacity 180ms ease, transform 230ms ease;
        }

        .nav-menu a:hover::after,
        .nav-menu a:focus-visible::after,
        .nav-menu .active a::after {
            transform: scaleX(1);
        }

        .brand-mark svg {
            transform-origin: center;
            animation: logoFloat 7s ease-in-out infinite;
        }

        .hero-copy h1,
        .hero-copy p,
        .hero-main-cta,
        .stat {
            opacity: 0;
            animation: fadeRise 760ms ease forwards;
        }

        .hero-copy p {
            animation-delay: 120ms;
        }

        .hero-main-cta {
            animation-delay: 220ms;
        }

        .stat:nth-child(1) {
            animation-delay: 320ms;
        }

        .stat:nth-child(2) {
            animation-delay: 410ms;
        }

        .stat:nth-child(3) {
            animation-delay: 500ms;
        }

        .stat:nth-child(4) {
            animation-delay: 590ms;
        }

        .reveal {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity 680ms ease, transform 680ms ease;
            transition-delay: var(--reveal-delay, 0ms);
        }

        .reveal[data-reveal="left"] {
            transform: translateX(-24px);
        }

        .reveal[data-reveal="right"] {
            transform: translateX(24px);
        }

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

        .btn,
        .slider-arrow,
        .room-tile,
        .featured-room,
        .service-icon,
        .review-card,
        .experience-card,
        .faq-question,
        .contact-actions .btn {
            transition:
                transform 220ms ease,
                box-shadow 220ms ease,
                border-color 220ms ease,
                background-color 220ms ease,
                color 220ms ease,
                opacity 220ms ease;
        }

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

        .slider-arrow:hover,
        .slider-arrow:focus-visible {
            transform: translateY(-50%) scale(1.08);
            box-shadow: 0 12px 25px rgba(29, 20, 13, 0.24);
        }

        .room-tile:hover,
        .review-card:hover,
        .experience-card:hover {
            transform: translateY(-6px);
        }

        .room-tile:hover {
            box-shadow: 0 18px 34px rgba(57, 42, 26, 0.14);
        }

        .room-tile img,
        .experience-card img,
        .featured-room img {
            transition: transform 650ms ease, filter 650ms ease, opacity 650ms ease;
        }

        .room-tile:hover img,
        .experience-card:hover img,
        .featured-room:hover img {
            transform: scale(1.045);
        }

        .featured-room:hover::after {
            transform: scale(1.045);
        }

        .featured-room.room-is-changing img,
        .featured-room.room-is-changing .featured-copy {
            animation: roomPulse 420ms ease;
        }

        .service-card:hover .service-icon {
            transform: translateY(-5px) scale(1.04);
            border-color: rgba(198, 161, 92, 0.78);
            box-shadow: 0 12px 24px rgba(119, 89, 45, 0.13);
        }

        .review-card:hover {
            border-color: rgba(198, 161, 92, 0.58);
            box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
        }

        .experience-card:hover img {
            filter: saturate(1.04) contrast(1.02);
            opacity: 0.96;
        }

        .faq-question:hover {
            color: var(--terracotta);
        }

        .map-pin {
            animation: logoFloat 3.8s ease-in-out infinite;
        }

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

            .reveal {
                opacity: 1;
                transform: none;
            }
        }

        @media (max-width: 1180px) {
            .nav-shell {
                width: min(100% - 38px, 1080px);
                grid-template-columns: 210px 1fr 130px;
                gap: 16px;
            }

            .nav-menu {
                gap: 17px;
            }

            .nav-menu a {
                font-size: 10px;
            }

            .hero-copy {
                left: 35px;
            }

            .hero-stats {
                left: 35px;
                right: 35px;
                gap: 36px;
            }

            .booking-quick-card {
                grid-template-columns: minmax(290px, 1fr) 170px 180px 188px;
            }

            .booking-quick-field {
                padding-inline: 18px;
            }

            .booking-quick-field input,
            .booking-quick-field select,
            .guest-value {
                font-size: 16px;
            }

            .rooms-layout {
                grid-template-columns: 260px 1fr;
                gap: 34px;
            }

            .services-grid {
                grid-template-columns: repeat(3, 1fr);
                row-gap: 34px;
            }

            .service-card:nth-child(4) {
                border-left: 0;
            }

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

            .contact-section {
                grid-template-columns: 1fr;
            }

            .contact-inner {
                width: min(1110px, calc(100% - 44px));
                margin: 0 auto;
                padding-right: 0;
            }

            .map-panel {
                min-height: 260px;
            }
        }

        @media (max-width: 900px) {
            .site-header {
                position: absolute;
                height: auto;
                padding: 18px 0;
            }

            .nav-shell {
                display: flex;
                align-items: center;
                justify-content: space-between;
                position: relative;
                width: calc(100% - 32px);
            }

            .brand-mark {
                width: 52px;
                height: 52px;
                flex-basis: 52px;
            }

            .brand-copy strong {
                font-size: 18px;
            }

            .nav-menu {
                position: absolute;
                top: calc(100% + 12px);
                left: 0;
                right: 0;
                display: flex;
                flex-direction: column;
                gap: 0;
                padding: 10px;
                border: 1px solid rgba(198, 161, 92, 0.24);
                border-radius: 8px;
                background: rgba(9, 36, 52, 0.96);
                box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
                z-index: 40;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transform: translateY(-8px);
                transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
            }

            .nav-menu.is-open {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: translateY(0);
            }

            .nav-menu li {
                width: 100%;
                opacity: 1;
                animation: none;
            }

            .nav-menu a {
                width: 100%;
                justify-content: center;
                padding: 13px 12px;
                color: rgba(255, 250, 242, 0.94);
                font-size: 12px;
            }

            .nav-menu a::after {
                display: none;
            }

            .nav-toggle {
                display: inline-flex;
            }

            .header-cta {
                display: none;
            }

            .hero {
                min-height: 0;
                padding: 138px 0 36px;
            }

            .hero-inner {
                display: flex;
                min-height: 0;
                flex-direction: column;
                gap: 34px;
            }

            .hero-copy {
                position: relative;
                top: auto;
                left: auto;
                width: 100%;
                padding: 0;
            }

            .hero h1 {
                max-width: 560px;
                font-size: clamp(42px, 8vw, 58px);
            }

            .hero p {
                width: min(100%, 500px);
            }

            .hero-stats {
                position: relative;
                left: auto;
                right: auto;
                bottom: auto;
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 20px 24px;
            }

            .booking-search-section {
                margin-top: 0;
                padding: 0 0 34px;
                background: var(--paper);
            }

            .booking-quick-card {
                grid-template-columns: 1fr;
                min-height: 0;
                overflow: visible;
            }

            .booking-quick-field {
                min-height: 78px;
                border-right: 0;
                border-bottom: 1px solid rgba(94, 77, 59, 0.13);
            }

            .guest-stepper {
                width: min(100%, 260px);
            }

            .booking-quick-submit {
                min-height: 70px;
                border-radius: 0 0 8px 8px;
            }

            .rooms-layout,
            .faq-layout,
            .contact-grid,
            .footer-top {
                grid-template-columns: 1fr;
            }

            .rooms-intro p {
                width: min(100%, 520px);
            }

            .featured-room {
                height: 280px;
            }

            .featured-copy {
                left: 30px;
                top: 58px;
            }

            .room-card-grid,
            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .review-card {
                min-height: 0;
            }

            .footer-nav {
                flex-wrap: wrap;
                justify-content: flex-start;
            }
        }

        @media (max-width: 640px) {
            .container {
                width: calc(100% - 32px);
            }

            .btn {
                width: 100%;
            }

            .hero {
                padding: 118px 0 28px;
                background-position: 63% 50%;
            }

            .hero-inner {
                gap: 25px;
            }

            .hero h1 {
                margin-bottom: 20px;
                max-width: 340px;
                font-size: clamp(31px, 10.5vw, 38px);
                line-height: 1.03;
            }

            .hero p {
                width: min(100%, 340px);
                margin-bottom: 24px;
                font-size: 14px;
                line-height: 1.55;
            }

            .hero-main-cta {
                min-width: 0;
            }

            .hero-stats {
                display: grid;
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .booking-search-section {
                padding-bottom: 30px;
            }

            .booking-quick-field {
                padding: 18px;
            }

            .booking-quick-field input,
            .booking-quick-field select,
            .guest-value {
                font-size: 16px;
            }

            .guest-stepper {
                grid-template-columns: 40px minmax(0, 1fr) 40px;
            }

            .guest-step {
                width: 40px;
                height: 40px;
            }

            .stat {
                grid-template-columns: 40px minmax(0, 1fr);
                gap: 13px;
                min-width: 0;
            }

            .stat-icon {
                width: 40px;
                height: 40px;
            }

            .stat-value {
                font-size: 22px;
            }

            .stat-label {
                font-size: 8px;
            }

            .rooms-section {
                padding-top: 42px;
            }

            .rooms-intro .section-title,
            .section-title,
            .faq-copy .section-title,
            .experiences-header .section-title,
            .testimonial-header .section-title {
                font-size: 32px;
            }

            .featured-room {
                height: 360px;
            }

            .featured-copy {
                left: 22px;
                right: 22px;
                top: auto;
                bottom: 28px;
                width: auto;
            }

            .featured-copy h3 {
                font-size: 32px;
            }

            .featured-copy p {
                width: auto;
            }

            .slider-arrow {
                display: none;
            }

            .services-grid,
            .experience-grid {
                grid-template-columns: 1fr;
            }

            .service-card {
                min-height: 0;
                padding: 0 0 24px;
            }

            .service-card + .service-card,
            .service-card:nth-child(4) {
                border-left: 0;
                border-top: 1px solid rgba(99, 75, 48, 0.16);
                padding-top: 24px;
            }

            .map-label {
                left: 22px;
                top: 84px;
            }

            .map-pin {
                left: auto;
                right: 82px;
                top: 95px;
            }

            .footer-bottom {
                display: grid;
            }
        }

.brand-logo-img {
    display: block;
    width: 268px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-brand .brand-logo-img {
    width: 220px;
}

@media (max-width: 780px) {
    .brand-logo-img {
        width: 176px;
    }

    .footer-brand .brand-logo-img {
        width: 158px;
    }
}
