:root {
    --wine: #64140a;
    --wine-dark: #481007;
    --charcoal: #292929;
    --ink: #333333;
    --muted: #6f6f6f;
    --line: #dedbd7;
    --paper: #ffffff;
    --soft: #f5f2ef;
    --header-height: 150px;
    --content: 940px;
    --wide: 1150px;
    --serif: Georgia, "Times New Roman", serif;
    --sans: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--muted);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    z-index: 1000;
    padding: .75rem 1rem;
    background: #fff;
    color: var(--wine);
    font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.notice-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: .55rem 1rem;
    background: #353535;
    color: #fff;
    font-size: .86rem;
}
.notice-bar p { margin: 0; }
.notice-bar button {
    border: 1px solid rgba(255,255,255,.75);
    background: transparent;
    color: #fff;
    padding: .35rem .85rem;
}

.site-header-slot { height: var(--header-height); background: var(--wine); }
.site-header {
    position: relative;
    z-index: 100;
    height: var(--header-height);
    background: var(--wine);
    color: #fff;
    transition: height .28s ease, box-shadow .28s ease;
}
.site-header.is-compact {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    height: 100px;
    box-shadow: 0 5px 24px rgba(0,0,0,.18);
}
.header-inner {
    width: min(var(--wide), calc(100% - 48px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.brand-contact { display: grid; gap: .2rem; align-content: center; }
.brand-name {
    color: #fff;
    font: 700 1.05rem/1.2 var(--serif);
    letter-spacing: .02em;
    text-decoration: none;
    margin-bottom: .15rem;
}
.contact-line {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #fff;
    font: 400 .95rem/1.3 var(--serif);
    text-decoration: none;
}
.contact-line:hover { text-decoration: underline; text-underline-offset: 3px; }
.contact-line svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.contact-phone svg { fill: currentColor; stroke: none; }
.header-actions { display: flex; align-items: center; gap: 1.5rem; }
.header-divider { width: 1px; height: 60px; background: rgba(255,255,255,.62); }
.booking-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-family: var(--serif);
    text-align: center;
    text-decoration: none;
    letter-spacing: .01em;
}
.booking-cta span { font-size: 1rem; font-weight: 700; }
.booking-cta small { margin-top: .15rem; font-size: .68rem; text-transform: uppercase; letter-spacing: .035em; }
.booking-cta:hover span { text-decoration: underline; text-underline-offset: 4px; }
.booking-cta[aria-disabled="true"] { opacity: .65; cursor: not-allowed; }
.menu-toggle {
    display: grid;
    justify-items: center;
    gap: .2rem;
    min-width: 66px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: .75rem;
    letter-spacing: .04em;
}
.menu-bars { display: grid; gap: 6px; width: 44px; }
.menu-bars i { display: block; height: 4px; border-radius: 2px; background: currentColor; }

.menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 180;
    background: rgba(0,0,0,.52);
    opacity: 0;
    transition: opacity .25s ease;
}
.menu-backdrop.is-visible { opacity: 1; }
.offcanvas-menu {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 200;
    width: min(170px, 88vw);
    padding: 5rem 1rem 2rem;
    background: #fff;
    color: var(--ink);
    transform: translateX(-105%);
    transition: transform .3s ease;
    overflow-y: auto;
    box-shadow: 20px 0 50px rgba(0,0,0,.25);
}
.offcanvas-menu.is-open { transform: translateX(0); }
.menu-close {
    position: absolute;
    top: 1.1rem;
    right: .45rem;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    color: var(--wine);
    font: 300 2.5rem/1 var(--sans);
}
.offcanvas-menu ul { list-style: none; padding: 0; margin: 0; }
.offcanvas-menu li { border-top: 1px solid var(--line); }
.offcanvas-menu li:last-child { border-bottom: 1px solid var(--line); }
.offcanvas-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    padding: .5rem;
    color: var(--ink);
    text-decoration: none;
    font-family: var(--sans);
    font-size: 14.67px;
    line-height: 1.25;
    text-align: center;
}
.header-compact .offcanvas-menu li a { min-height: 48px; }
.offcanvas-menu li a[aria-current="page"] { background: #595959; color: #fff; }
.offcanvas-menu li a:hover,
.offcanvas-menu li a:focus-visible { background: var(--wine); color: #fff; }

.hero { position: relative; overflow: hidden; background: #ddd8d2; }
.hero-home { height: max(570px, calc(100vh - var(--header-height))); }
.hero-page { height: 520px; }
.hero-media { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.1s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-media.is-ready .hero-slider-toggle { display: inline-flex; }
.hero-slider-toggle {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 4;
    display: none;
    align-items: center;
    min-height: 40px;
    border: 1px solid rgba(255,255,255,.82);
    background: rgba(72,16,7,.78);
    color: #fff;
    padding: .45rem .75rem;
    font-size: .72rem;
}
.hero-slider-toggle:hover, .hero-slider-toggle:focus-visible { background: var(--wine); }
.hero-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.22)); }
.hero-copy {
    position: absolute;
    z-index: 2;
    inset: auto 1.5rem 11% 1.5rem;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 18px rgba(0,0,0,.45);
}
.hero-copy span { display: block; margin-bottom: .35rem; font: 400 .9rem var(--sans); letter-spacing: .16em; text-transform: uppercase; }
.hero-copy h1 { margin: 0; font: italic 400 clamp(2rem, 4vw, 3.75rem)/1.15 var(--serif); }

.wordmark {
    min-height: 265px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    padding: 3rem 1rem;
    color: var(--wine);
    text-align: center;
}
.wordmark-ornament { font-size: .8rem; color: var(--wine); }
.wordmark strong { font: 700 clamp(1.25rem, 2.5vw, 1.85rem)/1.2 var(--serif); letter-spacing: .08em; }
.wordmark small { color: #818181; font-size: .78rem; letter-spacing: .04em; }

.content-width { width: min(var(--content), calc(100% - 48px)); margin-inline: auto; }
.content-width-wide { width: min(var(--wide), calc(100% - 48px)); margin-inline: auto; }
.image-triptych {
    width: min(var(--wide), calc(100% - 48px));
    margin: 0 auto 6rem;
    display: grid;
    grid-template-columns: 1.13fr 1fr 1.13fr;
    gap: 1rem;
}
.image-triptych figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; background: var(--soft); }
.image-triptych img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.image-triptych figure:hover img { transform: scale(1.035); }

.page-intro { padding: 1rem 0 6rem; text-align: center; }
.page-intro h2 {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    color: var(--wine);
    font: 400 clamp(2rem, 4vw, 3.2rem)/1.15 var(--serif);
}
.page-intro > .rich-copy { max-width: 760px; margin-inline: auto; }
.page-body-copy { margin-top: 2.5rem !important; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.rich-copy p { margin: 0 0 1rem; }
.rich-copy p:last-child { margin-bottom: 0; }
.rich-copy h2, .rich-copy h3, .rich-copy h4 { color: var(--wine); font-family: var(--serif); font-weight: 400; line-height: 1.25; }
.rich-copy h2 { font-size: 1.85rem; }
.rich-copy h3 { font-size: 1.45rem; }
.rich-copy a { color: var(--wine); text-underline-offset: 3px; }
.rich-copy blockquote { margin: 1.5rem 0; padding-left: 1.2rem; border-left: 3px solid var(--wine); font-family: var(--serif); font-style: italic; }
.rich-copy [data-list="bullet"] { list-style-type: disc; }
.rich-copy [data-list="ordered"] { list-style-type: decimal; }
.rich-copy .ql-align-center { text-align: center; }
.rich-copy .ql-align-right { text-align: right; }
.rich-copy .ql-align-justify { text-align: justify; }
.rich-copy .ql-indent-1 { margin-left: 2rem; }
.rich-copy .ql-indent-2 { margin-left: 4rem; }
.rich-copy .ql-indent-3 { margin-left: 6rem; }
.rich-copy .ql-indent-4 { margin-left: 8rem; }
.rich-copy .ql-indent-5 { margin-left: 10rem; }
.rich-copy .ql-indent-6 { margin-left: 12rem; }
.rich-copy .ql-indent-7 { margin-left: 14rem; }
.rich-copy .ql-indent-8 { margin-left: 16rem; }
.ornament-line { display: flex; align-items: center; gap: 1rem; max-width: 310px; margin: 3.2rem auto 1rem; color: var(--wine); }
.ornament-line::before, .ornament-line::after { content: ""; height: 1px; background: var(--line); flex: 1; }
.english-welcome { font: italic 400 1.05rem var(--serif); color: #777; }
.eyebrow { margin: 0 0 .55rem; color: var(--wine); font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.sections-list { padding-bottom: 8rem; }
.content-section {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    min-height: 430px;
    margin-bottom: 5rem;
    background: var(--soft);
}
.content-section.image-right .section-image { order: 2; }
.content-section.image-right .section-copy { order: 1; }
.section-image { min-height: 430px; background: #ddd8d2; overflow: hidden; }
.section-image img { width: 100%; height: 100%; object-fit: cover; }
.section-copy { display: flex; flex-direction: column; justify-content: center; padding: 4rem; }
.section-copy h2 { margin: 0 0 1.2rem; color: var(--wine); font: 400 2.2rem/1.16 var(--serif); }
.text-link { display: inline-block; margin-top: 1.2rem; color: var(--wine); font-weight: 700; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.rooms-list { padding-bottom: 8rem; }
.room-module {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
    margin-bottom: 6rem;
    border-top: 1px solid var(--line);
    padding-top: 4rem;
}
.room-module.image-right .room-image { order: 2; }
.room-module.image-right .room-content { order: 1; }
.room-image { min-height: 500px; background: var(--soft); overflow: hidden; }
.room-image img { width: 100%; height: 100%; object-fit: cover; }
.room-content { padding: 2.5rem 3.5rem; align-self: center; }
.room-content h2 { margin: 0 0 .7rem; color: var(--wine); font: 400 2.35rem/1.15 var(--serif); }
.room-size { margin: 0 0 1rem; font-family: var(--serif); font-style: italic; color: #7a7a7a; }
.room-teaser { color: var(--ink); font-weight: 700; }
.amenities { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .25rem 1rem; padding: 0; margin: 1.5rem 0; list-style: none; font-size: .9rem; }
.amenities li::before { content: "✓"; color: var(--wine); margin-right: .45rem; }
.room-price { color: var(--wine); font: 700 1.7rem var(--serif); }
.room-price span { font: 400 .85rem var(--sans); text-transform: uppercase; letter-spacing: .08em; }
.room-rate-note { color: var(--wine); font-weight: 700; }
.booking-cta-dark { align-items: flex-start; color: var(--wine); text-align: left; }
.rate-list { grid-column: 1 / -1; order: 3; padding: 1.5rem 0 0; }
.rate-row { display: grid; grid-template-columns: 1fr 230px; gap: 2rem; padding: 1.4rem 1.6rem; border-bottom: 1px solid var(--line); background: #faf9f7; }
.rate-row:first-child { border-top: 1px solid var(--line); }
.compact-copy { font-size: .88rem; }
.compact-copy p { margin-top: .25rem; }
.rate-price { text-align: right; color: var(--wine); }
.rate-price strong, .rate-price small { display: block; }

.rates-overview { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; padding-bottom: 8rem; }
.rate-card { background: var(--soft); }
.rate-card > img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.rate-card-body { padding: 2rem; }
.rate-card h2 { margin: 0 0 1rem; color: var(--wine); font: 400 2rem var(--serif); }
.rate-card-line { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-top: 1px solid var(--line); }
.rate-card-line strong { color: var(--wine); text-align: right; }
.rate-card .booking-cta { margin-top: 1.5rem; }

.contact-section { display: grid; grid-template-columns: .78fr 1.22fr; margin-bottom: 8rem; background: var(--soft); }
.contact-details { padding: 4rem; background: var(--wine); color: #fff; }
.contact-details .eyebrow { color: #e8beb5; }
.contact-details h2 { margin: 0 0 1.5rem; color: #fff; font: 400 2.25rem var(--serif); }
.contact-details address { font-style: normal; margin-bottom: 1.2rem; }
.contact-details a { color: #fff; }
.contact-details .text-link { color: #fff; }
.contact-form-wrap { padding: 4rem; }
.contact-form-wrap h2 { margin-top: 0; color: var(--wine); font: 400 2.25rem var(--serif); }
.contact-form { margin-top: 2rem; }
.contact-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.contact-form label { display: grid; gap: .35rem; color: #4a4a4a; font-size: .85rem; font-weight: 700; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #c9c4bf; background: #fff; color: var(--ink); padding: .75rem .85rem; border-radius: 0; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid rgba(100,20,10,.24); border-color: var(--wine); }
.span-two { grid-column: 1 / -1; }
.privacy-check { grid-template-columns: auto 1fr !important; align-items: start; margin: 1.4rem 0; font-weight: 400 !important; }
.privacy-check input { width: 18px; height: 18px; margin-top: .3rem; }
.privacy-label { display: inline; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.button-public {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid var(--wine);
    background: var(--wine);
    color: #fff;
    padding: .75rem 1.35rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .025em;
}
.button-public:hover { background: var(--wine-dark); }

.public-alert { margin-bottom: 2rem; padding: 1rem 1.2rem; border-left: 4px solid #496b4e; background: #edf6ef; color: #2f5134; }
.public-alert-error { border-color: #a92c2c; background: #fff0f0; color: #7b2020; }
.public-alert ul { margin: 0; padding-left: 1.2rem; }
.center-action { padding-bottom: 7rem; text-align: center; }

.site-footer { min-height: 550px; padding: 5rem 1rem 2.5rem; background: var(--wine); color: #fff; text-align: center; }
.footer-inner { width: min(var(--content), 100%); margin: 0 auto; }
.footer-brand { display: grid; justify-items: center; gap: .3rem; }
.footer-brand .wordmark-ornament { color: #fff; }
.footer-brand strong { font: 700 1.45rem var(--serif); letter-spacing: .07em; }
.footer-brand p { margin: .15rem 0; }
.site-footer a { color: #fff; text-underline-offset: 3px; }
.footer-service { margin: 2.25rem auto 1.5rem; }
.footer-service > strong { font-size: .8rem; letter-spacing: .08em; }
.footer-service p { margin: .35rem 0; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; font-size: .75rem; letter-spacing: .06em; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.copyright { margin-top: 1.8rem; font-size: .72rem; opacity: .8; }
.back-to-top {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 90;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 50%;
    background: var(--wine);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .2s ease, transform .2s ease;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

@media (max-width: 1149px) {
    :root { --header-height: 200px; }
    .header-inner { width: min(940px, calc(100% - 60px)); align-items: center; }
    .header-actions { gap: 1rem; }
    .content-width, .content-width-wide, .image-triptych { width: calc(100% - 60px); }
    .site-header.is-compact { height: 100px; }
    .site-footer { min-height: 600px; }
    .section-copy, .room-content, .contact-details, .contact-form-wrap { padding: 3rem; }
}

@media (max-width: 719px) {
    :root { --header-height: 200px; }
    body { font-size: 15px; }
    .header-inner { width: calc(100% - 30px); gap: .75rem; }
    .brand-contact { max-width: 55%; }
    .brand-name { font-size: .9rem; }
    .contact-line { font-size: .78rem; }
    .contact-line svg { width: 19px; height: 19px; }
    .header-actions { margin-left: auto; }
    .header-booking { display: none; }
    .header-divider { display: none; }
    .site-header.is-compact { height: 70px; }
    .site-header.is-compact .contact-line { display: none; }
    .hero-home { height: max(520px, calc(100svh - var(--header-height))); }
    .hero-page { height: 400px; }
    .content-width, .content-width-wide, .image-triptych { width: calc(100% - 30px); }
    .wordmark { min-height: 220px; }
    .image-triptych { grid-template-columns: 1fr; margin-bottom: 4rem; }
    .image-triptych figure { aspect-ratio: 16 / 10; }
    .page-intro { padding-bottom: 4rem; }
    .content-section,
    .room-module,
    .contact-section { grid-template-columns: 1fr; }
    .content-section.image-right .section-image,
    .room-module.image-right .room-image { order: 1; }
    .content-section.image-right .section-copy,
    .room-module.image-right .room-content { order: 2; }
    .section-image, .room-image { min-height: 360px; }
    .section-copy, .room-content, .contact-details, .contact-form-wrap { padding: 2.25rem; }
    .room-module { margin-bottom: 4rem; padding-top: 3rem; }
    .rate-row { grid-template-columns: 1fr; gap: .65rem; }
    .rate-price { text-align: left; }
    .rates-overview { grid-template-columns: 1fr; }
    .contact-form-grid { grid-template-columns: 1fr; }
    .span-two { grid-column: auto; }
    .notice-bar { align-items: flex-start; }
    .notice-bar button { flex: 0 0 auto; }
    .site-footer { min-height: 550px; padding-top: 5rem; }
}

@media (max-width: 479px) {
    :root { --header-height: 250px; }
    .site-header { height: var(--header-height); }
    .header-inner { width: calc(100% - 20px); flex-direction: column; justify-content: center; gap: 1.5rem; }
    .brand-contact { max-width: 100%; justify-items: center; text-align: center; }
    .header-actions { margin: 0; }
    .header-booking { display: inline-flex; }
    .header-booking small { max-width: 180px; }
    .menu-toggle { min-width: 54px; }
    .site-header.is-compact { height: 70px; }
    .site-header.is-compact .header-inner { flex-direction: row; justify-content: space-between; }
    .site-header.is-compact .brand-contact { align-items: start; justify-items: start; text-align: left; }
    .site-header.is-compact .header-booking { display: none; }
    .hero-home { height: 520px; }
    .hero-page { height: 340px; }
    .hero-copy { bottom: 9%; }
    .hero-slider-toggle { top: .75rem; right: .75rem; bottom: auto; }
    .content-width, .content-width-wide, .image-triptych { width: calc(100% - 20px); }
    .offcanvas-menu { padding: 4.5rem 1.5rem 2rem; }
    .section-copy, .room-content, .contact-details, .contact-form-wrap, .rate-card-body { padding: 1.65rem; }
    .section-copy h2, .room-content h2, .contact-details h2, .contact-form-wrap h2 { font-size: 1.8rem; }
    .section-image, .room-image { min-height: 280px; }
    .amenities { grid-template-columns: 1fr; }
    .rate-card-line { flex-direction: column; }
    .rate-card-line strong { text-align: left; }
    .site-footer { min-height: 700px; }
    .footer-links { flex-direction: column; }
    .footer-links span { display: none; }
}

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

@media print {
    .site-header-slot, .site-header, .offcanvas-menu, .menu-backdrop, .back-to-top, .notice-bar, .booking-cta, .contact-form { display: none !important; }
    .hero { height: 240px !important; }
    .site-footer { min-height: 0; color: #000; background: #fff; border-top: 1px solid #bbb; }
}
