:root {
  --navy: #07162A;
  --blue: #0B1F3A;
  --gold: #D4AF37;
  --white: #ffffff;
  --light: #F5F7FB;
  --text: #1E293B;
  --muted: #64748B;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 22px 0;
  z-index: 20;
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--blue);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,.24);
}

.brand-name {
  font-family: Georgia, serif;
  font-size: 22px;
  letter-spacing: .04em;
}

.brand-subtitle {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .25em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 30px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
}

.main-nav a:hover {
  color: var(--gold);
}

.hero {
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(90deg, rgba(7,22,42,.98), rgba(11,31,58,.88), rgba(11,31,58,.35)),
    url("hero-panavista.svg") center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 150px 0 90px;
  max-width: 760px;
}

.pill {
  display: inline-flex;
  border: 1px solid rgba(212,175,55,.55);
  color: var(--gold);
  padding: 10px 17px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  margin-bottom: 26px;
  font-size: 14px;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 78px);
  line-height: 1.02;
  margin: 0 0 24px;
}

.hero p {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  margin: 0 0 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 16px 25px;
  font-weight: 700;
}

.btn-gold {
  background: var(--gold);
  color: var(--blue);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
}

.btn-dark {
  background: var(--blue);
  color: var(--white);
}

.section {
  padding: 96px 0;
}

.light {
  background: var(--light);
}

.white {
  background: var(--white);
}

.dark {
  background: var(--blue);
  color: var(--white);
}

.kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 13px;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 14px;
}

.section-intro {
  max-width: 820px;
  margin-bottom: 52px;
}

.section h2,
.content-panel h2,
.highlight-card h2,
.contact-section h2 {
  color: var(--blue);
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.08;
  margin: 0 0 22px;
}

.dark h2 {
  color: var(--white);
}

.section p,
.content-panel p,
.highlight-card p,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.dark p {
  color: rgba(255,255,255,.76);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1px solid #e8edf5;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(15,23,42,.04);
}

.card:hover {
  box-shadow: 0 18px 45px rgba(15,23,42,.10);
  transform: translateY(-3px);
  transition: .25s ease;
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: var(--blue);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.card h3 {
  color: var(--blue);
  font-size: 25px;
  margin: 0 0 12px;
}

.card p {
  font-size: 16px;
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.image-panel {
  min-height: 520px;
  border-radius: 36px;
  box-shadow: 0 25px 70px rgba(15,23,42,.18);
}

.about-image {
  background:
    linear-gradient(rgba(11,31,58,.12), rgba(11,31,58,.12)),
    url("about-panavista.svg") center/cover no-repeat;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 15px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #334155;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.property-item {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  border-radius: 26px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.property-item span {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--gold);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.highlight-card {
  background: var(--white);
  border: 1px solid #e8edf5;
  border-radius: 32px;
  padding: 38px;
  box-shadow: 0 8px 25px rgba(15,23,42,.04);
}

.highlight-card.navy {
  background: var(--blue);
  color: var(--white);
}

.highlight-card.navy h2 {
  color: var(--white);
}

.highlight-card.navy p {
  color: rgba(255,255,255,.76);
}

.narrow {
  max-width: 940px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0;
}

.contact-card {
  background: var(--light);
  border: 1px solid #e8edf5;
  border-radius: 26px;
  padding: 25px;
  text-align: left;
}

.contact-card strong {
  display: block;
  color: var(--blue);
  margin-bottom: 8px;
}

.contact-card span {
  color: var(--muted);
}

.footer {
  background: #061326;
  color: var(--white);
  padding: 36px 0;
}

.footer small {
  color: rgba(255,255,255,.55);
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .cards-grid,
  .split,
  .property-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 135px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
