/* ── Google Places Autocomplete ───────────────────────────────────────────── */
.pac-container {
  background: #1a2e2e;
  border: 1px solid #64491D;
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  font-family: 'Lato', Arial, sans-serif;
  margin-top: -1px;
}
.pac-item {
  background: #1a2e2e;
  color: #E6D0A5;
  border-top: 1px solid #203434;
  padding: 9px 14px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.4;
  transition: background 0.15s;
}
.pac-item:hover,
.pac-item-selected {
  background: #203434;
}
.pac-item-query {
  color: #C9A464;
  font-size: 13px;
  font-family: 'Lato', Arial, sans-serif;
}
.pac-matched {
  color: #E6D0A5;
  font-weight: 600;
}
.pac-secondary-text {
  color: #8aaa8a;
  font-size: 12px;
}
.pac-icon {
  display: none;
}

/* ── Reset & Variables ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #162626;
  --bg-mid:     #1a2e2e;
  --bg-light:   #1e3838;
  --gold:       #C9A464;
  --gold-light: #E6D0A5;
  --gold-dim:   #64491D;
  --gold-fill:  #203434;
  --white:      #ffffff;
  --font:       'Lato', Arial, sans-serif;
  --font-body:  'Merriweather', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--gold-light);
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* ── Navigation ───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(22, 38, 38, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gold-dim);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
  font-size: 17px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
/* VANTAGE nav link */
.portal-link {
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  border: 1.5px solid var(--gold-dim) !important;
  border-radius: 4px;
  padding: 5px 20px !important;
  color: var(--gold-light) !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s !important;
}
.portal-link:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
.portal-link .vantage-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.portal-link .vantage-sub {
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 1px;
}

.nav-cta {
  border: 1.5px solid var(--gold) !important;
  border-radius: 4px;
  padding: 8px 20px !important;
  color: var(--gold) !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--bg) !important;
}

/* Hamburger (mobile) */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); margin: 5px 0;
  transition: 0.3s;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn-vantage-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 12px 28px;
  grid-column: 1 / -1;
  background: rgba(201, 164, 100, 0.07);
  border: 1.5px solid var(--gold-dim);
  border-radius: 4px;
  color: var(--gold-light);
  cursor: pointer;
  transition: all 0.25s;
  text-transform: none;
  letter-spacing: normal;
}
.btn-vantage-hero:hover {
  background: rgba(201, 164, 100, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}
.vantage-hero-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.vantage-hero-sub {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ── Section base ─────────────────────────────────────────────────────────── */
.section {
  padding: 40px 40px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-alt { background: var(--bg-light); }

.section-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: 38px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--gold-light);
  max-width: 640px;
  line-height: 1.85;
  margin-bottom: 32px;
}
.stat-tagline {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.85;
  max-width: 680px;
  margin-top: -32px;
  margin-bottom: 0;
  white-space: normal;
}
.divider {
  border: none;
  border-top: 1px solid var(--gold-dim);
  margin: 0 0 32px;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: url('../images/hero-bg.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,38,38,0.5) 0%, rgba(22,38,38,0.1) 100%);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 40px;
  letter-spacing: 2px;
}
.hero-btns { display: inline-grid; grid-template-columns: auto auto; gap: 16px; }

/* ── Page hero (inner pages) ──────────────────────────────────────────────── */
.page-hero {
  padding: 100px 40px 48px;
  background: var(--bg-mid);
  border-bottom: 1px solid var(--gold-dim);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.page-hero h1 {
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 16px;
  font-weight: 300;
  color: var(--gold-light);
  max-width: 560px;
}

/* ── Icon grid ────────────────────────────────────────────────────────────── */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 0;
}
.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  background: var(--gold-fill);
  transition: border-color 0.25s, transform 0.25s;
}
.icon-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.icon-card img {
  margin: 0 auto 20px;
  height: 60px;
  width: auto;
}
.icon-card h3 {
  font-size: 16px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 10px;
}
.icon-card p {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.7;
}

/* ── Stat boxes ───────────────────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.stat-box {
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  background: var(--gold-fill);
  padding: 32px 24px;
  text-align: center;
}
.stat-big {
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 14px;
  color: var(--gold-light);
  line-height: 1.5;
}

/* ── Brand strip ──────────────────────────────────────────────────────────── */
.photo-break {
  height: 70vh;
  background-image: url('../images/photo-home-feature.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .photo-break {
    background-attachment: scroll;
    height: 56vw;
  }
  .hero {
    background-attachment: scroll;
  }
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.brand-chip {
  border: 1.5px solid var(--gold-dim);
  border-radius: 6px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  transition: border-color 0.2s;
}
.brand-chip:hover { border-color: var(--gold); }

/* ── Services detail ──────────────────────────────────────────────────────── */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--gold-dim);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-fill);
  border: 1px solid var(--gold-dim);
  border-radius: 12px;
  padding: 36px;
}
.service-icon-wrap img { height: 100px; width: auto; margin: 0 auto; }
.service-text h2 {
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-text p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.85;
  margin-bottom: 24px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gold-light);
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}
.service-list li::before {
  content: '—';
  color: var(--gold);
  position: absolute;
  left: 0;
}

/* ── CTA band ─────────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--gold-fill);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  padding: 70px 40px;
  text-align: center;
}
.cta-band h2 {
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 14px;
}
.cta-band p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 32px;
}

/* ── Contact form ─────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--gold-fill);
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--gold-light);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--bg-mid); }
.form-group textarea { min-height: 140px; resize: vertical; }

.contact-info h3 {
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 24px;
}
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-detail-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 15px;
  color: var(--gold-light);
}
.schedule-box {
  margin-top: 40px;
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  padding: 28px;
  background: var(--gold-fill);
  text-align: center;
}
.schedule-box h4 {
  font-size: 18px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 10px;
}
.schedule-box p {
  font-size: 14px;
  color: var(--gold-light);
  margin-bottom: 20px;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  background: #0f1e1e;
  border-top: 1px solid var(--gold-dim);
  padding: 60px 40px 30px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { height: 36px; }
.footer-logo-name {
  font-size: 16px;
  font-weight: 300;
  color: var(--gold);
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--gold-light);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--gold-dim);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--gold-dim);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */

/* Nav collapses to hamburger before buttons can wrap */
@media (max-width: 1080px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(22,38,38,0.98); padding: 20px 40px; gap: 20px; border-bottom: 1px solid var(--gold-dim); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

@media (max-width: 900px) {
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .service-block { grid-template-columns: 1fr; gap: 40px; }
  .service-block.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-tagline { white-space: normal; margin-top: 0; }
}

@media (max-width: 640px) {
  .icon-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 36px; }
  .section { padding: 40px 24px; }
  .page-hero { padding: 90px 24px 36px; }
  .page-hero-inner { padding: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

