
:root {
  --navy: #133b63;
  --gold: #c89b4d;
  --light: #f5f3ef;
  --sand: #f1ede6;
  --text: #223043;
  --muted: #5f6f80;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img {
  max-width: 100%;
  display: block;
}

a { color: inherit; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 88vh;
  color: var(--white);
  background:
    linear-gradient(rgba(19, 59, 99, 0.50), rgba(19, 59, 99, 0.58)),
    url("aerial_2.png") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 27, 45, 0.10), rgba(8, 27, 45, 0.28));
}

.nav, .hero-content { position: relative; z-index: 1; }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 88px;
  height: auto;
  border-radius: 12px;
  background: rgba(255,255,255,0.88);
  padding: 6px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.brand-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-subtitle {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.92);
}

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.95);
}

.hero-content {
  padding: 90px 0 120px;
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  margin: 0 0 18px;
}

.hero-copy {
  font-size: 1.15rem;
  max-width: 680px;
  color: rgba(255,255,255,0.94);
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  background: var(--gold);
  color: #1f2937;
  text-decoration: none;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.button-ghost {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.38);
}

.section {
  padding: 74px 0;
}

.alt-section {
  background: var(--light);
  padding: 74px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 8px;
  color: var(--navy);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.card-body {
  padding: 22px;
}

.card-body h3 {
  font-size: 1.65rem;
  margin: 0 0 10px;
  color: var(--navy);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.amenities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.amenity {
  background: var(--sand);
  border-radius: 18px;
  padding: 22px;
}

.amenity h3 {
  margin-top: 0;
  color: var(--navy);
}

.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.92);
  padding: 28px 0;
}

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

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 900px) {
  .cards,
  .gallery,
  .amenities {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 60px 0 90px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .logo {
    width: 72px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .button {
    width: 100%;
    text-align: center;
  }
}


.button-sub {
  font-size: 0.88em;
  font-weight: 700;
}


.card .button {
  text-align: center;
  min-width: 170px;
  line-height: 1.15;
}

.card .button-sub {
  display: block;
  font-size: 0.72em;
  font-weight: 700;
  margin-top: 4px;
  text-align: center;
}
