
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a3a5c;
  --navy-dark: #0d2236;
  --gold: #C49B50;
  --gold-dark: #a07e38;
  --cream: #f4f1eb;
  --text: #222222;
  --muted: #5a5a5a;
  --white: #ffffff;
  --red: #B22234;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', Arial, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

.eyebrow {
  display: block;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

h2.section-title {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 16px;
}

h2.section-title.light { color: #fff; }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 14px 32px;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.4s;
}

.btn-gold:hover { background: var(--gold-dark); }
.btn-gold:hover::after { left: 100%; }

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.45);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-navy {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  padding: 13px 32px;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--navy);
  transition: all 0.2s;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy-dark);
  border-bottom: 3px solid var(--gold);
}

.nav-top {
  background: var(--navy);
  padding: 7px 60px;
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-top a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.nav-top a:hover { color: var(--gold); }

.nav-top .icon {
  width: 15px;
  height: 15px;
  fill: var(--gold);
  flex-shrink: 0;
}

.nav-main {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.nav-logo img {
  height: 54px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.nav-logo img:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 11px 26px;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-dark) !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 300;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE OVERLAY ── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 298;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-overlay.open {
  display: block;
  opacity: 1;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--navy-dark);
  z-index: 299;
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--gold);
  overflow-y: auto;
}

.mobile-menu.open { right: 0; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu-header img { height: 44px; width: auto; }

.mobile-menu-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: var(--gold); }

.mobile-menu ul {
  list-style: none;
  padding: 16px 0;
  flex: 1;
}

.mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.05); }

.mobile-menu ul li a {
  display: block;
  padding: 16px 24px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu ul li a:hover { color: var(--gold); padding-left: 32px; }

.mobile-menu-footer {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.mobile-menu-phone:hover { color: var(--gold); }
.mobile-menu-phone svg { width: 18px; height: 18px; fill: var(--gold); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 94vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,25,45,0.92) 0%, rgba(10,25,45,0.65) 50%, rgba(10,25,45,0.15) 100%);
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(15deg, transparent, transparent 32px, rgba(255,255,255,0.016) 32px, rgba(255,255,255,0.016) 33px);
  pointer-events: none;
}

.hero-compass {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  opacity: 0.06;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 740px;
}

.hero-content h1 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 100px;
  font-weight: 700;
  color: #fff;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 22px;
}

.hero-content h1 .gold { color: var(--gold); }

.hero-tagline {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(196,155,80,0.9);
  display: block;
  padding: 14px 0;
  margin-bottom: 22px !important;
  border-top: 1px solid rgba(196,155,80,0.3);
  border-bottom: 1px solid rgba(196,155,80,0.15);
}

.hero-content p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-flag-stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  z-index: 3;
  display: flex;
}
.hero-flag-stripe span:nth-child(1) { flex: 1; background: var(--red); }
.hero-flag-stripe span:nth-child(2) { flex: 1; background: #fff; }
.hero-flag-stripe span:nth-child(3) { flex: 1; background: var(--navy); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--gold);
  background-image: repeating-linear-gradient(15deg, transparent, transparent 30px, rgba(0,0,0,0.03) 30px, rgba(0,0,0,0.03) 31px);
  padding: 0 60px;
  display: flex;
  flex-direction: column;
}

.stats-bar-label {
  text-align: center;
  padding: 14px 0 0;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.stats-row { display: flex; justify-content: space-around; }

.stat {
  text-align: center;
  padding: 22px 20px 26px;
  border-right: 1px solid rgba(255,255,255,0.18);
  flex: 1;
  transition: background 0.2s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(255,255,255,0.07); }

.stat-val {
  display: block;
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
}

.stat-lbl {
  display: block;
  color: rgba(255,255,255,0.78);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── FLAG DIVIDER ── */
.flag-divider { display: flex; height: 4px; }
.flag-divider span:nth-child(1) { flex: 1; background: var(--red); }
.flag-divider span:nth-child(2) { flex: 1; background: #fff; }
.flag-divider span:nth-child(3) { flex: 1; background: var(--navy); }

/* ── ABOUT ── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  max-height: 680px;
  position: relative;
  z-index: 1;
}

.about-text-side {
  background: var(--cream);
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-text-side::before {
  content: 'PIONEER';
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 120px;
  font-weight: 700;
  letter-spacing: 10px;
  color: rgba(26,58,92,0.05);
  pointer-events: none;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.about-text-side p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 14px;
  max-width: 460px;
}

.about-checks {
  list-style: none;
  margin: 18px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.about-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--navy);
  text-transform: uppercase;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  width: 11px;
  height: 11px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
}

.about-image-side {
  position: relative;
  overflow: hidden;
}

.about-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 6s ease-out;
}

.about-image-side:hover img { transform: scale(1.04); }

.about-image-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,34,54,0.35) 0%, transparent 35%);
}

.about-badge {
  position: absolute;
  bottom: 48px;
  left: 0;
  background: var(--gold);
  padding: 20px 40px 20px 32px;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.about-badge span {
  display: block;
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
}

.about-badge small {
  color: rgba(255,255,255,0.88);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
}

/* ── POOL TYPES ── */
.pool-types-section {
  background: var(--white);
  padding: 90px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.pool-types-section::before {
  content: 'PIONEER';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 220px;
  font-weight: 700;
  letter-spacing: 24px;
  color: rgba(26,58,92,0.03);
  white-space: nowrap;
  pointer-events: none;
  text-transform: uppercase;
  user-select: none;
}

.pool-types-section .section-intro {
  max-width: 560px;
  margin: 0 auto 56px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.pool-types-section .eyebrow,
.pool-types-section h2 { position: relative; z-index: 1; }

.pool-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pool-card {
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.pool-card:hover { transform: translateY(-6px); }

.pool-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.pool-card-img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}

.pool-card:hover .pool-card-img { transform: scale(1.07); }

.pool-card-sweep {
  position: absolute;
  bottom: 0;
  left: -100%;
  right: 0;
  background: linear-gradient(to top, rgba(196,155,80,0.75) 0%, rgba(196,155,80,0.2) 40%, transparent 100%);
  height: 100%;
  transition: left 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
  z-index: 2;
}

.pool-card:hover .pool-card-sweep { left: 0; }

.pool-card-sweep span {
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s 0.2s;
}

.pool-card:hover .pool-card-sweep span { opacity: 1; }

.pool-card-body {
  background: var(--navy);
  padding: 30px 28px;
  text-align: left;
  position: relative;
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
  flex: 1;
}

.pool-card:hover .pool-card-body { border-left-color: var(--gold); }

.pool-card-tag {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gold);
  color: #fff !important;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  padding: 5px 18px 5px 12px;
  text-transform: uppercase;
  z-index: 10;
}

.pool-card-body h3 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 12px 0 10px;
}

.pool-card-body p {
  color: rgba(255,255,255,0.58);
  font-size: 14px;
  line-height: 1.75;
}

/* ── PROCESS ── */
.process-section {
  background: var(--navy);
  padding: 90px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
  margin: 0;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 680px;
  height: 680px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='rgba(196,155,80,0.08)' stroke-width='0.8'%3E%3Ccircle cx='100' cy='100' r='92'/%3E%3Ccircle cx='100' cy='100' r='70'/%3E%3Ccircle cx='100' cy='100' r='48'/%3E%3Ccircle cx='100' cy='100' r='24'/%3E%3Cline x1='100' y1='2' x2='100' y2='198'/%3E%3Cline x1='2' y1='100' x2='198' y2='100'/%3E%3Cline x1='35' y1='35' x2='165' y2='165'/%3E%3Cline x1='165' y1='35' x2='35' y2='165'/%3E%3Cpolygon points='100,4 107,26 100,20 93,26' fill='rgba(196,155,80,0.15)' stroke='none'/%3E%3Cpolygon points='100,196 107,174 100,180 93,174' fill='rgba(196,155,80,0.08)' stroke='none'/%3E%3Cpolygon points='4,100 26,93 20,100 26,107' fill='rgba(196,155,80,0.08)' stroke='none'/%3E%3Cpolygon points='196,100 174,93 180,100 174,107' fill='rgba(196,155,80,0.08)' stroke='none'/%3E%3Ctext x='100' y='14' text-anchor='middle' fill='rgba(196,155,80,0.3)' font-size='8' font-family='Arial'%3EN%3C/text%3E%3Ctext x='100' y='195' text-anchor='middle' fill='rgba(196,155,80,0.2)' font-size='6' font-family='Arial'%3ES%3C/text%3E%3Ctext x='188' y='104' text-anchor='middle' fill='rgba(196,155,80,0.2)' font-size='6' font-family='Arial'%3EE%3C/text%3E%3Ctext x='12' y='104' text-anchor='middle' fill='rgba(196,155,80,0.2)' font-size='6' font-family='Arial'%3EW%3C/text%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  animation: compassSpin 120s linear infinite;
}

@keyframes compassSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.process-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(15deg, transparent, transparent 36px, rgba(255,255,255,0.012) 36px, rgba(255,255,255,0.012) 37px);
  pointer-events: none;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 64px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.process-step {
  flex: 1;
  min-width: 160px;
  max-width: 195px;
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 35px;
  right: -16px;
  width: 32px;
  height: 0;
  border-top: 2px dashed rgba(196,155,80,0.3);
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(196,155,80,0.1);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: background 0.3s, transform 0.3s;
}

.process-step:hover .step-circle {
  background: rgba(196,155,80,0.22);
  transform: scale(1.08);
}

.step-num {
  color: var(--gold);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.process-step h4 {
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.process-step p {
  color: rgba(255,255,255,0.42);
  font-size: 13px;
  line-height: 1.7;
}

/* ── GALLERY ── */
.gallery-section {
  background: var(--cream);
  padding: 90px 60px;
  position: relative;
  z-index: 1;
}

.gallery-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.text-link {
  color: var(--gold);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.text-link:hover { color: var(--gold-dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 285px 285px;
  gap: 10px;
}

.g-item {
  overflow: hidden;
  position: relative;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.g-item:hover img { transform: scale(1.08); }
.g-item.tall { grid-row: 1 / 3; }

.g-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,25,45,0);
  transition: background 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.g-item:hover .g-item-overlay { background: rgba(10,25,45,0.45); }

.g-item-label {
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}

.g-item:hover .g-item-label { opacity: 1; transform: translateY(0); }

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--navy-dark);
  padding: 90px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  height: 560px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='rgba(196,155,80,0.06)' stroke-width='0.8'%3E%3Ccircle cx='100' cy='100' r='90'/%3E%3Ccircle cx='100' cy='100' r='60'/%3E%3Ccircle cx='100' cy='100' r='30'/%3E%3Cline x1='100' y1='5' x2='100' y2='195'/%3E%3Cline x1='5' y1='100' x2='195' y2='100'/%3E%3Cline x1='36' y1='36' x2='164' y2='164'/%3E%3Cline x1='164' y1='36' x2='36' y2='164'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.testimonials-section::after {
  content: '\201C';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 340px;
  color: rgba(196,155,80,0.04);
  font-family: Georgia, serif;
  pointer-events: none;
  line-height: 1;
}

.testimonial-slider {
  max-width: 780px;
  margin: 48px auto 0;
  min-height: 160px;
  position: relative;
  z-index: 1;
}

.testimonial-quote {
  color: rgba(255,255,255,0.85);
  font-size: 22px;
  line-height: 1.8;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 28px;
}

.testimonial-author {
  color: var(--gold);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.testimonial-location {
  color: rgba(255,255,255,0.32);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  margin-top: 5px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

.dot {
  height: 8px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255,255,255,0.18);
  width: 8px;
  padding: 0;
}

.dot.active { width: 32px; background: var(--gold); }

/* ── CTA BAND ── */
.cta-band {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
  margin: 0;
  z-index: 0;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background: url('../images/pool2.jpg') center / cover no-repeat;
}

.cta-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,25,45,0.86);
}

.cta-band-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(15deg, transparent, transparent 28px, rgba(255,255,255,0.015) 28px, rgba(255,255,255,0.015) 29px);
  pointer-events: none;
}

.cta-band-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.cta-band-text h2 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 62px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.0;
  margin-bottom: 14px;
}

.cta-band-text h2 span { color: var(--gold); }

.cta-band-text p {
  color: rgba(255,255,255,0.58);
  font-size: 17px;
  max-width: 500px;
  line-height: 1.75;
}

.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.cta-phone {
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}
.cta-phone:hover { color: var(--gold); }
.cta-phone svg { width: 30px; height: 30px; fill: var(--gold); }

/* ── CONTACT ── */
.contact-section {
  background: var(--cream);
  padding: 90px 60px;
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info-col h3 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding: 14px;
  border-left: 2px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.contact-detail:hover {
  border-left-color: var(--gold);
  background: rgba(196,155,80,0.05);
}

.contact-detail-icon {
  width: 46px;
  height: 46px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 18px; height: 18px; fill: var(--gold); }

.contact-detail-text span {
  display: block;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-detail-text a,
.contact-detail-text p {
  color: var(--navy);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-detail-text a:hover { color: var(--gold); }

.form-card {
  background: var(--navy);
  padding: 48px;
  position: relative;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
}

.form-card h3 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
  line-height: 1.2;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group label {
  color: rgba(255,255,255,0.45);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: 2px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 13px 16px;
  font-size: 15px;
  font-family: 'Barlow', Arial, sans-serif;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--gold);
  background: rgba(255,255,255,0.09);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-group textarea { resize: vertical; }
.form-group select option { background: var(--navy); color: #fff; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-dark);
  padding: 72px 60px 0;
  border-top: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: 'PIONEER';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 160px;
  font-weight: 700;
  letter-spacing: 20px;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
  z-index: 1;
}

.footer-brand img {
  height: 54px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-tagline-text {
  color: var(--gold) !important;
  font-family: 'Barlow Condensed', Arial, sans-serif !important;
  font-size: 13px !important;
  font-style: italic;
  letter-spacing: 2px !important;
  margin-bottom: 12px;
  opacity: 0.8;
}

.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  line-height: 1.85;
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(196,155,80,0.2);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }

.footer-col p {
  color: rgba(255,255,255,0.45);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.9;
}

.footer-col p strong { color: rgba(255,255,255,0.78); font-weight: 600; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(196,155,80,0.3);
  transition: background 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 17px; height: 17px; fill: rgba(255,255,255,0.55); transition: fill 0.2s; }
.footer-social a:hover svg { fill: var(--navy-dark); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: rgba(255,255,255,0.6);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--gold); }

/* ── MOBILE ── */
@media (max-width: 768px) {

  .hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-cta { display: none; }

  .nav-top { padding: 6px 20px; gap: 16px; }
  .nav-top a { font-size: 11px; }
  .nav-main { padding: 0 20px; height: 64px; }
  .nav-logo img { height: 42px; }

  .hero { height: auto; min-height: 100svh; padding-bottom: 60px; }
  .hero-content { padding: 40px 24px 40px; max-width: 100%; }
  .hero-content h1 { font-size: 62px; letter-spacing: 2px; }
  .hero-tagline { font-size: 12px; letter-spacing: 3px; }
  .hero-content p { font-size: 16px; }
  .hero-compass { display: none; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns a { text-align: center; }

  .stats-bar { padding: 0 16px; }
  .stats-row { flex-wrap: wrap; }
  .stat { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); padding: 16px 12px; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.18); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .stat-val { font-size: 26px; }

  h2.section-title { font-size: 34px; }

  .about-section { grid-template-columns: 1fr; min-height: auto; }
  .about-text-side { padding: 48px 24px; order: 2; }
  .about-image-side { height: 300px; order: 1; }
  .about-badge { bottom: 20px; }

  .pool-types-section { padding: 60px 24px; }
  .pool-cards { grid-template-columns: 1fr; gap: 24px; }

  .process-section { padding: 60px 24px; }
  .process-steps { flex-direction: column; align-items: center; gap: 32px; margin-top: 40px; }
  .process-step { max-width: 300px; width: 100%; }
  .process-step:not(:last-child)::after { display: none; }

  .gallery-section { padding: 60px 24px; }
  .gallery-section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px 160px; gap: 8px; }
  .g-item.tall { grid-row: auto; grid-column: 1 / 3; }

  .testimonials-section { padding: 60px 24px; }
  .testimonial-quote { font-size: 18px; }

  .cta-band-content { flex-direction: column; padding: 60px 24px; text-align: center; }
  .cta-band-text h2 { font-size: 42px; }
  .cta-band-actions { align-items: center; width: 100%; }
  .cta-phone { font-size: 26px; }

  .contact-section { padding: 60px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .site-footer { padding: 48px 24px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10,25,45,0.75) 0%,
      rgba(10,25,45,0.70) 50%,
      rgba(10,25,45,0.60) 100%
    );
  }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 50px; }
  .nav-top { display: none; }
}

/* ── MOBILE STICKY CALL BUTTON ── */
.mobile-call-btn {
  display: none;
}

@media (max-width: 768px) {
  .mobile-call-btn {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: #C49B50;
    color: #fff;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    text-decoration: none;
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-top: 3px solid #1a3a5c;
  }
  .mobile-call-btn svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    flex-shrink: 0;
  }
  body {
    padding-bottom: 56px;
  }
}

.process-section::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='rgba(255,255,255,0.06)'%3E%3Cpolygon points='20,2 22,8 28,8 23,12 25,18 20,14 15,18 17,12 12,8 18,8'/%3E%3Cpolygon points='80,30 82,36 88,36 83,40 85,46 80,42 75,46 77,40 72,36 78,36'/%3E%3Cpolygon points='140,10 142,16 148,16 143,20 145,26 140,22 135,26 137,20 132,16 138,16'/%3E%3Cpolygon points='170,60 172,66 178,66 173,70 175,76 170,72 165,76 167,70 162,66 168,66'/%3E%3Cpolygon points='50,80 52,86 58,86 53,90 55,96 50,92 45,96 47,90 42,86 48,86'/%3E%3Cpolygon points='110,70 112,76 118,76 113,80 115,86 110,82 105,86 107,80 102,76 108,76'/%3E%3Cpolygon points='30,140 32,146 38,146 33,150 35,156 30,152 25,156 27,150 22,146 28,146'/%3E%3Cpolygon points='160,130 162,136 168,136 163,140 165,146 160,142 155,146 157,140 152,136 158,136'/%3E%3Cpolygon points='90,150 92,156 98,156 93,160 95,166 90,162 85,166 87,160 82,156 88,156'/%3E%3C/g%3E%3C/svg%3E"),
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='rgba(196,155,80,0.08)' stroke-width='0.8'%3E%3Ccircle cx='100' cy='100' r='92'/%3E%3Ccircle cx='100' cy='100' r='70'/%3E%3Ccircle cx='100' cy='100' r='48'/%3E%3Ccircle cx='100' cy='100' r='24'/%3E%3Cline x1='100' y1='2' x2='100' y2='198'/%3E%3Cline x1='2' y1='100' x2='198' y2='100'/%3E%3Cline x1='35' y1='35' x2='165' y2='165'/%3E%3Cline x1='165' y1='35' x2='35' y2='165'/%3E%3Cpolygon points='100,4 107,26 100,20 93,26' fill='rgba(196,155,80,0.15)' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 300px 300px, contain;
  background-repeat: repeat, no-repeat;
  background-position: 0 0, center;
}

.testimonials-section::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='rgba(255,255,255,0.05)'%3E%3Cpolygon points='20,2 22,8 28,8 23,12 25,18 20,14 15,18 17,12 12,8 18,8'/%3E%3Cpolygon points='80,30 82,36 88,36 83,40 85,46 80,42 75,46 77,40 72,36 78,36'/%3E%3Cpolygon points='140,10 142,16 148,16 143,20 145,26 140,22 135,26 137,20 132,16 138,16'/%3E%3Cpolygon points='170,60 172,66 178,66 173,70 175,76 170,72 165,76 167,70 162,66 168,66'/%3E%3Cpolygon points='50,80 52,86 58,86 53,90 55,96 50,92 45,96 47,90 42,86 48,86'/%3E%3Cpolygon points='110,70 112,76 118,76 113,80 115,86 110,82 105,86 107,80 102,76 108,76'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 300px 300px;
  background-repeat: repeat;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 10px 18px;
  z-index: 100000;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
}
.skip-link:focus { left: 8px; top: 8px; }
