/* Hallsta v3 — CannonDesign layout clone (Hallsta brand) */
* {
  box-sizing: border-box;
}
html.v3-page {
  --v3-header-offset: 0px;
  --v3-header-flow: 0px;
}

html.v3-page { scroll-behavior: auto; }

.v3-page {
  --v3-gutter-x: 1.5rem;
  --v3-rail-width: 0px;
}

@media (min-width: 768px) {
  .v3-page { --v3-gutter-x: 2.5rem; }
}

@media (min-width: 1024px) {
  .v3-page { --v3-rail-width: 5rem; }
}

/* Shared horizontal gutters — left rail + right spacer (matches hero) */
.v3-section-x {
  padding-left: calc(var(--v3-rail-width) + var(--v3-gutter-x));
  padding-right: var(--v3-gutter-x);
}

.v3-page body {
  font-family: Calibri, Candara, Segoe, system-ui, sans-serif;
  overflow-x: hidden;
  background: #fff;
  color: #333;
  margin: 0;
  --v3-surface: #fff;
  transition: background-color 0.55s ease, color 0.55s ease;
}

body.is-teal {
  background: #3D6B7D;
  color: #fff;
  --v3-surface: #3D6B7D;
}

/* Headings — #333 default, #fff on teal body */
h1, h2, h3, h4 {
  color: #333;
  transition: color 0.55s ease;
}

body.is-teal h1,
body.is-teal h2,
body.is-teal h3,
body.is-teal h4 {
  color: #fff;
}

body.is-teal .v3-hero-intro-brand {
  color: #fff;
}

/* ===== HEADER ===== */
.v3-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem var(--v3-gutter-x) 1.25rem calc(var(--v3-rail-width) + var(--v3-gutter-x));
  background: transparent;
  transition: color 0.35s;
}

@media (min-width: 768px) {
  .v3-header {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

body.is-teal .v3-header .v3-nav-link,
body.is-teal .v3-header .v3-menu-btn {
  color: #fff;
}

body:not(.is-teal) .v3-header .v3-nav-link,
body:not(.is-teal) .v3-header .v3-menu-btn {
  color: #333;
}

.v3-header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  position: relative;
}

.v3-header-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
}

.v3-nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

@media (min-width: 768px) { .v3-nav-desktop { display: flex; } }

.v3-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

@media (min-width: 768px) { .v3-menu-btn { display: none; } }

.v3-header.is-nav-hidden .v3-nav-desktop,
.v3-header.is-nav-hidden .v3-menu-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.35rem);
}

.v3-mobile-menu.hidden { display: none; }

.v3-footer-logo { height: 1.75rem; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.v3-footer-blurb { font-size: 0.875rem; line-height: 1.65; max-width: 22rem; }

body.is-teal .v3-header .v3-header-logo {
  filter: brightness(0) invert(1);
}

body:not(.is-teal) .v3-header .v3-header-logo {
  filter: none;
}

.v3-header-logo {
  display: block;
  height: 2rem;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.35s;
}

.v3-nav-link {
  font-family: 'League Spartan', system-ui, sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.2s;
}
.v3-nav-link:hover { color: #D8E168; }
body:not(.is-teal) .v3-header .v3-nav-link:hover { color: #558EA8; }

.v3-contact-btn {
  font-family: 'League Spartan', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: #D8E168;
  color: #333;
  text-decoration: none;
}
.v3-contact-btn:hover { background: #fff; }

/* Scroll line — hero + panels zone only */
.v3-hero-mobile-progress {
  display: none;
}

.v3-rail.v3-rail--scroll {
  padding: 0;
  justify-content: flex-start;
  align-items: stretch;
  border-right: none;
}

.v3-rail-scroll-line {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  pointer-events: none;
}

.v3-rail-scroll-line .v3-rail-track {
  width: 2px;
  height: 100%;
  max-height: none;
  margin: 0;
  flex: none;
  align-self: stretch;
  background: rgba(85, 142, 168, 0.22);
}

.v3-hero .v3-rail-scroll-line .v3-rail-track {
  background: rgba(255, 255, 255, 0.18);
}

.v3-rail-scroll-line .v3-rail-fill {
  background: linear-gradient(180deg, #D8E168 0%, #558EA8 100%);
}

.v3-panels-zone .v3-rail.v3-rail--scroll {
  position: static;
  top: 0;
  height: 100vh;
  height: 100dvh;
  padding: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .v3-panels-zone .v3-rail.v3-rail--scroll {
    position: sticky;
  }
}

.v3-panels-zone .v3-rail-scroll-line {
  flex: none;
  height: 100vh;
  height: 100dvh;
  min-height: 100%;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.v3-panels-zone.is-rail-active .v3-rail-scroll-line {
  opacity: 1;
}

@media (max-width: 767px) {
  .v3-rail-scroll-line {
    position: fixed;
    left: 0;
    top: 0;
    width: 2px;
    height: 100vh;
    height: 100dvh;
    z-index: 90;
  }

  .v3-rail-scroll-line .v3-rail-track {
    width: 100%;
  }

  .v3-hero .v3-rail-scroll-line {
    display: flex;
  }

  .v3-panels-zone .v3-rail-scroll-line {
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
  }

  .v3-panels-zone.is-rail-active .v3-rail-scroll-line {
    opacity: 1;
    visibility: visible;
  }

  .v3-hero.is-rail-hidden .v3-rail-scroll-line {
    display: none;
  }
}

/* ===== GRID SHELL (20-col feel) ===== */
.v3-shell {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .v3-shell { grid-template-columns: minmax(64px, 5rem) 1fr; }
}

/* Sidebar rail — spacer column in grid shells */
.v3-rail {
  display: none;
  position: sticky;
  top: 0;
  height: 100vh;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 5.5rem 0 1.5rem;
  border-right: none;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .v3-rail { display: flex; }

  .v3-rail.v3-rail--scroll {
    padding: 0;
    justify-content: flex-start;
    align-items: stretch;
  }
}

.v3-rail-track {
  flex: 1;
  width: 2px;
  background: rgba(85, 142, 168, 0.2);
  position: relative;
  margin: 1rem 0;
  max-height: min(320px, 50vh);
}

/* scroll-line tracks: full height, no gap */
.v3-rail-scroll-line .v3-rail-track {
  margin: 0;
  max-height: none;
  flex: none;
  height: 100%;
}

.v3-rail-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #D8E168, #558EA8);
  transform-origin: top center;
  transform: scaleY(0);
}

.v3-back-top {
  position: fixed;
  left: 10px;
  bottom: 1.5rem;
  z-index: 200;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  color: #fff;
  background: #333;
  cursor: pointer;
}

.v3-back-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.v3-back-top:hover {
  background: #558EA8;
  border-color: #558EA8;
  color: #fff;
}

@media (max-width: 767px) {
  .v3-back-top {
    left: 10px;
    bottom: 1rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}

/* ===== HERO (CannonDesign HomeHero) ===== */
.v3-hero {
  background: transparent;
  color: inherit;
  position: relative;
}

.v3-hero-main {
  position: relative;
}

.v3-hero-intro {
  min-height: calc(100dvh - var(--v3-header-offset, 0px) - var(--v3-header-flow, 0px));
  min-height: calc(100vh - var(--v3-header-offset, 0px) - var(--v3-header-flow, 0px));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem var(--v3-gutter-x) 0rem var(--v3-gutter-x);
  max-width: 54rem;
}

@media (min-width: 768px) {
  .v3-hero-intro { padding-top: 7rem; }
}

.v3-hero-intro-brand {
  font-family: 'League Spartan', system-ui, sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.02;
  margin-bottom: 0.35rem;
  color: #333;
  transition: color 0.55s ease;
}

.v3-hero-intro-title {
  font-family: 'League Spartan', system-ui, sans-serif;
  font-size: clamp(3rem, 8vw, 5.75rem);
  font-weight: 300;
  line-height: 1.08;
  max-width: 14ch;
}

.v3-hero-intro-title strong {
  font-weight: 600;
  color: #D8E168;
}

.v3-hero-intro-lead {
  font-family: Calibri, 'Segoe UI', sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
  margin-top: 1.25rem;
}

body:not(.is-teal) .v3-hero-intro-lead {
  color: #666;
}

/* Hero scroll panels — sticky stage, 100vh track; z-index set in JS per panel order */
.v3-hero-panel {
  position: relative;
}

.v3-hero-panel-track {
  height: auto;
  overflow: hidden;
}

.v3-hero-panel-stage {
  position: sticky;
  top: var(--v3-header-offset, 0px);
  height: calc(100dvh - var(--v3-header-offset, 0px));
  height: calc(100vh - var(--v3-header-offset, 0px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5.5rem var(--v3-gutter-x) 2rem var(--v3-gutter-x);
  box-sizing: border-box;
  overflow: hidden;
  isolation: isolate;
  transition: background-color 0.55s ease;
}

body.is-teal .v3-hero-panel-stage {
  background: #3D6B7D;
}

@media (min-width: 768px) {
  .v3-hero-panel-stage { padding-top: 6rem; padding-bottom: 2.5rem; }
}

.v3-hero-panel-media-outer {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  padding-bottom: 0;
}

.v3-hero-panel--dir-right .v3-hero-panel-media-outer {
  align-self: flex-start;
  margin-left: 0;
  margin-right: auto;
}

.v3-hero-panel--dir-left .v3-hero-panel-media-outer {
  align-self: flex-start;
  margin-left: 0;
  margin-right: auto;
}

.v3-hero-panel-media {
  position: relative;
  overflow: hidden;
  background: #2a5563;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.v3-hero-panel-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  z-index: 1;
}

.v3-hero-panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 107, 125, 0.5);
  pointer-events: none;
  z-index: 2;
}

.v3-hero-panel-quote {
  font-family: 'League Spartan', system-ui, sans-serif;
  font-weight: 200;
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  max-width: min(22ch, 46vw);
  margin: 0;
  position: absolute;
  top: 0;
  left: var(--v3-gutter-x);
  z-index: 5;
  text-align: left;
  color: #333;
  will-change: transform;
  pointer-events: none;
  text-shadow: none;
  transition: color 0.55s ease;
}

body.is-teal .v3-hero-panel-quote {
  color: #fff;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.35);
}

@media (max-width: 767px) {
  .v3-hero-panel-track {
    overflow: visible;
  }

  .v3-hero-panel-stage {
    height: auto;
    justify-content: flex-start;
    align-items: stretch;
    gap: 1.25rem;
    padding-top: 5rem;
    padding-bottom: 1.5rem;
  }

  .v3-hero-panel-media-outer {
    order: 1;
  }

  .v3-hero-panel-media {
    aspect-ratio: auto;
    height: clamp(14rem, 40vh, 26rem);
  }

  .v3-hero-panel-quote {
    position: static;
    order: 2;
    max-width: none;
    margin-top: 0;
    font-size: clamp(1.5rem, 6vw, 2.25rem);
  }
}

/* ===== MISSION ===== */
.v3-mission {
  padding-top: clamp(4rem, 10vw, 7rem);
  padding-bottom: clamp(4rem, 10vw, 7rem);
  padding-left: calc(var(--v3-rail-width) + var(--v3-gutter-x));
  padding-right: var(--v3-gutter-x);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.v3-cap-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-top: clamp(4rem, 10vw, 7rem);
  padding-bottom: clamp(4rem, 10vw, 7rem);
  padding-left: calc(var(--v3-rail-width) + var(--v3-gutter-x));
  padding-right: var(--v3-gutter-x);
  align-items: stretch;
}

@media (min-width: 1024px) {
  .v3-cap-intro {
    grid-template-columns: minmax(0, 38rem) 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    min-height: clamp(28rem, 52vh, 40rem);
  }
}

.v3-cap-intro-content {
  min-width: 0;
}

.v3-mission blockquote {
  margin: 0;
  text-align: left;
  font-family: 'League Spartan', system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  line-height: 1.35;
}

.v3-mission-more {
  display: inline;
  color: inherit;
  text-decoration: none;
  font: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  transition: color 0.25s ease;
}

.v3-mission-more::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  overflow: hidden;
  vertical-align: baseline;
  margin: 0;
  opacity: 0;
  transform: translateX(-0.25em);
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 12' fill='none'%3E%3Cpath d='M0 6h22M16 1l6 5-6 5' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 12' fill='none'%3E%3Cpath d='M0 6h22M16 1l6 5-6 5' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-size: 1.15em 0.42em;
  mask-size: 1.15em 0.42em;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  mask-position: left center;
  transition:
    width 0.35s ease,
    height 0.35s ease,
    opacity 0.25s ease,
    transform 0.35s ease,
    margin 0.35s ease;
}

.v3-mission-more:hover {
  color: #558EA8;
}

.v3-mission-more:hover::before {
  width: 1.15em;
  height: 0.42em;
  opacity: 1;
  transform: translateX(0);
  margin-right: 0.28em;
  vertical-align: -0.06em;
}

/* ===== CAPABILITIES INTRO ===== */

.v3-cap-intro h2 {
  font-family: 'League Spartan', system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: left;
}

.v3-cap-intro-lead {
  color: #999;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 26rem;
}

.v3-jump-links { list-style: none; padding: 0; margin: 0; }

.v3-jump-link {
  font-family: 'League Spartan', system-ui, sans-serif;
  font-size: 0.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(85,142,168,0.18);
  color: #558EA8;
  text-decoration: none;
  transition: padding-left 0.2s, color 0.2s;
}
.v3-jump-link:first-child { border-top: 1px solid rgba(85,142,168,0.18); }
.v3-jump-link:hover { padding-left: 0.4rem; color: #3D6B7D; }

.v3-media-fade {
  overflow: hidden;
  background: #eef2f4;
  opacity: 0;
  min-height: clamp(16rem, 45vw, 24rem);
}

.v3-media-fade img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .v3-media-fade {
    min-height: 100%;
  }
}

/* ===== SCROLL PANELS ===== */
.v3-panels-zone {
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.v3-panels-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (max-width: 767px) {
  .v3-panels-stack {
    gap: 0;
  }

  .v3-panel-track {
    height: auto;
    min-height: calc(100dvh - var(--v3-header-offset, 0px));
    min-height: calc(100vh - var(--v3-header-offset, 0px));
  }

  .v3-panel-stage {
    height: auto;
    min-height: calc(100dvh - var(--v3-header-offset, 0px));
    min-height: calc(100vh - var(--v3-header-offset, 0px));
  }
}

.v3-panel {
  position: relative;
  padding: 0;
  --panel-opacity: 0;
}

@media (min-width: 768px) {
  .v3-panel {
    position: sticky;
    top: var(--v3-header-offset, 0px);
  }
}

.v3-panel-track {
  min-height: calc(100dvh - var(--v3-header-offset, 0px));
  min-height: calc(100vh - var(--v3-header-offset, 0px));
}

.v3-panel-stage {
  min-height: calc(100dvh - var(--v3-header-offset, 0px));
  min-height: calc(100vh - var(--v3-header-offset, 0px));
  padding: 5rem var(--v3-gutter-x) 4rem;
  box-sizing: border-box;
  background: var(--v3-surface, #fff);
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
  .v3-panel-stage {
    padding-top: 1rem;
    padding-bottom: 5rem;
  }
}

.v3-panel-inner {
  position: relative;
  max-width: none;
  z-index: 2;
}

.v3-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--v3-surface, #fff);
  opacity: var(--panel-opacity);
  pointer-events: none;
  z-index: 8;
}

.v3-panel-heading {
  font-family: 'League Spartan', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  text-align: left;
}

.v3-panel-cards {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .v3-panel-cards {
    grid-template-columns: 7fr 3fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}

.v3-panel-card-media {
  overflow: hidden;
  margin-bottom: 1rem;
  background: #e8ecee;
}

.v3-panel-card:first-child .v3-panel-card-media {
  aspect-ratio: 2 / 1;
}

.v3-panel-card:last-child .v3-panel-card-media {
  aspect-ratio: 3 / 2;
}
.v3-panel-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.v3-panel-card:hover .v3-panel-card-media img { transform: scale(1.03); }

.v3-panel-card h3 {
  font-family: 'League Spartan', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}
.v3-panel-card p { font-size: 0.925rem; color: #999; line-height: 1.65; }

.v3-panel-more {
  display: block;
  margin-top: .5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-family: 'League Spartan', system-ui, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 300;
  line-height: 1.35;
  color: #333;
  text-decoration: none;
  transition: color 0.25s ease;
}

.v3-panel-more::before {
  content: '';
  display: inline-block;
  width: 1.15em;
  height: 0.42em;
  overflow: hidden;
  vertical-align: -0.06em;
  margin-right: 0.28em;
  opacity: 1;
  transform: translateX(0);
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 12' fill='none'%3E%3Cpath d='M0 6h22M16 1l6 5-6 5' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 12' fill='none'%3E%3Cpath d='M0 6h22M16 1l6 5-6 5' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-size: 1.15em 0.42em;
  mask-size: 1.15em 0.42em;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  mask-position: left center;
  transition: color 0.25s ease;
}

.v3-panel-more:hover {
  color: #558EA8;
}

/* ===== NEWS ===== */
.v3-news {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(4rem, 10vw, 7rem);
  padding-left: calc(var(--v3-rail-width) + var(--v3-gutter-x));
  padding-right: var(--v3-gutter-x);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.v3-news-inner { max-width: none; margin: 0; }

.v3-news h2 {
  font-family: 'League Spartan', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
  text-align: left;
}

.v3-news-lead { color: #999; max-width: 36rem; margin-bottom: 2.5rem; line-height: 1.7; }

.v3-news-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .v3-news-grid { grid-template-columns: repeat(3, 1fr); } }

.v3-news-card {
  display: block;
  color: inherit;
  text-decoration: none;
}
.v3-news-card-media { aspect-ratio: 16/10; overflow: hidden; margin-bottom: 1rem; background: #e8ecee; }
.v3-news-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.v3-news-card:hover .v3-news-card-media img { transform: scale(1.04); }
.v3-news-card h3 {
  font-family: 'League Spartan', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.v3-news-card p { font-size: 0.875rem; color: #999; line-height: 1.6; }

/* ===== FOOTER ===== */
.v3-footer {
  background: #333;
  color: rgba(255, 255, 255, 0.6);
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--v3-gutter-x) 2rem;
  padding-left: calc(var(--v3-rail-width) + var(--v3-gutter-x));
}

.v3-footer-inner { max-width: none; margin: 0; }

.v3-footer-top {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .v3-footer-top { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
}

.v3-footer h4 {
  font-family: 'League Spartan', system-ui, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D8E168;
  margin-bottom: 0.85rem;
}

.v3-footer a {
  display: block;
  font-size: 0.875rem;
  padding: 0.25rem 0;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.v3-footer a:hover { color: #fff; }

.v3-footer-bottom a {
  display: inline;
  padding: 0;
}

.v3-newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
  align-items: stretch;
  max-width: 22rem;
}

.v3-newsletter input {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 2px;
  font-size: 0.875rem;
}

.v3-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.v3-newsletter button {
  padding: 0.65rem 1rem;
  background: #D8E168;
  color: #333;
  font-family: 'League Spartan', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.v3-newsletter button:hover {
  background: #fff;
}

.v3-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  font-size: 0.75rem;
  text-align: center;
}

.v3-mobile-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.v3-mobile-menu a {
  display: block;
  padding: 0.85rem 1.5rem;
  font-family: 'League Spartan', system-ui, sans-serif;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: #333;
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  .v3-panel-card-media img, .v3-news-card-media img { transition: none !important; }
}

/* Elementor — empty media upload slots */
.webvio-v3-media-placeholder,
.v3-panel-card-media:empty,
.v3-news-card-media:empty,
.v3-hero-panel-media:empty,
.v3-media-fade:empty {
  background: #eef2f4;
  min-height: 12rem;
  width: 100%;
}
