/* =============================================================
   SDN Jakapurwa — Main Stylesheet
   ============================================================= */

/* 1. CSS Custom Properties */
:root {
  --navy: #1b3a7a;
  --navy-dark: #142d61;
  --navy-light: #2a4f9f;
  --gold: #ffb800;
  --gold-hover: #e5a600;
  --gold-light: #fff3cc;
  --white: #ffffff;
  --surface: #f5f7fa;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --border: #e5e7eb;

  --font-heading: "Poppins", sans-serif;
  --font-body: "Open Sans", sans-serif;

  --container: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);

  --transition: all 0.25s ease;

  /* Z-index scale */
  --z-header: 100;
  --z-overlay: 200;
  --z-float: 300;
}

/* 2. Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* 3. Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}
h3 {
  font-size: 1.25rem;
}

p {
  line-height: 1.75;
}

/* 4. Utilities */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.section-title-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 4px;
}

.section-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.section-link:hover {
  color: var(--gold-hover);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.35);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 58, 122, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   5. HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 80px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
}

.site-logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.site-logo-city {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--gold);
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.site-logo-tagline {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* Nav */
.primary-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Mobile-only nav elements hidden on desktop */
.nav-mobile-header,
.nav-mobile-footer,
.nav-mobile-close {
  display: none;
}

/* Backdrop overlay (mobile menu) */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: calc(var(--z-header) - 1);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.nav-backdrop.active {
  opacity: 1;
}

/* WordPress admin bar offset for nav panel + backdrop */
body.admin-bar .primary-nav,
body.admin-bar .nav-backdrop {
  top: 46px; /* mobile admin bar height */
}

@media screen and (min-width: 783px) {
  body.admin-bar .primary-nav,
  body.admin-bar .nav-backdrop {
    top: 32px; /* desktop admin bar height */
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-list li {
  position: relative;
}

.nav-list li a {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-list li a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-list li a:hover::after,
.nav-list li.current-menu-item > a::after {
  width: calc(100% - 28px);
}

.nav-list li.current-menu-item > a {
  color: var(--white);
}

.header-cta {
  flex-shrink: 0;
  padding: 9px 20px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   6. HERO
   ============================================================ */
.hero-section {
  background: var(--white);
  display: grid;
  grid-template-columns: 48fr 52fr;
  min-height: 780px;
}

/* Left column — content aligned with container left edge */
.hero-content-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 64px 40px 160px;
}

.hero-content {
  width: 100%;
  max-width: 520px;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--gold-light);
  color: #8a6500;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-title span {
  color: var(--navy);
}

.hero-school-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.hero-divider {
  width: 44px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-btn {
  padding: 10px 16px;
  font-size: 0.78rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Right column — diagonal left edge, flush top/right/bottom */
.hero-image-wrap {
  position: relative;
  overflow: hidden;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 8% 100%, 0% 50%);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================================
   7. STATS BAR
   ============================================================ */
/* Stats — card overlaps bottom of hero */
.stats-section {
  background: transparent;
  padding: 0 0 0;
  margin-top: -100px;
  position: relative;
  z-index: 2;
}

.stats-card {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(20, 45, 97, 0.35);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.stat-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 184, 0, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 12px;
  transition: var(--transition);
}

.stat-item:hover .stat-icon {
  background: rgba(255, 184, 0, 0.25);
}

.stat-label-top {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* ============================================================
   8. ACTIVITIES / CARDS
   ============================================================ */
.activities-section {
  background: var(--white);
  padding: 56px 0 80px;
}

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

.activity-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.activity-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.activity-card:hover .activity-card-image {
  transform: scale(1.04);
}

.activity-card-image-wrap {
  overflow: hidden;
  position: relative;
}

.activity-card-body {
  padding: 20px;
}

.activity-card-category {
  display: inline-block;
  background: var(--gold-light);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.activity-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.activity-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.activity-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: var(--transition);
}

.activity-card-link:hover {
  color: var(--gold-hover);
  gap: 10px;
}

/* ============================================================
   9. FEATURE SECTION
   ============================================================ */
.feature-section {
  background: var(--white);
  padding: 80px 0;
}

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.feature-image-wrap {
  position: relative;
  border-radius: var(--radius);
}

/* Gold accent block behind image */
.feature-image-wrap::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: -14px;
  width: 75%;
  height: 75%;
  background: var(--gold);
  border-radius: var(--radius);
  z-index: 0;
  opacity: 0.22;
}

/* Navy accent top-right */
.feature-image-wrap::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40%;
  height: 40%;
  border: 3px solid var(--navy-light);
  border-radius: var(--radius);
  z-index: 0;
  opacity: 0.18;
}

.feature-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(27, 58, 122, 0.18);
}

.feature-content {
  position: relative;
}

.feature-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-hover);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.feature-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.feature-title {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.25;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.feature-list {
  margin-bottom: 36px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text);
}

.feature-list-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-top: 2px;
}

/* ============================================================
   10. VIRTUAL TOUR
   ============================================================ */
.virtual-tour-section {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 60%, #0a1628 100%);
  overflow: hidden;
}

/* Subtle radial glow */
.virtual-tour-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(255,184,0,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}

/* Fade bottom edge into footer */
.virtual-tour-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--navy-dark));
  pointer-events: none;
  z-index: 0;
}

/* Split layout */
.virtual-tour-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

/* Left: text */
.virtual-tour-content {
  color: var(--white);
}

.virtual-tour-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 184, 0, 0.15);
  border: 1px solid rgba(255, 184, 0, 0.35);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.virtual-tour-title {
  color: var(--white);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.virtual-tour-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.virtual-tour-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.vt-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-heading);
  font-weight: 500;
}

.vt-feature svg {
  color: var(--gold);
  flex-shrink: 0;
}

.virtual-tour-cta {
  padding: 12px 28px;
  font-size: 0.92rem;
}

/* Right: thumbnail card */
.virtual-tour-preview {
  position: relative;
}

.vt-thumbnail {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.vt-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.vt-thumbnail:hover img {
  transform: scale(1.04);
}

.vt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 45, 97, 0.25) 0%,
    rgba(20, 45, 97, 0.55) 100%
  );
}

/* Play button centered on thumbnail */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 32px rgba(255, 184, 0, 0.5);
  z-index: 2;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--gold-hover);
  box-shadow: 0 12px 40px rgba(255, 184, 0, 0.65);
}

/* Pulse ring around play button */
.play-btn::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(255, 184, 0, 0.45);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Duration badge bottom-left of thumbnail */
.vt-duration {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.03em;
  z-index: 2;
}

/* Embed replaces thumbnail on click */
.virtual-tour-embed {
  display: none;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.virtual-tour-embed.active {
  display: block;
}

.virtual-tour-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   11. SINGLE POST — entry-content typography
   ============================================================ */
.entry-content p {
  margin-bottom: 1.5em;
}

.entry-content p:last-child {
  margin-bottom: 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin-top: 2em;
  margin-bottom: 0.75em;
  line-height: 1.3;
}

.entry-content h2 { font-size: 1.5rem; }
.entry-content h3 { font-size: 1.25rem; }
.entry-content h4 { font-size: 1.1rem; }

.entry-content ul,
.entry-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}

.entry-content li {
  margin-bottom: 0.4em;
}

.entry-content blockquote {
  border-left: 4px solid var(--gold);
  margin: 1.5em 0;
  padding: 12px 20px;
  background: rgba(255, 184, 0, 0.06);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-muted);
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
  font-size: 0.95rem;
}

.entry-content table th,
.entry-content table td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
}

.entry-content table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
}

.entry-content table tr:nth-child(even) td {
  background: rgba(20, 45, 97, 0.04);
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 8px 0;
}

.entry-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2em 0;
}

.entry-content a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content a:hover {
  color: var(--gold);
}

.entry-content strong { color: var(--text); }

/* ============================================================
   12. FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding-top: 72px;
  margin-top: -1px; /* seal any sub-pixel gap with virtual tour */
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.2;
}

.footer-logo-city {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: "›";
  color: var(--gold);
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-contact svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.footer-hours {
  margin-bottom: 24px;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-hours li span:first-child {
  font-weight: 500;
}
.footer-hours li span:last-child {
  color: var(--gold);
  font-weight: 600;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 184, 0, 0.15);
  border: 1px solid rgba(255, 184, 0, 0.3);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 8px 16px;
  border-radius: 50px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   12. FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: var(--z-float);
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* ============================================================
   13. RESPONSIVE
   ============================================================ */

/* Tablet: 768–1023px
   — hamburger nav, stacked hero, card stats, 2-col activities
   ============================================================ */
@media (max-width: 1023px) {

  /* ── Header: switch to hamburger ── */
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .site-logo-tagline { display: none; }
  .nav-backdrop { display: block; }

  /* Full-screen slide-in panel from right */
  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 100vw);
    display: flex;
    flex-direction: column;
    background: var(--navy-dark);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
    z-index: var(--z-header);
    overflow: hidden;
  }

  .primary-nav.nav-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }

  /* Mobile menu top bar — matches site header height */
  .nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
  }

  .nav-mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

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

  .nav-mobile-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .nav-mobile-logo-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    line-height: 1.2;
  }

  .nav-mobile-logo-city {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .nav-mobile-close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    pointer-events: auto;
    position: relative;
    z-index: 1;
  }

  .nav-mobile-close:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  /* Nav list fills remaining space */
  .nav-list {
    flex: 1;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 8px 0;
    overflow-y: auto;
  }

  .nav-list li a {
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-list li a::before {
    content: none;
  }

  .nav-list li a::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    border-top: 2px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
    display: block;
    background: none;
    position: static;
    opacity: 1;
    border-radius: 0;
    flex-shrink: 0;
  }

  .nav-list li a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    padding-left: 32px;
  }

  .nav-list li a:hover::after {
    border-color: var(--gold);
    width: 6px;
    background: none;
  }

  .nav-list li:last-child a { border-bottom: none; }

  /* Mobile menu bottom CTA */
  .nav-mobile-footer {
    display: block;
    flex-shrink: 0;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-mobile-cta {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 14px 24px;
  }

  /* ── Hero: single column, content above image ── */
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content-col {
    padding: 48px 24px;
    justify-content: flex-start;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image-wrap {
    height: 360px;
    clip-path: none;
    border-radius: 0;
  }

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

  .hero-title {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
  }

  /* ── Stats: no overlap (hero is stacked), contained card ── */
  .stats-section {
    margin-top: 0;
    padding: 32px 0 52px;
  }

  .stats-card { border-radius: 16px; }

  /* 6-col grid: each item spans 2 → 3 per row
     Items 4+5 offset by 1 col → centred in row 2 */
  .stats-grid { grid-template-columns: repeat(6, 1fr); }

  .stat-item {
    grid-column: span 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stat-item:nth-child(3) { border-right: none; }

  .stat-item:nth-child(4) {
    grid-column: 2 / span 2;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stat-item:nth-child(5) {
    grid-column: 4 / span 2;
    border-bottom: none;
    border-right: none;
  }

  /* ── Activities: 2 columns ── */
  .activities-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Feature: stack image below text ── */
  .feature-inner { grid-template-columns: 1fr; gap: 40px; }
  .feature-image-wrap::before,
  .feature-image-wrap::after { display: none; }
  .feature-image-wrap img { height: 300px; }

  /* ── Footer: 2-col with brand spanning full width ── */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Mobile: < 768px
   — smaller paddings, 2→1 col switches, compact stats
   ============================================================ */
@media (max-width: 767px) {

  /* ── Header ── */
  .site-logo-city { display: none; }

  /* Full-width nav panel on phones */
  .primary-nav { width: 100vw; }

  /* ── Hero ── */
  .hero-content-col { padding: 32px 20px 36px; }
  .hero-image-wrap { height: 240px; }
  .hero-title { font-size: 1.75rem; }
  .hero-btn { font-size: 0.72rem; padding: 8px 12px; }

  /* ── Stats: 2-column ── */
  .stats-section { padding: 20px 0 40px; }
  .stats-card { border-radius: 12px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.1); }
  .stat-item:nth-child(4) { grid-column: 1 / -1; border-bottom: 1px solid rgba(255, 255, 255, 0.1); border-right: none; }
  .stat-item:nth-child(5) { grid-column: 1 / -1; border-right: none; border-bottom: none; }

  /* ── Activities: single column ── */
  .activities-grid { grid-template-columns: 1fr; }
  .section-title-wrapper { flex-direction: column; align-items: flex-start; }

  /* ── Feature ── */
  .feature-inner { grid-template-columns: 1fr; }
  .feature-image-wrap img { height: 240px; }

  /* ── Virtual Tour ── */
  .virtual-tour-section { padding: 64px 0; }
  .virtual-tour-inner { grid-template-columns: 1fr; gap: 40px; }
  .virtual-tour-title { font-size: 1.9rem; }
  .play-btn { width: 64px; height: 64px; }

  /* ── Footer: single column ── */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: 1; }

  /* ── WhatsApp ── */
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}
