:root {
  /* Brand tokens */
  --c-blue-ridge: #165788;
  --c-french-broad: #9bd1d6;
  --c-biltmore-30: #ece2d5;
  --c-biltmore-60: #f1ebe4;
  --c-biltmore-90: #f4f1ee;
  --c-grove-park: #b03c2f;
  --c-sunset-red: #c45245;
  --c-ginko: #feb52c;
  --c-black: #111111;
  --c-gray-40: #555555;
  --c-athens-gray: #dfe0e1;
  --c-white: #ffffff;
  --c-teal: #18718c;
  --f-serif: 'Zilla Slab', Georgia, serif;
  --f-sans: 'DM Sans', system-ui, sans-serif;
  --f-script: 'Dancing Script', cursive;
  --max-w: 1200px;

  /* Standardized aliases derived from brand palette */
  --text: #111111;
  --text-muted: #555555;
  --primary-100: #9bd1d6;
  --primary-500: #165788;
  --primary-700: #165788;
  --primary-800: #0d3561;
  --accent-400: #165788;
  --accent-500: #18718c;
  --white: #ffffff;
  --gray-300: #dfe0e1;
  --gray-600: #555555;
  --background: #f4f1ee;
  --border: #dfe0e1;
  --surface-100: #f1ebe4;

  /* Shadows */
  --box-shadow-sm: 0 1px 3px 0 rgba(34, 40, 42, 0.1);
  --box-shadow-md: 0 4px 20px 0 rgba(33, 37, 41, 0.05);
  --box-shadow-lg: 0 4px 20px 0 rgba(33, 37, 41, 0.15);
}

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

html {
  width: 100%;
  background: #f2f2f2;
}
body {
  font-family: var(--f-sans);
  color: var(--c-black);
  background: var(--c-biltmore-90);
  width: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.65;
}
.pg-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--f-serif); }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ─── TOPO BACKGROUND ─── */
.topo {
  background-color: var(--c-biltmore-90);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800'%3E%3Cellipse cx='400' cy='400' rx='380' ry='200' fill='none' stroke='%23d4cec8' stroke-width='1.2' opacity='0.5'/%3E%3Cellipse cx='400' cy='400' rx='320' ry='160' fill='none' stroke='%23d4cec8' stroke-width='1' opacity='0.4'/%3E%3Cellipse cx='400' cy='400' rx='260' ry='120' fill='none' stroke='%23d4cec8' stroke-width='1' opacity='0.35'/%3E%3Cellipse cx='400' cy='400' rx='200' ry='90' fill='none' stroke='%23d4cec8' stroke-width='0.9' opacity='0.3'/%3E%3Cellipse cx='400' cy='400' rx='140' ry='65' fill='none' stroke='%23d4cec8' stroke-width='0.8' opacity='0.25'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right -100px top 40px, left -100px bottom 40px;
  background-size: 480px 480px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 32px;
  font-family: var(--f-sans); font-size: 16px; font-weight: 500;
  cursor: pointer; border: none; transition: opacity .2s, transform .15s;
  white-space: nowrap;
}
.btn:hover { opacity: .88; }
/* CMS strips multi-word classes — use attribute selectors as fallback */
.btn.btn-blue,  .btn[btn-blue]  { background: var(--c-blue-ridge) !important; color: #fff !important; border-color: var(--c-blue-ridge) !important; }
.btn.btn-white, .btn[btn-white] { background: #fff !important; color: var(--c-black) !important; border-color: #fff !important; }
.btn.btn-blue:hover,  .btn[btn-blue]:hover  { background: var(--primary-800) !important; color: #fff !important; opacity: 1 !important; }
.btn.btn-white:hover, .btn[btn-white]:hover { background: #f5f5f5 !important; color: var(--c-black) !important; opacity: 1 !important; }

/* ─── EYEBROW ─── */
.eyebrow {
  font-family: var(--f-sans); font-size: 12px; font-weight: 700;
  color: var(--c-blue-ridge); display: block; margin-bottom: 0;
  text-transform: uppercase; letter-spacing: 1.5px;
}

/* ══════════════════════════════════
   HEADER
══════════════════════════════════ */
header { position: sticky; top: 0; z-index: 200; }

.main-nav {
  background: #fff; height: 64px; border-bottom: 1px solid #eee;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; gap: 24px;
}

/* LOGO */
.logo {
  max-width: 120px;
}

.logo a {
  display: flex;
}

.nav-logo { flex-shrink: 0; text-decoration: none; }
.nav-logo-text {
  font-family: var(--f-serif); font-size: 28px; font-weight: 700;
  color: var(--c-blue-ridge); text-transform: uppercase;
  letter-spacing: 2px; line-height: 1;
}

.primary-nav { display: flex; list-style: none; gap: 0; align-items: center; padding: 0; margin: 0; }
.primary-nav a {
  font-family: var(--f-serif); font-size: 16px; font-weight: 700;
  color: var(--c-black); background: none; border: none; cursor: pointer;
  padding: 0 16px; height: 64px; display: flex; align-items: center;
  white-space: nowrap; transition: color .15s; text-decoration: none;
  border-radius: 8px;
  transition: color .15s ease, background .15s ease;
}
.primary-nav a:hover { color: var(--c-blue-ridge); background: rgba(22,87,136,.07); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative; height: 618px; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(
    circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0
  );
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.45;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: opacity .45s ease;
}
.hero-bg.fading { opacity: 0; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.18) 40%, rgba(0,0,0,.48) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 24px; padding-bottom: 80px;
}
.hero h1 {
  font-family: var(--f-serif); font-size: 72px; font-weight: 800;
  color: #fff; text-transform: uppercase; line-height: 1;
  margin-bottom: 32px; max-width: 820px;
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
  letter-spacing: -2px;
  transition: opacity .25s ease;
}
.hero h1.fading { opacity: 0; }
.hero-tabs {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
  gap: 6px; padding: 7px; white-space: nowrap;
  background: rgba(6, 9, 18, 0.55);
  border-radius: 48px;
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.13),
    inset 0 -1px 0 rgba(0,0,0,.18),
    0 16px 48px rgba(0,0,0,.45),
    0 2px 8px rgba(0,0,0,.3);
}
.hero-tab {
  padding: 13px 22px; border-radius: 32px; font-size: 14px; font-weight: 500;
  background: rgba(255,255,255,.09); color: rgba(255,255,255,.75);
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--f-serif); text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  letter-spacing: .025em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
  transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.hero-tab:hover {
  background: rgba(255,255,255,.2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 6px 18px rgba(0,0,0,.22);
}
/* CMS strips "active" from class — also target it as a standalone attribute */
.hero-tab.active, .hero-tab[active] {
  background: #fff; color: var(--c-black);
  box-shadow:
    0 4px 18px rgba(0,0,0,.3),
    0 1px 4px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.9);
  font-weight: 700;
  transform: translateY(-1px);
  letter-spacing: .01em;
}

/* ══════════════════════════════════
   FEATURED PROMO — 6 cards 3×2
══════════════════════════════════ */
.featured-promo {
  padding: 48px 48px 48px;
  background: var(--c-biltmore-90);
}
.fp-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  transition: opacity 0.22s ease;
}
.fp-grid.switching { opacity: 0; pointer-events: none; }
.fp-card {
  display: flex; flex-direction: column; position: relative; height: 420px;
  justify-content: flex-end; text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.12);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: box-shadow .3s ease-out;
}
.fp-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0)   28%,
    rgba(0,0,0,.22) 56%,
    rgba(0,0,0,.78) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.fp-card > picture {
  position: absolute; inset: 0;
}
.fp-card > picture img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 0;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.fp-card:hover {
  transform: none;
  box-shadow: 0 22px 56px rgba(0,0,0,.28);
}
.fp-card:hover > picture img { transform: scale(1.07); }

.fp-card-details {
  position: relative; z-index: 1;
  margin: 12px; padding: 20px;
  min-height: 150px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: 16px; color: #fff;
}
span.fp-card-details {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  margin: 0;
  padding: 24px 22px 22px;
  min-height: unset;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
}
span.fp-card-details h3,
span.fp-card-details .fp-card-title {
  font-family: var(--f-serif); font-size: 20px; font-weight: 600;
  color: #fff; line-height: 1.2; margin-bottom: 10px;
  text-shadow: 0 1px 16px rgba(0,0,0,.5);
  letter-spacing: -0.25px;
  display: block;
}
.fp-card-desc {
  display: block;
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.85); line-height: 1.55;
  margin-bottom: 10px;
}
.fp-card-btn {
  display: inline-flex; align-items: center; align-self: flex-start;
  background: rgba(255,255,255,.95); color: #111; border: none; border-radius: 32px;
  padding: 9px 22px; font-size: 13px; font-weight: 500;
  text-decoration: none; font-family: inherit;
  letter-spacing: .2px;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.fp-card:hover .fp-card-btn {
  background: var(--c-blue-ridge);
  color: #fff;
  transform: translateY(-1px);
}

/* ══════════════════════════════════
   GET INSPIRED
══════════════════════════════════ */
.get-inspired { padding: 48px 48px; background: var(--c-biltmore-90); }
.section-head {
  max-width: var(--max-w); margin: 0 auto 40px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.section-head h2 {
  font-family: var(--f-serif); font-size: 44px; font-weight: 700;
  letter-spacing: -0.5px;
}
.arrow-nav { display: flex; gap: 12px; }
.arrow-btn {
  width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-biltmore-30); color: var(--c-black);
  font-size: 22px; font-weight: 600; line-height: 1;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.arrow-btn:hover { background: var(--c-blue-ridge); color: #fff; transform: translateY(-1px); }
.arrow-btn svg { display: block; }

.inspired-wrap {
  max-width: var(--max-w); margin: 0 auto; overflow: hidden;
}
.inspired-grid {
  display: flex; gap: 20px;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}
.inspired-card {
  flex: 0 0 calc(25% - 15px);
  display: block; text-decoration: none;
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.inspired-card-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 4px;
  transition: transform .4s ease-out; display: block;
}
.inspired-card:hover .inspired-card-img { transform: scale(1.02); }
.inspired-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(to bottom, transparent 0%, rgba(12,24,56,0.72) 38%, rgba(12,24,56,0.96) 100%);
  height: 168px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 7px;
  padding: 0 16px 18px;
  pointer-events: none;
}
.inspired-card-name {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--f-serif); font-size: 17px; font-weight: 700;
  color: #fff; line-height: 1.25;
  transition: color .2s ease;
}
.inspired-card:hover .inspired-card-name { color: var(--c-french-broad); }
.inspired-card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12.5px; font-weight: 400;
  color: rgba(255,255,255,0.82); line-height: 1.55;
}

/* ══════════════════════════════════
   SPONSORED CARDS
══════════════════════════════════ */
.sponsored { padding: 48px 48px; background: var(--c-biltmore-90); }
.sponsored-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.sponsored-card {
  display: block;
  cursor: pointer;
  transition: transform .25s ease-out;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.sponsored-card:hover { transform: translateY(-4px); }
span.sponsored-img-wrap {
  display: block;
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 16/10; margin-bottom: 20px;
}
span.sponsored-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s; display: block;
}
.sponsored-card:hover span.sponsored-img-wrap img { transform: scale(1.03); }
.sponsored-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.9); color: var(--c-black);
  font-size: 12px; font-weight: 500; padding: 5px 14px;
  border-radius: 32px; letter-spacing: .3px; display: inline-block;
}
.sponsored-card h3,
.sponsored-card .sponsored-card-title {
  font-family: var(--f-serif); font-size: 20px; font-weight: 700;
  color: var(--c-black); margin-bottom: 8px; line-height: 1.25; display: block;
  letter-spacing: -0.3px;
  transition: color .15s ease;
}
.sponsored-card:hover h3,
.sponsored-card:hover .sponsored-card-title { color: var(--c-blue-ridge); }
.sponsored-card p,
.sponsored-card .sponsored-card-body {
  font-size: 14px; color: var(--c-gray-40); line-height: 1.65; display: block;
}

/* ══════════════════════════════════
   BREAK BANNERS — section separators
══════════════════════════════════ */
.break-banner { padding: 56px 48px; }
/* CMS strips second class word — use attribute selectors */
.break-banner.break-blue, [break-blue] { background: var(--c-blue-ridge); }
.break-banner.break-warm, [break-warm] { background: var(--c-biltmore-30); }
.break-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.break-img {
  border-radius: 14px; overflow: hidden; aspect-ratio: 16/9;
}
.break-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.break-eyebrow-label {
  font-family: var(--f-sans); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  display: block; margin-bottom: 16px;
}
.break-blue .break-eyebrow-label, [break-blue] .break-eyebrow-label { color: var(--c-french-broad); }
.break-warm .break-eyebrow-label, [break-warm] .break-eyebrow-label { color: var(--c-blue-ridge); }
.break-text h2 {
  font-family: var(--f-serif); font-size: 38px; font-weight: 700;
  line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.5px;
}
.break-blue .break-text h2, [break-blue] .break-text h2 { color: #fff; }
.break-warm .break-text h2, [break-warm] .break-text h2 { color: var(--c-black); }
.break-text p {
  font-size: 16px; line-height: 1.7; margin-bottom: 28px;
}
.break-blue .break-text p, [break-blue] .break-text p { color: rgba(255,255,255,0.72); }
.break-warm .break-text p, [break-warm] .break-text p { color: var(--c-gray-40); }
.break-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-sans); font-size: 14px; font-weight: 600;
  padding: 12px 26px; border-radius: 32px; text-decoration: none;
  transition: opacity .2s, transform .18s;
}
.break-cta:hover { opacity: .88; transform: translateY(-1px); }
.break-blue .break-cta, [break-blue] .break-cta { background: #fff; color: var(--c-blue-ridge); }
.break-warm .break-cta, [break-warm] .break-cta { background: var(--c-blue-ridge); color: #fff; }

/* ══════════════════════════════════
   TWO-COL PROMO
══════════════════════════════════ */
.two-col-promo { padding: 0 48px 120px; background: var(--c-biltmore-90); }
.two-col-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; min-height: 560px;
}
.promo-guide {
  position: relative; border-radius: 12px; overflow: hidden;
  padding: 48px; display: flex; flex-direction: column;
  justify-content: flex-end; text-decoration: none; color: #fff;
}
.promo-guide-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
span.promo-guide-overlay {
  position: absolute; inset: 0; display: block;
  background: linear-gradient(to bottom, rgba(22,87,136,.2) 0%, rgba(22,87,136,.82) 100%);
}
span.promo-guide-content { position: relative; z-index: 2; display: block; }
.promo-icon { width: 48px; height: 48px; margin-bottom: 20px; opacity: .85; display: block; }
.promo-guide h3 {
  font-family: var(--f-serif); font-size: 32px; font-weight: 700;
  margin-bottom: 12px; line-height: 1.2; display: block;
}
.promo-guide p { font-size: 16px; line-height: 1.6; margin-bottom: 28px; max-width: 360px; display: block; }

.promo-right { display: flex; flex-direction: column; gap: 24px; }
.promo-small {
  flex: 1; border-radius: 12px; padding: 36px 40px;
  display: flex; flex-direction: column; justify-content: center;
  color: #fff; text-decoration: none;
}
.promo-small.newsletter { background: var(--c-blue-ridge); }
.promo-small.app        { background: var(--c-sunset-red); position: relative; overflow: hidden; }
.promo-small h3 {
  font-family: var(--f-serif); font-size: 28px; font-weight: 700; margin-bottom: 10px;
}
.promo-small p { font-size: 16px; line-height: 1.55; margin-bottom: 20px; }
.promo-link {
  display: flex; align-items: center; gap: 10px; color: #fff;
  font-size: 16px; font-weight: 600; text-decoration: none;
}
.promo-link svg { width: 28px; height: 28px; flex-shrink: 0; }
.promo-small.app::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='300'%3E%3Cellipse cx='350' cy='150' rx='200' ry='120' fill='none' stroke='rgba(255,255,255,0.15)' stroke-width='1.5'/%3E%3Cellipse cx='350' cy='150' rx='150' ry='90' fill='none' stroke='rgba(255,255,255,0.12)' stroke-width='1.2'/%3E%3Cellipse cx='350' cy='150' rx='100' ry='60' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right -20px center;
  background-size: 340px 260px; pointer-events: none;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer .footer-body {
  background: var(--c-blue-ridge); padding: 56px 48px 32px;
}
.footer-top {
  max-width: var(--max-w); margin: 0 auto;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.15);
  margin-bottom: 32px; text-align: center;
}
.footer-logo { display: inline-block; margin-bottom: 24px; filter: brightness(0) invert(1); }
.footer-top .logo { margin: 0 auto; }

.footer-nav-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.footer-col h4 {
  font-family: var(--f-serif); font-size: 18px; font-weight: 700;
  color: #fff; margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 15px; color: rgba(255,255,255,.72);
  transition: color .15s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-secondary {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; gap: 28px; flex-wrap: wrap; padding-bottom: 8px;
  justify-content: center;
}
.footer-secondary a { font-size: 14px; color: rgba(255,255,255,.55); }
.footer-secondary a:hover { color: rgba(255,255,255,.85); }

.site-disclaimer {
  max-width: var(--max-w); margin: 16px auto 0;
  font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.6;
  text-align: center;
}

.footer-disclaimer {
  max-width: var(--max-w); margin: 16px auto 0;
  font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.6;
  text-align: center;
}

.footer-bottom {
  background: var(--c-biltmore-90); padding: 14px 48px;
}
.footer-bottom-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 13px; color: var(--c-gray-40); }

/* ══════════════════════════════════
   HAMBURGER
══════════════════════════════════ */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--c-black); border-radius: 2px; transition: all .25s;
}
.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); }

/* ══════════════════════════════════
   RESPONSIVE — TABLET ≤1024px
══════════════════════════════════ */
/* ══════════════════════════════════
   DYNAMIC ISLAND
══════════════════════════════════ */
#tabs-island {
  position: fixed; top: 14px; left: 50%;
  transform: translateX(-50%) scale(.82);
  z-index: 9999; opacity: 0; pointer-events: none;
  display: flex; gap: 3px; padding: 5px 6px;
  background: var(--c-biltmore-60);
  border: 1.5px solid var(--c-blue-ridge);
  border-radius: 40px;
  box-shadow:
    0 8px 32px rgba(22,87,136,.18),
    0 2px 8px rgba(0,0,0,.12);
  white-space: nowrap;
  transition: opacity .3s cubic-bezier(.4,0,.2,1),
              transform .42s cubic-bezier(.34,1.56,.64,1);
}
#tabs-island.visible {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) scale(1);
}
.island-tab {
  padding: 9px 17px; border-radius: 28px;
  font-size: 13px; font-weight: 600;
  color: rgba(22,87,136,.65);
  cursor: pointer; font-family: var(--f-serif);
  text-decoration: none; letter-spacing: .025em;
  display: inline-flex; align-items: center;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease;
  -webkit-tap-highlight-color: transparent;
}
.island-tab:hover:not(.active) { color: var(--c-blue-ridge); }
.island-tab.active {
  background: var(--c-blue-ridge); color: #fff;
  font-weight: 700; letter-spacing: .01em;
  box-shadow: 0 2px 10px rgba(22,87,136,.35);
}

@media (max-width: 1024px) {
  .main-nav { padding: 0 24px; }
  .featured-promo { padding: 36px 24px 36px; }
  .fp-grid { grid-template-columns: repeat(2, 1fr); }
  .get-inspired { padding: 36px 24px; }
  .inspired-card { flex: 0 0 calc(33.333% - 14px); }
  .sponsored { padding: 36px 24px; }
  .sponsored-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col-promo { padding: 0 24px 64px; }
  .section-head h2 { font-size: 36px; }
  .footer-body { padding: 40px 24px 24px; }
  .footer-bottom { padding: 14px 24px; }
  .break-banner { padding: 40px 24px; }
  .break-inner { gap: 40px; }
  .break-text h2 { font-size: 30px; }
}

/* ══════════════════════════════════
   RESPONSIVE — MOBILE ≤768px
══════════════════════════════════ */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .primary-nav {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; background: #fff;
    border-bottom: 1px solid #eee; z-index: 999;
  }
  .primary-nav.open { display: flex; }
  .primary-nav li { width: 100%; }
  .primary-nav a { height: auto; padding: 14px 24px; width: 100%; justify-content: flex-start; }

  .hero { height: 360px; }
  .hero h1 { font-size: 38px; margin-bottom: 16px; }
  .hero-tabs { gap: 6px; padding: 6px; max-width: calc(100vw - 32px); overflow-x: auto; scrollbar-width: none; }
  .hero-tabs::-webkit-scrollbar { display: none; }
  .hero-tab { padding: 10px 14px; font-size: 12px; }

  #tabs-island { display: none !important; }
  .island-tab { padding: 8px 12px; font-size: 12px; }

  .featured-promo { padding: 24px 16px 24px; }
  .fp-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .fp-card { height: 260px; }
  span.fp-card-details { padding: 60px 16px 18px; gap: 10px; }
  span.fp-card-details h3,
  span.fp-card-details .fp-card-title { font-size: 16px; }
  .fp-card-btn { padding: 8px 14px; font-size: 12px; }

  .get-inspired { padding: 24px 16px; }
  .section-head h2 { font-size: 28px; }
  .inspired-card { flex: 0 0 calc(50% - 10px); }

  .sponsored { padding: 24px 16px; }
  .sponsored-grid { grid-template-columns: 1fr; }

  .two-col-promo { padding: 0 16px 56px; }
  .two-col-inner { grid-template-columns: 1fr; min-height: auto; gap: 16px; }

  .break-banner { padding: 32px 16px; }
  .break-inner { grid-template-columns: 1fr; gap: 20px; }
  .break-img { aspect-ratio: 16/7; }
  .break-text h2 { font-size: 24px; }

  .footer-body { padding: 36px 16px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-nav-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { padding: 14px 16px; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .footer-secondary { gap: 16px; }

}

/* ══════════════════════════════════
   RESPONSIVE — SMALL MOBILE ≤480px
══════════════════════════════════ */
@media (max-width: 480px) {
  .fp-grid { grid-template-columns: 1fr; }
  .fp-card { height: 320px; }
  .hero h1 { font-size: 30px; }
  .footer-nav-grid { grid-template-columns: 1fr; }
  span.fp-card-details { padding: 52px 14px 16px; }
}

/* ══════════════════════════════════
   UX POLISH
══════════════════════════════════ */
.btn {
  transition: opacity .2s, transform .2s ease-out, box-shadow .2s;
}
.btn:hover {
  opacity: .92;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22,87,136,.28);
}
.btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,.13); }

:focus-visible {
  outline: 3px solid var(--c-blue-ridge);
  outline-offset: 3px;
  border-radius: 6px;
}

.fp-card, .btn, .sponsored-card, .inspired-card, .primary-nav a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.ql-name  { color: #1a1a1a !important; }
.ql-sub   { color: #555555 !important; }
.ql-arrow { color: #cccccc !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ══════════════════════════════════
   LAYOUT RESET
══════════════════════════════════ */
.home .container.main {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.container.layout {
  max-width: 100%;
  padding: 0;
}

.container.layout .row.layout {
  margin: 0;
}

.container.layout .row.layout > .cols {
  overflow-x: hidden;
}

.home .container.layout .row.layout > .cols {
  padding: 0;
}

.pages .main-wrapper .container.main {
  padding: 24px 16px;
}

/* ══════════════════════════════════
   FONTS RESET
══════════════════════════════════ */
.main-paragraph h1,
.main-paragraph h2 {
  font-weight: 700;
  color: var(--text);
}

.main-paragraph h1,
.main-paragraph h2,
.main-paragraph h3,
.main-paragraph p,
.main-paragraph strong {
  color: var(--text);
}

.main-paragraph h1 {
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.main-paragraph h2 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 40px 0 18px;
}

.main-paragraph h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin: 24px 0 10px;
}

.main-paragraph p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.main-paragraph strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .main-paragraph h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .main-paragraph h2 {
    font-size: 25px;
    margin: 32px 0 16px;
  }

  .main-paragraph h3 {
    font-size: 20px;
    margin: 22px 0 8px;
  }

  .main-paragraph p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 14px;
  }
}

/* ══════════════════════════════════
   TABLE RESET
══════════════════════════════════ */
table { margin: 32px 0; }

table th, table td {
  border-color: var(--border) !important;
  padding: 8px 16px !important;
}

table td {
  color: var(--text) !important;
}

table th {
  background: var(--primary-500) !important;
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: bold !important;
}

table tbody tr:nth-child(even) td {
  background: var(--surface-100) !important;
}

@media (max-width: 992px) {
  table {
    display: block !important;
    overflow-x: auto !important;
    border: 0 !important;
  }
}

/* ══════════════════════════════════
   CONTACT US FORM
══════════════════════════════════ */
#contact-form {
  margin: 45px auto 0;
  max-width: 500px;
}

#contact-form input,
#contact-form textarea {
  flex: 1;
  border: 2px solid var(--gray-300);
  border-radius: 6px;
  outline: 0;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text);
  min-width: 100%;
}

#contact-form input:active,
#contact-form input:focus,
#contact-form textarea:active,
#contact-form textarea:focus {
  border: 2px solid var(--primary-500);
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: var(--gray-600);
}

#contact-form button {
  background: var(--primary-500);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
  width: 100%;
}

#contact-form button:hover {
  background: var(--accent-500);
}

/* ═══════════════════════════════════
           WIDGETS
═══════════════════════════════════ */

/* IMAGE STYLE RESET */
.item-current-image img {
  box-shadow: none !important;
  border-radius: 4px !important;
  border-color: var(--gray-300) !important;
}

/* SUBLIST */
.item-sublist a {
  width: 100%;
  height: 100%;
}

.item.item-bubbles {
  margin-bottom: 32px;
}

.item-bubbles .row {
  margin: 0;
}

.bubbles-chip {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  display: flex;
  font-weight: 500;
  height: 100%;
  padding: 16px 48px 16px 24px;
  position: relative;
  transition: padding 0.2s ease-in-out;
}

.bubbles-chip:hover {
  color: var(--primary-800);
  background: var(--surface-100);
  border-color: var(--primary-100);
  padding-left: 20px;
}

.bubbles-chip:active,
.bubbles-chip:focus {
  background: var(--accent-500);
  color: var(--white);
}

.bubbles-link {
  display: block;
  width: 100%;
  max-width: 100%;
  text-decoration: none;
}

.bubbles-link .bubbles-outer {
  height: 100%;
  padding: 5px;
  max-width: 100%;
}

.sibling.link-button .bubbles-link .bubbles-outer,
.sibling.link-button .bubbles-chip {
  height: auto;
}

.col-gap:has(> .item-bubbles)::before {
  display: none !important;
}

.bubbles-chip::after {
  content: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.87771 7.01782H1.02042C0.737361 7.01782 0.496528 6.91886 0.297917 6.72094C0.0993056 6.52317 0 6.2833 0 6.00136C0 5.71942 0.0993056 5.4781 0.297917 5.2774C0.496528 5.07657 0.737361 4.97615 1.02042 4.97615H8.87771L5.66583 1.76428C5.46111 1.55955 5.35681 1.31719 5.35292 1.03719C5.34889 0.757332 5.45076 0.510249 5.65854 0.295943C5.86632 0.0948319 6.11014 -0.00377823 6.39 0.000110661C6.66986 0.00399955 6.91236 0.108583 7.1175 0.313861L12.0713 5.27407C12.1699 5.37282 12.2464 5.4856 12.3008 5.6124C12.3551 5.73935 12.3823 5.86865 12.3823 6.00032C12.3823 6.13199 12.3551 6.26122 12.3008 6.38803C12.2464 6.51497 12.1727 6.62497 12.0798 6.71803L7.10958 11.688C6.89403 11.9037 6.65368 12.0081 6.38854 12.0012C6.12354 11.9942 5.88715 11.8862 5.67938 11.6772C5.4716 11.4629 5.36771 11.2166 5.36771 10.9382C5.36771 10.6599 5.4716 10.4192 5.67938 10.2162L8.87771 7.01782Z' fill='%23165788'/%3E%3C/svg%3E%0A");
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}

.bubbles-chip:hover::after {
  right: 10px;
}

/* SUBLIST CARDS */
.item-sublist:has(.sublist.card) .row > div {
  padding: 5px !important;
}

.sublist.card {
  border: none;
  border-radius: 6px;
  box-shadow: var(--box-shadow-md);
  transition: 0.2s ease-in;
}

.sublist.card:hover {
  box-shadow: var(--box-shadow-lg);
  color: var(--primary-500);
  transform: translateY(-4px);
}

.sublist.card h5 {
  margin-bottom: 0;
  font-weight: 500;
}

.sublist.card .card-body {
  padding: 16px;
}

@media (max-width: 767.98px) {
  .row div:has(> .sublist.card) {
    padding: 0 !important;
  }

  .row:has(> div .sublist.card) {
    margin: 0;
    gap: 10px;
  }

  .sublist.card {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .sublist.card .card-img-top {
    border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    width: 120px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .sublist.card .card-body {
    flex: 1;
    padding: 1rem;
  }

  .sublist.card .card-body * {
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .sublist.card .card-body h5 {
    font-size: 16px;
  }
}
