        :root {
            --ink: #1d1f2a;
            --sand: #f3eee4;
            --paper: #f9f5ef;
            --terracotta: #b7654c;
            --gold: #c7a55a;
            --muted: #6f766f;
            --line: #d9d0bf;
            --olive: #677a69;
            --stone: #e0d5c4;
        }

        * {
            box-sizing: border-box
        }

        body {
            margin: 0;
            background: var(--paper);
            color: var(--ink);
            font: 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif
        }

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

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block
        }

        .wrap {
            width: min(1180px, calc(100% - 40px));
            margin: auto
        }

        .top {
            position: absolute;
            z-index: 5;
            left: 0;
            right: 0;
            top: 0;
            padding: 24px 0;
            color: white
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            letter-spacing: .08em
        }

        .mark {
            width: 43px;
            height: 43px;
            border: 1px solid rgba(255, 255, 255, .8);
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-family: Georgia, serif;
            font-size: 23px
        }

        .links {
            display: flex;
            gap: 28px;
            font-size: 14px
        }

        .book {
            padding: 13px 19px;
            background: var(--terracotta);
            color: white;
            font-weight: 700;
            border-radius: 999px
        }

        .hero {
            min-height: 760px;
            position: relative;
            display: flex;
            align-items: flex-end;
            color: white;
            overflow: hidden
        }

        .hero:before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(18, 18, 20, .72) 0%, rgba(23, 26, 30, .56) 28%, rgba(38, 30, 24, .18) 100%), linear-gradient(0deg, rgba(24, 17, 13, .28), transparent 42%);
            z-index: 1
        }

        .hero>img {
            position: absolute;
            inset: 0;
            filter: saturate(.8) contrast(1.08) brightness(.85)
        }

        .hero .content {
            position: relative;
            z-index: 2;

        }

        .eyebrow {
            font-size: 12px;
            letter-spacing: .18em;
            text-transform: uppercase;
            font-weight: 700;
            opacity: .95
        }

        .hero h1 {
            font: 500 clamp(46px, 6vw, 96px)/.92 Georgia, serif;
            margin: 18px 0 18px;
            letter-spacing: -.05em;
            max-width: 620px
        }

        .hero p {
            max-width: 560px;
            font-size: clamp(17px, 1.7vw, 20px);
            color: #f3efe9;
            margin: 0
        }

        .hero-cta {
            display: flex;
            gap: 14px;
            margin-top: 28px;
            align-items: center;
            flex-wrap: wrap
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 22px;
            border-radius: 999px;
            font-weight: 700
        }

        .btn.light {
            background: #f7f1e9;
            color: var(--ink)
        }

        .btn.ghost {
            border: 1px solid rgba(255, 255, 255, .7);
            background: rgba(255, 255, 255, .05)
        }

        .booking {
            position: relative;
            z-index: 3;
            margin-top: -46px
        }

        .booking-inner {
            background: white;
            box-shadow: 0 18px 60px rgba(23, 51, 47, .18);
            display: grid;
            grid-template-columns: 1.4fr 1.4fr .8fr .8fr auto;
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid rgba(24, 28, 34, .12)
        }

        .field {
            padding: 17px 22px;
            border-right: 1px solid #ece7dc
        }

        .field small {
            display: block;
            text-transform: uppercase;
            letter-spacing: .12em;
            color: #75817d;
            font-size: 10px;
            margin-bottom: 5px
        }

        .field strong {
            font-size: 15px
        }

        .search {
            border: 0;
            background: var(--ink);
            color: white;
            padding: 0 30px;
            font-weight: 800;
            font-size: 14px
        }

        .intro {
            padding: 130px 0 90px
        }

        .intro-grid {
            display: grid;
            grid-template-columns: .85fr 1.15fr;
            gap: 90px;
            align-items: center
        }

        .intro h2,
        .section-title {
            font: 500 clamp(42px, 5vw, 72px)/.98 Georgia, serif;
            letter-spacing: -.035em;
            margin: 12px 0 25px
        }

        .intro p {
            color: var(--muted);
            font-size: 18px;
            max-width: 620px
        }

        .local-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--terracotta);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase
        }

        .local-tag:before {
            content: "";
            width: 38px;
            height: 1px;
            background: currentColor
        }

        .mosaic {
            height: 580px;
            display: grid;
            grid-template-columns: 1.2fr .8fr;
            grid-template-rows: 1fr 1fr;
            gap: 12px
        }

        .mosaic img:first-child {
            grid-row: 1/3;
            border-radius: 90px 0 0 0
        }

        .mosaic img:nth-child(2) {
            border-radius: 0 70px 0 0
        }

        .mosaic img:nth-child(3) {
            border-radius: 0 0 70px 0
        }

        .rooms {
            background: var(--sand);
            padding: 100px 0
        }

        .headrow {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
            margin-bottom: 40px
        }

        .headrow p {
            max-width: 470px;
            color: var(--muted)
        }

        .room-grid {
            display: grid;
            grid-template-columns: 1.15fr .85fr;
            gap: 18px
        }

        .room-main {
            /* height: 620px; */
            position: relative;
            overflow: hidden
        }

        .room-main img {
            transition: .4s
        }

        .room-main:hover img {
            transform: scale(1.02)
        }

        .room-card {
            position: absolute;
            left: 26px;
            right: 26px;
            bottom: 26px;
            background: rgba(255, 253, 248, .94);
            padding: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(8px)
        }

        .room-card h3 {
            font: 500 28px Georgia, serif;
            margin: 0 0 5px
        }

        .room-side {
            display: grid;
            grid-template-rows: 1fr 1fr;
            gap: 18px
        }

        .room-side>div {
            position: relative;
            overflow: hidden
        }

        .pill {
            position: absolute;
            left: 18px;
            bottom: 18px;
            background: white;
            padding: 10px 14px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 13px
        }

        .city {
            padding: 110px 0
        }

        .city-grid {
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            gap: 70px;
            align-items: center
        }

        .city-photo {
            height: 700px;
            border-radius: 0 130px 0 0;
            overflow: hidden;
            position: relative
        }

        .city-copy .big {
            font: 500 62px/.98 Georgia, serif;
            margin: 10px 0 24px
        }

        .city-copy p {
            color: var(--muted);
            font-size: 18px
        }

        .distances {
            margin: 34px 0;
            border-top: 1px solid var(--line)
        }

        .distance {
            display: flex;
            justify-content: space-between;
            padding: 16px 0;
            border-bottom: 1px solid var(--line)
        }

        .distance b {
            font-family: Georgia, serif;
            font-size: 19px
        }

        .distance span {
            color: var(--terracotta);
            font-weight: 700
        }

        .dining {
            background: var(--olive);
            color: white;
            padding: 110px 0
        }

        .dining-grid {
            display: grid;
            grid-template-columns: .95fr 1.05fr;
            gap: 80px;
            align-items: center
        }

        .dining-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            height: 610px
        }

        .dining-images img:first-child {
            margin-top: 70px;
            height: 500px
        }

        .dining-copy p {
            color: #c9d1cf;
            max-width: 520px
        }

        .dining .local-tag {
            color: #ddb46a
        }

        .business {
            padding: 110px 0
        }

        .business-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px
        }

        .business-card {
            min-height: 760px;
            position: relative;
            overflow: hidden
        }

        .business-card:after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(10, 31, 28, .8), transparent 65%)
        }

        .business-card .copy {
            position: absolute;
            z-index: 2;
            left: 28px;
            right: 28px;
            bottom: 26px;
            color: white
        }

        .business-card h3 {
            font: 500 34px Georgia, serif;
            margin: 0 0 5px
        }

        .quote {
            padding: 90px 0;
            text-align: center;
            background: #efe3ce
        }

        .quote blockquote {
            font: 500 clamp(30px, 4vw, 54px)/1.12 Georgia, serif;
            max-width: 920px;
            margin: 0 auto 18px
        }

        .quote p {
            color: #6e675e
        }

        .final {
            padding: 90px 0;
            background: var(--terracotta);
            color: white
        }

        .final-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px
        }

        .final h2 {
            font: 500 52px/1 Georgia, serif;
            margin: 0
        }

        .footer {
            background: #0f2724;
            color: #dce4e2;
            padding: 54px 0
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr .8fr .8fr .8fr;
            gap: 50px
        }

        .footer small {
            color: #97aaa5
        }

        .footer h4 {
            font-size: 12px;
            letter-spacing: .13em;
            text-transform: uppercase;
            color: #a9bbb6
        }

        .footer a {
            display: block;
            margin: 7px 0;
            color: #dce4e2
        }

        @media(max-width:850px) {
            .links {
                display: none
            }

            .hero {
                min-height: 720px
            }

            .booking-inner {
                grid-template-columns: 1fr 1fr
            }

            .search {
                min-height: 62px
            }

            .intro-grid,
            .city-grid,
            .dining-grid,
            .room-grid,
            .business-grid,
            .footer-grid {
                grid-template-columns: 1fr
            }

            .mosaic {
                height: 520px
            }

            .room-side {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: none;
                height: 280px
            }

            .city-photo {
                height: 520px
            }

            .dining-images {
                height: 480px
            }

            .final-inner {
                align-items: flex-start;
                flex-direction: column
            }

            .field:nth-child(4) {
                border-right: 0
            }
        }

        /* Inner pages and navigation */
        .brand small {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: .18em
        }

        .menu-toggle {
            display: none;
            background: transparent;
            border: 1px solid currentColor;
            color: inherit;
            padding: 9px 12px;
            cursor: pointer
        }

        .links {
            gap: 15px
        }

        .links a:hover,
        .footer a:hover {
            text-decoration: underline
        }

        .page-hero {
            min-height: 510px
        }

        .page-hero .content {
            padding-bottom: 85px
        }

        .page-hero h1 {
            font-size: clamp(48px, 6vw, 80px)
        }

        .page-section {
            padding-top: 100px;
            padding-bottom: 110px
        }

        .section-heading {
            max-width: 750px;
            margin-bottom: 38px
        }

        .section-heading h2,
        .page-section h2 {
            font: 500 clamp(30px, 4vw, 52px)/1.1 Georgia, serif;
            margin: 12px 0 15px
        }

        .section-heading p,
        .feature-card p,
        .note-box p {
            color: var(--muted)
        }

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

        .feature-grid.three {
            grid-template-columns: repeat(3, minmax(0, 1fr))
        }

        .feature-card {
            background: #fff;
            border: 1px solid var(--line);
            overflow: hidden
        }

        .feature-card img {
            height: 360px
        }

        .feature-card>div {
            padding: 29px
        }

        .feature-card h2 {
            font-size: 34px
        }

        .feature-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
            align-items: center;
        }

        .text-link {
            color: var(--terracotta);
            font-weight: 700;
        }

        .text-link.border {
            border: 1px solid currentColor;
            padding: 9px 12px;
            border-radius: 4px;
        }

          .explore {
            color: var(--muted);
            font-weight: 700
        }

        .note-box {
            margin-top: 32px;
            background: var(--sand);
            padding: 34px
        }

        .note-box h2 {
            font-size: 32px
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px
        }

        .contact-grid .note-box {
            margin: 0
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px
        }

        .gallery-grid figure {
            margin: 0;
            position: relative;
            height: 300px;
            overflow: hidden
        }

        .gallery-grid figcaption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 22px;
            color: white;
            background: linear-gradient(transparent, rgba(0, 0, 0, .65))
        }

        .booking-simple {
            grid-template-columns: 1fr auto;
            align-items: center;
            padding-left: 28px
        }

        .booking-simple small,
        .booking-simple strong {
            display: block
        }

        .booking-simple .search {
            display: grid;
            place-items: center;
            padding: 0 27px
        }

        .room-main {
            display: block
        }

        .room-main .room-card {
            color: var(--ink)
        }

        @media(max-width:1050px) {
            .links {
                gap: 9px;
                font-size: 12px
            }

            .nav {
                gap: 12px
            }
        }

        @media(max-width:850px) {
            .menu-toggle {
                display: block;
                margin-left: auto
            }

            .links {
                display: none;
                position: absolute;
                top: 75px;
                left: 20px;
                right: 20px;
                flex-direction: column;
                background: #17312c;
                padding: 18px;
                gap: 0
            }

            .links.open {
                display: flex
            }

            .links a {
                padding: 10px;
                border-bottom: 1px solid #ffffff25
            }

            .book {
                padding: 10px;
                font-size: 12px
            }

            .feature-grid,
            .feature-grid.three,
            .contact-grid {
                grid-template-columns: 1fr
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr
            }

            .page-hero {
                min-height: 480px
            }

            .page-section {
                padding-top: 65px;
                padding-bottom: 65px
            }
        }

        @media(max-width:540px) {
            .gallery-grid {
                grid-template-columns: 1fr
            }

            .booking-simple {
                grid-template-columns: 1fr;
                padding: 16px;
                gap: 16px
            }

            .booking-simple .search {
                min-height: 55px
            }

            .footer-grid {
                gap: 22px
            }

            .feature-card img {
                height: 260px
            }
        }

        /* Room amenity icons */
        .amenity-row {
            margin: 20px 0 18px;
            padding: 18px 0 0;
            border-top: 1px solid var(--line);
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            color: var(--muted);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .1em;
            text-transform: uppercase
        }

        .amenity {
            display: flex;
            align-items: center;
            gap: 7px
        }

        .amenity-icon {
            width: 18px;
            height: 18px;
            flex: none;
            color: var(--olive);
            opacity: .9
        }

        .amenity-label {
            line-height: 1.2;
            white-space: nowrap
        }

        /* Room detail pages */
        .feature-card>a {
            display: block;
            overflow: hidden
        }

        .feature-card>a img {
            transition: .4s
        }

        .feature-card>a:hover img {
            transform: scale(1.03)
        }

        .feature-card h2 a:hover,
        .room-back:hover {
            text-decoration: underline
        }

        .room-detail {
            display: grid;
            grid-template-columns: 1.3fr .7fr;
            gap: 46px;
            margin-bottom: 78px
        }

        .room-detail-copy h2 {
            font-size: clamp(28px, 3.2vw, 42px);
            max-width: 20ch;
            margin: 12px 0 22px
        }

        .room-detail-copy p {
            color: var(--muted);
            font-size: 18px;
            margin: 0 0 20px
        }

        .room-back {
            display: inline-block;
            margin-top: 8px;
            font-size: 15px
        }

        .room-detail-aside {
            margin: 0
        }

        .room-detail-aside h2 {
            font-size: 24px;
            margin: 0
        }

        .room-notes {
            list-style: none;
            margin: 22px 0 0;
            padding: 0;
            display: grid;
            gap: 9px;
            font-size: 14px;
            color: var(--muted)
        }

        .room-notes li {
            position: relative;
            padding-left: 16px
        }

        .room-notes li:before {
            content: "";
            position: absolute;
            left: 0;
            top: .6em;
            width: 6px;
            height: 1px;
            background: currentColor
        }

        .btn.dark {
            background: var(--ink);
            color: #fff;
            width: 100%;
            margin-top: 26px
        }

        .room-gallery .section-heading {
            max-width: none;
            margin-bottom: 26px
        }

        @media(max-width:1050px) {
            .room-detail {
                grid-template-columns: 1fr;
                gap: 34px
            }

            .room-detail-copy h2 {
                max-width: none
            }
        }