/* West Beach single-property site */
:root{
  --bg:#0b1220;
  --text:#101828;
  --muted:#667085;
  --paper:#ffffff;
  --alt:#f6f8fb;
  --line:rgba(16,24,40,.10);
  --accent:#d7b56d; /* coastal-gold */
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; color:var(--text); background:var(--paper)}
a{color:inherit}
img{max-width:100%;display:block}

.container{max-width:1100px;margin:0 auto;padding:0 20px}

.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav__inner{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:14px 0}
.brand{display:block;text-decoration:none}
.brand__title{font-weight:800;letter-spacing:.2px}
.brand__subtitle{font-size:12px;color:var(--muted)}
.nav__links{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.nav__links a{font-size:14px;color:var(--muted);text-decoration:none}
.nav__links a:hover{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--accent), #f0dca5);
  color:#1b2336;
  text-decoration:none;
  font-weight:800;
  border:1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 30px rgba(16,24,40,.10);
}
.btn--ghost{
  background:transparent;
  color:var(--paper);
  border:1px solid rgba(255,255,255,.35);
  box-shadow:none;
}
.btn--small{padding:10px 14px}
.btn--wide{width:100%}

.hero{
  min-height:78vh;
  display:flex;
  align-items:flex-end;
  color:var(--paper);
  background:
    linear-gradient(180deg, rgba(11,18,32,.18) 0%, rgba(11,18,32,.90) 82%),
    url("assets/hero.jpg") center/cover no-repeat;
}
.hero__content{width:100%; padding:90px 0 40px}
.pill{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  margin:0 0 12px;
  font-size:13px;
}
.hero h1{margin:0 0 10px;font-size:46px;letter-spacing:.2px}
.hero__sub{margin:0 0 18px;color:rgba(255,255,255,.88);max-width:860px;font-size:18px;line-height:1.55}
.hero__cta{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:18px}
.micro{font-size:12px;color:rgba(255,255,255,.78);line-height:1.5}
.micro a{color:rgba(255,255,255,.92);text-decoration:none}
.micro a:hover{text-decoration:underline}

.stats{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:10px;
  margin:18px 0 10px;
}
.stat{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
  padding:10px 12px;
}
.stat__label{font-size:12px;color:rgba(255,255,255,.75)}
.stat__value{font-weight:900;margin-top:3px}

.section{padding:70px 0}
.section--alt{background:var(--alt)}
.section--dark{background:linear-gradient(135deg, #0b1220, #0f1c2e); color:var(--paper)}
.section h2{margin:0 0 12px;font-size:32px}
.lead{margin:0 0 18px;color:var(--muted);font-size:16px;line-height:1.75}
.section--dark .lead{color:rgba(255,255,255,.78)}
.note{color:var(--muted);font-size:13px;line-height:1.65}
.section--dark .note{color:rgba(255,255,255,.70)}

.grid{display:grid;gap:18px}
.grid--2{grid-template-columns: 1.2fr .8fr}
.grid--3{grid-template-columns: repeat(3, minmax(0,1fr))}

.card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 16px 40px rgba(16,24,40,.08);
}
.section--dark .card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:none;
}
.card h3{margin:0 0 8px}
.divider{height:1px;background:var(--line);margin:16px 0}
.section--dark .divider{background:rgba(255,255,255,.18)}

.keylines{border-top:1px solid var(--line); margin-top:14px}
.keyline{
  display:flex; justify-content:space-between; gap:18px;
  padding:10px 0;
  border-bottom:1px solid var(--line);
  font-size:14px;
}
.keyline span:first-child{color:var(--muted)}
.keyline span:last-child{font-weight:800}

.feature{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
}
.feature h3{margin:0 0 6px}
.feature p{margin:0;color:var(--muted);line-height:1.65}

.bullets{margin:0;padding-left:18px;color:var(--muted);line-height:1.9}
.bullets strong{color:var(--text)}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.thumb{
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(16,24,40,.10);
  background:#fff;
  box-shadow: 0 12px 30px rgba(16,24,40,.08);
  text-decoration:none;
}
.thumb img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition: transform .35s ease;
}
.thumb:hover img{transform: scale(1.03)}

.contact{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.contact-mini{display:grid;gap:10px;margin-top:14px}
.micro--light{color:rgba(255,255,255,.70)}
.footer{
  padding:24px 0;
  border-top:1px solid var(--line);
  background:#ffffff;
}
.footer p{margin:6px 0;color:var(--muted);font-size:13px}
.micro--footer{max-width:900px}

@media (max-width: 960px){
  .grid--2{grid-template-columns:1fr}
  .grid--3{grid-template-columns:1fr}
  .stats{grid-template-columns: repeat(2, minmax(0,1fr))}
  .gallery{grid-template-columns: 1fr}
  .hero h1{font-size:38px}
  .thumb img{height:240px}
}
