/* ── Shared styles ── */

:root{
  --bg:#ffffff;
  --card:#ffffff;
  --text:rgba(18,18,18,.92);
  --muted:rgba(18,18,18,.66);
  --border:rgba(10,10,10,.12);
  --shadow:0 18px 55px rgba(0,0,0,.10);
  --radius:18px;
  --max:1080px;
  --title-font:"WindSong", serif;
  --body-font:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}

*{box-sizing:border-box}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--body-font);
  line-height:1.5;
}

a{color:inherit}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px 56px;
}

header{
  border:none;
  background:transparent;
  border-radius:0;
  box-shadow:none;
  overflow:visible;
  position:relative;
}

/* ── Hero ── */

.hero{
  position:relative;
  min-height:380px;
  display:flex;
  align-items:stretch;
  text-align:center;
  padding:22px;
  isolation:isolate;
  background:#111;
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

.hero img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.05) contrast(1.02);
  z-index:-2;
}

.hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.65) 70%, rgba(0,0,0,.78) 100%);
  z-index:-1;
}

.hero > div{
  display:flex;
  flex-direction:column;
  height:100%;
  width:100%;
  max-width:1100px;
  margin:0 auto;
  padding:0 12px;
}

.hero-center{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  transform:translateY(100px);
}

.hero-title{
  margin:0 0 10px;
  font-family:var(--title-font);
  font-weight:400;
  letter-spacing:.04em;
  color:rgba(255,255,255,.96);
  font-size:clamp(30px,4vw,50px);
  line-height:1.1;
}

.hero-kicker{
  margin:0 0 14px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(255,255,255,.82);
}

.hero-sub{
  margin-top:auto;
  margin-bottom:4px;
  margin-left:auto;
  margin-right:auto;
  max-width:1100px;
  font-size:18px;
  line-height:1.2;
  color:rgba(255,255,255,.86);
  white-space:nowrap;
  transform:translateY(140px);
  font-family:ui-serif, "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Palatino, Garamond, Georgia, serif;
}

@media (max-width:1100px){
  .hero-sub{
    white-space:normal;
    max-width:90%;
  }
}

@media (max-width:950px){
  .hero{min-height:320px;}
  .hero-sub{font-size:15px;}
}

@media (max-width: 600px){
  .hero img{
    object-position: center 72%;
  }
  .hero-center{
    transform: translateY(50px);
  }
  .hero-sub{
    transform: translateY(65px);
  }
  .hero{
    min-height: 220px;
    padding: 4px;
  }
}

/* ── Topbar ── */

.topbar{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  max-width:980px;
  width:calc(100vw - 36px);
  margin:20px auto 18px;
  padding:0;
  background:transparent;
  border:none;
  border-radius:0;
  box-shadow:none;
  backdrop-filter:none;
}

.addr{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin:0;
  max-width:460px;
  color:rgba(18,18,18,.72);
  font-size:14px;
}

.addr svg{flex:0 0 auto; margin-top:2px; opacity:.95}

.cta{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  align-items:center;
}

@media (max-width:900px){
  .topbar{flex-direction:column; align-items:flex-start;}
  .cta{width:100%; justify-content:flex-start;}
  .addr{max-width:100%;}
}

/* ── Card ── */

.card{
  border:1px solid var(--border);
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.info{padding:16px 16px 18px;}

.info h2{
  margin:0 0 10px;
  font-family:var(--body-font);
  font-weight:600;
  font-size:18px;
}

/* ── Buttons ── */

.btn{
  appearance:none;
  border:1px solid rgba(10,10,10,.14);
  background:rgba(255,255,255,.86);
  color:rgba(18,18,18,.90);
  padding:12px 16px;
  border-radius:999px;
  font-weight:650;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:transform .08s ease, background .2s ease, border-color .2s ease;
  white-space:nowrap;
  box-shadow:none;
}

.btn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.94);
  border-color:rgba(10,10,10,.22);
}

.btn.small{
  padding:10px 12px;
  font-size:13px;
}

/* ── Pill ── */

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(10,10,10,.12);
  background:rgba(0,0,0,.03);
  white-space:nowrap;
}

/* ── Note ── */

.note{
  margin-top:10px;
  padding:10px 12px;
  border:1px solid rgba(10,10,10,.10);
  background:rgba(0,0,0,.02);
  border-radius:14px;
  color:rgba(18,18,18,.72);
  font-size:13px;
}

/* ── Footer ── */

.footerbar{
  margin-top:16px;
  margin-left:8px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:rgba(18,18,18,.55);
  font-size:12px;
}

.footertext{white-space:nowrap}

.footer-left{
  display:flex;
  align-items:center;
  gap:10px;
}

.socialIcon{
  display:inline-flex;
  align-items:center;
  color:#8a8a8a;
  transition:color .15s ease;
}

.socialIcon:hover{
  color:#111;
}

/* ── Theme toggle ── */

.theme-toggle-link{
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0;
  margin-right:8px;
  font-size:12px;
  text-decoration:none;
}

.theme-toggle-link:hover{text-decoration:underline}

.toggle-dark{display:none}
html[data-theme="dark"] .toggle-light{display:none}
html[data-theme="dark"] .toggle-dark{display:inline}

/* ── Icon lists ── */

.ul-icons{
  list-style:none;
  padding-left:0;
}
.ul-icons li{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.ul-icons li::before{
  content:"";
  width:18px;
  height:18px;
  margin-top:2px;
  flex:0 0 18px;
  background-size:18px 18px;
  background-repeat:no-repeat;
  opacity:.85;
}

.ul-amenities li::before{
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M5 13l4 4L19 7" stroke="%23777777" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

/* ── Dark mode ── */

html[data-theme="dark"]{
  --bg:#0b0b0c;
  --card:#111114;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.66);
  --border:rgba(255,255,255,.12);
  --shadow:0 18px 55px rgba(0,0,0,.45);
}

html[data-theme="dark"] .card{
  background:var(--card);
  border-color:var(--border);
  box-shadow:var(--shadow);
}

html[data-theme="dark"] .addr{color:rgba(255,255,255,.68);}

html[data-theme="dark"] .btn{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.14);
  color:rgba(255,255,255,.90);
}

html[data-theme="dark"] .btn:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.22);
}

html[data-theme="dark"] .pill{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.12);
}

html[data-theme="dark"] .note{
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.10);
  color:rgba(255,255,255,.72);
}

html[data-theme="dark"] .footerbar{color:rgba(255,255,255,.55);}

html[data-theme="dark"] .theme-toggle-link{color:rgba(255,255,255,.55);}

html[data-theme="dark"] .socialIcon{color:#9aa0a6;}

html[data-theme="dark"] .socialIcon:hover{color:#fff;}

/* ── Responsive (shared) ── */

@media (max-width: 640px){
  .hero-sub{
    transform: translateY(70px);
    margin-bottom: 18px;
    white-space: normal;
  }
  .hero-title{ font-size: 44px; line-height: 1.05; }
  .hero-loc{ font-size: 12px; }
}
