
:root{
  --bg:#ffffff;
  --bg2:#faf8f5;
  --fg:#111111;
  --muted:#5a5a5a;
  --line: rgba(0,0,0,.10);
  --card:#ffffff;
  --accent:#b11f24; /* deep red */
  --accent2:#e3b341; /* gold */
  --shadow: 0 14px 32px rgba(0,0,0,.10);
  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--fg);
  background:var(--bg);
  font-family: "Helvetica Neue", Arial, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height:1.6;
}
h1,h2,h3{font-family: Georgia, "Times New Roman", serif; line-height:1.15}
h1{font-size:clamp(2.2rem, 4vw, 3.2rem); margin:.35rem 0 .75rem}
h2{font-size:clamp(1.8rem, 2.6vw, 2.3rem); margin:0 0 .75rem}
h3{font-size:1.25rem; margin:.15rem 0 .35rem}

a{color:inherit; text-decoration:none}
p{margin:.45rem 0}
img{max-width:100%; height:auto; display:block}

.container{max-width:var(--container); margin:0 auto; padding:0 18px}
.section{padding:64px 0}
.section.alt{background:var(--bg2)}
.centered{text-align:center; max-width:840px; margin:0 auto}

.muted{color:var(--muted)}
.small{font-size:.9rem}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--fg);
  font-weight:700;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
  white-space:nowrap;
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
}
.btn:hover{transform:translateY(-1px); border-color:rgba(0,0,0,.18)}
.btn-primary{
  background:var(--accent);
  color:#fff;
  border-color:rgba(0,0,0,.0);
}
.btn-primary:hover{box-shadow: 0 10px 22px rgba(177,31,36,.22)}
.btn-ghost{
  background:#fff;
}

.link{display:inline-block; margin-top:10px; color:var(--accent)}
.link:hover{text-decoration:underline}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  min-height:74px;
}
.brand{display:flex; align-items:center; gap:12px}
.brand-logo{width:40px; height:auto}
.brand-text{display:flex; flex-direction:column; line-height:1.1}
.brand-name{font-weight:800; letter-spacing:.12em; font-size:.92rem}
.brand-sub{font-size:.9rem; color:var(--muted)}

.site-nav{display:flex; gap:18px; align-items:center}
.nav-link{
  font-weight:700; font-size:.95rem;
  padding:10px 10px;
  border-radius:999px;
}
.nav-link:hover{background:rgba(0,0,0,.04)}
.nav-link.is-active{background:rgba(0,0,0,.06)}

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  color:inherit;
}
.burger{
  width:18px; height:12px; display:block;
  background:
    linear-gradient(#111,#111) 0 0/100% 2px no-repeat,
    linear-gradient(#111,#111) 0 50%/100% 2px no-repeat,
    linear-gradient(#111,#111) 0 100%/100% 2px no-repeat;
}
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0;
}

/* Hero */
.hero{padding:0}
.hero-inner{
  display:grid;
  grid-template-columns: 1fr;
}
.hero{
  position:relative;
  min-height:540px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.70) 40%, rgba(255,255,255,.25) 70%, rgba(255,255,255,.12) 100%),
    var(--hero-img) center/cover no-repeat;
  border-bottom:1px solid var(--line);
}
.hero-copy{
  max-width: 720px;
  padding: 72px 0;
}
.eyebrow{
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:800;
  font-size:.85rem;
  color:rgba(0,0,0,.70);
}
.lead{font-size:1.08rem; color:rgba(0,0,0,.78); max-width:60ch}

.cta-row{
  display:flex; flex-wrap:wrap; gap:10px;
  margin:18px 0 10px;
}
.hero-media{display:none}

/* Split sections */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:26px;
  align-items:center;
}
.media-card{
  border-radius:var(--radius2);
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadow);
}

/* Cards */
.cards-4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.card{
  display:flex; flex-direction:column; gap:10px;
  border-radius:var(--radius);
  background:#fff;
  border:1px solid var(--line);
  padding:14px;
  min-height:240px;
  transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease;
  box-shadow: var(--shadow);
}
.card:hover{transform:translateY(-3px); border-color:rgba(0,0,0,.18)}
.card-media{
  border-radius:14px; overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
}
.card p{color:rgba(0,0,0,.72)}
.card-cta{margin-top:auto; color:var(--accent); font-weight:800}

/* Gallery strip */
.gallery-strip{padding:0}
.strip{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
}
.strip img{width:100%; height:100%; object-fit:cover; border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.strip img + img{border-left:1px solid var(--line)}

/* Testimonials */
.testimonials{
  border-radius:var(--radius2);
  border:1px solid var(--line);
  background:#fff;
  padding:20px;
  box-shadow: var(--shadow);
}
.testimonials-head{
  display:flex; justify-content:space-between; align-items:flex-end; gap:12px;
  margin-bottom:10px;
}
.dots{
  width:86px; height:12px; opacity:.6;
  background:
    radial-gradient(circle, rgba(0,0,0,.6) 3px, transparent 4px) 0 50%/14px 12px repeat-x;
}
.quote-text{font-size:1.15rem; color:rgba(0,0,0,.82)}
.quote-meta{color:var(--muted); font-weight:700}
.slider-controls{display:flex; gap:10px; margin-top:14px}
.icon-btn{
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--fg);
  padding:10px 14px;
  font-weight:900;
  cursor:pointer;
}
.icon-btn:hover{background:rgba(0,0,0,.04)}

/* Events */
.events{display:grid; gap:12px; margin-top:18px; text-align:left}
.event{
  display:grid; grid-template-columns: 70px 1fr;
  gap:14px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:#fff;
  padding:14px;
  box-shadow: var(--shadow);
}
.event-date{
  border-radius:16px;
  border:1px solid var(--line);
  background:linear-gradient(135deg, rgba(177,31,36,.12), rgba(227,179,65,.12));
  padding:10px;
  text-align:center;
}
.event-day{font-weight:900; letter-spacing:.14em; text-transform:uppercase; font-size:.78rem}
.event-num{display:block; font-family: Georgia, serif; font-weight:900; font-size:1.2rem}

/* Contact */
.contact{display:grid; grid-template-columns: 1fr 1fr; gap:20px; align-items:start}
.contact-list{list-style:none; padding:0; margin:10px 0}
.contact-list li{padding:6px 0; border-bottom:1px solid var(--line)}
.hours{display:grid; grid-template-columns: 1fr 1fr; gap:14px; margin-top:14px}
.social{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.chip{
  padding:10px 12px; border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:800;
}

.form{
  border-radius:var(--radius2);
  border:1px solid var(--line);
  background:#fff;
  padding:16px;
  box-shadow: var(--shadow);
}
label{display:grid; gap:6px; margin-bottom:10px; font-weight:800}
input, textarea{
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--fg);
  padding:12px 12px;
  font:inherit;
}
textarea{resize:vertical}

/* Booking widget wrapper */
.booking-block{
  margin-top:18px;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: #fff;
  padding:16px;
  box-shadow: var(--shadow);
}
.booking-embed{
  margin-top:10px;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid var(--line);
  background: #fff;
  padding: 10px;
}
.no-js{display:inline-block; padding:10px 12px; border:1px solid var(--line); border-radius:12px; background:#fff}

/* Footer */
.site-footer{
  border-top:1px solid var(--line);
  padding:36px 0 24px;
  background: var(--bg2);
}
.footer-inner{
  display:flex; justify-content:space-between; gap:18px; align-items:flex-start;
}
.footer-brand{display:flex; gap:12px; align-items:center}
.footer-cols{
  display:grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap:16px;
}
.footer-cols h3{margin:0 0 10px; font-size:1.05rem}
.footer-cols a{display:block; color:rgba(0,0,0,.72); padding:6px 0}
.footer-cols a:hover{color:#000}
.badges{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.badges img{width:110px; height:auto}

.footer-bottom{margin-top:14px; border-top:1px solid var(--line); padding-top:14px}

/* Responsive */
@media (max-width: 980px){
  .split, .contact{grid-template-columns: 1fr}
  .cards-4{grid-template-columns: repeat(2, 1fr)}
  .strip{grid-template-columns: 1fr}
  .footer-inner{flex-direction:column}
  .footer-cols{grid-template-columns: 1fr 1fr}
  .hero{min-height:520px}
  .hero-copy{padding:56px 0}
}

@media (max-width: 720px){
  .site-nav{
    position:absolute;
    top:74px; left:0; right:0;
    display:none;
    flex-direction:column;
    padding:12px 18px 18px;
    background:#fff;
    border-bottom:1px solid var(--line);
  }
  .site-nav.is-open{display:flex}
  .nav-toggle{display:inline-flex}
  .cards-4{grid-template-columns: 1fr}
  .hours{grid-template-columns: 1fr}
  .hero{
    background:
      linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.70) 55%, rgba(255,255,255,.22) 100%),
      var(--hero-img) center/cover no-repeat;
  }
}


/* Make card images feel like Wix tiles */
.card-media img{width:100%; height:120px; object-fit:cover}

/* v3 visual tuning closer to Wix */
.media-card{box-shadow:none}
.hero{min-height:620px}
.hero-copy{padding:84px 0}
.cards-4.wix-cards .card{box-shadow:none}
.cards-4.wix-cards .card{min-height:200px}
.cards-4.wix-cards .card-cta{font-weight:700}
.strip img{height: 220px}
@media (max-width: 720px){
  .strip img{height: 180px}
  .hero{min-height:560px}
  .hero-copy{padding:64px 0}
}

.build{display:inline-block;margin-left:8px;font-size:.85em;color:rgba(0,0,0,.55)}


/* =========================
   RL-V4 Visual Match Pass
   (Hero, buttons, spacing, gallery crop, typography)
   ========================= */

/* Typography closer to Wix default pairings */
body{
  font-family: "Helvetica Neue", Arial, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  letter-spacing: 0;
}
h1,h2,h3{
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}
h1{letter-spacing:.01em; line-height:1.08}
h2{letter-spacing:.01em; line-height:1.12}
.lead{line-height:1.55}

/* Section spacing (Wix tends to have larger blocks) */
.section{padding:84px 0}
.section.alt{padding:84px 0}
@media (max-width: 720px){
  .section{padding:64px 0}
  .section.alt{padding:64px 0}
}

/* Header proportions */
.header-inner{min-height:82px}
.site-nav .nav-link{font-weight:700}
.brand-name{font-size:.88rem}
.brand-sub{font-size:.88rem}

/* Hero overlay + placement */
.hero{
  min-height: 720px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.62) 38%, rgba(255,255,255,.22) 68%, rgba(255,255,255,.08) 100%),
    var(--hero-img) center/cover no-repeat;
}
.hero-copy{padding:96px 0; max-width:760px}
.eyebrow{letter-spacing:.26em}
.cta-row{gap:12px}
@media (max-width: 980px){
  .hero{min-height:650px}
  .hero-copy{padding:78px 0}
}
@media (max-width: 720px){
  .hero{
    min-height: 620px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.60) 58%, rgba(255,255,255,.20) 100%),
      var(--hero-img) center/cover no-repeat;
  }
  .hero-copy{padding:64px 0}
}

/* Buttons: Wix-ish pill, slightly shorter, lighter shadow */
.btn{
  padding:9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.14);
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
  font-weight: 700;
}
.btn:hover{box-shadow: 0 8px 16px rgba(0,0,0,.10)}
.btn-primary{
  background: #b11f24;
  border-color: rgba(177,31,36,.75);
  box-shadow: 0 6px 16px rgba(177,31,36,.20);
}
.btn-primary:hover{box-shadow: 0 10px 22px rgba(177,31,36,.24)}

/* Cards: flatter like Wix feature blocks */
.cards-4{gap:18px}
.card{
  border: 1px solid rgba(0,0,0,.10);
  box-shadow:none;
  padding:18px;
  min-height: 210px;
}
.card:hover{transform:none; border-color: rgba(0,0,0,.14)}
.card p{color: rgba(0,0,0,.70)}
.card-cta{color:#b11f24}

/* Media cards should be crisp, no heavy rounding like templates */
.media-card{
  border-radius: 10px;
  box-shadow:none;
}
.media-card img{
  width:100%;
  height:auto;
  display:block;
}

/* Gallery strip: enforce crop and heights to match Wix strip feel */
.strip img{
  height: 260px;
  object-fit: cover;
  object-position: center 55%;
}
@media (max-width: 980px){
  .strip img{height: 220px}
}
@media (max-width: 720px){
  .strip img{height: 190px}
}

/* Feature section images crop */
.media-card img{
  object-fit: cover;
  object-position: center;
}

/* Booking widget block: make it look embedded like Wix */
.booking-block{
  border-radius: 10px;
  box-shadow:none;
  border:1px solid rgba(0,0,0,.10);
}
.booking-embed{
  border-radius: 10px;
  border:1px solid rgba(0,0,0,.10);
}

/* Testimonials / event cards flatten */
.testimonials, .event{
  box-shadow:none;
  border:1px solid rgba(0,0,0,.10);
}

/* Footer badges sizing */
.badges img{width:120px}

/* RL-V5: image sources switched to Wixstatic for all sections */


/* =========================
   RL-V6 Image Cropping Pass
   ========================= */

/* Media cards: enforce consistent ratio like Wix panels */
.media-card img{
  aspect-ratio: 4 / 3;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

/* Gallery strip: Wix-like shallow strip, less zoomed */
.strip{
  grid-template-columns: repeat(3, 1fr);
}
.strip img{
  width:100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
/* Fine-tune crops per image (avoids chopping subjects) */
.strip-1{object-position: 55% 55%;}
.strip-2{object-position: 50% 45%;}
.strip-3{object-position: 55% 40%;}

/* On small screens Wix stacks with same ratio */
@media (max-width: 980px){
  .strip{grid-template-columns: 1fr;}
  .strip img{aspect-ratio: 16 / 9;}
}


/* RL-V7 booking widget containment */
#atb_calendar_container{width:100%}
#atb_anytime{width:100%}
.booking-embed{padding:0}
.booking-embed #atb_calendar_container{padding:10px}


/* =========================
   Menu page styles
   ========================= */
.menu-jumplist{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 34px;
}
.menu-jumplist a{
  padding:8px 12px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:999px;
  text-decoration:none;
  color:inherit;
  background:rgba(255,255,255,.6);
}
.menu-section{margin-top:48px}
.menu-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:16px 22px;
  margin-top:16px;
}
.menu-item{
  border:1px solid rgba(0,0,0,.10);
  border-radius:10px;
  padding:14px 14px;
  background:#fff;
}
.menu-item-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
}
.menu-item h3{margin:0; font-size:1.05rem}
.menu-item p{margin:8px 0 0; color:rgba(0,0,0,.72); line-height:1.45}
.price{font-weight:800}
@media (max-width: 900px){
  .menu-grid{grid-template-columns: 1fr;}
}


/* =========================
   RL-V10.4 Sleep page
   ========================= */
.cards-2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:18px;
}
.stay-card{
  border:1px solid rgba(0,0,0,.10);
  border-radius:10px;
  padding:16px;
  background:#fff;
}
.stay-card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.stay-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top:12px;
}
.stay-grid img{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius:8px;
  border:1px solid rgba(0,0,0,.08);
}
@media (max-width: 980px){
  .cards-2{grid-template-columns: 1fr;}
  .stay-grid{grid-template-columns: 1fr;}
  .stay-grid img{aspect-ratio: 16 / 9;}
}
