/* ============================================================
   CANYON VIEW WATER POLO ASSOCIATION — style.css
   Pool-water theme: sky-azure accent on ice white-blue.
   Solid hex colors only. No rgba(), no opacity on text.
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 16px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: #F6FAFC;
  color: #22303A;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: #1E7FC4;
  text-decoration: none;
}

a:hover {
  color: #2E9BD6;
}

h1, h2, h3, h4 {
  color: #16232C;
  line-height: 1.2;
  font-weight: 700;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   WATER-POLO MOTIF GRAPHICS (pure CSS, decorative, solid colors)
   ============================================================ */

/* Water polo goal: two posts + crossbar + net lines, sky-azure */
.goal-mark {
  width: 34px;
  height: 34px;
  position: relative;
  flex: 0 0 auto;
}

.goal-mark .post-l,
.goal-mark .post-r {
  position: absolute;
  bottom: 2px;
  width: 4px;
  height: 26px;
  background-color: #2E9BD6;
  border-radius: 2px;
}

.goal-mark .post-l { left: 5px; }
.goal-mark .post-r { right: 5px; }

.goal-mark .crossbar {
  position: absolute;
  top: 4px;
  left: 5px;
  width: 24px;
  height: 4px;
  background-color: #2E9BD6;
  border-radius: 2px;
}

.goal-mark .net {
  position: absolute;
  top: 12px;
  left: 7px;
  width: 20px;
  height: 16px;
  background-image:
    linear-gradient(#D5E3EC 1px, transparent 1px),
    linear-gradient(90deg, #D5E3EC 1px, transparent 1px);
  background-size: 7px 6px;
  background-position: 0 0;
}

.goal-mark .net::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #2E9BD6;
  border-radius: 2px 2px 6px 6px;
}

/* Lane line with two buoys — small icon used across sections */
.lane-icon {
  width: 46px;
  height: 22px;
  position: relative;
  flex: 0 0 auto;
}

.lane-icon::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 9px;
  height: 3px;
  border-radius: 2px;
  background-color: #2E9BD6;
}

.lane-icon .buoy {
  position: absolute;
  top: 4px;
  width: 10px;
  height: 14px;
  border-radius: 50% 50% 46% 46%;
  background-color: #2E9BD6;
}

.lane-icon .buoy::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 4px;
  height: 8px;
  border-radius: 50%;
  background-color: #F6FAFC;
}

.lane-icon .buoy-1 { left: 4px; }
.lane-icon .buoy-2 { right: 4px; }

/* Horizontal wave bars — stepped bars forming a ripple line */
.wave-bars {
  display: flex;
  justify-content: center;
  gap: 6px;
  height: 14px;
  align-items: flex-end;
}

.wave-bars .bar {
  width: 10px;
  height: 4px;
  background-color: #2E9BD6;
  border-radius: 2px;
}

.wave-bars .bar:nth-child(1) { height: 5px; }
.wave-bars .bar:nth-child(2) { height: 9px; }
.wave-bars .bar:nth-child(3) { height: 13px; }
.wave-bars .bar:nth-child(4) { height: 9px; }
.wave-bars .bar:nth-child(5) { height: 5px; }
.wave-bars .bar:nth-child(6) { height: 8px; }
.wave-bars .bar:nth-child(7) { height: 12px; }
.wave-bars .bar:nth-child(8) { height: 8px; }
.wave-bars .bar:nth-child(9) { height: 5px; }

/* Water drop shape */
.drop-shape {
  width: 22px;
  height: 26px;
  position: relative;
  background-color: #2E9BD6;
  border-radius: 0 50% 50% 50%;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

/* ============================================================
   GIANT WORDMARK NAV (.giant-nav)
   ============================================================ */

.giant-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #F6FAFC;
  border-bottom: 1px solid #D5E3EC;
}

.giant-nav .nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.giant-nav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.giant-nav .wordmark {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #16232C;
  text-transform: uppercase;
  line-height: 1.1;
}

.giant-nav .wordmark .wordmark-sub {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #5E707E;
  text-transform: uppercase;
}

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

.giant-nav .nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: #22303A;
  letter-spacing: 0.02em;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.giant-nav .nav-links a:hover,
.giant-nav .nav-links a.is-active {
  color: #1E7FC4;
  border-bottom-color: #2E9BD6;
}

.giant-nav .cta-pill {
  display: inline-block;
  background-color: #1E7FC4;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid #1E7FC4;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.giant-nav .cta-pill:hover {
  background-color: #2E9BD6;
  border-color: #2E9BD6;
  color: #FFFFFF;
}

.giant-nav .nav-toggle {
  display: none;
  background: none;
  border: 2px solid #D5E3EC;
  border-radius: 8px;
  width: 44px;
  height: 40px;
  cursor: pointer;
  position: relative;
}

.giant-nav .nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #16232C;
  margin: 5px auto;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.giant-nav .nav-toggle.is-open .bar-1 { transform: translateY(7px) rotate(45deg); }
.giant-nav .nav-toggle.is-open .bar-2 { opacity: 0; }
.giant-nav .nav-toggle.is-open .bar-3 { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   TRIO HERO (.trio-hero)
   ============================================================ */

.trio-hero {
  position: relative;
  background-color: #F6FAFC;
  padding: 84px 24px 0;
  overflow: hidden;
}

.trio-hero .hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.trio-hero .eyebrow-chip {
  display: inline-block;
  background-color: #1E7FC4;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.trio-hero .hero-title {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #16232C;
  max-width: 820px;
  margin: 0 auto 24px;
}

.trio-hero .hero-title .azure {
  color: #2E9BD6;
}

.trio-hero .hero-sub {
  font-size: 18px;
  color: #22303A;
  max-width: 760px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.trio-hero .hero-sub .em {
  color: #1E7FC4;
  font-weight: 700;
}

.trio-hero .hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 76px;
}

.btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 30px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background-color: #1E7FC4;
  color: #FFFFFF;
  border-color: #1E7FC4;
}

.btn-primary:hover {
  background-color: #2E9BD6;
  border-color: #2E9BD6;
  color: #FFFFFF;
}

.btn-outline {
  background-color: transparent;
  color: #22303A;
  border-color: #22303A;
}

.btn-outline:hover {
  background-color: #22303A;
  color: #FFFFFF;
}

.trio-hero .pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding-bottom: 90px;
}

.trio-hero .pillar {
  background-color: #FFFFFF;
  border: 1px solid #D5E3EC;
  border-top: 4px solid #2E9BD6;
  border-radius: 14px;
  padding: 30px 26px;
  text-align: left;
}

.trio-hero .pillar .pillar-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.trio-hero .pillar h3 {
  font-size: 20px;
  color: #16232C;
}

.trio-hero .pillar p {
  font-size: 15px;
  color: #22303A;
  line-height: 1.75;
}

.trio-hero .hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 0 24px 26px;
  pointer-events: none;
}

.trio-hero .hero-wave .wbar {
  width: 16px;
  height: 5px;
  border-radius: 3px;
  background-color: #2E9BD6;
}

.trio-hero .hero-wave .wbar:nth-child(3n+1) { height: 7px; }
.trio-hero .hero-wave .wbar:nth-child(3n+2) { height: 12px; }
.trio-hero .hero-wave .wbar:nth-child(3n) { height: 9px; }
.trio-hero .hero-wave .wbar:nth-child(5n) { height: 15px; }

/* ============================================================
   PROGRAM TABS (.program-tabs)
   ============================================================ */

.home-page .program-tabs {
  background-color: #FFFFFF;
  padding: 88px 24px;
  border-top: 1px solid #D5E3EC;
  border-bottom: 1px solid #D5E3EC;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1E7FC4;
  margin-bottom: 14px;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background-color: #2E9BD6;
}

.section-head h2 {
  font-size: 36px;
  color: #16232C;
  margin-bottom: 14px;
}

.section-head p {
  font-size: 16px;
  color: #5E707E;
  line-height: 1.75;
}

.tab-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.tab-btn {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 28px;
  border-radius: 999px;
  border: 2px solid #D5E3EC;
  background-color: #FFFFFF;
  color: #22303A;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tab-btn:hover {
  border-color: #2E9BD6;
}

.tab-btn.is-active {
  background-color: #1E7FC4;
  border-color: #1E7FC4;
  color: #FFFFFF;
}

.tab-panels {
  max-width: 860px;
  margin: 0 auto;
}

.tab-panel {
  display: none;
  background-color: #E8F2F7;
  border: 1px solid #D5E3EC;
  border-radius: 16px;
  padding: 38px 36px;
}

.tab-panel.is-active {
  display: block;
}

.tab-panel .panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.tab-panel h3 {
  font-size: 24px;
  color: #16232C;
}

.tab-panel p {
  font-size: 16px;
  color: #22303A;
  line-height: 1.8;
  margin-bottom: 18px;
}

.inline-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.inline-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FFFFFF;
  border: 1px solid #D5E3EC;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #16232C;
}

.inline-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #2E9BD6;
  flex: 0 0 auto;
}

.square-list {
  list-style: none;
}

.square-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: #22303A;
  font-size: 15px;
}

.square-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background-color: #2E9BD6;
}

/* ============================================================
   DUO PANELS (.duo-panels)
   ============================================================ */

.home-page .duo-panels {
  background-color: #F6FAFC;
  padding: 88px 24px;
}

.duo-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
}

.duo-grid .duo-left {
  position: sticky;
  top: 90px;
  align-self: start;
}

.duo-left .eyebrow-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.duo-left .eyebrow-row .sq {
  width: 12px;
  height: 12px;
  background-color: #2E9BD6;
  flex: 0 0 auto;
}

.duo-left .eyebrow-row span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1E7FC4;
}

.duo-left h2 {
  font-size: 32px;
  color: #16232C;
  margin-bottom: 18px;
}

.duo-left p {
  font-size: 16px;
  color: #22303A;
  line-height: 1.8;
  margin-bottom: 24px;
}

.duo-left .tag-list {
  list-style: none;
  border-top: 1px solid #D5E3EC;
}

.duo-left .tag-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 2px;
  border-bottom: 1px solid #D5E3EC;
  font-size: 15px;
  font-weight: 700;
  color: #16232C;
}

.duo-left .tag-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #2E9BD6;
  flex: 0 0 auto;
}

.duo-right .duo-block {
  border-bottom: 1px solid #D5E3EC;
  padding: 8px 0 34px;
  margin-bottom: 30px;
}

.duo-right .duo-block:last-child {
  border-bottom: none;
}

.duo-right .block-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.duo-right .block-head h3 {
  font-size: 24px;
  color: #16232C;
}

.duo-right .duo-block p {
  font-size: 16px;
  color: #22303A;
  line-height: 1.8;
  margin-bottom: 16px;
}

.duo-right .inline-list li {
  background-color: #E8F2F7;
}

/* ============================================================
   CREDENTIAL STAMP BAND (.stamp-band)
   ============================================================ */

.home-page .stamp-band {
  background-color: #2E9BD6;
  padding: 74px 24px;
}

.stamp-band .stamp-inner {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.stamp-band h2 {
  font-size: 30px;
  letter-spacing: 0.06em;
  color: #16232C;
  margin-bottom: 12px;
}

.stamp-band .stamp-sub {
  font-size: 15px;
  color: #FFFFFF;
  margin-bottom: 44px;
}

.stamp-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
}

.stamp-badge {
  flex: 0 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 36px;
  position: relative;
}

.stamp-badge + .stamp-badge {
  border-left: 1px solid #FFFFFF;
}

.stamp-badge .stamp-square {
  width: 116px;
  height: 116px;
  background-color: #FFFFFF;
  border: 2px solid #16232C;
  outline: 2px solid #FFFFFF;
  outline-offset: 4px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: #1E7FC4;
  line-height: 1.4;
  padding: 12px;
}

.stamp-badge .node-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 3px solid #16232C;
}

.stamp-badge .stamp-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #16232C;
}

/* ============================================================
   CTA BAND (.cta-band)
   ============================================================ */

.home-page .cta-band {
  background-color: #16232C;
  padding: 78px 24px;
  text-align: center;
}

.cta-band h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-band p {
  color: #C9DCEA;
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

.cta-band .btn-primary {
  background-color: #1E7FC4;
  border-color: #1E7FC4;
  color: #FFFFFF;
}

.cta-band .btn-primary:hover {
  background-color: #2E9BD6;
  border-color: #2E9BD6;
}

/* ============================================================
   FOUR-COLUMN FOOTER (.four-col-footer)
   ============================================================ */

.four-col-footer {
  background-color: #16232C;
  border-top: 1px solid #2A3A48;
  padding: 60px 24px 24px;
}

.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.footer-col {
  padding: 0 28px;
  border-left: 1px solid #2A3A48;
}

.footer-col:first-child {
  border-left: none;
  padding-left: 0;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

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

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-col ul li a:hover {
  color: #FFFFFF;
  border-bottom: 1px solid #2E9BD6;
}

.footer-col .f-contact li {
  color: #C9DCEA;
}

.footer-legal-line {
  max-width: 1160px;
  margin: 44px auto 0;
  padding-top: 20px;
  border-top: 1px solid #2A3A48;
  font-size: 13px;
  color: #9FB8CC;
  text-align: center;
  line-height: 1.8;
}

.footer-legal-line a {
  color: #C9DCEA;
}

.footer-legal-line a:hover {
  color: #FFFFFF;
  border-bottom: 1px solid #2E9BD6;
}

.footer-sep {
  margin: 0 6px;
  color: #2A3A48;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.services-page .services-hero {
  background-color: #F6FAFC;
  padding: 72px 24px 60px;
  border-bottom: 1px solid #D5E3EC;
}

.services-page .services-hero .hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.services-page .services-hero h1 {
  font-size: 44px;
  color: #16232C;
  margin: 18px 0;
}

.services-page .services-hero p {
  font-size: 17px;
  color: #22303A;
  line-height: 1.8;
}

.services-page .services-list {
  background-color: #FFFFFF;
  padding: 76px 24px;
}

.services-page .services-list .container {
  max-width: 960px;
}

.service-item {
  padding: 40px 0;
  border-bottom: 1px solid #D5E3EC;
}

.service-item:last-child {
  border-bottom: none;
}

.service-item .service-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.service-item h2 {
  font-size: 26px;
  color: #16232C;
}

.service-item p {
  font-size: 16px;
  color: #22303A;
  line-height: 1.8;
  margin-bottom: 14px;
}

.service-item .square-list li {
  font-weight: 600;
}

.services-page .process-band {
  background-color: #E8F2F7;
  border-top: 1px solid #D5E3EC;
  border-bottom: 1px solid #D5E3EC;
  padding: 76px 24px;
}

.process-steps {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.process-step {
  background-color: #FFFFFF;
  border: 1px solid #D5E3EC;
  border-radius: 12px;
  padding: 24px 20px;
  counter-increment: step;
}

.process-step .step-num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #1E7FC4;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.process-step .step-num::before {
  content: "0" counter(step);
  margin-right: 8px;
  color: #2E9BD6;
}

.process-step h3 {
  font-size: 17px;
  color: #16232C;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: #5E707E;
  line-height: 1.65;
}

.services-page .cta-band {
  background-color: #16232C;
  padding: 76px 24px;
  text-align: center;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-page .contact-hero {
  background-color: #F6FAFC;
  padding: 72px 24px 60px;
  border-bottom: 1px solid #D5E3EC;
}

.contact-page .contact-hero .hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.contact-page .contact-hero h1 {
  font-size: 44px;
  color: #16232C;
  margin: 18px 0;
}

.contact-page .contact-hero p {
  font-size: 17px;
  color: #22303A;
  line-height: 1.8;
}

.contact-main {
  background-color: #FFFFFF;
  padding: 76px 24px;
}

.contact-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap h2,
.contact-side h2 {
  font-size: 24px;
  color: #16232C;
  margin-bottom: 22px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #16232C;
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: #22303A;
  background-color: #FFFFFF;
  border: 1px solid #D5E3EC;
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: #2E9BD6;
  box-shadow: 0 0 0 3px #E8F2F7;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
}

.form-status.ok { color: #1E7FC4; }
.form-status.err { color: #B43A3A; }

.contact-side .info-card {
  background-color: #E8F2F7;
  border: 1px solid #D5E3EC;
  border-radius: 14px;
  padding: 26px;
  margin-bottom: 26px;
}

.contact-side .info-card h3 {
  font-size: 16px;
  color: #16232C;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-side .info-card h3::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #2E9BD6;
  flex: 0 0 auto;
}

.contact-side .info-card p {
  font-size: 15px;
  color: #22303A;
  line-height: 1.75;
}

.contact-side .info-card a {
  color: #1E7FC4;
  font-weight: 700;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #D5E3EC;
  font-size: 14px;
  color: #22303A;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 700;
  color: #16232C;
}

/* FAQ accordion */
.contact-page .faq-band {
  background-color: #F6FAFC;
  border-top: 1px solid #D5E3EC;
  padding: 72px 24px;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D5E3EC;
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-item .faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  color: #16232C;
  font-family: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item .faq-q .chev {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.25s ease;
}

.faq-item .faq-q .chev::before,
.faq-item .faq-q .chev::after {
  content: "";
  position: absolute;
  background-color: #1E7FC4;
  border-radius: 2px;
}

.faq-item .faq-q .chev::before {
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
}

.faq-item .faq-q .chev::after {
  top: 2px;
  left: 9px;
  width: 2px;
  height: 16px;
}

.faq-item.is-open .faq-q .chev {
  transform: rotate(45deg);
}

.faq-item .faq-a {
  display: none;
  padding: 0 22px 20px;
  font-size: 15px;
  color: #22303A;
  line-height: 1.75;
}

.faq-item.is-open .faq-a {
  display: block;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.no-js .fade-up,
.js .fade-up.pre-reveal {
  opacity: 0;
  transform: translateY(26px);
}

.js .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .trio-hero .pillars {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .duo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .duo-grid .duo-left {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 0;
  }

  .footer-col {
    padding: 0 20px;
    border-left: none;
    padding-left: 20px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .giant-nav .nav-toggle {
    display: block;
  }

  .giant-nav .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #D5E3EC;
    box-shadow: 0 12px 24px #D5E3EC;
    padding: 16px 24px;
  }

  .giant-nav .nav-links.is-open {
    display: flex;
  }

  .giant-nav .nav-links li {
    width: 100%;
  }

  .giant-nav .nav-links a {
    display: block;
    padding: 10px 0;
    border-bottom: none;
  }

  .giant-nav .cta-pill {
    margin-top: 12px;
  }

  .trio-hero .hero-title {
    font-size: 36px;
  }

  .trio-hero .hero-sub {
    font-size: 16px;
  }

  .section-head h2,
  .cta-band h2 {
    font-size: 28px;
  }

  .stamp-row {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .stamp-badge {
    padding: 0;
    border-left: none !important;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col {
    padding-left: 0;
    border-left: none;
  }

  .giant-nav .wordmark {
    font-size: 18px;
  }
}

/* Scope isolation guard */
.home-page .program-tabs,
.home-page .duo-panels,
.home-page .stamp-band,
.home-page .cta-band {
  background-repeat: no-repeat;
}
