/* ============================================================
   STEVILES DYNAMIC ENERGY LLC
   style.css - power-azure light theme
   Ice-white body, deep azure headings, electric-amber accents
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background-color: #F6F8FA;
  color: #26303A;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #2E6FA3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ------------------------------------------------ buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background-color: #2E6FA3;
  color: #FFFFFF;
  border: 2px solid #2E6FA3;
}

.btn-primary:hover {
  background-color: #1F4E77;
  border-color: #1F4E77;
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  color: #1F4E77;
  border: 2px solid #1F4E77;
}

.btn-outline:hover {
  background-color: #1F4E77;
  color: #FFFFFF;
  text-decoration: none;
}

/* ------------------------------------------------ burger nav */
.burger-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background-color: #F6F8FA;
  border-bottom: 1px solid #E3EEF7;
  padding: 14px 24px;
  transition: box-shadow 0.2s ease;
}

.burger-nav.scrolled {
  box-shadow: 0 6px 18px -10px #2E6FA3;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #2E6FA3;
  border-radius: 6px;
  color: #FFFFFF;
}

.brand-chip .glyph-bolt {
  width: 13px;
  height: 26px;
}

.brand-name {
  font-size: 21px;
  font-weight: 800;
  color: #1F4E77;
  letter-spacing: 0.4px;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: 6px;
}

.nav-links a {
  display: inline-block;
  padding: 8px 12px;
  color: #3A4450;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover {
  color: #2E6FA3;
  border-bottom-color: #2E6FA3;
}

/* ------------------------------------------------ hamburger */
.hamburger {
  position: fixed;
  top: 13px;
  right: 20px;
  z-index: 1000;
  width: 46px;
  height: 46px;
  background-color: #E3EEF7;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: background-color 0.25s ease;
}

.hamburger .bar {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background-color: #1F4E77;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.hamburger.open {
  background-color: #2E6FA3;
}

.hamburger.open .bar {
  background-color: #FFFFFF;
}

.hamburger.open .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ------------------------------------------------ overlay menu */
.overlay-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #2E6FA3;
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translateX(100%);
  transition: transform 0.32s ease, visibility 0.32s ease;
  visibility: hidden;
}

.overlay-menu.open {
  transform: translateX(0);
  visibility: visible;
}

.overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.overlay-links a {
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 700;
  padding: 10px 20px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.overlay-links a:hover {
  color: #F0A62E;
  text-decoration: underline;
}

.overlay-contact {
  margin-top: 40px;
  color: #DCEAF5;
  font-size: 15px;
  letter-spacing: 0.4px;
}

/* ------------------------------------------------ energy glyphs */
.glyph {
  display: inline-block;
}

.glyph-bolt {
  width: 22px;
  height: 44px;
  background-color: currentColor;
  clip-path: polygon(55% 0, 8% 58%, 46% 58%, 30% 100%, 92% 38%, 52% 38%);
}

.glyph-sun {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: currentColor;
  box-shadow:
    -18px 0 0 -8px currentColor,
    18px 0 0 -8px currentColor,
    0 -18px 0 -8px currentColor,
    0 18px 0 -8px currentColor,
    -13px -13px 0 -8px currentColor,
    13px 13px 0 -8px currentColor,
    -13px 13px 0 -8px currentColor,
    13px -13px 0 -8px currentColor;
}

.glyph-gauge {
  position: relative;
  width: 42px;
  height: 22px;
  border: 4px solid currentColor;
  border-bottom: none;
  border-radius: 42px 42px 0 0;
}

.glyph-gauge::before {
  content: "";
  position: absolute;
  left: calc(50% - 2px);
  bottom: 0;
  width: 4px;
  height: 18px;
  background-color: currentColor;
  border-radius: 2px;
  transform-origin: 50% 100%;
  transform: rotate(38deg);
}

.glyph-battery {
  position: relative;
  width: 34px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.glyph-battery::before {
  content: "";
  position: absolute;
  right: -8px;
  top: 3px;
  width: 5px;
  height: 6px;
  border-radius: 0 3px 3px 0;
  background-color: currentColor;
}

.glyph-battery::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 6px;
  border-radius: 1px;
  background-color: currentColor;
}

.glyph-turbine {
  position: relative;
  width: 18px;
  height: 48px;
}

.glyph-turbine::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  width: 4px;
  height: 38px;
  border-radius: 2px;
  background-color: currentColor;
}

.glyph-turbine::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-image:
    radial-gradient(circle, currentColor 0 2px, transparent 3px),
    conic-gradient(from 0deg,
      currentColor 0 45deg, transparent 45deg 120deg,
      currentColor 120deg 165deg, transparent 165deg 240deg,
      currentColor 240deg 285deg, transparent 285deg 360deg);
}

/* ------------------------------------------------ banner hero */
.banner-hero {
  background-color: #F6F8FA;
}

.banner-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2E6FA3;
  height: 90px;
  color: #FFFFFF;
}

.strip-hairline {
  width: 1px;
  height: 44px;
  background-color: #FFFFFF;
  margin: 0 36px;
}

.banner-strip .glyph {
  color: #FFFFFF;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 24px 64px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  background-color: #F0A62E;
  color: #26303A;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.hero-title {
  font-size: 48px;
  line-height: 1.12;
  font-weight: 800;
  color: #1F4E77;
  letter-spacing: -0.5px;
  margin-bottom: 26px;
}

.hero-title .title-accent {
  color: #2E6FA3;
}

.hero-subcopy {
  max-width: 720px;
  margin: 0 auto 34px;
  color: #3A4450;
  font-size: 18px;
  line-height: 1.7;
}

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

.stat-line {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
  color: #5E6E7E;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-item strong {
  color: #1F4E77;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.stat-hairline {
  width: 1px;
  height: 44px;
  background-color: #2E6FA3;
}

/* ------------------------------------------------ zone bands */
.band {
  padding: 72px 0;
}

.band-white {
  background-color: #FFFFFF;
}

.band-tint {
  background-color: #E3EEF7;
}

.band-heading {
  text-align: center;
  margin-bottom: 16px;
}

.band-heading h2 {
  font-size: 34px;
  color: #1F4E77;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.band-lead {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  color: #3A4450;
  font-size: 17px;
}

.band-row {
  display: flex;
  max-width: 1120px;
  margin: 0 auto;
}

.band-col {
  flex: 1;
  padding: 0 34px;
}

.band-col:first-child {
  padding-left: 0;
}

.band-col:last-child {
  padding-right: 0;
}

.band-col + .band-col {
  border-left: 1px solid #E3EEF7;
}

.band-col h3 {
  color: #1F4E77;
  font-size: 20px;
  margin-bottom: 12px;
}

.band-col p {
  color: #3A4450;
  font-size: 15px;
  line-height: 1.7;
}

/* process row (used in band 2 and services page) */
.process-row {
  display: flex;
  max-width: 1120px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  padding: 0 34px;
  text-align: center;
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  padding-right: 0;
}

.process-step + .process-step {
  border-left: 1px solid #2E6FA3;
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 3px solid #2E6FA3;
  color: #2E6FA3;
  font-size: 22px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 18px;
}

.process-step h3 {
  color: #1F4E77;
  font-size: 20px;
  margin-bottom: 10px;
}

.process-step p {
  color: #3A4450;
  font-size: 15px;
  line-height: 1.7;
}

/* capability grid */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 960px;
  margin: 0 auto;
}

.cap-cell {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background-color: #FFFFFF;
  border: 1px solid #E3EEF7;
  border-radius: 10px;
  padding: 22px 24px;
}

.cap-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background-color: #F0A62E;
}

.cap-cell p {
  color: #1F4E77;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

/* ------------------------------------------------ metric band */
.metric-band {
  background-color: #2E6FA3;
  padding: 64px 24px;
}

.metric-row {
  display: flex;
  max-width: 1120px;
  margin: 0 auto;
}

.metric-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  color: #FFFFFF;
}

.metric-item + .metric-item {
  border-left: 1px solid #FFFFFF;
}

.metric-value {
  display: block;
  font-size: 52px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
}

.metric-label {
  display: block;
  margin-top: 8px;
  color: #DCEAF5;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

/* ------------------------------------------------ statement band */
.statement-band {
  background-color: #FFFFFF;
  padding: 88px 24px;
}

.statement-motif {
  text-align: center;
  margin-bottom: 26px;
}

.statement-motif .glyph-turbine {
  color: #2E6FA3;
}

.statement-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.statement-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 72px;
  background-color: #2E6FA3;
}

.statement-inner p {
  color: #1F4E77;
  font-size: 26px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: -0.2px;
}

/* ------------------------------------------------ cta band */
.cta-band {
  background-color: #F6F8FA;
  padding: 84px 24px;
  text-align: center;
}

.cta-motif {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin-bottom: 24px;
  color: #2E6FA3;
}

.cta-band h2 {
  font-size: 34px;
  color: #1F4E77;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.cta-band p {
  color: #3A4450;
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 30px;
}

/* ------------------------------------------------ bus footer */
.bus-footer {
  background-color: #1F4E77;
  color: #FFFFFF;
  padding: 56px 24px 0;
}

.bus-row {
  display: flex;
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 44px;
}

.bus-col {
  flex: 1;
  padding: 0 28px;
  position: relative;
}

.bus-col:first-child {
  padding-left: 0;
}

.bus-col:last-child {
  padding-right: 0;
}

.bus-col + .bus-col {
  border-left: 1px solid #3A6B99;
}

.bus-node {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FFFFFF;
  margin-bottom: 18px;
}

.bus-col h4 {
  color: #FFFFFF;
  font-size: 15px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bus-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

.bus-brand:hover {
  text-decoration: none;
}

.bus-brand-chip {
  width: 30px;
  height: 30px;
  background-color: #2E6FA3;
  border-radius: 6px;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bus-brand-chip .glyph-bolt {
  width: 11px;
  height: 22px;
}

.bus-brand-name {
  font-weight: 800;
  font-size: 18px;
  color: #FFFFFF;
  letter-spacing: 0.4px;
}

.bus-blurb {
  color: #B9CFE4;
  font-size: 14px;
  line-height: 1.6;
}

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

.bus-col ul li {
  margin-bottom: 10px;
}

.bus-col ul a {
  color: #FFFFFF;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bus-col ul a:hover {
  color: #F0A62E;
  text-decoration: underline;
}

.bus-contact p {
  color: #B9CFE4;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

.bus-contact a {
  color: #FFFFFF;
}

.bus-contact a:hover {
  color: #F0A62E;
}

.bus-legal {
  border-top: 1px solid #3A6B99;
  padding: 20px 24px;
  text-align: center;
  color: #B9CFE4;
  font-size: 13px;
}

.bus-legal a {
  color: #B9CFE4;
  margin: 0 6px;
}

.bus-legal a:hover {
  color: #FFFFFF;
}

/* ------------------------------------------------ scroll reveal */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------ secondary page hero */
.page-hero {
  background-color: #F6F8FA;
  padding: 64px 24px 56px;
  text-align: center;
}

.page-hero .page-kicker {
  display: inline-block;
  background-color: #F0A62E;
  color: #26303A;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.page-hero h1 {
  color: #1F4E77;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.page-hero p {
  color: #3A4450;
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
}

/* ------------------------------------------------ services page */
.services-list {
  padding: 64px 0 8px;
}

.service-entry {
  display: flex;
  gap: 24px;
  background-color: #FFFFFF;
  border: 1px solid #E3EEF7;
  border-radius: 12px;
  padding: 34px;
  margin-bottom: 24px;
}

.service-icon {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background-color: #2E6FA3;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-icon .glyph {
  color: #FFFFFF;
}

.service-body h2 {
  color: #1F4E77;
  font-size: 22px;
  margin-bottom: 10px;
}

.service-body p {
  color: #3A4450;
  font-size: 15px;
  line-height: 1.7;
}

.process-overview {
  background-color: #E3EEF7;
  padding: 64px 0;
}

.process-overview h2 {
  text-align: center;
  color: #1F4E77;
  font-size: 30px;
  margin-bottom: 44px;
  letter-spacing: -0.3px;
}

/* ------------------------------------------------ contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 64px 24px 40px;
}

.contact-form-card {
  background-color: #FFFFFF;
  border: 1px solid #E3EEF7;
  border-radius: 12px;
  padding: 34px;
}

.contact-form-card h2 {
  color: #1F4E77;
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-form-card .form-intro {
  color: #3A4450;
  font-size: 15px;
  margin-bottom: 24px;
}

.field {
  margin-bottom: 18px;
}

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

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #C9D8E6;
  border-radius: 8px;
  background-color: #F6F8FA;
  color: #26303A;
  font-size: 15px;
  font-family: inherit;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #2E6FA3;
  box-shadow: 0 0 0 3px #E3EEF7;
}

.form-status {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  min-height: 20px;
  color: #26303A;
}

.form-status.success {
  color: #1F7A4D;
}

.form-status.error {
  color: #B03A2E;
}

.contact-info {
  background-color: #E3EEF7;
  border-radius: 12px;
  padding: 34px;
}

.contact-info h2 {
  color: #1F4E77;
  font-size: 24px;
  margin-bottom: 20px;
}

.info-block {
  margin-bottom: 22px;
}

.info-block h3 {
  color: #1F4E77;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.info-block p,
.info-block a {
  color: #26303A;
  font-size: 15px;
  line-height: 1.6;
}

.hours-table {
  list-style: none;
}

.hours-table li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #C9D8E6;
  color: #26303A;
  font-size: 14px;
}

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

/* ------------------------------------------------ faq accordion */
.faq-section {
  background-color: #F6F8FA;
  padding: 56px 0 80px;
}

.faq-section h2 {
  text-align: center;
  color: #1F4E77;
  font-size: 30px;
  margin-bottom: 34px;
  letter-spacing: -0.3px;
}

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

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

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

.faq-question::after {
  content: "+";
  font-size: 22px;
  line-height: 1;
  color: #2E6FA3;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  color: #3A4450;
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 22px 22px;
}

/* ------------------------------------------------ responsive */
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .band-row,
  .process-row,
  .metric-row,
  .bus-row {
    flex-direction: column;
  }

  .band-col,
  .process-step,
  .metric-item,
  .bus-col {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 24px 0;
  }

  .band-col + .band-col,
  .process-step + .process-step,
  .metric-item + .metric-item,
  .bus-col + .bus-col {
    border-left: none;
    border-top-width: 1px;
    border-top-style: solid;
  }

  .band-col + .band-col {
    border-top-color: #E3EEF7;
  }

  .process-step + .process-step {
    border-top-color: #2E6FA3;
  }

  .metric-item + .metric-item {
    border-top-color: #FFFFFF;
  }

  .bus-col + .bus-col {
    border-top-color: #3A6B99;
  }

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

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

  .hero-title {
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  .banner-strip {
    height: 72px;
  }

  .strip-hairline {
    margin: 0 14px;
    height: 32px;
  }

  .hero-title {
    font-size: 32px;
  }

  .stat-line {
    flex-wrap: wrap;
    gap: 10px 0;
  }

  .stat-item {
    padding: 10px 16px;
  }

  .stat-hairline {
    display: none;
  }

  .service-entry {
    flex-direction: column;
    gap: 18px;
  }

  .btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .overlay-links a {
    font-size: 24px;
  }

  .page-hero h1 {
    font-size: 32px;
  }
}
