/* ════════════════════════════════════════════════════════
   Full Swing Studios — NationBuilder Theme Stylesheet
   ════════════════════════════════════════════════════════
   Consolidated styles for the entire site. Referenced from
   layout.html via:  {{ theme['theme.css'] }}

   Sections:
   0. Client Branding Config (edit these to rebrand)
   1. Variables & Reset
   2. Typography
   3. Layout & Header
   4. Navigation
   5. Content Blocks (sections)
   6. Thumbnail Gallery
   7. Photo Carousel
   8. Video Carousel
   9. Display Table
   10. Lead Capture Form
   11. Call To Action
   12. Footer
   13. Notifications
   14. Responsive / Mobile
   ════════════════════════════════════════════════════════ */


/* ────────────────────────────────────────────────────────
   0. CLIENT BRANDING CONFIG
   ──────────────────────────────────────────────────────────
   Edit ONLY this block to change the site's visual identity.
   These values feed into all components below. No need to
   touch anything else for basic brand changes.
   ──────────────────────────────────────────────────────── */
:root {
  /* ▸ Primary brand color (buttons, nav links, CTA) */
  --brand-primary:        #c71f3d;
  --brand-primary-dark:   #570e1b;

  /* ▸ Section gradient (content block backgrounds) */
  --brand-gradient-from:  #c71f3d;
  --brand-gradient-to:    #570e1b;

  /* ▸ Accent color (photo borders, highlights) */
  --brand-accent:         #2c8cc1;

  /* ▸ Neutral tones (CTA bar, backgrounds) */
  --brand-neutral-light:  #f1efea;
  --brand-neutral-mid:    #c2c0bc;

  /* ▸ Typography */
  --brand-font:           'Poppins', sans-serif;
  --brand-font-size:      18px;
  --brand-line-height:    24px;

  /* ▸ Header & logo sizing */
  --brand-header-height:        135px;
  --brand-header-height-mobile: 100px;
  --brand-logo-height:          105px;
  --brand-logo-height-mobile:   80px;

  /* ▸ Section spacing */
  --brand-block-pad:            60px;
  --brand-block-pad-mobile:     40px 20px;

  /* ▸ Gallery viewer size */
  --brand-gallery-width:        500px;
  --brand-gallery-height:       400px;

  /* ▸ Nav button style */
  --brand-nav-radius:           24px;
  --brand-nav-font-size:        16px;
}


/* ────────────────────────────────────────────────────────
   1. VARIABLES & RESET
   ────────────────────────────────────────────────────────
   Internal variables that map from branding config above.
   These should not need editing for simple rebrands.
   ──────────────────────────────────────────────────────── */
:root {
  /* Brand (mapped from config) */
  --fss-red:              var(--brand-primary);
  --fss-red-dark:         var(--brand-primary-dark);
  --fss-black:            #000;
  --fss-white:            #fff;
  --fss-gray-light:       var(--brand-neutral-light);
  --fss-gray-mid:         var(--brand-neutral-mid);

  /* Accent colors (used by display-table, cards, etc.) */
  --color-purple:         #7555a1;
  --color-purple-light:   #ece7f3;
  --color-blue:           var(--brand-accent);
  --color-blue-light:     #e6f2f9;
  --color-red:            #ed3d49;
  --color-red-light:      #fdedee;
  --color-green:          #2b7a4b;
  --color-green-light:    #e9f1ed;

  /* Typography (mapped from config) */
  --font-main:            var(--brand-font);
  --font-size-base:       var(--brand-font-size);
  --line-height-base:     var(--brand-line-height);

  /* Layout (mapped from config) */
  --header-height:        var(--brand-header-height);
  --header-height-mobile: var(--brand-header-height-mobile);
  --logo-height:          var(--brand-logo-height);
  --logo-height-mobile:   var(--brand-logo-height-mobile);

  /* Spacing (mapped from config) */
  --block-pad:            var(--brand-block-pad);
  --block-pad-mobile:     var(--brand-block-pad-mobile);
}

body {
  background-color: var(--fss-white);
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  font-weight: 400;
  font-style: normal;
}


/* ────────────────────────────────────────────────────────
   2. TYPOGRAPHY
   ──────────────────────────────────────────────────────── */
.like-page {
  display: none;
}


/* ────────────────────────────────────────────────────────
   3. LAYOUT & HEADER
   ──────────────────────────────────────────────────────── */
header {
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: 100% 50%;
  background-attachment: scroll;
  background-size: cover;
  border-width: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  height: var(--header-height);
  max-height: var(--header-height);
}

.darken,
.content-block:first-of-type {
  position: relative;
  isolation: isolate;
}

.darken::after,
.content-block:first-of-type::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.24);
}

.darken > *,
.content-block:first-of-type > * {
  position: relative;
  z-index: 3;
}


/* ────────────────────────────────────────────────────────
   4. NAVIGATION
   ──────────────────────────────────────────────────────── */
nav {
  position: relative;
  margin: 0 auto;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  max-height: 100%;
  padding: 0 4%;
  box-sizing: border-box;
}

.navbar-brand {
  display: block;
  border-width: 0;
  height: 100%;
  max-height: 100%;
  padding: 0;
}

#primary-logo {
  display: block;
  float: left;
  margin: 12px auto;
  color: #2a2a2a;
  text-decoration: none;
  height: var(--logo-height);
  max-height: var(--logo-height);
}

.navbar-nav {
  text-align: right;
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.navbar-nav li {
  margin: auto 0 auto 0.8em;
  display: inline-block;
  position: relative;
}

.navbar-nav li:first-child {
  margin-left: 0;
}

.navbar-nav li a,
.ctaButton {
  color: white;
  padding: .5em 1em;
  border-radius: var(--brand-nav-radius);
  font-size: var(--brand-nav-font-size);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .02em;
  background-color: var(--fss-red);
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.navbar-nav li.active a {
  background-color: black;
}

/* Dropdowns */
.dropdown-menu {
  display: none;
  padding: 0;
  position: absolute;
  z-index: 1;
  top: calc(100% + .5em);
  min-width: 110px;
  max-width: 250px;
  float: none;
  margin-top: -1px;
  background: var(--fss-gray-light);
  border: none;
  width: auto;
  left: 12px;
  right: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  list-style: none;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  display: block;
  text-align: left;
  border-width: 0;
  margin: 0;
  background: transparent;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-menu li a {
  padding: .5em 1em;
  display: block;
  text-align: left;
  border-width: 0;
  margin: 0;
  background: transparent;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

li.active .dropdown-menu a {
  background-color: transparent;
}

.dropdown-menu li.active a {
  color: var(--fss-red);
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: middle;
  border-top: 6px solid white;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

/* Hamburger toggle (hidden on desktop) */
#menu-toggle {
  display: none;
}

.hamburger-icon {
  display: none;
  cursor: pointer;
  z-index: 10;
}

.hamburger-icon span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: white;
  margin-bottom: 5px;
  border-radius: 2px;
}


/* ────────────────────────────────────────────────────────
   5. CONTENT BLOCKS
   ──────────────────────────────────────────────────────── */
.content-block {
  box-sizing: border-box;
  width: 100%;
  background-color: transparent;
  background-image: linear-gradient(180deg, var(--brand-gradient-from), var(--brand-gradient-to));
  background-size: cover;
  padding: var(--block-pad);
  color: white;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "card-visual card-textual";
  gap: 30px;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  align-items: start;
}

.content-block:first-of-type {
  padding-top: 90px;
  padding-bottom: 90px;
}

.content-block-right {
  grid-template-areas: "card-textual card-visual";
}

.content-block .content-text {
  display: inline-block;
  grid-area: card-textual;
}

.content-block aside {
  display: inline-block;
  grid-area: card-visual;
  width: 100%;
}

.content-block aside p {
  margin: 0;
  padding: 0;
}

.content-block h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 52px;
  padding: 0;
  margin: 0;
}

.content-block .embedly-embed {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

iframe.embedly-embed {
  border-radius: 8px;
}

/* Display-table block variant (full width, no grid) */
.content-block--table {
  display: block;
  padding: var(--block-pad);
}


/* ────────────────────────────────────────────────────────
   6. THUMBNAIL GALLERY
   ──────────────────────────────────────────────────────── */
.gallery {
  max-width: 520px;
  margin: 0 auto;
}

.viewer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fixed dimensions prevent layout shift when switching images */
  width: var(--brand-gallery-width);
  height: var(--brand-gallery-height);
  max-width: 100%;
  margin: 0 auto;
}

.viewer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 24px;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

.gallery-nav--prev { left: 5px; }
.gallery-nav--next { right: 5px; }

.thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fill, 60px);
  gap: 8px;
  margin-top: 12px;
}

.thumbnails img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.7;
  border: 2px solid transparent;
}

.thumbnails img.active {
  opacity: 1;
  border-color: #000;
}


/* ────────────────────────────────────────────────────────
   7. PHOTO CAROUSEL
   ──────────────────────────────────────────────────────── */
.photo-carousel-wrap {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.photo-carousel-wrap h2 {
  text-align: center;
  margin-bottom: 36px;
  text-transform: uppercase;
}

.photo-carousel {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0;
  padding: 0;
}

.photo-carousel::-webkit-scrollbar {
  display: none;
}

.photo-carousel > img {
  flex: 0 0 calc((100% - 32px) / 7);
  margin: 0;
  scroll-snap-align: start;
  display: block;
  border: none;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #e9ecef;
  aspect-ratio: 1 / 1;
}


/* ────────────────────────────────────────────────────────
   8. VIDEO CAROUSEL
   ──────────────────────────────────────────────────────── */
.video-carousel-wrap {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.video-carousel-wrap h2 {
  text-align: center;
  margin-bottom: 36px;
  text-transform: uppercase;
}

.video-carousel {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0;
  padding: 0;
}

.video-carousel::-webkit-scrollbar {
  display: none;
}

.video-carousel > p {
  flex: 0 0 calc((100% - 32px) / 3);
  margin: 0;
  scroll-snap-align: start;
}

.video-carousel > p iframe {
  display: block;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9;
  max-width: none !important;
  max-height: none !important;
  border: 0;
}

/* Shared carousel arrows */
.carousel-arrow {
  position: absolute;
  top: calc(50% + 44px);
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-arrow-left  { left: 4px; }
.carousel-arrow-right { right: 4px; }

.carousel-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}


/* ────────────────────────────────────────────────────────
   9. DISPLAY TABLE
   ──────────────────────────────────────────────────────── */
.dt-wrap {
  --dt-font:          inherit;
  --dt-radius:        8px;
  --dt-border-color:  #e2e8f0;
  --dt-header-bg:     #1e293b;
  --dt-header-fg:     #ffffff;
  --dt-label-bg:      #f8fafc;
  --dt-label-fg:      #1e293b;
  --dt-label-weight:  600;
  --dt-cell-bg:       #ffffff;
  --dt-cell-fg:       #334155;
  --dt-highlight-bg:  #eff6ff;
  --dt-highlight-hbg: #2563eb;
  --dt-highlight-hfg: #ffffff;
  --dt-stripe-bg:     #f8fafc;
  --dt-pad-y:         0.85rem;
  --dt-pad-x:         1.25rem;
  max-width: 100%;
  margin: 2rem 0;
  font-family: var(--dt-font);
}

.dt-title {
  margin: 0 0 0.25rem 0;
  font-size: 1.5rem;
  color: var(--dt-label-fg);
}

.dt-desc {
  margin-bottom: 1rem;
  color: var(--dt-cell-fg);
  font-size: 0.95rem;
  line-height: 1.5;
}

.dt-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--dt-border-color);
  border-radius: var(--dt-radius);
}

.display-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.display-table thead th {
  background: var(--dt-header-bg);
  color: var(--dt-header-fg);
  font-weight: 600;
  text-align: left;
  padding: var(--dt-pad-y) var(--dt-pad-x);
  white-space: nowrap;
  border-bottom: 2px solid var(--dt-border-color);
}

.display-table thead th:first-child  { border-top-left-radius: var(--dt-radius); }
.display-table thead th:last-child   { border-top-right-radius: var(--dt-radius); }

.display-table tbody td {
  background: var(--dt-cell-bg);
  color: var(--dt-cell-fg);
  padding: var(--dt-pad-y) var(--dt-pad-x);
  border-bottom: 1px solid var(--dt-border-color);
  text-align: left;
  vertical-align: top;
}

.display-table tbody tr:last-child td                { border-bottom: none; }
.display-table tbody tr:last-child td:first-child    { border-bottom-left-radius: var(--dt-radius); }
.display-table tbody tr:last-child td:last-child     { border-bottom-right-radius: var(--dt-radius); }

.dt-has-label tbody td.dt-label {
  background: var(--dt-label-bg);
  color: var(--dt-label-fg);
  font-weight: var(--dt-label-weight);
  white-space: nowrap;
}

.display-table th.dt-highlight { background: var(--dt-highlight-hbg); color: var(--dt-highlight-hfg); }
.display-table td.dt-highlight { background: var(--dt-highlight-bg); font-weight: 500; }

.dt-striped tbody tr:nth-child(even) td              { background: var(--dt-stripe-bg); }
.dt-striped tbody tr:nth-child(even) td.dt-highlight { background: var(--dt-highlight-bg); }

.dt-compact thead th,
.dt-compact tbody td {
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
}


/* ────────────────────────────────────────────────────────
   10. LEAD CAPTURE FORM
   ──────────────────────────────────────────────────────── */
.lc-wrap {
  --lc-font:          inherit;
  --lc-radius:        8px;
  --lc-border-color:  #d1d5db;
  --lc-focus-color:   #2563eb;
  --lc-focus-ring:    rgba(37, 99, 235, 0.2);
  --lc-label-color:   white;
  --lc-input-bg:      #ffffff;
  --lc-input-fg:      #334155;
  --lc-placeholder:   #94a3b8;
  --lc-req-color:     #2563eb;
  --lc-submit-bg:     #2563eb;
  --lc-submit-fg:     #ffffff;
  --lc-submit-hover:  #1d4ed8;
  --lc-success-bg:    #f0fdf4;
  --lc-success-fg:    #166534;
  --lc-success-bd:    #bbf7d0;
  --lc-error-bg:      #fef2f2;
  --lc-error-fg:      #991b1b;
  --lc-error-bd:      #fecaca;
  --lc-radio-size:    20px;
  --lc-check-size:    20px;
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem;
  font-family: var(--lc-font);
}

.lc-title    { margin: 0 0 0.25rem 0; font-size: 1.75rem; color: var(--lc-label-color); text-align: center; }
.lc-subtitle { margin-bottom: 1.75rem; color: var(--lc-input-fg); font-size: 1rem; line-height: 1.5; text-align: center; }

.lc-flash          { padding: 0.75rem 1rem; border-radius: var(--lc-radius); margin-bottom: 1.25rem; font-size: 0.9rem; line-height: 1.4; }
.lc-flash--success { background: var(--lc-success-bg); color: var(--lc-success-fg); border: 1px solid var(--lc-success-bd); }
.lc-flash--error   { background: var(--lc-error-bg); color: var(--lc-error-fg); border: 1px solid var(--lc-error-bd); }

.lc-row       { margin-bottom: 1rem; }
.lc-row--half { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lc-row--third{ display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1rem; }
.lc-field     { display: flex; flex-direction: column; }

.lc-label { display: block; margin-bottom: 0.35rem; font-size: 0.875rem; font-weight: 600; color: var(--lc-label-color); }
.lc-req   { color: var(--lc-req-color); font-size: 1.1rem; font-weight: 700; }

.lc-input,
.lc-textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  font-family: var(--lc-font);
  color: var(--lc-input-fg);
  background: var(--lc-input-bg);
  border: 1px solid var(--lc-border-color);
  border-radius: var(--lc-radius);
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}

.lc-input::placeholder,
.lc-textarea::placeholder { color: var(--lc-placeholder); }

.lc-input:focus,
.lc-textarea:focus {
  outline: none;
  border-color: var(--lc-focus-color);
  box-shadow: 0 0 0 3px var(--lc-focus-ring);
}

.lc-textarea { resize: vertical; min-height: 100px; }

/* Fieldset & radio/checkbox groups */
.lc-fieldset           { border: none; margin: 0 0 1rem 0; padding: 0; }
.lc-fieldset .lc-label { margin-bottom: 0.65rem; }

.lc-radio-group,
.lc-check-group { display: flex; flex-direction: column; gap: 0.5rem; }

.lc-radio,
.lc-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--lc-border-color);
  border-radius: var(--lc-radius);
  background: var(--lc-input-bg);
  transition: border-color 0.15s, background 0.15s;
  font-size: 0.95rem;
  color: var(--lc-input-fg);
}

.lc-radio:hover,
.lc-check:hover {
  border-color: var(--lc-focus-color);
  background: #f8fafc;
}

/* Hidden native inputs */
.lc-radio input[type="radio"],
.lc-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Radio indicator (circle) */
.lc-radio-indicator {
  display: inline-block;
  flex-shrink: 0;
  width: var(--lc-radio-size);
  height: var(--lc-radio-size);
  border: 2px solid var(--lc-border-color);
  border-radius: 50%;
  background: var(--lc-input-bg);
  transition: border-color 0.15s, box-shadow 0.15s;
  position: relative;
}

.lc-radio-indicator::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--lc-focus-color);
  transition: transform 0.15s;
}

.lc-radio input[type="radio"]:checked + .lc-radio-indicator          { border-color: var(--lc-focus-color); }
.lc-radio input[type="radio"]:checked + .lc-radio-indicator::after   { transform: translate(-50%, -50%) scale(1); }
.lc-radio input[type="radio"]:focus   + .lc-radio-indicator          { box-shadow: 0 0 0 3px var(--lc-focus-ring); }
.lc-radio input[type="radio"]:checked ~ .lc-radio-text               { font-weight: 500; color: var(--lc-input-fg); }

/* Checkbox indicator (square + checkmark) */
.lc-check-indicator {
  display: inline-block;
  flex-shrink: 0;
  width: var(--lc-check-size);
  height: var(--lc-check-size);
  border: 2px solid var(--lc-border-color);
  border-radius: 4px;
  background: var(--lc-input-bg);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  position: relative;
}

.lc-check-indicator::after {
  content: '';
  position: absolute;
  top: 45%; left: 50%;
  width: 5px; height: 10px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: translate(-50%, -55%) rotate(45deg) scale(0);
  transition: transform 0.15s;
}

.lc-check input[type="checkbox"]:checked + .lc-check-indicator          { background: var(--lc-focus-color); border-color: var(--lc-focus-color); }
.lc-check input[type="checkbox"]:checked + .lc-check-indicator::after   { transform: translate(-50%, -55%) rotate(45deg) scale(1); }
.lc-check input[type="checkbox"]:focus   + .lc-check-indicator          { box-shadow: 0 0 0 3px var(--lc-focus-ring); }
.lc-check input[type="checkbox"]:checked ~ .lc-check-text               { font-weight: 500; color: var(--lc-input-fg); }

/* Submit */
.lc-row--submit { margin-top: 1.5rem; }

.lc-submit {
  display: block;
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--lc-font);
  color: var(--lc-submit-fg);
  background: var(--lc-submit-bg);
  border: none;
  border-radius: var(--lc-radius);
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.lc-submit:hover         { background: var(--lc-submit-hover); }
.lc-submit:active        { transform: scale(0.99); }
.lc-submit:focus-visible { outline: 2px solid var(--lc-focus-color); outline-offset: 2px; }


/* ────────────────────────────────────────────────────────
   11. CALL TO ACTION
   ──────────────────────────────────────────────────────── */
.callToAction {
  box-sizing: border-box;
  padding: 2em 15%;
  background-color: transparent;
  background-image: linear-gradient(180deg, var(--fss-gray-light), var(--fss-gray-mid));
  background-position: 100% 50%;
  background-attachment: scroll;
  background-size: auto;
  background-repeat: no-repeat;
  text-align: center;
  width: 100%;
}

.ctaTitle {
  font-size: 52px;
  font-weight: 600;
}

.ctaContent {
  font-size: 20px;
}


/* ────────────────────────────────────────────────────────
   12. FOOTER
   ──────────────────────────────────────────────────────── */
footer {
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: 100% 50%;
  background-attachment: scroll;
  background-size: cover;
  color: white;
  text-align: center;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  padding: 15px 0;
}

.footer-brand img {
  max-height: 75px;
}

.footer-social-icons {
  list-style: none;
  margin: 0;
  padding: 15px 0;
  font-size: 48px;
}

.footer-social-icons li {
  margin: auto 0 auto 1em;
  display: inline-block;
}

.footer-social-icons li:first-child {
  margin-left: 0;
}

.footer-social-icons a,
.footer-copyright a {
  color: white;
  text-decoration: none;
}

.footer-copyright p {
  margin: 0;
}

.footer-copyright img {
  height: 100px;
}

.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}

.icon path {
  fill: white;
}


/* ────────────────────────────────────────────────────────
   13. NOTIFICATIONS
   ──────────────────────────────────────────────────────── */
.columns-1-flash {
  text-align: center;
  background: black;
  color: white;
}

.columns-1-flash h4 {
  margin: 0;
  padding: 24px 0;
}

.columns-1-flash .share,
.columns-1-flash .flash-close,
.columns-1-flash p {
  display: none;
}


/* ────────────────────────────────────────────────────────
   14. RESPONSIVE / MOBILE
   ──────────────────────────────────────────────────────── */

/* Tablet: carousels */
@media (max-width: 900px) {
  .video-carousel > p {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}

/* Mobile: carousels */
@media (max-width: 640px) {
  .video-carousel > p {
    flex: 0 0 100%;
  }
  .carousel-arrow {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }
}

/* Display table responsive */
@media (max-width: 640px) {
  .display-table thead { display: none; }
  .display-table tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid var(--dt-border-color);
    border-radius: var(--dt-radius);
    overflow: hidden;
  }
  .display-table tbody td {
    display: block;
    text-align: right;
    padding: 0.6rem var(--dt-pad-x);
    border-bottom: 1px solid var(--dt-border-color);
  }
  .display-table tbody td:last-child { border-bottom: none; }
  .dt-has-label tbody td.dt-label {
    text-align: left;
    background: var(--dt-header-bg);
    color: var(--dt-header-fg);
    font-weight: 600;
  }
}

/* Lead capture responsive */
@media (max-width: 540px) {
  .lc-wrap { padding: 1.25rem; }
  .lc-row--half,
  .lc-row--third { grid-template-columns: 1fr; }
  .lc-title { font-size: 1.4rem; }
}

/* Mobile: full layout */
@media (max-width: 991px) {
  header {
    height: var(--header-height-mobile);
    max-height: var(--header-height-mobile);
  }

  main {
    margin-top: var(--header-height-mobile);
  }

  nav {
    display: block;
    padding: 10px 4%;
  }

  .navbar-brand {
    display: block;
    float: left;
    height: var(--logo-height-mobile);
  }

  #primary-logo {
    height: var(--logo-height-mobile);
    max-height: var(--logo-height-mobile);
  }

  .hamburger-icon {
    display: block;
    float: right;
    margin-top: 25px;
  }

  .navbar-nav {
    display: none;
    width: 100%;
    background-color: #000;
    position: absolute;
    top: var(--header-height-mobile);
    left: 0;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  }

  #menu-toggle:checked ~ .navbar-nav {
    display: block;
  }

  .navbar-nav li {
    display: block;
    margin: 10px 0;
  }

  .navbar-nav li:first-child {
    margin-left: 0;
  }

  .navbar-nav li a {
    display: inline-block;
    width: 80%;
  }

  .dropdown-menu {
    position: static;
    display: block !important;
    background: transparent;
    box-shadow: none;
    max-width: none;
    margin: 10px auto;
    text-align: center;
    opacity: 1;
  }

  .dropdown-menu li {
    text-align: center;
  }

  .dropdown-menu li a {
    color: white;
    background: rgba(199, 31, 61, 0.2);
    margin: 5px auto;
    width: 70%;
  }

  .caret {
    border-top-color: white;
  }

  .content-block {
    grid-template-columns: 1fr;
    grid-template-areas: "card-visual" "card-textual";
    padding: var(--block-pad-mobile);
    text-align: center;
  }

  .content-block h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .content-block aside {
    margin-bottom: 20px;
  }

  .callToAction {
    padding: 2em 5%;
  }

  .ctaTitle {
    font-size: 32px;
  }

  .ctaContent {
    font-size: 16px;
  }
}
