:root {
  --ink: #102421;
  --deep: #0a1a19;
  --storm: #173b38;
  --teal: #1e5d55;
  --jade: #4f8f7f;
  --rain: #d9e7df;
  --cloud: #f5f1e8;
  --paper: #fffdf8;
  --gold: #d4a24c;
  --terracotta: #a85437;
  --line: rgba(16, 36, 33, 0.14);
  --shadow: 0 24px 60px rgba(8, 27, 24, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 5vw;
  background: rgba(255, 253, 248, 0.93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--storm);
  color: white;
  transform: rotate(180deg);
}
.brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  line-height: 1;
}
.brand small {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .62rem;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .92rem;
  font-weight: 600;
}
.main-nav a:hover { color: var(--teal); }
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--storm);
  color: white !important;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  padding: 8px 12px;
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: center;
  gap: 7vw;
  padding: 9vw 8vw;
  background:
    linear-gradient(125deg, rgba(8, 28, 26, .97), rgba(20, 63, 58, .94)),
    var(--deep);
  color: white;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.storm-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: .55;
}
.storm-glow-one {
  width: 420px; height: 420px;
  right: -80px; top: -100px;
  background: rgba(79, 143, 127, .45);
}
.storm-glow-two {
  width: 300px; height: 300px;
  left: 30%; bottom: -150px;
  background: rgba(212, 162, 76, .18);
}
.hero-copy, .forecast-card { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 14px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--gold);
}
h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.02;
}
h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.8rem, 7vw, 7.3rem);
  letter-spacing: -.045em;
}
h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  letter-spacing: -.035em;
}
h3 {
  margin: 12px 0 8px;
  font-size: 1.8rem;
}
.hero-text {
  max-width: 710px;
  margin: 28px 0;
  color: rgba(255,255,255,.76);
  font-size: 1.12rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
}
.button-primary { background: var(--gold); color: var(--deep); }
.button-primary:hover { transform: translateY(-2px); }
.button-secondary { border: 1px solid rgba(255,255,255,.35); color: white; }

.forecast-card {
  width: min(100%, 390px);
  justify-self: end;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px rgba(0,0,0,.24);
}
.forecast-top { display: flex; justify-content: space-between; font-weight: 700; }
.live-dot {
  position: relative;
  padding-left: 16px;
  color: #d6f7df;
}
.live-dot::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #74e89b;
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(116,232,155,.12);
}
.temperature {
  margin-top: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  line-height: 1;
}
.forecast-card > p { color: rgba(255,255,255,.72); }
.forecast-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.16);
  gap: 10px;
  font-size: .72rem;
  color: rgba(255,255,255,.6);
}
.forecast-details strong { color: white; font-size: .86rem; }

.section { padding: 110px 8vw; }
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: start;
}
.intro-copy { font-size: 1.15rem; color: #42524f; }
.intro-copy p:first-child { margin-top: 4px; }
.centered { max-width: 850px; margin: 0 auto 50px; text-align: center; }

.spaces { background: var(--cloud); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  min-height: 250px;
  padding: 30px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid rgba(16,36,33,.08);
  box-shadow: 0 10px 30px rgba(16,36,33,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.feature-card .icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--rain);
  font-size: 1.4rem;
}
.feature-card p { color: #586764; }

.weather {
  background: var(--storm);
  color: white;
}
.weather-panel {
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 8vw;
}
.weather-panel p { color: rgba(255,255,255,.72); }
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.check-list li {
  position: relative;
  padding: 9px 0 9px 30px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}
.radar-art {
  position: relative;
  aspect-ratio: 1;
  width: min(100%, 430px);
  justify-self: center;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle, #163f3a 0 12%, #0a2522 13% 100%);
  border: 1px solid rgba(255,255,255,.15);
}
.radar-ring {
  position: absolute;
  left: 50%; top: 50%;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.ring-one { width: 35%; height: 35%; }
.ring-two { width: 65%; height: 65%; }
.ring-three { width: 94%; height: 94%; }
.radar-sweep {
  position: absolute;
  left: 50%; bottom: 50%;
  width: 48%; height: 48%;
  transform-origin: left bottom;
  background: conic-gradient(from 0deg, rgba(86, 222, 164, .5), transparent 25deg);
  animation: sweep 4.5s linear infinite;
}
.radar-center {
  position: absolute;
  left: 50%; top: 50%;
  width: 14px; height: 14px;
  border: 3px solid white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.storm-cell {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(212,162,76,.85);
  box-shadow: 0 0 30px rgba(212,162,76,.45);
}
.cell-one { width: 28px; height: 28px; left: 24%; top: 34%; }
.cell-two { width: 42px; height: 42px; right: 19%; top: 25%; background: rgba(168,84,55,.9); }
.cell-three { width: 20px; height: 20px; right: 32%; bottom: 24%; }
@keyframes sweep { to { transform: rotate(360deg); } }

.location { background: #efe9dc; }
.location-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.location-copy { padding: clamp(40px, 6vw, 80px); }
.location-copy p { color: #566561; }
.location-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.location-points span {
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--rain);
  font-size: .8rem;
  font-weight: 700;
}
.building-sketch {
  position: relative;
  min-height: 500px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 70px 40px 40px;
  background:
    linear-gradient(rgba(17,57,53,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,57,53,.08) 1px, transparent 1px),
    #d8d2c5;
  background-size: 36px 36px;
}
.building-roof {
  position: absolute;
  left: 10%; right: 8%; top: 18%;
  height: 26px;
  background: #b7a47f;
  border: 5px solid var(--ink);
  border-bottom: 0;
}
.upper-floor, .lower-floor {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 5px solid var(--ink);
  background: #eee6d6;
}
.upper-floor {
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 0;
}
.lower-floor { grid-template-columns: repeat(3, 1fr); }
.upper-floor i {
  height: 110px;
  border: 4px solid var(--ink);
  border-radius: 45% 45% 0 0;
  background: linear-gradient(#7aa29a, #c8ddd8);
}
.lower-floor i {
  height: 145px;
  border: 4px solid var(--ink);
  background: linear-gradient(#577d76, #b8d0ca);
}
.awning {
  padding: 12px;
  text-align: center;
  background: var(--terracotta);
  color: white;
  font-weight: 800;
  letter-spacing: .16em;
}

.updates { background: var(--paper); text-align: center; }
.updates-box {
  max-width: 850px;
  margin: auto;
  padding: 70px;
  border-radius: 28px;
  background: var(--cloud);
}
.updates-box > p { color: #566561; }
.signup-form {
  display: flex;
  max-width: 560px;
  margin: 28px auto 0;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
}
.signup-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border: 0;
  outline: 0;
  background: transparent;
}
.signup-form button {
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--storm);
  color: white;
  font-weight: 700;
  cursor: pointer;
}
.form-message { min-height: 24px; margin: 14px 0 0; font-size: .9rem; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 46px 8vw;
  background: var(--deep);
  color: white;
}
footer strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}
footer p, footer span { color: rgba(255,255,255,.65); }
.footer-right {
  display: flex;
  flex-direction: column;
  text-align: right;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 5vw 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 120px;
  }
  .forecast-card { justify-self: start; }
  .intro, .weather-panel, .location-card { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .site-header { padding: 0 20px; }
  .hero { padding: 96px 22px 70px; }
  h1 { font-size: clamp(3.3rem, 16vw, 5rem); }
  .section { padding: 78px 22px; }
  .card-grid { grid-template-columns: 1fr; }
  .updates-box { padding: 44px 22px; }
  .signup-form {
    flex-direction: column;
    border-radius: 18px;
  }
  .signup-form button { border-radius: 12px; }
  .building-sketch { min-height: 400px; padding: 55px 18px 24px; }
  .upper-floor, .lower-floor { gap: 8px; padding: 14px; }
  .upper-floor i { height: 80px; }
  .lower-floor i { height: 105px; }
  footer { flex-direction: column; }
  .footer-right { text-align: left; }
}

.interest-count{display:inline-block;margin:8px auto 18px!important;padding:9px 15px;border-radius:999px;background:rgba(30,93,85,.10);color:var(--teal)!important;font-weight:700;font-size:.9rem}
.signup-form input+input{border-left:1px solid var(--line)}
.privacy-note{margin:12px 0 0!important;font-size:.78rem;color:#71807d!important}
.form-message.success{color:#176b4d!important}.form-message.error{color:#9b3326!important}
@media(max-width:620px){.signup-form input+input{border-left:0;border-top:1px solid var(--line)}}
