:root {
  --navy: #061220;
  --navy2: #0E2340;
  --teal: #00C2D1;
  --teal2: #00E5F5;
  --cream: #EDE8DC;
  --sand: #DDD5C0;
  --warm: #C4A882;
  --white: #FFFFFF;
  --text: #061220;
  --muted: #4A6070;
  --accent: #FF8C2A;
  --green: #00D166;
  --red: #FF2D3B;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overscroll-behavior-x: none; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5%;
  background: rgba(13,27,42,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,194,209,0.5);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.logo span { color: var(--teal); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.88);
  font-size: 14px; font-weight: 400; letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal2); }
.nav-cta {
  background: var(--teal); color: var(--white);
  border: none; padding: 10px 22px; border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  cursor: pointer; transition: background 0.2s, transform 0.1s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--teal2); transform: translateY(-1px); }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  background: var(--navy);
  padding: 160px 5% 80px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 0%, rgba(0,194,209,0.22) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.page-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,194,209,0.25); border: 1px solid rgba(0,194,209,0.55);
  color: var(--teal2); font-size: 12px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 100px;
  margin-bottom: 24px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
}
.page-hero h1 em { color: var(--teal2); font-style: normal; }
.page-hero p.lead {
  font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.85);
  max-width: 620px;
}
.breadcrumbs {
  font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 20px;
}
.breadcrumbs a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumbs a:hover { color: var(--teal2); }

/* ── CONTENT ── */
.content {
  max-width: 820px; margin: 0 auto; padding: 72px 5% 100px;
}
.content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 34px); font-weight: 700; line-height: 1.2;
  color: var(--navy); margin: 48px 0 18px;
}
.content h2:first-child { margin-top: 0; }
.content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--navy); margin: 28px 0 12px;
}
.content p {
  font-size: 16px; line-height: 1.8; color: var(--muted); margin-bottom: 18px;
}
.content ul, .content ol {
  margin: 0 0 18px 22px; color: var(--muted); font-size: 16px; line-height: 1.8;
}
.content li { margin-bottom: 6px; }
.content a.inline-link { color: var(--teal); font-weight: 500; text-decoration: underline; }
.content strong { color: var(--navy); }
.updated-note { font-size: 13px; color: var(--muted); margin-bottom: 40px; font-style: italic; }

/* ── CARDS / GRIDS ── */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin: 24px 0 40px;
}
.info-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px; padding: 26px;
}
.info-card h3 { margin-top: 0; font-size: 17px; }
.info-card p { font-size: 14px; margin-bottom: 0; }

/* ── BLOG LIST ── */
.post-list { display: flex; flex-direction: column; gap: 28px; margin-top: 24px; }
.post-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px; padding: 30px; text-decoration: none; display: block;
  transition: transform 0.15s, border-color 0.15s;
}
.post-card:hover { transform: translateY(-2px); border-color: var(--teal); }
.post-date { font-size: 12px; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; margin-bottom: 8px; }
.post-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.post-excerpt { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ── CITY GRID (cities index) ── */
.city-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px; margin-top: 24px;
}
.city-chip {
  background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px; padding: 16px 20px; text-decoration: none;
  font-weight: 500; color: var(--navy); transition: all 0.15s;
}
.city-chip:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

.city-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px; margin-top: 24px;
}
.city-row {
  display: block; background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px; padding: 20px 22px; text-decoration: none;
  transition: all 0.15s;
}
.city-row:hover { border-color: var(--teal); transform: translateY(-2px); }
.city-row h3 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 19px; margin-bottom: 8px; }
.city-row p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); padding: 20px 0; }
.faq-q { font-weight: 500; color: var(--navy); margin-bottom: 8px; font-size: 16px; }
.faq-a { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy); border-radius: 20px; padding: 48px 40px;
  text-align: center; margin: 48px 0 8px;
}
.cta-band h3 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 26px; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.btn-primary {
  box-shadow: 0 4px 20px rgba(0,194,209,0.35);
  background: var(--teal); color: var(--white);
  border: none; padding: 15px 32px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
  cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--teal2); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(0,229,245,0.5); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.3); padding: 15px 32px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 400;
  cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

/* ── FOOTER ── */
footer {
  background: var(--navy); padding: 60px 5% 30px;
  border-top: 1px solid rgba(0,194,209,0.5);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-top: 12px; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--teal); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .content { padding: 56px 6% 72px; }
}
