@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700&family=Playfair+Display:wght@600;700&display=swap");

:root{
  --bg:#cfe7f3;
  --bg2:#f2e3c9;
  --card:#ffffff;
  --text:#173240;
  --muted:rgba(23,50,64,.72);
  --muted2:rgba(23,50,64,.55);
  --line:rgba(23,50,64,.12);
  --accent:#56b3d2;
  --accent2:#93d2e6;
  --shadow: 0 18px 50px rgba(23,50,64,.18);
  --radius: 22px;
  --radius2: 28px;
  --max: 1160px;
  --pad: clamp(18px, 2.2vw, 28px);
  --h1: clamp(34px, 3.8vw, 58px);
  --h2: clamp(26px, 2.4vw, 36px);
  --h3: 18px;
  --p: 16px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: "Archivo", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(1200px 600px at 70% -50%, rgba(86,179,210,.18), rgba(255,255,255,0)) ,
    radial-gradient(900px 500px at 20% 10%, rgba(242,227,201,.35), rgba(255,255,255,0)),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  line-height: 1.55;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}
img{max-width:100%;display:block}
.container{max-width:var(--max); margin:0 auto; padding: 0 var(--pad);}
.small{max-width:900px}

.nav{
  position:sticky;top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(207,231,243,.85);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
  gap:16px;
  position: relative;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:700; letter-spacing: .08em;
  text-transform:uppercase;
}
.brand-badge{
  width:34px;height:34px;border-radius:12px;
  background: linear-gradient(135deg, rgba(134,224,255,.25), rgba(255,255,255,.08));
  border: 1px solid var(--line);
  display:grid; place-items:center;
}
.brand-badge svg{width:22px;height:22px}
.nav-links{display:flex; gap:18px; align-items:center; flex-wrap:wrap; justify-content:flex-end}
.nav-links a{font-size:14px; color: var(--muted); padding:10px 10px; border-radius: 14px}
.nav-links a.active, .nav-links a:hover{color:var(--text); background: rgba(255,255,255,.06)}
.nav-toggle{
  display:none;
  width:42px;
  height:42px;
  border-radius: 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.7);
  align-items:center;
  justify-content:center;
  gap:5px;
  flex-direction: column;
  cursor: pointer;
}
.nav-toggle span{
  width:18px;
  height:2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}
.cta{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 14px;
  border-radius: 16px;
  border:1px solid rgba(86,179,210,.35);
  background: linear-gradient(135deg, rgba(86,179,210,.22), rgba(255,255,255,.65));
  box-shadow: 0 14px 40px rgba(23,50,64,.18);
  color: var(--text);
  font-size: 14px;
  white-space:nowrap;
}
.cta:hover{border-color: rgba(86,179,210,.55)}
.cta .dot{width:8px;height:8px;border-radius:99px;background: var(--accent); box-shadow: 0 0 18px rgba(86,179,210,.55)}

.hero{
  padding: clamp(36px, 4.5vw, 72px) 0 24px;
}
.hero-slider{
  position: relative;
  height: 100vh;
  min-height: 620px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-slider img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition: opacity 1.2s ease;
}
.hero-slider img.active{opacity:1}
.hero-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 0 var(--pad);
  z-index:2;
}
.hero-overlay::before{
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.25));
  z-index:0;
}
.hero-overlay-inner{
  position:relative;
  z-index:1;
  max-width: 720px;
}
.hero-overlay .hero-title{
  color:#fff;
  text-shadow: 0 18px 45px rgba(0,0,0,.45);
}
.hero-overlay .sub{
  color: rgba(255,255,255,.9);
}
.hero-overlay .btn{
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.1);
  color:#fff;
}
.hero-overlay .btn.primary{
  border-color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.22);
}
.hero-content{
  margin-top: clamp(18px, 3vw, 28px);
}
.hero-content{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(16px, 2.6vw, 26px);
  align-items:stretch;
  margin-top: clamp(18px, 3vw, 28px);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(16px, 2.6vw, 26px);
  align-items:stretch;
}
.hero-card{
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-media{
  aspect-ratio: 16/9;
  background: rgba(255,255,255,.03);
}
.hero-media img{width:100%; height:100%; object-fit:cover}
.hero-copy{
  padding: var(--pad);
}
.kicker{
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.h1{font-size: var(--h1); line-height: 1.05; margin: 12px 0 12px}
.hero-title{
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 4.6vw, 72px);
  line-height: 1.02;
  margin: 10px 0 12px;
  letter-spacing: .02em;
}
.hero-title span{
  display:block;
  text-transform: capitalize;
}
.sub{
  color: var(--muted);
  font-size: 16px;
  max-width: 56ch;
}
.hero-actions{
  display:flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--text);
  font-size: 14px;
}
.btn:hover{background: rgba(255,255,255,.08)}
.btn.primary{
  border-color: rgba(86,179,210,.45);
  background: linear-gradient(135deg, rgba(86,179,210,.20), rgba(255,255,255,.7));
}
.badges{
  display:grid; gap:12px;
  padding: var(--pad);
}
.badge{
  border-radius: 18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.7);
  padding: 14px 14px;
}
.badge .top{display:flex; align-items:center; justify-content:space-between; gap:10px}
.badge .label{font-size:12px; letter-spacing:.16em; text-transform:uppercase; color: var(--muted)}
.badge .value{font-weight:700}
.badge .hint{color: var(--muted2); font-size: 13px; margin-top: 8px}

.section{padding: 42px 0}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap; margin-bottom: 18px}
.h2{font-size: var(--h2); margin:0}
.p{color: var(--muted); margin: 0; max-width: 64ch}
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2.0vw, 22px);
}
.card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 40px rgba(23,50,64,.16);
  overflow:hidden;
}
.card-pad{padding: var(--pad)}
.card-media{aspect-ratio: 4/3; background: rgba(255,255,255,.03)}
.card-media img{width:100%; height:100%; object-fit:cover}
.card h3{margin: 0 0 8px; font-size: 18px}
.meta{display:flex; gap:10px; flex-wrap:wrap; margin-top: 10px}
.pill{
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  color: var(--muted);
  background: rgba(255,255,255,.03);
}
.two-col{display:grid; grid-template-columns: 1fr 1fr; gap: 18px}
.list{margin:12px 0 0; padding-left: 18px; color: var(--muted)}
.list li{margin: 6px 0}
.divider{height:1px; background: var(--line); margin: 22px 0}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.unit-gallery .gimg{
  border-radius: 16px;
}
.gimg{
  border-radius: 18px;
  border:1px solid var(--line);
  overflow:hidden;
  background: rgba(255,255,255,.7);
}
.gimg img{width:100%; height:100%; object-fit:cover; aspect-ratio: 4/3; cursor: zoom-in}
.card-media img, .hero-media img{cursor: zoom-in}

.footer{
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.5);
  padding: 26px 0;
  margin-top: 32px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items:start;
}
.footer small{color: var(--muted2)}
.footer a{color: var(--muted)}
.footer a:hover{color: var(--text)}
.notice{
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(255,255,255,.7);
  color: var(--muted);
  font-size: 13px;
}

.form{
  display:grid; gap: 12px;
}
.input, .textarea{
  width:100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  color: var(--text);
  outline:none;
}
.textarea{min-height: 130px; resize: vertical}
.label{font-size: 13px; color: var(--muted); margin-bottom: 6px}
.form-row{display:grid; grid-template-columns: 1fr 1fr; gap: 12px}

.breadcrumbs{color: var(--muted2); font-size: 13px; margin-top: 14px}
.breadcrumbs a{color: var(--muted)}
.breadcrumbs a:hover{color: var(--text)}

@media (max-width: 940px){
  .hero-grid{grid-template-columns: 1fr}
  .hero-content{grid-template-columns: 1fr}
  .footer-grid{grid-template-columns: 1fr}
  .two-col{grid-template-columns: 1fr}
  .form-row{grid-template-columns: 1fr}
  .nav-toggle{display:flex}
  .nav-links{
    position:absolute;
    right:0;
    top:100%;
    margin-top:10px;
    background: rgba(255,255,255,.95);
    border:1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap:6px;
    min-width: 220px;
    box-shadow: var(--shadow);
    display:none;
  }
  .nav-links a{padding:10px 12px}
  .nav.open .nav-links{display:flex}
  .nav.open .nav-toggle span:nth-child(1){transform: translateY(7px) rotate(45deg)}
  .nav.open .nav-toggle span:nth-child(2){opacity:0}
  .nav.open .nav-toggle span:nth-child(3){transform: translateY(-7px) rotate(-45deg)}
}

[data-unit-cards] .card{
  grid-column: span 6;
}

@media (max-width: 940px){
  [data-unit-cards] .card{
    grid-column: span 12;
  }
}

.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(23,50,64,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 999;
}
.lightbox.open{
  opacity: 1;
  pointer-events: auto;
}
.lightbox-inner{
  position: relative;
  max-width: 92vw;
  max-height: 92vh;
}
.lightbox img{
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(23,50,64,.35);
}
.lightbox-close{
  position: absolute;
  top: -12px;
  right: -12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.9);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
}
.no-scroll{
  overflow: hidden;
}

.map-card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.map-card iframe{
  width: 100%;
  height: min(60vh, 520px);
  border: 0;
  display: block;
}
