/* Cubtopia · 8th NSW Cuboree 2027 — shared site styles */

:root{
  --navy: #0c1c39;
  --navy-soft: #14284d;
  --gold: #f5a621;
  --gold-deep: #ca8537;
  --sky: #8cc4e8;
  --sky-pale: #d9edfa;
  --bush: #4b794a;
  --bush-deep: #365a37;
  --bark: #6e564d;
  --paper: #f8f4ea;
  --cream: #fffaf0;

  /* Cub Scout yellow — now the dominant theme colour for content sections */
  --cub-yellow: #f2c118;
  --cub-yellow-deep: #d9a30f;

  --line-blue: #1f6fb2;
  --line-blue-deep: #16588f;
  --service-green: #4b794a;
  --service-green-deep: #365a37;
  --participant-gold: #f5a621;
  --participant-gold-deep: #ca8537;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: "Nunito Sans", system-ui, sans-serif;
  color: var(--navy);
  background: var(--paper);
  overflow-x: hidden;
}

h1, h2, h3, .display{
  font-family: "Baloo 2", system-ui, sans-serif;
}

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

p{ line-height: 1.6; }

/* ---------- Accessibility ---------- */
.skip-link{
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--navy);
  padding: .75rem 1.25rem;
  z-index: 100;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Site header ---------- */
.site-header{
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem clamp(1.25rem, 5vw, 3.5rem) 0;
}

.header-left{
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.back-home{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid rgba(12,28,57,.15);
  padding: .5rem .9rem .5rem .7rem;
  border-radius: 999px;
  transition: transform .15s ease, background .15s ease;
}
.back-home:hover{ background: #fff; transform: translateX(-2px); }
.back-home svg{ width: 16px; height: 16px; }

.brand{
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: .01em;
}
.brand img{ height: 40px; width: 40px; }

.site-nav{
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.site-nav a{
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--navy-soft);
  padding: .5rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(12,28,57,.1);
  transition: background .15s ease, color .15s ease;
}
.site-nav a:hover{ background: #fff; }
.site-nav a[aria-current="page"]{
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

/* ---------- Sky hero (used on every page, shorter on subpages) ---------- */
.sky{
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #bfe0f5 0%, var(--sky) 45%, var(--sky-pale) 100%);
  overflow: hidden;
}
.sky.full{ min-height: 100svh; }
.sky.short{ padding-bottom: 1.5rem; }

.cloud{
  position: absolute;
  background: #ffffff;
  opacity: .8;
  border-radius: 100px;
}
.cloud::before, .cloud::after{
  content: "";
  position: absolute;
  background: #ffffff;
  border-radius: 100px;
}
.cloud-a{ width: 160px; height: 46px; top: 8%; left: 6%; }
.cloud-a::before{ width: 90px; height: 70px; top: -34px; left: 18px; }
.cloud-a::after{ width: 70px; height: 54px; top: -24px; left: 78px; }
.cloud-b{ width: 120px; height: 36px; top: 16%; right: 10%; opacity: .65; }
.cloud-b::before{ width: 70px; height: 54px; top: -26px; left: 14px; }
.cloud-b::after{ width: 54px; height: 40px; top: -18px; left: 60px; }
.cloud-c{ width: 100px; height: 30px; top: 6%; right: 30%; opacity: .5; }
.cloud-c::before{ width: 56px; height: 44px; top: -20px; left: 12px; }
.cloud-c::after{ width: 44px; height: 34px; top: -14px; left: 48px; }

@media (prefers-reduced-motion: no-preference){
  .cloud{ animation: drift 90s linear infinite; }
  .cloud-b{ animation-duration: 120s; animation-direction: reverse; }
  .cloud-c{ animation-duration: 70s; }
}
@keyframes drift{
  from{ transform: translateX(0); }
  to{ transform: translateX(-60px); }
}

.hero{
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem 0;
}

.badge-wrap{
  width: clamp(150px, 22vw, 220px);
  margin-bottom: 1.1rem;
  filter: drop-shadow(0 14px 22px rgba(12,28,57,.22));
}

.eyebrow{
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin: 0 0 .35rem;
}

h1{
  margin: 0;
  font-weight: 800;
  line-height: .92;
  font-size: clamp(3rem, 11vw, 6.5rem);
  color: var(--navy);
  text-shadow: 3px 3px 0 rgba(255,255,255,.35);
}
.page-hero h1{ font-size: clamp(2.4rem, 8vw, 4.2rem); }

.subhead{
  margin: .85rem 0 0;
  font-weight: 700;
  font-size: clamp(1.05rem, 2.6vw, 1.4rem);
  color: var(--navy-soft);
  max-width: 60ch;
}

.facts{
  display: flex;
  flex-wrap: wrap;
  gap: .6rem .9rem;
  justify-content: center;
  margin: 1.4rem 0 0;
  font-weight: 700;
  font-size: .95rem;
}
.fact{
  background: var(--cream);
  border: 1px solid rgba(12,28,57,.14);
  padding: .5rem 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.fact svg{ width: 16px; height: 16px; flex: none; }

.river-divider{
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: clamp(60px, 10vw, 110px);
  margin-top: 1.5rem;
}
.river-line{
  fill: none;
  stroke: var(--cream);
  stroke-width: 22;
  stroke-linecap: round;
  opacity: .9;
}
@media (prefers-reduced-motion: no-preference){
  .river-line{
    stroke-dasharray: 18 22;
    animation: flow 6s linear infinite;
  }
}
@keyframes flow{
  to{ stroke-dashoffset: -160; }
}

/* ---------- Bush / content section ---------- */
.bush{
  position: relative;
  background: linear-gradient(180deg, var(--cub-yellow) 0%, var(--cub-yellow-deep) 100%);
  color: var(--navy);
  padding: 2.5rem 1.5rem 3rem;
}
.bush-inner{
  max-width: 760px;
  margin: 0 auto;
  background: var(--cream);
  color: var(--navy);
  border-radius: 22px;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: 0 18px 36px rgba(12,28,57,.28);
  border: 1px solid rgba(12,28,57,.08);
  text-align: center;
}
.bush-inner.wide{ max-width: 1080px; }
.bush-inner h2{
  margin: 0 0 .6rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--gold-deep);
}
.bush-inner p{
  margin: 0 auto .9rem;
  max-width: 62ch;
  line-height: 1.55;
  font-size: 1rem;
}
.bush-inner p:last-of-type{ margin-bottom: 0; }

/* ---------- Countdown ---------- */
.countdown{
  display: flex;
  justify-content: center;
  gap: clamp(.5rem, 2vw, 1.1rem);
  margin: 1.6rem 0 1.8rem;
  flex-wrap: wrap;
}
.countdown div{
  background: var(--navy);
  color: var(--cream);
  border-radius: 14px;
  padding: .8rem .4rem;
  width: 78px;
}
.countdown span{
  display: block;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1;
}
.countdown small{
  display: block;
  margin-top: .3rem;
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: .8;
}

/* ---------- Buttons ---------- */
.cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: .4rem;
}
.btn{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  text-decoration: none;
  padding: .8rem 1.4rem;
  border-radius: 999px;
  font-size: .95rem;
  transition: transform .15s ease, box-shadow .15s ease;
  border: none;
  cursor: pointer;
}
.btn-primary{
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 6px 0 var(--gold-deep);
}
.btn-primary:hover{ transform: translateY(-2px); }
.btn-primary:active{ transform: translateY(2px); box-shadow: 0 3px 0 var(--gold-deep); }
.btn-ghost{
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(12,28,57,.25);
}
.btn-ghost:hover{ border-color: var(--navy); }

.hero-cta{ margin: 1.8rem 0 0; }
.btn-large{
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  padding: 1.1rem 2.3rem;
  box-shadow: 0 7px 0 var(--gold-deep), 0 16px 28px rgba(12,28,57,.32);
}
.btn-large svg{ width: 22px; height: 22px; }
.btn-large:hover{ transform: translateY(-3px); }
.btn-large:active{ transform: translateY(3px); box-shadow: 0 3px 0 var(--gold-deep); }

/* ---------- Home page nav tiles ---------- */
.tiles-section{
  padding: 3rem 1.5rem 0;
  max-width: 1080px;
  margin: 0 auto;
}
.tiles-section h2{
  text-align: center;
  color: var(--navy);
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  margin: 0 0 1.6rem;
}
.tile-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.tile{
  display: flex;
  flex-direction: column;
  gap: .6rem;
  text-decoration: none;
  color: var(--navy);
  background: var(--cream);
  border-radius: 20px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 12px 24px rgba(12,28,57,.22);
  border: 1px solid rgba(12,28,57,.08);
  transition: transform .18s ease, box-shadow .18s ease;
  position: relative;
  overflow: hidden;
}
.tile:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(12,28,57,.28);
}
.tile-icon{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
}
.tile-icon svg{ width: 28px; height: 28px; }
.tile h3{
  margin: 0;
  font-size: 1.25rem;
}
.tile p{
  margin: 0;
  font-size: .9rem;
  color: var(--navy-soft);
  line-height: 1.5;
}
.tile .tile-go{
  margin-top: auto;
  font-weight: 700;
  font-size: .82rem;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: .3rem;
}

/* ---------- Video section ---------- */
.video-section{
  padding: 3rem 1.5rem 3.5rem;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.video-section h2{
  color: var(--navy);
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  margin: 0 0 .4rem;
}
.video-section p{
  color: rgba(12,28,57,.75);
  margin: 0 0 1.4rem;
}
.video-frame{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(12,28,57,.35);
  border: 4px solid var(--cream);
}
.video-frame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Role / pricing cards ---------- */
.roles-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.role-card{
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(12,28,57,.2);
  border: 1px solid rgba(12,28,57,.08);
  display: flex;
  flex-direction: column;
}
.role-card-head{
  padding: 1.4rem 1.5rem 1.2rem;
  color: var(--cream);
}
.role-card.participant .role-card-head{ background: linear-gradient(135deg, var(--participant-gold), var(--participant-gold-deep)); color: var(--navy); }
.role-card.line-leader .role-card-head{ background: linear-gradient(135deg, var(--line-blue), var(--line-blue-deep)); }
.role-card.service-leader .role-card-head{ background: linear-gradient(135deg, var(--service-green), var(--service-green-deep)); }

.role-card-head .role-tag{
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(255,255,255,.28);
  padding: .3rem .7rem;
  border-radius: 999px;
  margin-bottom: .6rem;
}
.role-card.participant .role-tag{ background: rgba(12,28,57,.15); }
.role-card-head h3{
  margin: 0 0 .3rem;
  font-size: 1.5rem;
}
.role-price{
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
}
.role-card-body{
  padding: 1.4rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.role-card-body p{
  margin: 0;
  font-size: .95rem;
  color: var(--navy-soft);
}
.role-meta{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: auto;
}
.role-meta span{
  font-size: .78rem;
  font-weight: 700;
  background: var(--paper);
  border: 1px solid rgba(12,28,57,.12);
  padding: .35rem .7rem;
  border-radius: 999px;
  color: var(--navy-soft);
}

.pricing-note{
  max-width: 760px;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
  text-align: center;
}
.pricing-note p{
  color: rgba(12,28,57,.75);
  font-size: .9rem;
}

/* ---------- Timeline (Past Cuborees) ---------- */
.timeline{
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}
.timeline::before{
  content: "";
  position: absolute;
  left: 27px;
  top: 6px;
  bottom: 6px;
  width: 5px;
  background: repeating-linear-gradient(180deg, var(--navy) 0 10px, transparent 10px 18px);
  border-radius: 4px;
  opacity: .85;
}
@media (min-width: 700px){
  .timeline::before{ left: 50%; margin-left: -2px; }
}

.tl-item{
  position: relative;
  padding-left: 64px;
  margin-bottom: 1.6rem;
}
.tl-dot{
  position: absolute;
  left: 12px;
  top: 4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: .85rem;
  box-shadow: 0 0 0 5px var(--cub-yellow-deep);
}
.tl-item.upcoming .tl-dot{
  background: var(--gold);
  color: var(--navy);
}
.tl-card{
  background: var(--cream);
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 10px 20px rgba(12,28,57,.18);
  border: 1px solid rgba(12,28,57,.08);
}
.tl-item.upcoming .tl-card{
  border: 2px solid var(--gold);
}
.tl-card-top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: .3rem;
}
.tl-card h3{
  margin: 0;
  font-size: 1.15rem;
  color: var(--navy);
}
.tl-status{
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: var(--bush);
  color: var(--cream);
  white-space: nowrap;
}
.tl-item.upcoming .tl-status{ background: var(--gold); color: var(--navy); }
.tl-theme{
  font-weight: 700;
  color: var(--gold-deep);
  margin: 0 0 .35rem;
  font-size: .95rem;
}
.tl-meta{
  margin: 0;
  font-size: .85rem;
  color: var(--navy-soft);
}

@media (min-width: 700px){
  .tl-item{ padding-left: 0; width: 50%; }
  .tl-item:nth-child(odd){ padding-right: 3rem; text-align: right; }
  .tl-item:nth-child(even){ margin-left: 50%; padding-left: 3rem; }
  .tl-item .tl-dot{ left: auto; }
  .tl-item:nth-child(odd) .tl-dot{ right: -15px; }
  .tl-item:nth-child(even) .tl-dot{ left: -15px; }
  .tl-item:nth-child(odd) .tl-card-top{ flex-direction: row-reverse; }
}

/* ---------- Contacts page ---------- */
.contacts-section{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.orgchart-box{
  background: var(--cream);
  border: 2px dashed rgba(12,28,57,.25);
  border-radius: 18px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--navy-soft);
}
.orgchart-box svg{ width: 46px; height: 46px; margin: 0 auto .8rem; opacity: .5; }
.orgchart-box p{ margin: 0 auto; max-width: 46ch; font-size: .9rem; }

/* ---------- Org chart (Cuboree Leadership Team) ---------- */
.orgchart{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.oc-tier{
  display: flex;
  justify-content: center;
  width: 100%;
}
.oc-card{
  background: var(--cream);
  border-radius: 16px;
  padding: .85rem 1.2rem;
  box-shadow: 0 8px 18px rgba(12,28,57,.16);
  border: 1px solid rgba(12,28,57,.08);
  text-align: center;
  min-width: 170px;
}
.oc-card .oc-name{
  display: block;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-top: .15rem;
}
a.oc-name, a.oc-r-name{ text-decoration: none; }
a.oc-name:hover, a.oc-r-name:hover{ text-decoration: underline; text-underline-offset: 2px; }
.oc-card .oc-role{
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.oc-card.vacant .oc-name{ color: rgba(12,28,57,.45); font-style: italic; font-weight: 600; }

.oc-chief-tier .oc-card{
  background: var(--navy);
  min-width: 200px;
}
.oc-chief-tier .oc-name{ color: var(--cream); }
.oc-chief-tier .oc-role{ color: var(--cub-yellow); }

.oc-connector{
  width: 3px;
  height: 1.3rem;
  background: rgba(12,28,57,.2);
}

.oc-liaisons{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.4rem 0 .2rem;
}
.oc-liaisons .oc-card{ border: 1px dashed rgba(12,28,57,.25); box-shadow: none; background: rgba(255,255,255,.5); }
.oc-liaisons-label{
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy-soft);
  text-align: center;
  margin: 1.6rem 0 .3rem;
}

.oc-directors{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  width: 100%;
  margin-top: 1.4rem;
}
.oc-director{
  display: flex;
  flex-direction: column;
}
.oc-director > .oc-card{ min-width: 0; }
.oc-reports{
  list-style: none;
  margin: .6rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.oc-reports li{
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(12,28,57,.1);
  border-radius: 10px;
  padding: .45rem .7rem;
  font-size: .8rem;
  text-align: left;
}
.oc-reports .oc-r-role{
  display: block;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--navy-soft);
}
.oc-reports .oc-r-name{
  display: block;
  font-weight: 700;
  color: var(--navy);
}
.oc-reports li.vacant .oc-r-name{ color: rgba(12,28,57,.45); font-style: italic; font-weight: 600; }

.region-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.region-card{
  background: var(--cream);
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 8px 18px rgba(12,28,57,.16);
  border: 1px solid rgba(12,28,57,.08);
}
.region-card h3{
  margin: 0 0 .4rem;
  font-size: 1rem;
  color: var(--navy);
}
.region-card p{
  margin: 0;
  font-size: .9rem;
  color: var(--navy-soft);
}
.region-email{
  display: inline-flex;
  flex-direction: column;
  margin-top: .55rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-deep);
  text-decoration: none;
  line-height: 1.35;
  max-width: 100%;
  word-break: break-all;
}
.region-email .re-local, .region-email .re-domain{ display: block; }
.region-email:hover{ text-decoration: underline; text-underline-offset: 2px; }
.region-card.tbc p{
  font-style: italic;
  color: rgba(12,28,57,.5);
}

/* ---------- Animal footer strip ---------- */
.critters{
  position: relative;
  background: var(--cub-yellow-deep);
  padding: 1.6rem 1.5rem 2.2rem;
  text-align: center;
}
.critter-row{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(.6rem, 3vw, 1.6rem);
  margin-bottom: 1rem;
}
.critter-row svg{
  width: clamp(30px, 6vw, 46px);
  height: auto;
  opacity: .92;
}
footer{
  color: rgba(12,28,57,.7);
  font-size: .82rem;
  line-height: 1.6;
}
footer a{ color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
footer .fine{ opacity: .65; margin-top: .3rem; }

@media (max-width: 480px){
  .countdown div{ width: 64px; padding: .6rem .3rem; }
  .countdown span{ font-size: 1.35rem; }
}

/* ---------- Scouts NSW footer ---------- */
.scouts-footer{
  background: var(--navy);
  color: rgba(255,255,255,.82);
  padding-top: .5rem;
}
.sf-inner{
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.4rem 1.5rem 2rem;
}
.sf-top{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.6rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.sf-logo-link{ display: inline-flex; }
.sf-logo{ height: 40px; width: auto; }
.sf-contact{
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: .85rem;
}
.sf-contact a{ color: #fff; text-decoration: none; }
.sf-contact a:hover{ text-decoration: underline; }

.sf-cols{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.6rem 1.5rem;
  text-align: left;
}
.sf-col{ display: flex; flex-direction: column; }
.sf-col h4{
  font-family: "Baloo 2", sans-serif;
  color: var(--cub-yellow);
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 .7rem;
}
.sf-col a{
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: .84rem;
  padding: .25rem 0;
  line-height: 1.4;
}
.sf-col a:hover{ color: #fff; text-decoration: underline; }

.sf-legal{
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .82rem;
}
.sf-legal a{ color: rgba(255,255,255,.78); text-decoration: underline; text-underline-offset: 2px; }

.sf-commitment{
  margin-top: 1.4rem;
  max-width: 78ch;
}
.sf-commitment p{
  font-size: .78rem;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  margin: 0 0 .8rem;
}
.sf-commitment strong{ color: rgba(255,255,255,.88); }

.sf-copyright{
  margin-top: 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}
