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

:root {
  --navy: #03182d;
  --deep: #020d19;
  --gold: #caa24d;
  --aqua: #11c4c5;
  --cream: #f4efe7;
  --ink: #102033;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0,0,0,.35);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background: var(--deep);
  line-height: 1.65;
}

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

.bg {
  background-size: cover;
  background-position: center;
  position: relative;
  isolation: isolate;
}

.bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg { background-image: url("hero.jpg"); }
.sflorida-bg { background-image: url("sflorida.jpg"); }
.flyin-bg { background-image: url("flyin.jpg"); }
.bahamas-bg { background-image: url("bahamas.jpg"); }
.island-bg { background-image: url("private-island.jpg"); }
.contact-bg { background-image: url("contact.jpg"); }

.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
}

.hero::before {
  background:
    linear-gradient(180deg, rgba(3,24,45,.34), rgba(3,24,45,.78)),
    linear-gradient(90deg, rgba(3,24,45,.82), rgba(3,24,45,.22), rgba(3,24,45,.62));
}

.nav {
  min-height: 86px;
  padding: 18px clamp(24px, 4vw, 70px);
  background: rgba(3,24,45,.94);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  display: grid;
  gap: 2px;
}

.brand-main {
  font-family: Georgia, serif;
  font-size: clamp(1.9rem, 2.6vw, 3rem);
  letter-spacing: .16em;
  color: var(--gold);
}

.brand-sub {
  text-transform: uppercase;
  font-size: .68rem;
  letter-spacing: .22em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  text-transform: uppercase;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .08em;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
  padding: 4px 10px;
  font-size: 1.6rem;
}

.hero-content {
  width: min(980px, 92%);
  margin: auto;
  text-align: center;
  padding: 70px 0 105px;
}

.eyebrow {
  color: var(--aqua);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
  font-size: .76rem;
  margin-bottom: 14px;
}

.eyebrow.dark {
  color: #98742a;
}

h1, h2 {
  font-family: Georgia, serif;
  font-weight: 500;
}

h1 {
  font-size: clamp(4.5rem, 10vw, 9.2rem);
  line-height: .9;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0,0,0,.5);
}

.tagline {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: clamp(.92rem, 1.6vw, 1.25rem);
  margin-top: 16px;
}

.hero-copy {
  max-width: 760px;
  margin: 28px auto;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  text-shadow: 0 2px 14px rgba(0,0,0,.7);
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  font-size: .78rem;
}

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

.btn.outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn.outline-dark {
  border: 1px solid #98742a;
  color: #98742a;
}

.division {
  min-height: 560px;
  display: grid;
  grid-template-columns: .9fr 1.35fr;
}

.division.reverse {
  grid-template-columns: 1.35fr .9fr;
}

.division-image {
  overflow: hidden;
  transition: transform .8s ease;
}

.division-image:hover {
  transform: scale(1.015);
}

.division.light {
  background: var(--cream);
  color: var(--ink);
}

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

.division-copy {
  padding: clamp(40px, 6vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.division-copy h2 {
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.division-copy p {
  margin: 22px 0 26px;
  max-width: 520px;
}

.division-image::before {
  background: linear-gradient(90deg, rgba(3,24,45,.20), rgba(3,24,45,.02));
}

.contact-section {
  min-height: 620px;
  padding: 70px clamp(24px, 5vw, 84px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contact-section::before {
  background:
    linear-gradient(90deg, rgba(3,24,45,.94), rgba(3,24,45,.72), rgba(3,24,45,.22)),
    linear-gradient(180deg, rgba(3,24,45,.26), rgba(3,24,45,.82));
}

.contact-card {
  margin-left: clamp(0px, 5vw, 80px);
  background: rgba(3,24,45,.78);
  border: 1px solid rgba(255,255,255,.14);
  padding: clamp(30px, 5vw, 56px);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.contact-card p {
  margin: 18px 0;
}

.contact-lines {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 22px 0;
}

.contact-lines a {
  color: var(--gold);
  font-weight: 900;
}

form {
  display: grid;
  gap: 14px;
}

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color: var(--white);
  padding: 14px;
  font: inherit;
}

select option {
  color: var(--ink);
}

.contact-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 12px;
}

.crossed-flags {
  width: 150px;
  height: auto;
  display: block;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.35));
}

footer {
  background: #020d19;
  padding: 24px clamp(24px, 4vw, 70px);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .9rem;
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 12px;
  }

  .nav-links.active {
    display: flex;
  }

  .division,
  .division.reverse,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .division-image {
    min-height: 360px;
  }

  h1 {
    font-size: clamp(3.2rem, 14vw, 5.2rem);
  }

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

  .crossed-flags {
    width: 135px;
  }

  .contact-card {
    margin-left: 0;
  }
}

/* Gallery */
.gallery-section {
  background:
    radial-gradient(circle at top left, rgba(17,196,197,.16), transparent 34%),
    linear-gradient(180deg, #020d19, #03182d 52%, #020d19);
  color: var(--white);
  padding: clamp(64px, 7vw, 110px) clamp(24px, 5vw, 84px);
}

.gallery-intro {
  width: min(980px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.gallery-intro h2 {
  font-size: clamp(2.2rem, 4.6vw, 5.2rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: .045em;
}

.gallery-intro p {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255,255,255,.86);
}

.gallery-grid {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  min-height: clamp(180px, 18vw, 320px);
  border: 1px solid rgba(202,162,77,.28);
  background: rgba(255,255,255,.04);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  padding: 0;
}

.gallery-item::after {
  content: "View";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(3,24,45,.32);
  color: var(--white);
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  transition: opacity .3s ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  transition: transform .75s ease, filter .75s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.055);
  filter: brightness(.86);
}

.gallery-empty {
  display: none;
  width: min(780px, 100%);
  margin: 28px auto 0;
  padding: 22px;
  border: 1px solid rgba(202,162,77,.38);
  color: rgba(255,255,255,.82);
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(2,13,25,.94);
  padding: 48px 72px;
}

.lightbox.active { display: flex; }
body.no-scroll { overflow: hidden; }

.lightbox img {
  max-width: min(1120px, 100%);
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
  border: 1px solid rgba(202,162,77,.32);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 1px solid rgba(202,162,77,.55);
  background: rgba(3,24,45,.75);
  color: var(--white);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(202,162,77,.82);
  color: var(--deep);
  transform: translateY(-1px);
}

.lightbox-close {
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  width: 48px;
  height: 64px;
  transform: translateY(-50%);
  font-size: 2rem;
}

.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }

.lightbox-count {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.82);
  font-weight: 800;
  letter-spacing: .08em;
}

@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .gallery-item { min-height: 180px; }
  .lightbox { padding: 54px 18px; }
  .lightbox-prev,
  .lightbox-next { width: 42px; height: 54px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
