
:root{
  --bg:#F7F8FA;
  --text:#1F2933;
  --muted:#52606D;
  --card:#FFFFFF;
  --line:rgba(31,41,51,.10);
  --shadow:0 10px 30px rgba(17,24,39,.08);
  --shadow-soft:0 8px 22px rgba(17,24,39,.06);
  --radius:18px;
  --radius2:26px;
  --hero1:#2F80ED;
  --hero2:#6FA8FF;
  --max:1120px
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
a:focus{outline:3px solid rgba(47,128,237,.35);outline-offset:2px;border-radius:10px}
button{font:inherit}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:var(--shadow)
}

.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 16px
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(247,248,250,.88);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--line)
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:12px
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px
}
.brand-mark{
  width:38px;
  height:38px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--hero1),var(--hero2));
  box-shadow:0 10px 20px rgba(47,128,237,.22)
}
.brand-text{display:flex;flex-direction:column}
.brand-name{font-weight:700;letter-spacing:.2px}
.brand-tag{font-size:.86rem;color:var(--muted)}

.site-nav{display:flex;align-items:center;gap:10px}
.nav-toggle{
  border:1px solid var(--line);
  background:var(--card);
  padding:9px 12px;
  border-radius:12px;
  box-shadow:var(--shadow-soft)
}
.nav-list{
  list-style:none;
  padding:0;
  margin:0;
  display:none;
  position:absolute;
  right:16px;
  top:64px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow);
  width:min(92vw,520px);
  overflow:hidden
}
.nav-list.open{display:block}
.nav-list li{border-top:1px solid var(--line)}
.nav-list li:first-child{border-top:0}
.nav-list a{
  display:block;
  padding:12px 14px;
  color:var(--text)
}
.nav-list a:hover{background:rgba(47,128,237,.06)}

.hero{
  background:linear-gradient(135deg,var(--hero1),var(--hero2));
  color:#fff;
  padding:28px 0 18px
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px
}
.eyebrow{
  margin:0 0 8px;
  font-weight:600;
  letter-spacing:.2px;
  opacity:.95
}
.hero h1{
  margin:0 0 10px;
  font-family:"Source Serif Pro",Georgia,serif;
  font-weight:600;
  line-height:1.15;
  font-size:2.05rem
}
.lead{
  margin:0 0 14px;
  font-size:1.02rem;
  color:rgba(255,255,255,.92)
}
.trust-row{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin-top:14px
}
.trust-card{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:12px 12px 10px;
  box-shadow:0 10px 22px rgba(17,24,39,.10)
}
.trust-title{
  margin:0 0 6px;
  font-size:1rem;
  font-family:"Source Serif Pro",Georgia,serif
}
.trust-text{
  margin:0;
  color:rgba(255,255,255,.92);
  font-size:.95rem
}
.hero-meta{
  margin-top:14px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:12px
}
.meta-line{display:flex;gap:10px;flex-wrap:wrap}
.meta-label{opacity:.9;font-weight:600}
.meta-value{opacity:.95}

.hero-media{
  margin:0;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:var(--radius2);
  overflow:hidden;
  box-shadow:0 16px 36px rgba(17,24,39,.14)
}
.hero-img{width:100%;height:auto}
.caption{
  margin:0;
  padding:10px 12px;
  font-size:.9rem;
  color:rgba(255,255,255,.9)
}

.section{
  padding:28px 0
}
.section-head{
  margin-bottom:14px
}
.section h2{
  margin:0 0 6px;
  font-family:"Source Serif Pro",Georgia,serif;
  font-weight:600;
  font-size:1.6rem
}
.section-subtitle{
  margin:0;
  color:var(--muted)
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius2);
  box-shadow:var(--shadow-soft);
  overflow:hidden
}
.prose{padding:16px}
.prose h3{
  margin:0 0 8px;
  font-family:"Source Serif Pro",Georgia,serif;
  font-weight:600;
  font-size:1.22rem
}
.prose h4{
  margin:14px 0 8px;
  font-family:"Source Serif Pro",Georgia,serif;
  font-weight:600;
  font-size:1.06rem
}
.prose p{margin:0 0 12px;color:var(--text)}
.prose p:last-child{margin-bottom:0}

.split{
  display:grid;
  grid-template-columns:1fr;
  gap:14px
}
.media img{width:100%;height:auto}
.media .caption{
  color:var(--muted);
  padding:12px 14px;
  border-top:1px solid var(--line);
  background:rgba(247,248,250,.55)
}

.alternating{display:grid;gap:14px;margin-top:14px}
.alt-row{
  display:grid;
  grid-template-columns:1fr;
  gap:14px
}
.alt-row.reverse .alt-media{order:1}
.alt-row.reverse .alt-text{order:2}
.alt-media{padding:0}
.alt-media img{width:100%;height:auto}
.alt-text{padding:16px}

.bullets{
  padding-left:18px;
  margin:0;
  color:var(--text)
}
.bullets li{margin:8px 0}
.address{margin:0 0 12px}

.location-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px
}
.checklist{list-style:none;margin:0;padding:0;display:grid;gap:10px}
.checklist li{display:flex;gap:10px;align-items:flex-start}
.check-dot{
  width:10px;height:10px;border-radius:999px;
  background:linear-gradient(135deg,var(--hero1),var(--hero2));
  margin-top:7px;
  box-shadow:0 6px 14px rgba(47,128,237,.25)
}
.map-frame{margin:0}
.map-frame img{width:100%;height:auto}
.map-frame .caption{color:var(--muted);padding:12px 14px;border-top:1px solid var(--line);background:rgba(247,248,250,.55)}

.room-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px
}
.room{padding:0}
.room-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  padding:16px 16px 0
}
.room-top h3{margin:0;font-family:"Source Serif Pro",Georgia,serif;font-weight:600;font-size:1.22rem}
.pill{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(47,128,237,.08);
  color:var(--text);
  font-size:.86rem;
  white-space:nowrap
}
.room-desc{margin:10px 16px 0;color:var(--text)}
.room-notes{margin:12px 16px 14px;padding-left:18px}
.room-notes li{margin:8px 0;color:var(--text)}
.room-photo{margin:0;border-top:1px solid var(--line)}
.room-photo img{width:100%;height:auto}
.room-photo .caption{color:var(--muted);padding:12px 14px;background:rgba(247,248,250,.55)}

.rooms-callout{margin-top:14px}
.two-col{
  display:grid;
  grid-template-columns:1fr;
  gap:10px
}

.amen-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px
}

.pros-cons{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-bottom:14px
}

.ideal-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px
}

.tips-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px
}

.legal .prose{padding:16px}

.cookie-banner{
  margin-top:14px;
  border-top:1px solid var(--line);
  padding-top:14px;
  display:grid;
  gap:12px
}
.cookie-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px
}
.btn{
  border:1px solid var(--line);
  background:var(--card);
  padding:10px 12px;
  border-radius:14px;
  box-shadow:var(--shadow-soft)
}
.btn:hover{background:rgba(47,128,237,.06)}
.btn.ghost{background:rgba(247,248,250,.55)}
.btn.link{
  border-color:transparent;
  background:transparent;
  box-shadow:none;
  padding:10px 6px;
  text-decoration:underline
}
.cookie-status{margin:0;color:var(--muted)}

.site-footer{
  padding:22px 0 10px;
  border-top:1px solid var(--line)
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px
}
.footer-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius2);
  box-shadow:var(--shadow-soft);
  padding:16px
}
.footer-card h3{
  margin:0 0 8px;
  font-family:"Source Serif Pro",Georgia,serif;
  font-weight:600
}
.footer-card p{margin:0;color:var(--text)}
.footer-bottom{
  padding:10px 0 0
}
.small{margin:0;color:var(--muted);font-size:.92rem}
.mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,monospace}

@media (min-width:720px){
  .hero-grid{grid-template-columns:1.15fr .85fr;align-items:stretch;gap:18px}
  .trust-row{grid-template-columns:repeat(3,1fr)}
  .split{grid-template-columns:1fr 1fr}
  .alt-row{grid-template-columns:1fr 1fr;align-items:stretch}
  .alt-row.reverse .alt-media{order:2}
  .alt-row.reverse .alt-text{order:1}
  .location-grid{grid-template-columns:1fr 1fr}
  .room-grid{grid-template-columns:repeat(2,1fr)}
  .two-col{grid-template-columns:1fr 1fr}
  .amen-grid{grid-template-columns:repeat(2,1fr)}
  .pros-cons{grid-template-columns:1fr 1fr}
  .ideal-grid{grid-template-columns:repeat(2,1fr)}
  .tips-grid{grid-template-columns:repeat(3,1fr)}
  .footer-grid{grid-template-columns:repeat(3,1fr)}
  .nav-toggle{display:none}
  .nav-list{
    display:flex;
    position:static;
    width:auto;
    border:0;
    box-shadow:none;
    background:transparent;
    gap:12px;
    overflow:visible
  }
  .nav-list li{border:0}
  .nav-list a{
    padding:10px 10px;
    border-radius:12px
  }
  .nav-list a:hover{background:rgba(47,128,237,.08)}
}

@media (min-width:980px){
  .hero h1{font-size:2.35rem}
  .section h2{font-size:1.75rem}
  .room-grid{grid-template-columns:repeat(3,1fr)}
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  padding:8px 10px;
  border-radius:16px;
  border:1px solid rgba(31,41,51,.06);
  background:rgba(255,255,255,.62);
  box-shadow:0 8px 22px rgba(17,24,39,.06);
}

.brand-mark{
  width:38px;
  height:38px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--hero1),var(--hero2));
  box-shadow:0 10px 20px rgba(47,128,237,.18);
  flex:0 0 auto;
}

.brand-logo{
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(31,41,51,.10);
  background:rgba(255,255,255,.85);
  box-shadow:0 10px 18px rgba(17,24,39,.10);
  object-fit:contain;
  padding:6px;
  flex:0 0 auto;
}

.brand-text{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width:0;
}

.brand-name{
  font-weight:750;
  letter-spacing:.2px;
  line-height:1.1;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.brand-tag{
  font-size:.86rem;
  color:var(--muted);
  line-height:1.2;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

@media (max-width:420px){
  .brand{
    gap:10px;
    padding:8px;
  }
  .brand-tag{display:none}
  .brand-logo{width:38px;height:38px;padding:6px}
}
