/* Shared site layout: navigation + footer */

:root {
  --nav-bg: #4F6068;
  --gold: #c4a87a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Lato', sans-serif;
}

/* Header mount — prevents layout jump while nav loads */
#site-header {
  min-height: 100px;
  background: var(--nav-bg);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--nav-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 100px;
  transition: box-shadow 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 350px;
  width: 350px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links > li > a {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  display: block;
  transition: background 0.2s;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  background: rgba(255, 255, 255, 0.18);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--nav-bg);
  min-width: 215px;
  padding: 0.4rem 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 6px 6px;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.55rem 1.2rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 300;
  min-width: 44px;
  min-height: 44px;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-mobile-open .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-mobile-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-mobile-open .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-open .nav-links {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--nav-bg);
  padding: 0.8rem 0 1.2rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  gap: 0;
}

.nav-mobile-open .nav-links > li > a {
  padding: 0.75rem 1.6rem;
  border-radius: 0;
  font-size: 0.95rem;
}

.nav-mobile-open .dropdown-menu {
  display: block !important;
  position: static;
  box-shadow: none;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 0;
  padding: 0;
}

/* ── FOOTER ── */
footer {
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/beach.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 13, 0.72);
  z-index: 1;
}

.footer-body {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr;
  gap: 3rem;
}

.footer-brand h3 {
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
  max-width: 310px;
  margin-bottom: 1.4rem;
}

.footer-connect-label {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 0.9rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  color: #fff;
}

.footer-social svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  display: block;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.55rem;
}

.footer-col ul li a {
  font-family: var(--sans);
  font-size: 0.83rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-map h4 {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-map p {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.6rem;
}

.footer-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 6px;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 2rem;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.38);
}

.footer-operator {
  margin-bottom: 0.25rem;
}

.footer-operator strong {
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ── RESPONSIVE NAV + FOOTER ── */
@media (max-width: 960px) {
  #site-header {
    min-height: 80px;
  }

  nav {
    height: 80px;
  }

  .nav-logo img {
    height: 250px;
    width: 250px;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .footer-body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  #site-header {
    min-height: 64px;
  }

  nav {
    padding: 0 1rem;
    height: 64px;
  }

  .nav-logo img {
    height: 200px;
    width: 200px;
  }
}


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

:root {
  --nav-bg: #4F6068;
  --text: #1a1a1a;
  --text-mid: #444;
  --text-light: #666;
  --gold: #c4a87a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Lato', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: #fff; color: var(--text); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--nav-bg);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 100px;
  transition: box-shadow 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo img { height: 350px; width: 350px; object-fit: contain;}
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links > li > a {
  font-family: var(--sans); font-size: 0.84rem; font-weight: 700;
  color: #fff; text-decoration: none;
  padding: 0.5rem 0.8rem; border-radius: 4px; display: block;
  transition: background 0.2s;
}
.nav-links > li > a:hover { background: rgba(255,255,255,0.13); }
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--nav-bg); min-width: 215px; padding: 0.4rem 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2); border-radius: 0 0 6px 6px;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 0.55rem 1.2rem;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 400;
  color: rgba(255,255,255,0.88); text-decoration: none;
}
.dropdown-menu a:hover { background: rgba(255,255,255,0.1); }

/* ── HERO ── */
.hero {
  position: relative; height: 520px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; 
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/yo.png');
  background-size: cover; background-position: center; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(15, 30, 25, 0.55); z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 820px; padding: 0 2rem;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.hero-content h1 {
  font-family: var(--sans); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: #fff; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.hero-content .hero-tagline {
  font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 400; font-style: italic;
  color: rgba(255,255,255,0.93); margin-bottom: 1.4rem; line-height: 1.5;
}
.hero-content .hero-desc {
  font-family: var(--sans); font-size: 0.9rem; font-weight: 400;
  color: rgba(255,255,255,0.85); line-height: 1.85;
}

/* ── INCLUDED SECTION ── */
.included {
  padding: 4.5rem 2rem;
  background: #e8eeed;
}
.included-inner {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 4rem; align-items: start;
}
.included-text h2 {
  font-family: var(--sans); font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--text); margin-bottom: 1rem;
}
.included-text > p {
  font-family: var(--sans); font-size: 0.9rem; font-weight: 400;
  color: var(--text-light); line-height: 1.85; margin-bottom: 1.4rem;
}
.included-text > p strong { color: var(--text); font-weight: 700; }

/* leaf list */
.leaf-list { list-style: none; margin-bottom: 1.8rem; }
.leaf-list li {
  font-family: var(--sans); font-size: 0.9rem; font-weight: 400;
  color: var(--text-mid); padding: 0.32rem 0;
  display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.65;
}
.leaf-list li::before { content: '🌿'; flex-shrink: 0; }

/* warning box */
.warn-box {
  background: #fff8f0;
  border-left: 3px solid #e07b39;
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.2rem;
  margin-top: 0.5rem;
}
.warn-box .warn-title {
  font-family: var(--sans); font-size: 0.85rem; font-weight: 700;
  color: #c0392b; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.4rem;
}
.warn-box ul { list-style: none; }
.warn-box ul li {
  font-family: var(--sans); font-size: 0.84rem; color: #666;
  line-height: 1.72; padding: 0.18rem 0;
}

/* stacked photos */
.included-photos { display: flex; flex-direction: column; gap: 1.2rem; }
.included-photos .photo-wrap {
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  transform: rotate(-1deg); transition: transform 0.3s;
}
.included-photos .photo-wrap:nth-child(even) { transform: rotate(1deg); }
.included-photos .photo-wrap:hover { transform: rotate(0) scale(1.01); }
.included-photos img { width: 100%; display: block; object-fit: cover; }

/* ── PRICING ── */
.pricing {
  max-width: 1060px; margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
}
.pricing p {
  font-family: var(--sans); font-size: 0.9rem;
  color: var(--text-mid); line-height: 1.85; margin-bottom: 0.7rem;
}
.pricing p em { font-style: italic; }
.pricing p strong { font-weight: 700; }
.pkg-links { font-family: var(--sans); font-size: 0.9rem; color: var(--text-mid); }
.pkg-links a { color: #4a6cf7; text-decoration: none; }
.pkg-links a:hover { text-decoration: underline; }
.pkg-links .dot { margin: 0 0.3rem; }

/* ── CTA BLOCK ── */
.cta-block {
  max-width: 1060px; margin: 0 auto;
  padding: 2rem 2rem 4rem;
}
.cta-block h2 {
  font-family: var(--sans); font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 700; color: var(--text); margin-bottom: 0.8rem;
}
.cta-block p {
  font-family: var(--sans); font-size: 0.9rem;
  color: var(--text-mid); line-height: 1.85; margin-bottom: 0.5rem;
}
.cta-block p strong { font-weight: 700; color: var(--text); }
.cta-block p em { font-style: italic; }
.btn-cta {
  display: inline-block; margin-top: 1.4rem;
  padding: 0.82rem 2.4rem;
  background: #3d5148;
  color: #fff; font-family: var(--sans); font-size: 0.88rem; font-weight: 700;
  border-radius: 50px; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-cta:hover { background: #2d3d36; transform: translateY(-2px); }

/* ── ADD-ONS ── */
.addons {
  position: relative; overflow: hidden; padding: 5rem 2rem;
}
.addons-bg {
  position: absolute; inset: 0;
  background-image: url('images/yo.png');
  background-size: cover; background-position: center; z-index: 0;
}
.addons-overlay {
  position: absolute; inset: 0;
  background: rgba(15, 30, 25, 0.65); z-index: 1;
}
.addons-inner {
  position: relative; z-index: 2;
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.7fr;
  gap: 3rem; align-items: start;
}
.addons-intro h2 {
  font-family: var(--sans); font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700; color: #fff; margin-bottom: 1.2rem;
}
.addons-intro p {
  font-family: var(--sans); font-size: 0.88rem;
  color: rgba(255,255,255,0.82); line-height: 1.85; font-style: italic;
  margin-bottom: 0.7rem;
}
.addons-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 2.5rem;
}
.addon-icon { font-size: 1.6rem; margin-bottom: 0.5rem; display: block; }
.addon-item h3 {
  font-family: var(--sans); font-size: 1rem; font-weight: 700;
  color: #fff; margin-bottom: 0.5rem;
}
.addon-item p {
  font-family: var(--sans); font-size: 0.84rem;
  color: rgba(255,255,255,0.78); line-height: 1.75;
}

/* ── FOOTER ── */
footer { position: relative; overflow: hidden; }
.footer-bg { position: absolute; inset: 0; background-image: url('images/beach.png'); background-size: cover; background-position: center; z-index: 0; }
.footer-overlay { position: absolute; inset: 0; background: rgba(8,18,13,0.72); z-index: 1; }
.footer-body { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 4rem 2rem 2rem; display: grid; grid-template-columns: 2fr 1fr 1.6fr; gap: 3rem; }
.footer-brand h3 { font-family: var(--sans); font-size: 1.35rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-family: var(--sans); font-size: 0.84rem; color: rgba(255,255,255,0.68); line-height: 1.85; max-width: 310px; margin-bottom: 1.4rem; }
.footer-connect-label { font-family: var(--sans); font-size: 0.84rem; font-weight: 700; color: #fff; margin-bottom: 0.8rem; }
.footer-social { display: flex; gap: 0.9rem; }
.footer-social a { color: rgba(255,255,255,0.82); text-decoration: none; transition: color 0.2s; }
.footer-social a:hover { color: #fff; }
.footer-social svg { width: 30px; height: 30px; fill: currentColor; display: block; }
.footer-col h4 { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { font-family: var(--sans); font-size: 0.83rem; color: rgba(255,255,255,0.68); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-map h4 { font-family: var(--sans); font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.4rem; }
.footer-map p { font-family: var(--sans); font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-bottom: 0.6rem; }
.footer-map iframe { width: 100%; height: 200px; border: none; border-radius: 6px; }
.footer-bottom { position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,0.1); padding: 1.2rem 2rem; text-align: center; }
.footer-bottom p { font-family: var(--sans); font-size: 0.72rem; color: rgba(255,255,255,0.38); }

/* ── RESPONSIVE ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-mobile-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav-mobile-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile-open .nav-links {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--nav-bg);
  padding: 0.8rem 1.5rem 1.5rem;
  gap: 0;
  z-index: 199;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.nav-mobile-open .nav-links > li > a {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
}
.nav-mobile-open .dropdown-menu {
  display: block !important;
  position: static;
  background: rgba(0,0,0,0.18);
  border-radius: 4px;
  margin: 0.3rem 0 0.5rem 0.8rem;
  box-shadow: none;
  padding: 0.3rem 0;
}
@media (max-width: 900px) {
  nav { height: 72px; padding: 0 1.5rem; }
  .nav-logo img { height: 250px; width: 250px; }
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  /* Footer */
  .footer-body { grid-template-columns: 1fr 1fr !important; gap: 2rem !important; }
  .footer-map { grid-column: span 2; }
  /* Grids */
  .intro-inner,
  .included-inner,
  .two-paths-inner,
  .means-inner,
  .tracks-inner,
  .about-hero-inner,
  .why-exist-grid,
  .facilities-inner,
  .our-place-inner,
  .within-vista-inner,
  .beyond-inner { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .pkg-grid { grid-template-columns: 1fr 1fr !important; }
  .why-cols { grid-template-columns: 1fr !important; }
  .spaces-grid { grid-template-columns: 1fr 1fr !important; }
  .for-you-grid { grid-template-columns: 1fr !important; }
  .addons-inner { grid-template-columns: 1fr !important; }
  .addons-cards { grid-template-columns: 1fr 1fr !important; }
  .golf { grid-template-columns: 1fr !important; }
  .included-right { gap: 1.2rem; }
}
@media (max-width: 600px) {
  nav { padding: 0 1rem; height: 72px; }
  .nav-logo img { height: 200px; width: 200px; }
  .hero { margin-top: 72px !important; }
  .hero-box { padding: 2rem 1.2rem !important; }
  .hero-btns { flex-direction: column; align-items: center; gap: 0.8rem; }
  .btn-pill { width: 100%; max-width: 280px; justify-content: center; }
  .pkg-grid { grid-template-columns: 1fr !important; }
  .spaces-grid { grid-template-columns: 1fr !important; }
  .addons-cards { grid-template-columns: 1fr !important; }
  .values-grid { grid-template-columns: 1fr !important; }
  .footer-body { grid-template-columns: 1fr !important; }
  .footer-map { grid-column: span 1 !important; }
  .section-heading { font-size: 1.6rem !important; }
  .for-you-grid { padding: 1.5rem !important; }
  .pricing { padding-left: 1rem !important; padding-right: 1rem !important; }
  .included { padding: 2.5rem 1rem !important; }
  .addons { padding: 3rem 1rem !important; }
  .golf-text { padding: 2rem 1.5rem !important; }
}