/* ===========================
   Design Tokens
   =========================== */
:root {
  --brand: rgba(139, 25, 54, 1);
  --brand-dark: #595660;
  --ink: #121417;
  --muted: #6b7280;
  --line: #e5e7eb;
  --card: #ffffff;
  --bg: #ffffff;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --radius: 16px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --filter-dur: 160ms;
  --filter-ease: cubic-bezier(.22, .61, .36, 1);

  /* layout vars */
  --header-h: 0px;
}

/* ===========================
   Base / Reset
   =========================== */
*, *::before, *::after { box-sizing: border-box; }


html, body { height: 100%; }
html { font-size: 16px; } /* base desktop */

body {
  margin: 0;
  font-family: "Merriweather", serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height:auto; display: block; }
a { color: inherit; text-decoration: none; }

:focus-visible{
  outline: 3px solid color-mix(in srgb, var(--brand) 70%, white);
  outline-offset: 2px;
  border-radius: 8px;
}

/* Helpers */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.grid { display: grid; gap: clamp(40px, 2.5vw, 60px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 860px){
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px){
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem;
  font-family: "Merriweather", serif;
  line-height: 1.1em;
  font-weight: 600;
}

/* Responsive root sizing */
@media (max-width: 1200px){ html { font-size: 15.5px; } }
@media (max-width: 992px){  html { font-size: 15px; } }
@media (max-width: 768px){  html { font-size: 14.5px; } }
@media (max-width: 480px){  html { font-size: 14px; } }

/* Heading scales */
h1 { font-size: clamp(1.5rem, 5vw + 1rem, 3.25rem); }
h2 { font-size: clamp(2.25rem, 3.5vw + 0.5rem, 2.25rem) }
h3 { font-size: clamp(1.5rem, 2.8vw + 0.3rem, 1.75rem); }
h4 { font-size: clamp(1.25rem, 2vw + 0.2rem, 1.375rem); }
h5 { font-size: clamp(1.1rem, 1.5vw + 0.1rem, 1.125rem); line-height:1.3em; }
h6 { font-size: clamp(0.9rem, 1.2vw + 0.1rem, 1rem); }


body#success-msg h2 { font-size: clamp(1.1rem, 1.5vw + 0.1rem, 1.125rem); line-height:1.3em; }

.legal{ font-size:12px!important; margin-top:-5px; }

/* ===========================
   Header / Nav
   =========================== */
header.site{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
  transform: translateY(0);
  transition: transform .45s var(--ease), opacity .45s var(--ease), box-shadow .2s ease;
  will-change: transform, opacity;
  padding:0 20px;
}
header.site .row { padding: 2px 0; }
header.site.is-sticky { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); }
header.site.hide {
  transform: translateY(-100%) !important;
  opacity: 0;
  pointer-events: none;
}

/* When menu opens, ensure header overrides any hidden/translated state */
header.site.force-show {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.header-prop{ margin-top:-10px; padding-bottom:10px; text-align: center; width:100%;}

header .brand{
  display: flex;
  flex-direction: column;   /* stack logo + text */
  align-items: flex-start;  /* left-align text under logo */
  gap: 6px;
}

.brand { display: flex; align-items: center; gap: 10px; }
header .brand img { width: 320px; min-height:40px; }

.brand img { height: 80px; }

@media (max-width: 768px){
  header .brand div{display:none;}
}/*768*/

.hotel-name {
  font-weight: 700;
  font-family: "Merriweather Sans", system-ui;
}
.subtext {
  font-family: "Merriweather Sans", system-ui;
  font-size: 0.86rem;
  color: var(--muted);
}

.topbar{
  background:#ededed;
  padding:10px 0;
}

.topbar .container.row{ justify-content: right;}

.topbar img{ height:34px; }

/* Primary Nav */
.site-nav { position: relative; }
.menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.menu > li > a,
.submenu a,
.submenu-button{
  font-family: "Merriweather Sans", system-ui;
  font-size: 15px;
  line-height: 1;
  color: var(--ink);
  padding: 12px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .25s var(--ease), color .25s var(--ease);
  text-align:center;
}
.menu > li > a:hover,
.submenu a:hover,
.submenu-button:hover{ background: rgba(89, 86, 96, 0.2); }

.menu .book{
  background: var(--brand);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.menu .book:hover{ filter: brightness(1.05); color:var(--brand);}

/* Dropdowns */
.has-submenu{ position: relative; }
.submenu-button{
  background: transparent;
  border: 0;
  cursor: pointer;
}
.submenu-button .chev{
  width: 16px; height: 16px;
  transition: transform .25s var(--ease);
}
.submenu{
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 240px;
  padding: 8px;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  list-style: none;
  opacity: 0;
  transform: translateY(-6px) scale(.98);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
@media (hover:hover) and (pointer:fine){
  .has-submenu:hover > .submenu,
  .has-submenu:focus-within > .submenu{
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
}

/* Hamburger */

.site-nav a.is-active {
  color: var(--brand);
  font-weight: 600;
}

.nav a:focus:not(:focus-visible) {
  outline: none;
  border: none;
}

.nav-toggle{
  display: none;
  position: relative;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle .bar{
  position: absolute;
  left: 50%; top: 50%;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transform-origin: center;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle .bar:nth-child(1){ transform: translate(-50%, -8px); }
.nav-toggle .bar:nth-child(2){ transform: translate(-50%, -1px); }
.nav-toggle .bar:nth-child(3){ transform: translate(-50%, 6px); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1){ transform: translate(-50%, -1px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2){ opacity: 0; transform: translate(-50%, -1px) scaleX(.5); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3){ transform: translate(-50%, -1px) rotate(-45deg); }

/* Mobile Nav */
@media (max-width: 980px){
  .nav-toggle{ display: flex; }
  .site-nav{
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
  }
  .menu{
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease), padding .2s var(--ease);
  }
  .site-nav.open{ border-bottom: 1px solid var(--line); }
  .site-nav.open .menu{ max-height: calc(100dvh - var(--header-h) - 20px); padding: 20px 17px 40px; }

  .has-submenu{
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 4px;
  }
  .submenu-button{ width: 100%; justify-content: space-between; padding: 12px; }
  .submenu{
    position: static;
    opacity: 1; transform: none; pointer-events: auto;
    border: 0; box-shadow: none;
    padding: 0; margin: 0 0 6px 0;
    max-height: 0; overflow: hidden;
    transition: max-height .3s var(--ease);
  }
  .has-submenu.open .submenu{ max-height: 600px; }
  .submenu-button .chev{ transition: transform .2s var(--ease); }
  .has-submenu.open .submenu-button .chev{ transform: rotate(180deg); }
}

/* Mobile Nav Backdrop */
.nav-backdrop{
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0; visibility: hidden;
  transition: opacity .25s var(--ease), visibility .25s var(--ease);
  z-index: 900;
}
.nav-backdrop.show{ opacity: 1; visibility: visible; }
@media (min-width: 981px){ .nav-backdrop{ display: none; } }



main {
  flex: 1;
}





/* Fixed Header Offset */
body.header-fixed header.site{ position: fixed; top: 0; left: 0; right: 0; }
body.header-fixed{ padding-top: var(--header-h); }

/* ===========================
   Hero
   =========================== */
.hero{
  position: relative;
  height: 50vh;
  min-height: 320px;
}
.hero::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(30vh, 40vh - 10vw, 50vh);
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.55), transparent);
  z-index: 0;
  pointer-events: none;
}
.hero .content{
  position: absolute; inset: 0;
  display: flex; align-items: end;
}
.hero .inner{ color: #fff; padding: 0 0 20px; z-index: 1; }

body.home .hero h1{ font-size: .85rem; color: #ffffff;}
body.home .hero h2{font-size: clamp(2rem, 5vw + 1rem, 5.75rem);}

.hero-tag h1{
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .85rem;
  color: #fff;
}



.hero-desc{ font-size: clamp(1rem, 0.5rem + 2vw, 1.5em); }

.hero img{
 position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* ===========================
   Sections / Tags
   =========================== */
section{ padding-block: clamp(2rem, 2.5vw, 3.5rem);}
section header{ margin-bottom: 24px; }

.tag{
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand);
  font-size: .9rem;
  font-family: "Merriweather Sans", sans-serif;
}

.gradient-bg{
  background: #e8e8e8;
background: linear-gradient(rgba(255, 255, 255, 1), rgba(243, 243, 243, 1) 48.74%, rgba(240, 240, 240, 1));
}


/* Full-width gray bar (background + divider live here) */
.section-note-wrap{
  width: 100%;
  background: rgba(0,0,0,.03);
  border-top: 1px solid rgba(0,0,0,.08);
}

/* Text block inside the container */
.section-note{
  margin: 0;
  padding: clamp(14px, 2.5vw, 22px) 0; /* vertical rhythm, no side padding */
  font-size: 0.95rem;
}

/* Link styling (optional, but makes it feel intentional) */
.section-note a{
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.section-note a:hover{
  text-decoration-thickness: 2px;
}

/* Optional: "callout" variant (use instead of section-note-wrap) */
.section-note.callout{
  margin-top: clamp(24px, 4vw, 40px);
  padding: 16px 18px;
  background: rgba(0,0,0,.03);
  border-left: 3px solid var(--brand-primary);
  border-top: none;          /* important: don't double up if you reuse patterns */
  border-radius: 4px;        /* optional polish */
}

/* ===========================
   Cards, Buttons, Chips
   =========================== */
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  place-items: start start;   /* or align-items/justify-items */
  align-content: start;
}

.card .body, .card-body{ padding: clamp(1rem, 5vw, 2rem); width:100%; }

.card .media{
  aspect-ratio: 16 / 9;
  background: #f3f4f6;
  display: grid;
  place-items: center;
  color: #9ca3af;
  font-family: "Merriweather Sans", sans-serif;
}


.card ul{
  padding-inline-start: 20px;
}

ul li::marker {
  color: var(--brand);
}


.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: .6rem .9rem;
  background: #fff;
  cursor: pointer;
  transition: filter .2s var(--ease), transform .2s var(--ease);
}
.btn:hover{ filter: brightness(1.05); transform: translateY(-1px); }
.btn.outline{ background: transparent; border-color:var(--brand)!important;}
.btn.primary{
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.chip{
  display: inline-grid;
  place-items: center;
  width: 60px; height: 60px;
  border-radius: 10px;
  background: #f3f4f6;
  padding:10px;
}


.heroimg img{ width: 100%; height: 100%; object-fit: cover; }


.promos .heroimg { height:250px; }




article img,
section img,
.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-attract img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}




/* ===========================
   BW Booking
   =========================== */

.section.booking{padding-block: clamp(1rem, 2vw, 2rem);}

.booking-widget .booking-content {
  text-align: center;
  padding: 2rem 0;
}

.booking-widget h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.booking-widget p {
  margin-bottom: 1.5rem;
  color: var(--muted);
}


.booking-widget .btn.primary {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  margin-bottom: 1rem;
}

.booking-note {
  font-size: clamp(1.25rem, 2vw, 2rem);
  margin-top: 1rem !important;
}

.booking-note a {
  color: var(--brand);
  text-decoration: underline;
}

/* ===========================
   Features
   =========================== */
.features .card .body{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
}

/* ===========================
   Footer
   =========================== */

.footer{
  background: #f9fafb;
  border-top: 1px solid var(--line);
}

.footer-grid{
  padding: 40px;
  display: grid;
  gap: 24px;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: start;
}

.footer-social{
  display: flex;
  gap: 12px;
  margin: 12px 0 16px;
}

.footer-social a{
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(139,25,54,.08);
  color: var(--brand);
}

.footer-social .icon{
  width: 22px;
  height: 22px;
}

.icon-solid{
  fill: currentColor;
}

footer .brand{
  margin-bottom: 10px;
  align-items: flex-start;
}

.footer a{
  color: var(--brand);
}

.footer p{
  margin-top: 0;
}

/* Helpful Links */
.footer-links p{
  margin: 0 0 6px;
}

.footer-links-list{
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links-list li{
  margin: 0;
}

.footer-links a{
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: .9;
}

.footer-links a:hover{
  opacity: 1;
}

/* Mobile */
@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr;
  }
}

/* Optional utility mark (unchanged) */
.mark{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}


/* ===========================
   Utility
   =========================== */
.hidden{ display: none !important; }
.muted{ color: var(--muted); }

body.no-scroll{ overflow: hidden; }
@supports(-webkit-touch-callout:none){
  body.no-scroll{
    position: fixed;
    width: 100%;
    inset: 0 0 auto 0;
  }
}

/* ===========================
   Lists
   =========================== */
ul.divider{
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid var(--line);
  color: var(--brand);
  width:100%;
}
ul.divider li{
  padding: .5em 0;
  border-bottom: 1px solid var(--line);

}
ul.divider li:last-child{ border-bottom: none; }

ul.list{padding-inline-start: 20px;}
ul.list li{margin-bottom: 10px; line-height:1.25em;}

/* ===========================
/* =========================================
   Responsive
========================================= */
@media (max-width: 768px){
  .grid,
  .grid-2,
  .grid-3,
  .grid-4{
    grid-template-columns: 1fr;
  }

.footer-grid{gap: 0;}



.brand{display:block;}


.hero::after {height:100%; background:linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.55) 81.51%, transparent);}

}/*768*/


/* Stack icon above text - all screen sizes */
.features .card .body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.features .card .chip {
  flex-shrink: 0;
}

/* Wufoo */

@media only screen and (max-width:670px){
  iframe#wufooFormr1hwfbvv042tm7b{height:715px;}
  iframe#wufooForms1yw4ds61p2yhcs{height:1650px;}

}


@media only screen and (max-width:480px){
  iframe#wufooForms1yw4ds61p2yhcs{height:1700px;}

}

