:root {
  --navy: #0B1D3A;
  --navy-soft: #12264a;
  --gold: #A68A56;
  --gold-soft: rgba(166, 138, 86, 0.18);
  --white: #FFFFFF;
  --paper: #F7F7F9;
  --warm: #E9E7E4;
  --ink: #1F1F1F;
  --muted: #555555;
  --line: rgba(11, 29, 58, 0.12);
  --shadow: 0 24px 60px rgba(11, 29, 58, 0.10);
  --shadow-soft: 0 18px 45px rgba(11, 29, 58, 0.07);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --transition: 0.35s ease;
}
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f9 56%, #ffffff 100%);
}
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }
p, li { color: var(--muted); font-size: 1rem; line-height: 1.8; }
h1, h2, h3, h4, h5 { font-family: "Playfair Display", serif; color: var(--navy); line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.7rem); font-weight: 700; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(166, 138, 86, 0.25);
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--navy);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.top-note {
  background: var(--navy);
  color: rgba(255,255,255,0.84);
  font-size: 0.9rem;
}
.top-note a { color: #f5e7c7; text-decoration: underline; text-underline-offset: 4px; }
.navbar-shell {
  position: sticky;
  top: 0;
  z-index: 1040;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(11, 29, 58, 0.06);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar-shell.scrolled { box-shadow: 0 12px 40px rgba(11, 29, 58, 0.08); background: rgba(255,255,255,0.93); }
.navbar-brand { font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.55rem; color: var(--navy) !important; position: relative; }
.navbar-brand::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 42px; height: 2px; background: var(--gold); }
.navbar .nav-link { color: var(--navy); font-weight: 500; padding-left: 1rem !important; padding-right: 1rem !important; position: relative; }
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.55rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition);
}
.navbar .nav-link:hover::after, .navbar .nav-link.active::after { transform: scaleX(1); }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(11, 29, 58, 0.82)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important; }
.btn-shell {
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}
.btn-shell:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-primary-shell { background: var(--navy); border: 1px solid var(--navy); color: var(--white); }
.btn-primary-shell:hover { background: var(--navy-soft); color: var(--white); }
.btn-outline-shell { background: transparent; border: 1px solid rgba(166, 138, 86, 0.5); color: var(--navy); }
.btn-outline-shell:hover { background: rgba(166, 138, 86, 0.08); border-color: var(--gold); }
.hero { position: relative; overflow: hidden; padding: 5rem 0 3rem; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(166,138,86,0.12), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(11,29,58,0.08), transparent 28%),
    linear-gradient(180deg, rgba(247,247,249,0.9), rgba(255,255,255,0.96));
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; }
.hero-copy { max-width: 640px; }
.hero-copy p.lead { font-size: 1.08rem; }
.gold-line { width: 96px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 1.5rem 0; }
.hero-art, .panel-art {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(11, 29, 58, 0.08);
  box-shadow: var(--shadow);
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(247,247,249,0.92));
}
.hero-art { padding: 1.25rem; min-height: 360px; }
.trust-strip { background: var(--navy); color: rgba(255,255,255,0.72); }
.trust-item { letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.92rem; }
.section-shell { padding: 5rem 0; }
.section-soft { background: linear-gradient(180deg, rgba(247,247,249,0.95), rgba(255,255,255,0.98)); }
.section-dark { background: var(--navy); color: rgba(255,255,255,0.82); }
.section-dark h2, .section-dark h3, .section-dark p, .section-dark li { color: rgba(255,255,255,0.9); }
.card-shell {
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 29, 58, 0.08);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 25px rgba(11,29,58,0.04);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card-shell:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(166, 138, 86, 0.35); }
.icon-orb {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(11,29,58,0.08), rgba(166,138,86,0.16));
  border: 1px solid rgba(166, 138, 86, 0.35);
  color: var(--navy);
  font-size: 1.35rem;
  transition: background var(--transition), transform var(--transition);
}
.card-shell:hover .icon-orb { transform: scale(1.06); background: linear-gradient(145deg, rgba(166,138,86,0.24), rgba(11,29,58,0.12)); }
.info-box {
  height: 100%;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(11,29,58,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.info-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.city-card { position: relative; overflow: hidden; }
.city-card::after { content: ""; position: absolute; inset: auto -15% -35% auto; width: 120px; height: 120px; border-radius: 50%; background: rgba(166,138,86,0.08); }
.city-card .pin { color: var(--gold); font-size: 1.2rem; }
.city-card:hover .pin { color: var(--navy); }
.blog-card .tag, .meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(166,138,86,0.12);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
}
.underline-link { text-decoration: none; position: relative; display: inline-flex; align-items: center; gap: 0.45rem; }
.underline-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px; background: var(--gold); transform: scaleX(1); transform-origin: left center; }
.cta-band { border-radius: var(--radius-xl); overflow: hidden; background: linear-gradient(135deg, var(--navy), #162d58); box-shadow: var(--shadow); }
.cta-band .btn-outline-shell { color: var(--white); border-color: rgba(255,255,255,0.35); }
.pricing-card.recommended { border-color: rgba(166,138,86,0.6); box-shadow: 0 28px 65px rgba(11,29,58,0.15); transform: translateY(-6px); }
.pricing-card .price { font-family: "Playfair Display", serif; font-size: 2.35rem; color: var(--navy); }
.check-list { list-style: none; padding-left: 0; margin-bottom: 0; }
.check-list li { position: relative; padding-left: 1.8rem; margin-bottom: 0.85rem; }
.check-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 700; }
.timeline { position: relative; padding-left: 1.6rem; }
.timeline::before { content: ""; position: absolute; left: 0.35rem; top: 0.2rem; bottom: 0.2rem; width: 1px; background: rgba(166,138,86,0.45); }
.timeline-step { position: relative; padding-left: 1.3rem; margin-bottom: 1.5rem; }
.timeline-step::before { content: ""; position: absolute; left: -1.55rem; top: 0.45rem; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(166,138,86,0.15); }
.content-shell { max-width: 820px; }
.content-shell p + h2, .content-shell ul + h2 { margin-top: 2.5rem; }
.article-hero { padding: 4rem 0 2rem; }
.article-box {
  padding: 1.4rem 1.5rem;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: linear-gradient(145deg, rgba(166,138,86,0.08), rgba(11,29,58,0.03));
}
.sidebar-shell { position: sticky; top: 120px; }
.sidebar-link { display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--line); color: var(--navy); font-weight: 500; }
.breadcrumb-shell { padding-top: 1rem; }
.breadcrumb { margin-bottom: 0; background: transparent; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(11,29,58,0.45); }
.readable-list { padding-left: 1.1rem; }
.readable-list li { margin-bottom: 0.7rem; }
.map-card { min-height: 280px; position: relative; overflow: hidden; }
.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(11,29,58,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(11,29,58,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(145deg, var(--gold), #c4ad7d);
  transform-origin: center;
  rotate: -45deg;
  box-shadow: var(--shadow-soft);
}
.map-pin::after { content: ""; position: absolute; inset: 17px; border-radius: 50%; background: var(--white); }
.form-shell .form-control, .form-shell .form-select {
  border-radius: 16px;
  border: 1px solid rgba(11,29,58,0.12);
  padding: 0.9rem 1rem;
  box-shadow: inset 0 1px 1px rgba(11,29,58,0.02);
}
.form-shell .form-control:focus, .form-shell .form-select:focus {
  border-color: rgba(166,138,86,0.7);
  box-shadow: 0 0 0 0.2rem rgba(166,138,86,0.12);
}
.shake { animation: shake 0.35s linear; }
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
.footer-shell { background: #09172d; color: rgba(255,255,255,0.76); }
.footer-shell a { color: rgba(255,255,255,0.88); }
.footer-shell a:hover { color: #f5e7c7; }
.footer-brand { font-family: "Playfair Display", serif; font-size: 1.45rem; color: var(--white); display: inline-block; margin-bottom: 1rem; position: relative; }
.footer-brand::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 42px; height: 2px; background: var(--gold); }
.footer-note { font-size: 0.95rem; color: rgba(255,255,255,0.72); }
.rotator { display: inline-block; min-width: 220px; color: var(--gold); }
.rotator.is-switching { opacity: 0; transform: translateY(4px); transition: opacity 0.2s ease, transform 0.2s ease; }
.portrait-panel { position: relative; min-height: 320px; }
.portrait-badge { position: absolute; right: 1.2rem; bottom: 1.2rem; padding: 0.9rem 1rem; border-radius: 18px; background: rgba(255,255,255,0.9); border: 1px solid rgba(11,29,58,0.08); box-shadow: var(--shadow-soft); }
.skyline-wrap svg, .hero-art svg, .panel-art svg { width: 100%; height: auto; }
.modal-content { border-radius: var(--radius-lg); border: 1px solid rgba(11,29,58,0.08); }
.not-found { min-height: 72vh; display: flex; align-items: center; }
@media (max-width: 991.98px) {
  .hero { padding-top: 3.5rem; }
  .hero-art { min-height: 280px; }
  .sidebar-shell { position: static; top: auto; }
}
@media (max-width: 575.98px) {
  .section-shell { padding: 4rem 0; }
  .card-shell { padding: 1.4rem; }
  .btn-shell { width: 100%; justify-content: center; }
}