/* ── BLUEWYO SHARED STYLESHEET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0b1f3a;
  --navy-mid:   #13305e;
  --blue:       #1a4a8a;
  --blue-mid:   #2563b8;
  --sky:        #5ba4d4;
  --sky-pale:   #c8dff0;
  --gold:       #c9921a;
  --gold-warm:  #e8a820;
  --gold-pale:  #f5dfa0;
  --saddle:     #8b5e2a;
  --sage:       #6b8c6b;
  --earth:      #a07040;
  --cream:      #f7f2ea;
  --parchment:  #ede5d4;
  --charcoal:   #1c1a17;
  --mid:        #4a4540;
  --muted:      #7a7268;
  --border:     rgba(139,94,42,0.15);
  --radius:     3px;
  --radius-lg:  8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ══════════════════════════════════════
   NAV — full menu bar
══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px;
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--gold);
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-weight: 900;
  color: #fff; text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.3px; flex-shrink: 0;
  z-index: 10;
}
.nav-badge {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; font-weight: 800; color: var(--navy); flex-shrink: 0;
}

/* Desktop link list */
.nav-links {
  display: flex; align-items: center; gap: 0.2rem;
  list-style: none; margin: 0;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: rgba(255,255,255,0.72); text-decoration: none;
  padding: 0 1rem; height: 64px;
  display: flex; align-items: center;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--gold-warm);
  background: rgba(255,255,255,0.05);
}

/* Active underline indicator */
.nav-links > li > a.active::after {
  content: '';
  position: absolute; bottom: 0; left: 1rem; right: 1rem;
  height: 2px; background: var(--gold-warm);
  border-radius: 2px 2px 0 0;
}

/* CTA button in nav */
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0 1.2rem !important;
  margin-left: 0.5rem;
  border-radius: var(--radius);
  height: 38px !important;
  font-weight: 800 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-warm) !important; }
.nav-cta.active::after { display: none; }

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent; border: none; cursor: pointer;
  padding: 6px; border-radius: var(--radius); z-index: 10;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.08); }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

/* Hamburger → X when open */
nav.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-down menu */
.nav-mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; z-index: 190;
  background: rgba(11,31,58,0.98);
  backdrop-filter: blur(18px);
  border-bottom: 2px solid var(--gold);
  flex-direction: column;
  transform: translateY(-8px); opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
  pointer-events: none;
}
.nav-mobile-menu.open {
  transform: translateY(0); opacity: 1;
  pointer-events: auto;
}
.nav-mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.78); text-decoration: none;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s, background 0.2s; display: block;
}
.nav-mobile-menu a:hover,
.nav-mobile-menu a.active { color: var(--gold-warm); background: rgba(255,255,255,0.04); }
.nav-mobile-menu .mob-cta {
  background: var(--gold); color: var(--navy) !important;
  margin: 1rem 2rem 1.5rem; border-radius: var(--radius);
  padding: 0.9rem 2rem !important; text-align: center;
  font-weight: 800 !important; border-bottom: none !important;
}
.nav-mobile-menu .mob-cta:hover { background: var(--gold-warm) !important; }

/* ── BRAND RIBBON ── */
.brand-ribbon {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(91,164,212,0.2);
  padding: 0.85rem 2.5rem;
  display: flex; align-items: center; gap: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem; letter-spacing: 0.4px;
  color: rgba(255,255,255,0.52);
}
.brand-ribbon a { color: var(--sky); text-decoration: none; transition: color 0.2s; }
.brand-ribbon a:hover { color: var(--gold-warm); }

/* ── PAGE HERO ── */
.page-hero {
  min-height: 340px; padding-top: 64px;
  position: relative; display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero-photo {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(11,31,58,0.9) 0%, rgba(11,31,58,0.55) 60%, rgba(11,31,58,0.3) 100%),
    linear-gradient(to top, rgba(11,31,58,0.85) 0%, transparent 50%);
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto; width: 100%; padding: 0 2.5rem 3.5rem;
}
.page-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-warm); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 12px;
}
.page-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold-warm); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900;
  color: #fff; line-height: 1.08; text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.page-hero h1 em { font-style: italic; color: #9fcce8; }
.page-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.68);
  max-width: 520px; margin-top: 0.8rem; font-weight: 300; line-height: 1.8;
}

.ridge { display: block; width: 100%; overflow: hidden; line-height: 0; margin-bottom: -2px; }

/* ── SHARED SECTIONS ── */
.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue-mid); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before { content: ''; width: 22px; height: 2px; background: currentColor; }
.section-eyebrow.gold { color: var(--gold); }
.section-eyebrow.sage { color: var(--sage); }
.section-eyebrow.sky  { color: var(--sky);  }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700;
  color: var(--navy); line-height: 1.18; margin-bottom: 1rem;
}
.section-title.light { color: #fff; }
.section-lead { font-size: 1.02rem; color: var(--mid); max-width: 580px; line-height: 1.85; font-weight: 300; }
.section-lead.light { color: rgba(255,255,255,0.62); }

.container { max-width: 1100px; margin: 0 auto; }
section { padding: 6rem 2.5rem; }

/* ── BUTTONS ── */
.btn-gold { background: var(--gold); color: var(--navy); padding: 14px 28px; border-radius: var(--radius); text-decoration: none; font-weight: 700; font-size: 0.95rem; border: 2px solid var(--gold); transition: all 0.2s; display: inline-block; }
.btn-gold:hover { background: var(--gold-warm); border-color: var(--gold-warm); transform: translateY(-1px); }
.btn-wire { background: transparent; color: #fff; padding: 14px 28px; border-radius: var(--radius); text-decoration: none; font-weight: 500; font-size: 0.95rem; border: 2px solid rgba(255,255,255,0.32); transition: all 0.2s; display: inline-block; }
.btn-wire:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: #fff; padding: 14px 32px; border-radius: var(--radius); text-decoration: none; font-weight: 700; font-size: 0.95rem; display: inline-block; transition: all 0.2s; border: 2px solid var(--navy); }
.btn-navy:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-1px); }
.btn-blue { background: var(--blue-mid); color: #fff; padding: 12px 24px; border-radius: var(--radius); text-decoration: none; font-weight: 600; font-size: 0.9rem; display: inline-block; transition: all 0.2s; border: 2px solid var(--blue-mid); }
.btn-blue:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-1px); }

/* ── PHOTO STRIP ── */
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); height: 260px; overflow: hidden; }
.photo-strip-item { position: relative; overflow: hidden; }
.photo-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: saturate(0.92) contrast(1.05); }
.photo-strip-item:hover img { transform: scale(1.06); }
.photo-strip-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.6rem 0.85rem; background: linear-gradient(to top, rgba(11,31,58,0.85), transparent); font-family: 'Barlow Condensed', sans-serif; font-size: 0.66rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.8); }

/* ── PHOTO FEATURE ── */
.photo-feature { height: 420px; position: relative; overflow: hidden; }
.photo-feature img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1); }
.photo-feature-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(11,31,58,0.82) 0%, rgba(11,31,58,0.3) 55%, rgba(11,31,58,0.1) 100%); display: flex; align-items: center; padding: 0 3rem; }
.photo-feature-text { max-width: 560px; }
.photo-feature-text blockquote { font-family: 'Playfair Display', serif; font-size: clamp(1.35rem, 2.8vw, 1.95rem); font-style: italic; color: #fff; line-height: 1.55; margin-bottom: 1rem; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.photo-feature-text .attr { font-family: 'Barlow Condensed', sans-serif; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-warm); }

/* ── CTA BAND ── */
.cta-band { background: var(--gold); padding: 4.5rem 2.5rem; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: 'WY'; position: absolute; font-family: 'Playfair Display', serif; font-size: 26rem; font-weight: 900; color: rgba(11,31,58,0.055); top: 50%; left: 50%; transform: translate(-50%,-50%); letter-spacing: -8px; pointer-events: none; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; position: relative; }
.cta-band p { font-size: 1rem; color: rgba(11,31,58,0.72); max-width: 520px; margin: 0 auto 2rem; position: relative; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 3rem 2.5rem 2rem; border-top: 3px solid var(--gold); }
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: 0.8rem; }
.footer-logo span { color: var(--gold-warm); }
.footer-brand-desc { font-size: 0.86rem; color: rgba(255,255,255,0.42); line-height: 1.7; margin-bottom: 1rem; }
.footer-parent-link { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-size: 0.76rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--sky); text-decoration: none; border-bottom: 1px solid rgba(91,164,212,0.3); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.footer-parent-link:hover { color: var(--gold-warm); border-color: var(--gold-warm); }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-warm); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { font-size: 0.87rem; color: rgba(255,255,255,0.48); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-col .contact-line { font-size: 0.87rem; color: rgba(255,255,255,0.48); line-height: 1.7; margin-bottom: 0.5rem; }
.footer-col .contact-line a { color: var(--sky); }
.footer-col .contact-line a:hover { color: var(--gold-warm); }
.footer-bottom { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.28); line-height: 1.6; }

/* ── FORMS ── */
form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: 0.76rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 5px; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea { width: 100%; padding: 11px 14px; border: 1px solid rgba(11,31,58,0.18); border-radius: var(--radius); font-family: 'Barlow', sans-serif; font-size: 0.92rem; color: var(--charcoal); background: #fff; outline: none; transition: border-color 0.2s, box-shadow 0.2s; appearance: none; }
input:focus, select:focus, textarea:focus { border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(37,99,184,0.1); }
textarea { min-height: 120px; resize: vertical; }
.form-submit { background: var(--navy); color: #fff; padding: 13px 28px; border: none; border-radius: var(--radius); font-family: 'Barlow', sans-serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all 0.2s; align-self: flex-start; }
.form-submit:hover { background: var(--blue); transform: translateY(-1px); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.fade-up   { animation: fadeUp 0.65s ease both; }
.fade-up-2 { animation: fadeUp 0.65s 0.12s ease both; }
.fade-up-3 { animation: fadeUp 0.65s 0.24s ease both; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links > li > a { padding: 0 0.7rem; font-size: 0.76rem; letter-spacing: 1px; }
}

@media (max-width: 860px) {
  /* Hide desktop links, show hamburger */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu { display: flex; }
  nav { padding: 0 1.5rem; }
  section { padding: 4rem 1.5rem; }
  .brand-ribbon { padding: 0.85rem 1.5rem; font-size: 0.82rem; }
  .photo-strip { grid-template-columns: 1fr 1fr; height: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .page-hero-inner { padding: 0 1.5rem 2.5rem; }
}

@media (max-width: 600px) {
  section { padding: 3rem 1.25rem; }
  .photo-strip { height: 130px; }
  .photo-strip-caption { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero-inner { padding: 0 1.25rem 2rem; }
}
