/* ═══════════════════════════════════════════════════════
   OuterBanksHomes.com — OuterBanks.org Style Theme
   Clean Tourism Authority Aesthetic
   Colors: Deep teal, white, sandy orange, light grays
   Fonts: Raleway (headings) + Source Sans Pro (body)
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* Core palette — matches outerbanks.org */
  --teal:       #1a7a8a;
  --teal-dark:  #145f6d;
  --teal-light: #2499ad;
  --teal-pale:  #e8f5f7;
  --sand:       #d4884a;
  --sand-light: #e9a06a;
  --sand-pale:  #fdf4ec;
  --navy:       #1a2d3d;
  --navy-mid:   #243d52;
  --gray-100:   #f7f8f9;
  --gray-200:   #eef0f2;
  --gray-300:   #dde1e5;
  --gray-400:   #b8bfc7;
  --gray-500:   #8a939e;
  --gray-700:   #4a5568;
  --gray-900:   #1a202c;
  --white:      #ffffff;
  --text:       #2d3748;
  --text-soft:  #5a6a7a;

  /* Typography */
  --fh: 'Raleway', sans-serif;
  --fb: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;

  /* Shadows */
  --shadow-xs:  0 1px 4px rgba(0,0,0,.08);
  --shadow-sm:  0 2px 10px rgba(0,0,0,.10);
  --shadow-md:  0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.15);

  /* Border radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--fb);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── LAYOUT ── */
.wrap    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.wrap-sm { max-width: 880px;  margin: 0 auto; padding: 0 24px; }

/* ── UTILITY NAV (top strip, matches .org) ── */
.utility-nav {
  background: var(--navy);
  padding: 0;
  height: 36px;
  display: flex;
  align-items: center;
}
.utility-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 24px;
}
.utility-nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.utility-nav a {
  font-family: var(--fb);
  font-size: 12px;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.utility-nav a:hover { color: #fff; }
.utility-nav .sep { color: rgba(255,255,255,.2); font-size: 10px; }
.utility-weather {
  font-family: var(--fb);
  font-size: 12px;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  gap: 12px;
}
.weather-pill {
  background: rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 11px;
  color: #fff;
  font-weight: 600;
}

/* ── MAIN NAV (white bar) ── */
.site-nav {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--teal);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.nav-logo-text { line-height: 1.1; }
.nav-logo-main {
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
}
.nav-logo-main span { color: var(--teal); }
.nav-logo-sub {
  font-family: var(--fb);
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: .04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links a {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--text);
  padding: 24px 14px;
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--teal); }
.nav-cta-btn {
  background: var(--sand);
  color: var(--white);
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background .2s, transform .2s;
  margin-left: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-cta-btn:hover { background: var(--sand-light); transform: translateY(-1px); }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--fh); font-size: 28px; font-weight: 600; color: var(--white); }
.mobile-menu a:hover { color: var(--teal-light); }
.mobile-close { position: absolute; top: 20px; right: 24px; background: none; border: none; cursor: pointer; color: var(--white); font-size: 28px; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--navy);
}
.hero-slideshow { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=90'); background-position: center 60%; }
.hero-slide:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1519046904884-53103b34b206?w=1920&q=85'); background-position: center 50%; }
.hero-slide:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=85'); background-position: center 40%; }
.hero-slide:nth-child(4) { background-image: url('https://images.unsplash.com/photo-1516953953577-b47c08ee5d1e?w=1920&q=85'); background-position: center 50%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(26,45,61,.18) 0%,
    rgba(26,45,61,.12) 40%,
    rgba(26,45,61,.58) 80%,
    rgba(26,45,61,.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 24px 80px;
  color: var(--white);
}
.hero-kicker {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  margin-bottom: 14px;
  animation: fadeUp .7s .2s both;
}
.hero-h1 {
  font-family: var(--fh);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
  animation: fadeUp .8s .35s both;
}
.hero-sub {
  font-family: var(--fb);
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,.88);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 32px;
  animation: fadeUp .8s .5s both;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp .8s .65s both;
}
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.hero-dot.active { background: var(--white); transform: scale(1.3); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 30px;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
}
.btn-teal    { background: var(--teal);  color: var(--white); }
.btn-teal:hover    { background: var(--teal-dark); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-sand    { background: var(--sand);  color: var(--white); }
.btn-sand:hover    { background: var(--sand-light); transform: translateY(-1px); }
.btn-white   { background: var(--white); color: var(--navy); }
.btn-white:hover   { background: var(--gray-200); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.8); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn-outline-teal { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline-teal:hover { background: var(--teal); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 12px; }

/* ── SECTIONS ── */
.section       { padding: 72px 0; }
.section-sm    { padding: 48px 0; }
.section-white { background: var(--white); }
.section-gray  { background: var(--gray-100); }
.section-teal  { background: var(--teal); }
.section-navy  { background: var(--navy); }

/* ── SECTION HEADERS ── */
.sec-kicker {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  display: block;
}
.sec-kicker.light { color: rgba(255,255,255,.7); }
.sec-title {
  font-family: var(--fh);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.01em;
}
.sec-title.light { color: var(--white); }
.sec-body {
  font-family: var(--fb);
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 620px;
  margin-top: 12px;
}
.sec-body.light { color: rgba(255,255,255,.78); }
.sec-header    { margin-bottom: 40px; }
.sec-header.center { text-align: center; }
.sec-header.center .sec-body { margin-left: auto; margin-right: auto; }

/* ── SEARCH BAR (hero bottom — like .org) ── */
.hero-search {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transform: translateY(50%);
}
.hero-search-inner {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 0;
  overflow: hidden;
}
.hs-tab-bar {
  display: flex;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-300);
}
.hs-tab {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 22px;
  color: var(--gray-500);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.hs-tab.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
  background: var(--white);
}
.hs-fields {
  display: flex;
  padding: 16px 20px;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.hs-group { flex: 1; min-width: 140px; }
.hs-group label {
  display: block;
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.hs-group select, .hs-group input {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: var(--r-sm);
  font-family: var(--fb);
  font-size: 14px;
  color: var(--text);
  padding: 10px 12px;
  outline: none;
  background: var(--white);
  transition: border-color .2s;
  -webkit-appearance: none;
}
.hs-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238a939e'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}
.hs-group select:focus, .hs-group input:focus { border-color: var(--teal); }
.hs-group input::placeholder { color: var(--gray-400); }

/* ── QUICK LINKS STRIP (like .org's icon tiles) ── */
.quicklinks {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.ql-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 12px;
  border-right: 1px solid var(--gray-200);
  transition: background .2s;
  cursor: pointer;
}
.ql-item:last-child { border-right: none; }
.ql-item:hover { background: var(--teal-pale); }
.ql-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background .2s;
}
.ql-item:hover .ql-icon { background: var(--teal); }
.ql-label {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  line-height: 1.3;
}

/* ── TICKER ── */
.ticker {
  background: var(--teal);
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker-label {
  background: var(--teal-dark);
  color: var(--white);
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-scroll {
  display: flex;
  gap: 60px;
  animation: ticker-move 48s linear infinite;
  white-space: nowrap;
  padding-left: 30px;
}
.ticker-item { font-family: var(--fb); font-size: 13px; color: var(--white); font-weight: 400; }
@keyframes ticker-move { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PHOTO CARD (standard card used throughout — like .org) ── */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.photo-card {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.photo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.photo-card-img {
  position: relative;
  overflow: hidden;
}
.photo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.photo-card:hover .photo-card-img img { transform: scale(1.04); }
.photo-card-img.h-220 img { height: 220px; }
.photo-card-img.h-260 img { height: 260px; }
.photo-card-img.h-200 img { height: 200px; }
.photo-card-img.h-180 img { height: 180px; }
.photo-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  background: var(--teal);
  color: var(--white);
}
.photo-card-cat.sand { background: var(--sand); }
.photo-card-cat.navy { background: var(--navy); }
.photo-card-body { padding: 18px 20px 20px; }
.photo-card-title {
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 6px;
  transition: color .2s;
}
.photo-card:hover .photo-card-title { color: var(--teal); }
.photo-card-desc {
  font-family: var(--fb);
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 12px;
}
.photo-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fb);
  font-size: 12px;
  color: var(--gray-400);
}
.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--teal);
  transition: gap .2s;
}
.read-more-link:hover { gap: 10px; }

/* ── DISCOVER ASYMMETRIC GRID (like .org's feature mosaic) ── */
.discover-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 3px;
}
.disc-card { position: relative; overflow: hidden; }
.disc-card:first-child { grid-row: 1 / 3; }
.disc-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.disc-card:hover img { transform: scale(1.05); }
.disc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,45,61,.85) 0%, rgba(26,45,61,.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  transition: background .3s;
}
.disc-card:hover .disc-overlay { background: linear-gradient(to top, rgba(26,45,61,.92) 0%, rgba(26,45,61,.4) 100%); }
.disc-kicker {
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 6px;
}
.disc-title {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 6px;
}
.disc-card:first-child .disc-title { font-size: 30px; }
.disc-desc {
  font-family: var(--fb);
  font-size: 13px;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.disc-card:hover .disc-desc { max-height: 80px; }
.disc-link {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sand-light);
  margin-top: 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: all .3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.disc-card:hover .disc-link { opacity: 1; transform: none; }

/* ── EVENTS CARDS ── */
.event-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  cursor: pointer;
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.event-date {
  background: var(--teal);
  color: var(--white);
  min-width: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  flex-shrink: 0;
}
.event-month {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .8;
  line-height: 1;
  margin-bottom: 2px;
}
.event-day {
  font-family: var(--fh);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}
.event-info { padding: 14px 16px 14px 0; }
.event-cat {
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.event-title {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 4px;
  transition: color .2s;
}
.event-card:hover .event-title { color: var(--teal); }
.event-loc { font-family: var(--fb); font-size: 12px; color: var(--gray-500); }

/* ── VENUE / LISTING CARDS ── */
.venue-card {
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.venue-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vc-img { height: 210px; overflow: hidden; position: relative; }
.vc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.venue-card:hover .vc-img img { transform: scale(1.04); }
.vc-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--sand);
  color: var(--white);
  border-radius: 3px;
}
.vc-price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(26,45,61,.88);
  color: var(--white);
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
}
.vc-body { padding: 18px 20px 20px; }
.vc-name { font-family: var(--fh); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; line-height: 1.2; }
.vc-loc { font-family: var(--fb); font-size: 13px; color: var(--gray-500); margin-bottom: 8px; }
.vc-desc { font-family: var(--fb); font-size: 14px; color: var(--text-soft); line-height: 1.6; margin-bottom: 12px; }
.vc-stars { color: var(--sand); font-size: 13px; margin-bottom: 8px; }
.vc-cta {
  display: block;
  text-align: center;
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 10px;
  border: 2px solid var(--teal);
  border-radius: var(--r-sm);
  transition: all .2s;
}
.vc-cta:hover { background: var(--teal); color: var(--white); }

/* ── FAQ / AEO ── */
.answer-box {
  background: var(--teal-pale);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.answer-box-label {
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.answer-box p { font-family: var(--fb); font-size: 15px; color: var(--text); line-height: 1.75; }
.answer-box strong { color: var(--navy); }

.faq-block { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--gray-300); padding: 20px 0; }
.faq-item:first-child { border-top: 1px solid var(--gray-300); }
.faq-q {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  line-height: 1.3;
  padding-bottom: 0;
}
.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform .3s;
  line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-family: var(--fb);
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 600px; padding-top: 14px; }
.faq-a p { margin-bottom: 10px; }
.faq-a p:last-child { margin-bottom: 0; }

/* ── PROS / CONS ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros-col { background: #f0faf5; border-top: 3px solid #2ea36b; border-radius: var(--r-md); padding: 24px; }
.cons-col { background: #fff5f2; border-top: 3px solid #e05c3a; border-radius: var(--r-md); padding: 24px; }
.pros-col h4 { font-family: var(--fh); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.cons-col h4 { font-family: var(--fh); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.pros-col ul, .cons-col ul { list-style: none; }
.pros-col ul li, .cons-col ul li { font-family: var(--fb); font-size: 14px; color: var(--text-soft); padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,.06); line-height: 1.5; }
.pros-col ul li::before { content: '✓ '; color: #2ea36b; font-weight: 700; }
.cons-col ul li::before { content: '→ '; color: #e05c3a; font-weight: 700; }

/* ── STAT ROW ── */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: var(--navy); }
.stat-box { padding: 32px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.stat-box:last-child { border-right: none; }
.stat-val { font-family: var(--fh); font-size: 44px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 6px; }
.stat-val span { color: var(--sand-light); }
.stat-lbl { font-family: var(--fb); font-size: 13px; color: rgba(255,255,255,.55); letter-spacing: .04em; }

/* ── LEAD / CTA STRIP ── */
.cta-strip {
  background: var(--teal);
  padding: 56px 0;
  text-align: center;
  color: var(--white);
}
.cta-strip h2 { font-family: var(--fh); font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; margin-bottom: 10px; }
.cta-strip p { font-family: var(--fb); font-size: 17px; color: rgba(255,255,255,.82); margin-bottom: 28px; }
.cta-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; max-width: 700px; margin: 0 auto; }
.cta-input {
  flex: 1;
  min-width: 180px;
  padding: 13px 16px;
  font-family: var(--fb);
  font-size: 14px;
  border: none;
  border-radius: var(--r-sm);
  outline: none;
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
  transition: background .2s, border-color .2s;
}
.cta-input::placeholder { color: rgba(255,255,255,.5); }
.cta-input:focus { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.6); }
.cta-disclaimer { font-family: var(--fb); font-size: 12px; color: rgba(255,255,255,.45); margin-top: 12px; }

/* ── NEWSLETTER / 3-COL ACTION ── */
.action-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-300); }
.action-tile {
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: background .2s;
  cursor: pointer;
}
.action-tile:hover { background: var(--teal-pale); }
.action-tile-icon { font-size: 36px; }
.action-tile h3 { font-family: var(--fh); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gray-500); }
.action-tile h4 { font-family: var(--fh); font-size: 20px; font-weight: 800; color: var(--navy); }
.action-tile:hover h4 { color: var(--teal); }

/* ── AI DIGEST ── */
.ai-digest-panel { background: var(--navy); border-radius: var(--r-md); padding: 24px 28px; }
.ai-digest-panel h4 { font-family: var(--fh); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.ai-tag { background: var(--teal); color: var(--white); font-family: var(--fh); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; }
#ai-digest { font-family: var(--fb); font-size: 13px; color: rgba(255,255,255,.72); line-height: 1.8; }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 64px 0 0; color: rgba(255,255,255,.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .fl { font-family: var(--fh); font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.footer-brand .fl span { color: var(--teal-light); }
.footer-brand .ft { font-family: var(--fb); font-size: 12px; color: rgba(255,255,255,.35); letter-spacing: .06em; margin-bottom: 14px; }
.footer-brand .fd { font-family: var(--fb); font-size: 13px; color: rgba(255,255,255,.48); line-height: 1.75; }
.footer-col h5 { font-family: var(--fh); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-family: var(--fb); font-size: 14px; color: rgba(255,255,255,.52); transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-disclosure { text-align: center; font-family: var(--fb); font-size: 11px; color: rgba(255,255,255,.22); max-width: 700px; margin: 0 auto 24px; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-family: var(--fb); font-size: 12px; color: rgba(255,255,255,.3); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-family: var(--fb); font-size: 12px; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-links a:hover { color: var(--white); }

/* ── PAGE NAV BAR ── */
.page-nav {
  background: var(--white);
  border-bottom: 2px solid var(--gray-200);
  padding: 0;
  position: sticky;
  top: 68px;
  z-index: 80;
  overflow-x: auto;
}
.page-nav-inner { display: flex; justify-content: center; padding: 0 24px; gap: 0; white-space: nowrap; max-width: 1200px; margin: 0 auto; }
.pnav-link {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 14px 16px;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
  white-space: nowrap;
}
.pnav-link:hover, .pnav-link.active { color: var(--teal); border-bottom-color: var(--teal); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { position: relative; height: 52vh; min-height: 380px; overflow: hidden; }
.page-hero img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,45,61,.2) 0%, rgba(26,45,61,.72) 100%); display: flex; align-items: flex-end; }
.page-hero-text { padding: 40px 24px; max-width: 1200px; margin: 0 auto; width: 100%; color: var(--white); }
.page-hero-text h1 { font-family: var(--fh); font-size: clamp(34px, 5vw, 60px); font-weight: 800; line-height: 1.05; margin-bottom: 8px; }
.page-hero-text p { font-family: var(--fb); font-size: 16px; color: rgba(255,255,255,.8); max-width: 580px; margin-top: 6px; }
.breadcrumb { font-family: var(--fb); font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 10px; display: flex; gap: 8px; align-items: center; }
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: .4; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; } .reveal-d3 { transition-delay: .3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .card-grid-3 { grid-template-columns: 1fr 1fr; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .quicklinks { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .nav-links, .nav-cta-btn { display: none; }
  .hamburger { display: flex; }
  .wrap, .wrap-sm { padding: 0 16px; }
  .section { padding: 52px 0; }
  .discover-grid { grid-template-columns: 1fr; grid-template-rows: 280px 200px 200px; }
  .discover-grid .disc-card:first-child { grid-row: auto; }
  .pros-cons { grid-template-columns: 1fr; }
  .action-tiles { grid-template-columns: 1fr; }
  .utility-nav-left a { display: none; }
  .hero-search-inner { flex-direction: column; }
  .hs-fields { flex-direction: column; }
}
@media (max-width: 520px) {
  .card-grid-3, .card-grid-4, .card-grid-2 { grid-template-columns: 1fr; }
  .quicklinks { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 40px; }
  .cta-form { flex-direction: column; }
}
