/* ============================================================
   DAO AIRSPACE LTD — Aerodrome Briefing stylesheet
   LIGHT theme. Solid hex only. No rgba, no opacity, no gradients.
   ============================================================ */

:root {
  --brief-room: #F3F4EF;
  --atc-ink: #23282D;
  --aero-teal: #26798A;
  --strip-shell: #FAF9F2;
  --panel-dove: #E1E5DE;
  --runway-slate: #37414A;
  --strip-canary: #E3BE2E;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  margin: 0;
  padding: 0;
  background-color: #F3F4EF;
  color: #23282D;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.68;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.22;
  margin: 0 0 16px;
  letter-spacing: 0.2px;
}

h1 {
  font-size: 2.85rem;
}

h2 {
  font-size: 2.05rem;
  color: #23282D;
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0 0 18px;
}

a {
  color: #26798A;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ---------------- Skip link ---------------- */
.skipbrief {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #37414A;
  color: #FAF9F2;
  padding: 10px 16px;
  z-index: 999;
}

.skipbrief:focus {
  left: 8px;
  top: 8px;
}

/* ============================================================
   NAVIGATION — STRIP RACK HEADER
   ============================================================ */
.striprack {
  position: sticky;
  top: 0;
  z-index: 120;
  background-color: #E1E5DE;
  border-top: 6px solid #37414A;
  border-bottom: 3px solid #37414A;
  padding: 14px 12px 16px;
}

.striprack-rail {
  border-top: 1px solid #37414A;
  border-bottom: 1px solid #37414A;
  padding: 12px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: 1240px;
  margin: 0 auto;
}

.striprack-brandplate {
  background-color: #37414A;
  color: #FAF9F2;
  border-radius: 3px;
  padding: 10px 18px 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.98rem;
  margin-right: auto;
}

.striprack-beacon {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #26798A;
}

.striprack-strip {
  background-color: #FAF9F2;
  border-left-width: 6px;
  border-left-style: solid;
  padding: 9px 14px;
  font-size: 0.92rem;
  color: #23282D;
  border-radius: 2px;
  box-shadow: 0 1px 0 #37414A;
}

.striprack-strip.tilt-a {
  transform: rotate(-0.5deg);
  border-left-color: #26798A;
}

.striprack-strip.tilt-b {
  transform: rotate(0.5deg);
  border-left-color: #E3BE2E;
}

.striprack-strip.w-narrow {
  min-width: 74px;
  text-align: center;
}

.striprack-strip.w-mid {
  min-width: 92px;
  text-align: center;
}

.striprack-strip.w-wide {
  min-width: 118px;
  text-align: center;
}

.striprack-strip:hover {
  background-color: #ffffff;
  text-decoration: none;
}

.striprack-navtoggle {
  display: none;
  background-color: #26798A;
  color: #FAF9F2;
  border: 0;
  border-radius: 3px;
  padding: 10px 16px;
  font-size: 0.92rem;
  cursor: pointer;
  letter-spacing: 0.6px;
}

.striprack-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.striprack-footrail {
  height: 4px;
  background-color: #26798A;
  max-width: 1240px;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.briefwrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-band {
  padding: 76px 0;
}

.band-shell {
  background-color: #FAF9F2;
}

.band-dove {
  background-color: #E1E5DE;
}

.band-slate {
  background-color: #37414A;
  color: #FAF9F2;
}

.band-slate h2 {
  color: #FAF9F2;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #26798A;
  border-bottom: 3px solid #E3BE2E;
  padding-bottom: 4px;
  margin-bottom: 16px;
  font-weight: 700;
}

.band-slate .eyebrow {
  color: #E3BE2E;
}

.lede {
  font-size: 1.1rem;
  max-width: 760px;
}

/* ============================================================
   HERO — TOWER CAB HERO
   ============================================================ */
.towercab {
  background-color: #F3F4EF;
  border-bottom: 3px solid #37414A;
  padding: 60px 0 68px;
}

.towercab-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.towercab-copy {
  flex: 1 1 520px;
  max-width: 55%;
}

.towercab-copy h1 {
  font-size: 3.1rem;
  margin-bottom: 20px;
}

.towercab-accent {
  color: #26798A;
}

.towercab-para {
  font-size: 1.08rem;
  max-width: 620px;
}

.towercab-ctas {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.clearance-tag {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.96rem;
  border: 3px solid #26798A;
}

.clearance-tag.primary {
  background-color: #26798A;
  color: #FAF9F2;
}

.clearance-tag.primary:hover {
  background-color: #1f6574;
  text-decoration: none;
}

.clearance-tag.ghost {
  background-color: #FAF9F2;
  color: #37414A;
  border-color: #37414A;
}

.clearance-tag.ghost:hover {
  background-color: #E1E5DE;
  text-decoration: none;
}

.towercab-scene {
  flex: 1 1 420px;
  max-width: 45%;
  background-color: #E1E5DE;
  border: 3px solid #37414A;
  border-radius: 6px;
  padding: 24px 24px 0;
  min-height: 430px;
}

/* --- control tower --- */
.towerview {
  position: relative;
  height: 250px;
  margin: 0 auto;
  width: 100%;
}

.tower-shaft {
  position: absolute;
  bottom: 46px;
  left: 50%;
  margin-left: -34px;
  width: 68px;
  height: 150px;
  background-color: #FAF9F2;
  border: 3px solid #37414A;
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
}

.tower-cab {
  position: absolute;
  bottom: 192px;
  left: 50%;
  margin-left: -72px;
  width: 144px;
  height: 46px;
  background-color: #FAF9F2;
  border: 3px solid #37414A;
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 4px 6px;
  overflow: hidden;
}

.mullion {
  flex: 1 1 8px;
  background-color: #26798A;
  margin: 0 2px;
  border-radius: 1px;
}

.tower-roof {
  position: absolute;
  bottom: 238px;
  left: 50%;
  margin-left: -60px;
  width: 120px;
  height: 8px;
  background-color: #37414A;
  border-radius: 2px;
}

.tower-dish {
  position: absolute;
  bottom: 246px;
  left: 50%;
  margin-left: 34px;
  width: 20px;
  height: 20px;
  border: 3px solid #37414A;
  border-radius: 50%;
  border-bottom-color: #E3BE2E;
}

.tower-railing {
  position: absolute;
  bottom: 186px;
  left: 50%;
  margin-left: -84px;
  width: 168px;
  height: 8px;
  border-top: 3px solid #37414A;
  border-bottom: 2px dotted #37414A;
}

.tower-leg-a, .tower-leg-b {
  position: absolute;
  bottom: 46px;
  width: 10px;
  height: 40px;
  background-color: #37414A;
}

.tower-leg-a { left: 50%; margin-left: -40px; }
.tower-leg-b { left: 50%; margin-left: 30px; }

/* --- runway --- */
.runwaystrip {
  position: relative;
  height: 74px;
  margin: 4px auto 0;
  background-color: #37414A;
  border-radius: 4px;
  border: 3px solid #37414A;
}

.runway-centerline {
  position: absolute;
  top: 50%;
  left: 16px;
  right: 16px;
  margin-top: -3px;
  height: 6px;
  background-image: repeating-linear-gradient(
    to right,
    #FAF9F2 0px,
    #FAF9F2 22px,
    #37414A 22px,
    #37414A 44px
  );
}

.runway-threshold {
  position: absolute;
  top: 8px;
  bottom: 8px;
  width: 26px;
  background-image: repeating-linear-gradient(
    to bottom,
    #FAF9F2 0px,
    #FAF9F2 8px,
    #37414A 8px,
    #37414A 16px
  );
}

.runway-threshold.left { left: 10px; }
.runway-threshold.right { right: 10px; }

.runway-plate {
  position: absolute;
  right: 46px;
  top: 10px;
  background-color: #E3BE2E;
  color: #23282D;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 3px 7px;
  border-radius: 2px;
  letter-spacing: 1px;
}

/* --- approach path + aircraft --- */
.approach-arc {
  position: relative;
  height: 76px;
  margin-top: 10px;
  border-top: 3px dotted #26798A;
  border-radius: 60% 60% 0 0;
  width: 76%;
  margin-left: auto;
  margin-right: auto;
}

.aircraft-glyph {
  position: absolute;
  top: -12px;
  left: 8%;
  width: 34px;
  height: 10px;
  background-color: #23282D;
  border-radius: 50%;
}

.wing-bar-a, .wing-bar-b {
  position: absolute;
  width: 20px;
  height: 5px;
  background-color: #23282D;
}

.wing-bar-a {
  top: -4px;
  left: 8px;
  transform: rotate(18deg);
}

.wing-bar-b {
  top: 8px;
  left: 8px;
  transform: rotate(-18deg);
}

/* --- windsock --- */
.windsockpole {
  position: absolute;
  bottom: 0;
  left: 12px;
  width: 5px;
  height: 96px;
  background-color: #37414A;
}

.windsock-body {
  position: absolute;
  bottom: 74px;
  left: 17px;
  width: 46px;
  height: 16px;
  background-color: #E3BE2E;
  border-radius: 2px 8px 8px 2px;
  border: 2px solid #37414A;
}

.windsock-stripe {
  position: absolute;
  bottom: 74px;
  left: 39px;
  width: 9px;
  height: 16px;
  background-color: #26798A;
  border-top: 2px solid #37414A;
  border-bottom: 2px solid #37414A;
}

/* ============================================================
   HOLDING STACKS — six services
   ============================================================ */
.holdingstack {
  padding: 82px 0 70px;
  background-color: #F3F4EF;
}

.holding-intro {
  max-width: 780px;
  margin-bottom: 40px;
}

.holdingstack-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.holdingpill {
  position: relative;
  border: 3px solid #37414A;
  border-radius: 60px;
  padding: 26px 32px 26px 44px;
}

.holdingpill.sh-left {
  width: 86%;
  margin-right: auto;
  background-color: #FAF9F2;
}

.holdingpill.sh-right {
  width: 82%;
  margin-left: auto;
  background-color: #E1E5DE;
}

.holdingpill.sh-left-alt {
  width: 78%;
  margin-right: auto;
  background-color: #E1E5DE;
}

.holdingpill.sh-right-alt {
  width: 84%;
  margin-left: auto;
  background-color: #FAF9F2;
}

.levelplate {
  position: absolute;
  left: -18px;
  top: 50%;
  margin-top: -20px;
  background-color: #37414A;
  color: #FAF9F2;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  border: 2px solid #26798A;
}

.holding-inner {
  background-color: #FAF9F2;
  border: 1px solid #E1E5DE;
  border-radius: 8px;
  padding: 20px 24px;
}

.holdingpill.sh-right .holding-inner,
.holdingpill.sh-left-alt .holding-inner {
  background-color: #FAF9F2;
}

.holding-inner h3 {
  color: #26798A;
  margin-bottom: 10px;
}

.holding-inner p {
  margin-bottom: 0;
}

.holding-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #E3BE2E;
  margin-left: 10px;
  vertical-align: middle;
}

.holding-servicelink {
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.6px;
}

/* ============================================================
   ATIS STRIP
   ============================================================ */
.atisstrip {
  background-color: #26798A;
  color: #FAF9F2;
  padding: 30px 0;
  border-top: 3px solid #37414A;
  border-bottom: 3px solid #37414A;
}

.atis-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 1.05rem;
  font-weight: 600;
}

.atis-beacon {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #E3BE2E;
  flex: 0 0 auto;
}

.atis-text {
  flex: 1 1 420px;
}

/* ============================================================
   APRON GATE FOOTER
   ============================================================ */
.aprongate {
  background-color: #37414A;
  color: #FAF9F2;
}

.taxiwayline {
  position: relative;
  height: 22px;
  background-color: #37414A;
  border-top: 3px solid #FAF9F2;
  border-bottom: 3px solid #FAF9F2;
}

.taxiway-dashes {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 3px;
  background-image: repeating-linear-gradient(
    to right,
    #FAF9F2 0px,
    #FAF9F2 26px,
    #37414A 26px,
    #37414A 52px
  );
}

.taxiway-arrow {
  position: absolute;
  top: 4px;
  left: 60px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #E3BE2E;
}

.apron-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 52px 24px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
}

.apron-brandblock {
  flex: 1 1 300px;
}

.apron-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  letter-spacing: 1.6px;
  color: #FAF9F2;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.apron-beacon {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #26798A;
}

.apron-blurb {
  color: #FAF9F2;
  max-width: 360px;
  font-size: 0.96rem;
}

.apron-gateblocks {
  display: flex;
  gap: 14px;
  flex: 1 1 200px;
}

.gateblock {
  background-color: #FAF9F2;
  color: #37414A;
  border: 3px solid #E3BE2E;
  border-radius: 3px;
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.apron-columns {
  display: flex;
  gap: 40px;
  flex: 1 1 300px;
  justify-content: flex-end;
}

.gate-tagcol {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gate-tagcol.wide {
  width: 180px;
}

.gate-tagcol.narrow {
  width: 130px;
}

.gate-tag {
  color: #FAF9F2;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 9px;
}

.gate-tag:hover {
  color: #E3BE2E;
  text-decoration: none;
}

.gate-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #26798A;
  flex: 0 0 auto;
}

.apron-basestrip {
  border-top: 1px solid #FAF9F2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  font-size: 0.88rem;
  color: #FAF9F2;
}

.apron-basestrip a {
  color: #FAF9F2;
}

.apron-basestrip a:hover {
  color: #E3BE2E;
}

.apron-centerline {
  display: inline-block;
  height: 3px;
  width: 40px;
  background-image: repeating-linear-gradient(
    to right,
    #FAF9F2 0px,
    #FAF9F2 8px,
    #37414A 8px,
    #37414A 16px
  );
}

/* ============================================================
   GENERIC CONTENT BLOCKS (services/contact pages)
   ============================================================ */
.pagelede {
  background-color: #E1E5DE;
  border-bottom: 3px solid #37414A;
  padding: 52px 0;
}

.pagelede h1 {
  margin-bottom: 14px;
}

.pagelede p {
  max-width: 820px;
  font-size: 1.06rem;
  margin-bottom: 0;
}

.serviceblock {
  padding: 56px 0;
  border-bottom: 1px solid #E1E5DE;
}

.serviceblock.alt {
  background-color: #FAF9F2;
}

.serviceblock-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
}

.serviceblock-tag {
  background-color: #26798A;
  color: #FAF9F2;
  border-radius: 4px;
  padding: 7px 12px;
  font-size: 0.74rem;
  letter-spacing: 1.2px;
  font-weight: 700;
  flex: 0 0 auto;
  margin-top: 6px;
}

.serviceblock-body {
  max-width: 900px;
}

.serviceblock-body h2 {
  color: #26798A;
  margin-bottom: 12px;
}

.processlist {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  counter-reset: step;
}

.processlist li {
  counter-increment: step;
  background-color: #FAF9F2;
  border-left: 6px solid #26798A;
  border-radius: 4px;
  padding: 18px 22px 18px 68px;
  margin-bottom: 14px;
  position: relative;
  color: #23282D;
}

.processlist li::before {
  content: "0" counter(step);
  position: absolute;
  left: 22px;
  top: 18px;
  font-weight: 700;
  color: #E3BE2E;
  background-color: #37414A;
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 0.78rem;
  letter-spacing: 1px;
}

.ctaband {
  background-color: #37414A;
  color: #FAF9F2;
  padding: 60px 0;
  text-align: center;
}

.ctaband h2 {
  color: #FAF9F2;
}

.ctaband p {
  max-width: 720px;
  margin: 0 auto 26px;
  color: #FAF9F2;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contactgrid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.contactcard {
  flex: 1 1 480px;
  background-color: #FAF9F2;
  border: 3px solid #37414A;
  border-radius: 6px;
  padding: 32px;
}

.contactaside {
  flex: 1 1 320px;
  background-color: #E1E5DE;
  border-left: 6px solid #26798A;
  border-radius: 4px;
  padding: 30px;
}

.contactaside h3 {
  color: #37414A;
}

.fieldrow {
  margin-bottom: 18px;
}

.fieldrow label {
  display: block;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 7px;
  color: #37414A;
}

.fieldrow input,
.fieldrow select,
.fieldrow textarea {
  width: 100%;
  font-size: 1rem;
  font-family: inherit;
  padding: 12px 14px;
  border: 2px solid #37414A;
  border-radius: 3px;
  background-color: #F3F4EF;
  color: #23282D;
}

.fieldrow textarea {
  min-height: 150px;
  resize: vertical;
}

.formsubmit {
  background-color: #26798A;
  color: #FAF9F2;
  border: 3px solid #26798A;
  border-radius: 3px;
  padding: 13px 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.6px;
}

.formsubmit:hover {
  background-color: #1f6574;
}

.formnote {
  font-size: 0.86rem;
  margin-top: 14px;
  color: #37414A;
}

.contactdetailline {
  margin-bottom: 14px;
  font-size: 0.98rem;
}

.contactdetailline strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #26798A;
}

.faqblock {
  margin-top: 54px;
}

.faqitem {
  background-color: #FAF9F2;
  border: 2px solid #37414A;
  border-radius: 4px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faqq {
  width: 100%;
  text-align: left;
  background-color: #FAF9F2;
  border: 0;
  padding: 18px 22px;
  font-size: 1.02rem;
  font-weight: 700;
  font-family: Georgia, "Times New Roman", serif;
  color: #37414A;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faqq .faqdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #E3BE2E;
  flex: 0 0 auto;
}

.faqa {
  padding: 0 22px 20px 44px;
  color: #23282D;
}

/* ============================================================
   HOMEPAGE EDITORIAL STRIPS (non-grid content)
   ============================================================ */
.briefrow {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.briefrow-main {
  flex: 2 1 480px;
}

.briefrow-side {
  flex: 1 1 280px;
  background-color: #E1E5DE;
  border-top: 6px solid #26798A;
  border-radius: 4px;
  padding: 26px;
}

.briefrow-side h3 {
  color: #37414A;
}

.regletlist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.regletlist li {
  border-bottom: 1px dotted #37414A;
  padding: 12px 0;
  font-size: 0.96rem;
}

.regletlist li:last-child {
  border-bottom: 0;
}

.regletlist strong {
  color: #26798A;
}

.factstripes {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.factstripe {
  flex: 1 1 240px;
  background-color: #FAF9F2;
  border-left: 6px solid #E3BE2E;
  border-radius: 3px;
  padding: 20px 22px;
}

.factstripe h4 {
  color: #26798A;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.factstripe p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal-item {
  transition: transform 600ms ease, opacity 600ms ease;
  opacity: 1;
  transform: translateY(0);
}

html.js-ready .reveal-item:not(.is-revealed) {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .towercab-copy,
  .towercab-scene {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .towercab-copy h1 {
    font-size: 2.4rem;
  }

  .holdingpill.sh-left,
  .holdingpill.sh-right,
  .holdingpill.sh-left-alt,
  .holdingpill.sh-right-alt {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .holdingpill {
    border-radius: 34px;
    padding-left: 34px;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .striprack-navtoggle {
    display: inline-block;
  }

  .striprack-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }

  .striprack-links.open {
    display: flex;
  }

  .striprack-strip {
    width: 100%;
    text-align: center;
    transform: none;
  }

  .striprack-brandplate {
    font-size: 0.86rem;
  }

  .h1, h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .apron-columns {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .section-band {
    padding: 52px 0;
  }
}
