/* ============================================================
   DEVLIN LEHI APARTMENTS, LLC
   RIDGELINE APARTMENT TERRACES
   Palette: morning-haze / basalt ink / grove olive / river slate
   ============================================================ */

:root {
  --haze: #F4F1EC;
  --haze-2: #EDE8DE;
  --limecrete: #EAE6DC;
  --ink: #23201C;
  --ink-soft: #3A342C;
  --olive: #5A6B45;
  --olive-deep: #45543A;
  --slate: #44535C;
  --slate-deep: #36434B;
  --apris: #D89B5F;
  --plinth: #191713;
  --rule: #C9C2B4;
  --rule-soft: #D8D1C2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: Georgia, "Times New Roman", "Palatino Linotype", serif;
  font-size: 16px;
  line-height: 1.68;
  color: #23201C;
  background-color: #F4F1EC;
  overflow-x: hidden;
}

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

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

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif;
  line-height: 1.22;
  margin: 0 0 0.6em;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 1.1em;
}

.wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 26px;
}

.wrap-narrow {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 26px;
}

/* ---------------- Skip link ---------------- */

.skiplink {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #23201C;
  color: #F4F1EC;
  padding: 10px 16px;
  z-index: 200;
}

.skiplink:focus {
  left: 12px;
  top: 12px;
}

/* ============================================================
   SUMMIT STRIP HEADER
   ============================================================ */

.summithead {
  position: sticky;
  top: 0;
  z-index: 120;
  background-color: #F4F1EC;
  border-bottom: 1px solid #D8D1C2;
}

.creststrip {
  height: 9px;
  width: 100%;
  background-color: #23201C;
  position: relative;
  overflow: hidden;
}

.creststrip::before {
  content: "";
  position: absolute;
  left: 4%;
  top: 0;
  width: 22%;
  height: 4px;
  background-color: #5A6B45;
}

.creststrip::after {
  content: "";
  position: absolute;
  left: 34%;
  top: 0;
  width: 14%;
  height: 4px;
  background-color: #5A6B45;
}

.crestnotch-a {
  position: absolute;
  bottom: 0;
  height: 5px;
  background-color: #23201C;
  left: 0;
  width: 46%;
}

.crestnotch-b {
  position: absolute;
  bottom: 0;
  height: 5px;
  background-color: #23201C;
  left: 52%;
  width: 11%;
}

.crestnotch-c {
  position: absolute;
  bottom: 0;
  height: 5px;
  background-color: #23201C;
  left: 68%;
  width: 32%;
}

.summitrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 26px;
  max-width: 1160px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.brandsplate {
  display: flex;
  align-items: center;
  gap: 11px;
  background-color: #EAE6DC;
  border: 1px solid #C9C2B4;
  border-left: 4px solid #5A6B45;
  padding: 9px 16px 9px 13px;
}

.brandglyph {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 20px 20px 0 0;
  background-color: #D89B5F;
  position: relative;
}

.brandglyph::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  background-color: #23201C;
}

.brandtext {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brandname {
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #23201C;
  text-transform: uppercase;
}

.brandsub {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5A6B45;
}

.navset {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.trailpost-chip {
  position: relative;
  display: inline-block;
  padding: 9px 15px 8px;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #23201C;
  background-color: #EAE6DC;
  border: 1px solid #C9C2B4;
  border-top: 2px solid #5A6B45;
}

.trailpost-chip:hover {
  background-color: #E0DACB;
  text-decoration: none;
}

.trailpost-chip::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 4px;
  background-color: #D89B5F;
}

.chip-first {
  background-color: #5A6B45;
  color: #F4F1EC;
  border: 1px solid #45543A;
}

.chip-first:hover {
  background-color: #45543A;
  color: #F4F1EC;
}

.chip-first::after {
  background-color: #F4F1EC;
}

.aprishairline {
  height: 2px;
  width: 100%;
  background-color: #D89B5F;
}

/* ---------------- Mobile toggle ---------------- */

.navtoggle {
  display: none;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 14px;
  color: #F4F1EC;
  background-color: #44535C;
  border: none;
  cursor: pointer;
}

.navtoggle:hover {
  background-color: #36434B;
}

/* ============================================================
   HERO — TERRACE SECTION
   ============================================================ */

.ridgelinehero {
  background-color: #EAE6DC;
  border-bottom: 1px solid #C9C2B4;
  padding: 52px 0 56px;
}

.hero-courses {
  display: flex;
  gap: 44px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1 1 52%;
  max-width: 560px;
}

.hero-right {
  flex: 1 1 44%;
  min-width: 320px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #44535C;
  border-top: 2px solid #D89B5F;
  padding-top: 8px;
  margin-bottom: 18px;
}

.sunglyphdot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 11px 11px 0 0;
  background-color: #D89B5F;
}

.hero-headline {
  font-size: 46px;
  font-weight: 700;
  color: #23201C;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.headline-olive {
  color: #5A6B45;
  display: block;
}

.hero-lede {
  font-size: 17px;
  color: #3A342C;
  max-width: 530px;
}

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

.trailbtn {
  display: inline-block;
  position: relative;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 24px 12px;
  border: 1px solid #45543A;
  background-color: #5A6B45;
  color: #F4F1EC;
}

.trailbtn:hover {
  background-color: #45543A;
  color: #F4F1EC;
  text-decoration: none;
}

.trailbtn::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 6px 6px 0 0;
  background-color: #D89B5F;
}

.trailbtn-ghost {
  background-color: #EAE6DC;
  color: #23201C;
  border: 1px solid #23201C;
}

.trailbtn-ghost:hover {
  background-color: #D8D1C2;
  color: #23201C;
}

.trailbtn-ghost::after {
  background-color: #5A6B45;
}

/* ---------------- Ridgeline building section glyph ---------------- */

.ridge-building {
  position: relative;
  border: 2px solid #23201C;
  background-color: #F4F1EC;
  padding-bottom: 0;
}

.ridge-cap {
  height: 22px;
  background-color: #23201C;
  position: relative;
  overflow: hidden;
}

.ridge-cap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 38%;
  height: 8px;
  background-color: #23201C;
}

.ridge-cap::after {
  content: "";
  position: absolute;
  left: 44%;
  top: 8px;
  width: 12%;
  height: 14px;
  background-color: #23201C;
}

.ridge-cap-notch {
  position: absolute;
  right: 6%;
  top: 16px;
  width: 26%;
  height: 6px;
  background-color: #5A6B45;
}

.floorband {
  position: relative;
  border-top: 2px solid #23201C;
  padding: 12px 14px 14px;
}

.floor-one {
  background-color: #EAE6DC;
}

.floor-two {
  background-color: #E2DCCF;
}

.floor-three {
  background-color: #DAD3C4;
}

.vistawindows {
  display: flex;
  gap: 9px;
}

.windowbay {
  flex: 1 1 0;
  height: 58px;
  background-color: #44535C;
  border: 2px solid #2E3A42;
  position: relative;
}

.windowbay::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  margin-left: -1px;
  background-color: #EAE6DC;
}

.windowbay::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  background-color: #EAE6DC;
}

.vistawindows-tall .windowbay {
  height: 74px;
}

.terracedeck {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 12px;
}

.terracedeck .deckrail {
  flex: 1 1 0;
  height: 22px;
  border-top: 3px solid #5A6B45;
  border-left: 2px solid #5A6B45;
  border-right: 2px solid #5A6B45;
}

.deckpost {
  width: 5px;
  height: 22px;
  background-color: #5A6B45;
}

.shrubscreen {
  height: 24px;
  margin-top: 12px;
  background-color: #EAE6DC;
  background-image: repeating-linear-gradient(
    52deg,
    #5A6B45 0,
    #5A6B45 1px,
    #EAE6DC 1px,
    #EAE6DC 7px
  );
  border-top: 2px solid #23201C;
  border-bottom: 2px solid #23201C;
}

.stoneplinth {
  height: 26px;
  background-color: #44535C;
  border-top: 2px solid #23201C;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 14px;
  gap: 8px;
}

.plinthsun {
  width: 14px;
  height: 14px;
  border-radius: 14px 14px 0 0;
  background-color: #D89B5F;
}

.plinthbars {
  flex: 1 1 auto;
  height: 3px;
  background-color: #EAE6DC;
  max-width: 120px;
}

/* ============================================================
   MISSION / INTRO PANEL
   ============================================================ */

.missioncourse {
  background-color: #F4F1EC;
  padding: 54px 0 48px;
}

.sectionlabel {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5A6B45;
  margin-bottom: 12px;
}

.sectionlabel::before {
  content: "";
  width: 26px;
  height: 2px;
  background-color: #D89B5F;
}

.course-title {
  font-size: 33px;
  color: #23201C;
  margin-bottom: 14px;
}

.missiongrid {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.missiontext {
  flex: 1 1 58%;
  min-width: 300px;
}

.missionaside {
  flex: 1 1 34%;
  min-width: 270px;
  background-color: #EAE6DC;
  border: 1px solid #C9C2B4;
  border-top: 3px solid #5A6B45;
  padding: 24px 24px 20px;
}

.asideheading {
  font-size: 19px;
  color: #44535C;
  margin-bottom: 12px;
}

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

.factlist li {
  position: relative;
  padding: 9px 0 9px 20px;
  border-bottom: 1px dashed #C9C2B4;
  color: #23201C;
  font-size: 15px;
}

.factlist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 8px 8px 0 0;
  background-color: #D89B5F;
}

/* ============================================================
   SWITCHBACK COURSES
   ============================================================ */

.switchbackzone {
  background-color: #EAE6DC;
  border-top: 1px solid #C9C2B4;
  border-bottom: 1px solid #C9C2B4;
  padding: 22px 0 8px;
}

.zoneintro {
  padding: 22px 0 20px;
}

.switchrun {
  padding: 26px 0 30px;
}

.course-left .switchinner {
  margin-right: auto;
  max-width: 62%;
}

.course-right .switchinner {
  margin-left: auto;
  max-width: 54%;
}

.switchinner {
  position: relative;
  background-color: #EAE6DC;
  border: 1px solid #C9C2B4;
  padding: 26px 28px 24px;
}

.course-right .switchinner {
  background-color: #F4F1EC;
  border-left: 4px solid #5A6B45;
  padding-left: 34px;
}

.course-left .switchinner {
  border-left: 4px solid #44535C;
}

.trailpostnum {
  display: inline-block;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #F4F1EC;
  background-color: #44535C;
  padding: 5px 11px 4px;
  margin-bottom: 12px;
}

.course-heading {
  font-size: 24px;
  color: #5A6B45;
  margin-bottom: 10px;
}

.course-body {
  color: #23201C;
  font-size: 16px;
}

.course-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.switchrule {
  flex: 1 1 auto;
  height: 2px;
  background-color: #5A6B45;
}

.switchrule-rev {
  background-color: #44535C;
}

.hatchdivider {
  height: 14px;
  background-color: #F4F1EC;
  background-image: repeating-linear-gradient(
    38deg,
    #C9C2B4 0,
    #C9C2B4 1px,
    #F4F1EC 1px,
    #F4F1EC 9px
  );
  position: relative;
  border-top: 1px solid #D8D1C2;
  border-bottom: 1px solid #D8D1C2;
}

.hatchbend {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 8px 8px 0 0;
  background-color: #D89B5F;
}

/* ============================================================
   SUNCREST STRIP
   ============================================================ */

.suncrestband {
  background-color: #5A6B45;
  color: #F4F1EC;
  padding: 22px 0;
}

.suncrest-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.suncrest-text {
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: #F4F1EC;
  margin: 0;
}

.suncrest-glyph {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 18px 18px 0 0;
  background-color: #D89B5F;
}

/* ============================================================
   SUPPORT COURSES / SPEC PANEL (shared interior sections)
   ============================================================ */

.detailcourse {
  background-color: #F4F1EC;
  padding: 50px 0 46px;
}

.detailcourse-alt {
  background-color: #EAE6DC;
  border-top: 1px solid #C9C2B4;
  border-bottom: 1px solid #C9C2B4;
}

.coursegrid {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.coursegrid-main {
  flex: 1 1 60%;
  min-width: 300px;
}

.coursegrid-side {
  flex: 1 1 33%;
  min-width: 260px;
  background-color: #EAE6DC;
  border: 1px solid #C9C2B4;
  border-top: 3px solid #D89B5F;
  padding: 24px 24px 18px;
}

.detailcourse-alt .coursegrid-side {
  background-color: #F4F1EC;
}

.sideheading {
  font-size: 18px;
  color: #44535C;
  margin-bottom: 12px;
}

.sidepara {
  font-size: 15px;
  color: #23201C;
}

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

.bulletrail li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-bottom: 1px dashed #C9C2B4;
  color: #23201C;
  font-size: 15px;
}

.bulletrail li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 16px;
  width: 10px;
  height: 3px;
  background-color: #5A6B45;
}

.processsteps {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.processstep {
  flex: 1 1 30%;
  min-width: 240px;
  background-color: #EAE6DC;
  border: 1px solid #C9C2B4;
  border-top: 3px solid #5A6B45;
  padding: 20px 22px 16px;
}

.processstep-num {
  display: inline-block;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #F4F1EC;
  background-color: #5A6B45;
  padding: 4px 10px 3px;
  margin-bottom: 10px;
}

.processstep h4 {
  font-size: 17px;
  color: #23201C;
  margin-bottom: 8px;
}

.processstep p {
  font-size: 15px;
  color: #23201C;
  margin: 0;
}

/* ---------------- Accordion ---------------- */

.accordion {
  border-top: 1px solid #C9C2B4;
}

.accitem {
  border-bottom: 1px solid #C9C2B4;
}

.acctrigger {
  width: 100%;
  text-align: left;
  background-color: #EAE6DC;
  border: none;
  border-left: 4px solid #5A6B45;
  padding: 15px 18px;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 16px;
  color: #23201C;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.acctrigger:hover {
  background-color: #E0DACB;
}

.accmark {
  font-size: 18px;
  color: #5A6B45;
}

.accpanel {
  display: none;
  padding: 16px 18px 8px;
  background-color: #F4F1EC;
  font-size: 15px;
  color: #23201C;
}

.accpanel-open {
  display: block;
}

/* ---------------- Reveal ---------------- */
/* Without JavaScript every element stays fully visible. The hidden
   state is only applied once main.js marks the document as scripted,
   and it uses clip-path rather than opacity so no semi-transparent
   color is ever produced. */

.reveal-el {
  transition: transform 0.5s ease, clip-path 0.5s ease;
}

.js-enabled .reveal-el.reveal-hidden {
  transform: translateY(18px);
  clip-path: inset(0 0 100% 0);
}

/* ============================================================
   CTA BAND
   ============================================================ */

.ctaband {
  background-color: #44535C;
  color: #F4F1EC;
  padding: 46px 0;
}

.ctaband-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}

.cta-copy {
  flex: 1 1 60%;
  min-width: 290px;
}

.ctaband h2 {
  color: #F4F1EC;
  font-size: 27px;
  margin-bottom: 8px;
}

.ctaband p {
  color: #EAE6DC;
  font-size: 16px;
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-on-slate {
  display: inline-block;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 24px 12px;
  background-color: #5A6B45;
  color: #F4F1EC;
  border: 1px solid #D89B5F;
}

.btn-on-slate:hover {
  background-color: #45543A;
  color: #F4F1EC;
  text-decoration: none;
}

.btn-on-slate-ghost {
  background-color: #EAE6DC;
  color: #23201C;
  border: 1px solid #23201C;
}

.btn-on-slate-ghost:hover {
  background-color: #D8D1C2;
  color: #23201C;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contactcourse {
  background-color: #F4F1EC;
  padding: 48px 0 50px;
}

.formpanel {
  background-color: #EAE6DC;
  border: 1px solid #C9C2B4;
  border-left: 4px solid #5A6B45;
  padding: 26px 28px 22px;
}

.fieldrow {
  margin-bottom: 16px;
}

.fieldrow label {
  display: block;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #44535C;
  margin-bottom: 6px;
}

.fieldrow input,
.fieldrow textarea {
  width: 100%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  color: #23201C;
  background-color: #F4F1EC;
  border: 1px solid #C9C2B4;
  padding: 11px 13px;
}

.fieldrow input:focus,
.fieldrow textarea:focus {
  outline: 2px solid #5A6B45;
  outline-offset: 0;
}

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

.formstatus {
  margin-top: 14px;
  font-size: 15px;
  color: #44535C;
  border-left: 3px solid #D89B5F;
  padding-left: 12px;
}

.infoblock {
  background-color: #EAE6DC;
  border: 1px solid #C9C2B4;
  border-top: 3px solid #5A6B45;
  padding: 24px 24px 18px;
  margin-bottom: 22px;
}

.infoblock h3 {
  font-size: 19px;
  color: #23201C;
  margin-bottom: 10px;
}

.infoline {
  display: block;
  font-size: 16px;
  color: #23201C;
  margin-bottom: 8px;
}

.infoline strong {
  color: #44535C;
}

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

.hourslist li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed #C9C2B4;
  font-size: 15px;
  color: #23201C;
}

.faqblock {
  background-color: #F4F1EC;
  border-top: 1px solid #C9C2B4;
  padding: 44px 0 48px;
}

.faqitem {
  background-color: #EAE6DC;
  border: 1px solid #C9C2B4;
  border-left: 4px solid #D89B5F;
  padding: 20px 22px 14px;
  margin-bottom: 16px;
}

.faqitem h3 {
  font-size: 18px;
  color: #44535C;
  margin-bottom: 8px;
}

.faqitem p {
  font-size: 15px;
  color: #23201C;
  margin: 0;
}

/* ============================================================
   PLINTH FOOTER
   ============================================================ */

.plinthbase {
  background-color: #44535C;
  color: #F4F1EC;
  margin-top: 0;
}

.footcrest {
  height: 9px;
  background-color: #23201C;
  position: relative;
  overflow: hidden;
}

.footcrest::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 42%;
  height: 4px;
  background-color: #23201C;
}

.footcrest::after {
  content: "";
  position: absolute;
  left: 48%;
  top: 0;
  width: 10%;
  height: 5px;
  background-color: #5A6B45;
}

.footcrest-notcha {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30%;
  height: 5px;
  background-color: #23201C;
}

.footcrest-notchb {
  position: absolute;
  bottom: 0;
  left: 60%;
  width: 34%;
  height: 5px;
  background-color: #23201C;
}

.footupper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding: 42px 0 34px;
}

.footbrand {
  flex: 1 1 56%;
  min-width: 290px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.footglyph {
  flex: 0 0 74px;
  width: 74px;
  height: 78px;
  border: 2px solid #EAE6DC;
  position: relative;
  background-color: #36434B;
}

.footglyph-cap {
  height: 10px;
  background-color: #EAE6DC;
}

.footglyph-f1 {
  height: 18px;
  border-top: 2px solid #EAE6DC;
  background-color: #44535C;
}

.footglyph-f2 {
  height: 18px;
  border-top: 2px solid #EAE6DC;
  background-color: #4E5D66;
}

.footglyph-f3 {
  height: 18px;
  border-top: 2px solid #EAE6DC;
  background-color: #EAE6DC;
}

.footbrandtext h3 {
  color: #F4F1EC;
  font-size: 20px;
  margin-bottom: 8px;
}

.footbrandtext p {
  color: #E4DED2;
  font-size: 15px;
}

.footcols {
  flex: 1 1 38%;
  min-width: 250px;
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.footcol {
  min-width: 120px;
}

.footcol-wide {
  margin-top: 0;
}

.footcol-offset {
  margin-top: 26px;
}

.footcolhead {
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #D89B5F;
  margin-bottom: 12px;
}

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

.footlinks li {
  position: relative;
  padding: 7px 0 7px 15px;
}

.footlinks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 5px;
  height: 5px;
  border-radius: 4px;
  background-color: #EAE6DC;
}

.footlinks a {
  color: #EAE6DC;
  font-size: 15px;
}

.footlinks a:hover {
  color: #FFFFFF;
}

.plinthbar {
  background-color: #191713;
  padding: 20px 0;
  border-top: 2px solid #D89B5F;
}

.plinthbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.contactbits {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #E4DED2;
}

.contactbits span {
  color: #E4DED2;
}

.contactbits a {
  color: #F4F1EC;
}

.copyrightline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #CFC7B8;
}

.copyrightline .sunglyphdot {
  background-color: #D89B5F;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .hero-headline {
    font-size: 36px;
  }

  .course-left .switchinner,
  .course-right .switchinner {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .missiongrid,
  .coursegrid {
    gap: 24px;
  }
}

@media (max-width: 760px) {
  .navtoggle {
    display: inline-block;
  }

  .navset {
    display: none;
    width: 100%;
    gap: 8px;
  }

  .navset.navset-open {
    display: flex;
  }

  .summitrow {
    padding: 12px 20px;
  }

  .hero-headline {
    font-size: 31px;
  }

  .course-title {
    font-size: 26px;
  }

  .ctaband-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footupper {
    gap: 26px;
  }

  .plinthbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .hero-headline {
    font-size: 27px;
  }

  .summitrow {
    gap: 12px;
  }

  .brandsplate {
    width: 100%;
  }
}
