@charset "UTF-8";
/* Each section is exactly one visible viewport */
.content-section {
  position: relative;
  width: 100%; /* NOT 100vw */
  height: 100dvh; /* use 100vh if you want; dvh tracks visible viewport */
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
}

.content-section .content-container {
  width: min(100% - 2 * var(--gutter), 1200px); /* or 70rem–80rem */
  z-index: inherit;
  margin-inline: auto;
  display: flex;
  flex-direction: row;
  flex: 1 0 0;
}

/* No padding anywhere inside if you want “perfectly” zero */
.content-center {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  place-items: center;
  text-align: center;
}

/* Down arrow pinned to bottom-right of the section */
.down-arrow {
  position: absolute;
  z-index: 2;
  right: calc(50% + env(safe-area-inset-right));
  bottom: calc(4rem + env(safe-area-inset-bottom));
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid currentColor;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  -webkit-tap-highlight-color: transparent;
}

/* Chevron */
.down-arrow > span {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
}

.down-arrow:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}

.down-arrow:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .down-arrow {
    display: none;
  }
}
.story-section,
.story-section-landing {
  position: relative;
  z-index: 0; /* establishes a predictable stacking context */
  isolation: isolate; /* prevents pseudo-elements from slipping behind */
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  /* background is rendered on ::after (the moving layer) */
  background: none;
  --parallax: 328px;
  --parallax-y: 0px;
  --overlay: 0.38;
  --pad: clamp(46px, 3vw, 90px);
  --edge-gap: clamp(150px, 6vw, 256px);
  --radius: 16px;
  --text: #fff;
}

/* video layer */
.story-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* background layer (keeps photo filling the element via cover + overscan) */
.story-section::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Provide a safe default AND use your inline value if present */
  background-image: var(--bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
  z-index: 0;
}

/* overlay for readability */
.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--overlay));
  pointer-events: none;
  z-index: 1;
}

.backblur {
  position: relative;
  z-index: 0;
}

.backblur::before {
  content: "";
  position: absolute;
  inset: -24px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(9px);
  mask-image: radial-gradient(farthest-side, black 70%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

/* ===== content panel that can be placed in any corner ===== */
.story-content {
  position: absolute;
  z-index: 2;
  color: var(--text);
  max-width: min(1200px, 94vw);
  border-radius: var(--radius);
  padding: 2rem;
}

/* corner placement modifiers */
.story-center .story-content {
  margin: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1200px, 100% - 2 * var(--edge-gap));
  padding: var(--pad); /* internal spacing instead */
  text-align: center;
}

.story-center .story-header {
  align-items: center;
}

.story-center .story-columns {
  justify-items: stretch;
  text-align: center;
}

/* optional: constrain column width when centered */
.story-center .story-columns p {
  max-width: none;
  font-size: clamp(1.1rem, 4.5vw, 1.5rem);
  font-weight: lighter;
}

.corner-tl .story-content {
  top: var(--edge-gap);
  left: var(--edge-gap);
}

.corner-tr .story-content {
  top: var(--edge-gap);
  right: var(--edge-gap);
}

.corner-bl .story-content {
  bottom: var(--edge-gap);
  left: var(--edge-gap);
}

.corner-br .story-content {
  bottom: var(--edge-gap);
  right: var(--edge-gap);
}

/* ===== header / subheader ===== */
.story-header h1 {
  margin: 0;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: lighter;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.story-header .subhead {
  margin: 0.65rem 0 0;
  font-size: clamp(1.8rem, 1.8vw, 2.3rem);
  line-height: 1.4;
  opacity: 0.95;
}

/* ===== 3-column text grid ===== */
.story-columns {
  margin-top: clamp(14px, 2vw, 22px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: clamp(3rem, 4vw, 6rem);
}

.story-columns > * {
  width: 100%;
  min-width: 0;
}

.story-columns.cols-1 {
  grid-template-columns: 1fr;
}

.story-columns.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-columns.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-columns p {
  margin: 0;
  font-size: clamp(1.1rem, 4.5vw, 1.5rem);
  font-weight: lighter;
  line-height: 1.55;
  opacity: 0.95;
}

#intro {
  background-color: #daa438; /* olive clay */
}

#student1 {
  background-color: #8a5a44; /* warm umber */
}

#student2 {
  background-color: #5f7a6a; /* muted eucalyptus */
}

#student3 {
  background-color: #a67c52; /* sunbaked sand */
}

#student4 {
  background-color: #4f6b8a; /* weathered slate */
}

#student5 {
  background-color: #7d6a5a; /* dry stone */
}

/* ===== responsiveness ===== */
@media (max-width: 900px) {
  .story-section {
    --edge-gap: clamp(12px, 4vw, 24px);
  }
  .story-center .story-content {
    width: calc(100% - 2 * var(--edge-gap));
  }
  .story-columns {
    grid-template-columns: 1fr;
  }
  .story-content {
    max-width: 92vw;
  }
  .story-columns.cols-2,
  .story-columns.cols-3 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .corner-tl .story-content,
  .corner-tr .story-content,
  .corner-bl .story-content,
  .corner-br .story-content {
    left: 0;
    right: auto;
    bottom: 0;
    top: auto;
  }
  /* ===== 3-column text grid ===== */
  .story-columns {
    gap: 1rem;
  }
  /* ===== header / subheader ===== */
  .story-header h1 {
    font-size: 2rem;
  }
  .story-header .subhead {
    font-size: 1rem;
  }
}
/* Custom audio player layout:
   - Left: large play/pause button
   - Under play: volume slider
   - Right: track scrubber (fills remaining width)
*/
.audio-player {
  /* Theme tokens (override per instance if needed) */
  --ap-bg: rgba(255, 255, 255, 0.14);
  --ap-border: rgba(255, 255, 255, 0.22);
  --ap-fg: rgba(255, 255, 255, 0.92);
  --ap-fg-dim: rgba(255, 255, 255, 0.65);
  --ap-focus: rgba(255, 255, 255, 0.7);
  --ap-btn: 3.25rem;
  --ap-gap: 1rem;
  --ap-radius: 0.9rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto;
  gap: var(--ap-gap);
  align-items: center;
  padding: 0.9rem 1rem;
  margin-top: 2rem;
  background: var(--ap-bg);
  border: 1px solid var(--ap-border);
  border-radius: var(--ap-radius);
  /* left column wrapper */
  /* play/pause button */
  /* right side (scrubber + time/labels if you add them) */
  /* Range styling (shared) */
  /* volume slider (under play) */
  /* scrubber (right side) */
  /* optional labels (time / title), if you add them */
}
.audio-player .audio-player__left {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.audio-player__toggle {
  width: var(--ap-btn);
  height: var(--ap-btn);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--ap-border);
  color: var(--ap-fg);
  cursor: pointer;
  user-select: none;
  /* icon base (use pseudo-elements so you can toggle state with data-state) */
  position: relative;
  /* PLAY icon (triangle) default */
  /* PAUSE icon when playing */
}
.audio-player__toggle:focus-visible {
  outline: 2px solid var(--ap-focus);
  outline-offset: 2px;
}
.audio-player__toggle:active {
  transform: translateY(1px);
}
.audio-player__toggle::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 0.55rem solid transparent;
  border-bottom: 0.55rem solid transparent;
  border-left: 0.9rem solid currentColor;
  margin-left: 0.12rem;
}
.audio-player__toggle:hover {
  background: rgba(255, 255, 255, 0.5);
}
.audio-player__toggle[data-state=playing]::before {
  content: "";
  width: 0.9rem;
  height: 1.15rem;
  margin-left: 0;
  border: 0;
  background: linear-gradient(currentColor, currentColor) left/0.28rem 100% no-repeat, linear-gradient(currentColor, currentColor) right/0.28rem 100% no-repeat;
}
.audio-player__right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}
.audio-player__range {
  -webkit-appearance: none;
  appearance: none;
  width: 50%;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  outline: none;
  /* WebKit track/thumb */
  /* Firefox track/thumb */
}
.audio-player__range:focus-visible {
  outline: 2px solid var(--ap-focus);
  outline-offset: 3px;
  border-radius: 999px;
}
.audio-player__range::-webkit-slider-runnable-track {
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}
.audio-player__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  margin-top: -0.3rem;
  background: var(--ap-fg);
  border: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.audio-player__range::-moz-range-track {
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}
.audio-player__range::-moz-range-thumb {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: var(--ap-fg);
  border: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.audio-player__volume {
  width: calc(var(--ap-btn) + 0.5rem);
  opacity: 0.95;
  /* slightly smaller thumb for volume */
}
.audio-player__volume.audio-player__range {
  height: 0.32rem;
}
.audio-player__volume.audio-player__range::-webkit-slider-thumb {
  width: 0.82rem;
  height: 0.82rem;
  margin-top: -0.25rem;
}
.audio-player__volume.audio-player__range::-moz-range-thumb {
  width: 0.82rem;
  height: 0.82rem;
}
.audio-player__scrub {
  min-width: 10rem;
}
.audio-player__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ap-fg-dim);
  font-size: 0.9rem;
  line-height: 1.2;
}
.audio-player__meta .audio-player__title {
  color: var(--ap-fg);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1;
}
.audio-player__meta .audio-player__time {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.audio-player .audio-player__scrub {
  appearance: none;
  width: 80%;
  height: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  position: relative;
}
.audio-player .audio-player__scrub::-webkit-slider-thumb {
  appearance: none;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  margin-top: -0.8rem;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.audio-player .audio-player__scrub::-moz-range-thumb {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.audio-player .audio-player__scrub::-ms-thumb {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.audio-player__volume-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
  cursor: pointer;
}
.audio-player__volume-wrapper::before {
  content: "";
  position: absolute;
  bottom: -75%;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.253);
  transition: height 0.3s ease, border-radius 0.3s ease;
  z-index: 0;
}
.audio-player__volume-wrapper:hover::before {
  background: rgba(255, 255, 255, 0.308);
}
.audio-player__volume-wrapper.active::before {
  height: 10rem;
  border-radius: 1.25rem;
}
.audio-player__volume-wrapper .audio-player__volume-slider {
  position: absolute;
  bottom: 5rem;
  left: 80%;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: bottom center;
  width: 6rem;
  height: 1rem;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.2s ease;
}
.audio-player__volume-wrapper.active .audio-player__volume-slider {
  opacity: 1;
  pointer-events: auto;
}

.audio-player__speaker {
  position: relative;
  z-index: 2;
  width: 1rem;
  height: 1rem;
  background: url("../resources/icons/speaker.svg") center center no-repeat;
  background-size: contain;
  border: none;
  cursor: pointer;
  padding: 0;
}

.audio-player__time {
  margin-left: 8px;
  min-width: 64px;
  margin-left: 2rem;
  font-variant-numeric: tabular-nums;
  font-size: 1.1rem;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 600px) {
  .audio-player__time {
    display: none;
    margin-left: 0;
  }
  .audio-player .audio-player__scrub {
    width: 55%;
  }
}
@media (max-width: 600px) and (max-width: 500px) {
  .audio-player {
    padding: 0.25rem;
    margin-top: 0;
  }
}
/* container */
.region-card-section {
  display: flex;
  margin-top: 5rem;
  min-width: 100%;
  min-height: 20rem;
  gap: 1rem;
}

/* cards */
.region-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  border: 1px solid #fff;
  transition: all ease 0.3s;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.0901960784);
}
.region-card:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.2117647059);
  transform: scale(1.05);
}

/* custom corner radii */
.region-card:first-child {
  border-radius: 5rem 0 0 5rem;
}

.region-card:last-child {
  border-radius: 0 5rem 5rem 0;
}

@media (max-width: 1300px) {
  .region-card-section {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .region-card {
    font-size: 0.45rem;
    min-height: 6rem;
    flex: 0 0 calc(33.333% - 0.666rem);
  }
  .region-card:first-child {
    border-radius: 3rem 0 0 0;
  }
  .region-card:nth-child(2) {
    border-radius: 0 3rem 0 0;
  }
  .region-card:nth-child(5) {
    border-radius: 0 0 0 3rem;
  }
  .region-card:last-child {
    border-radius: 0 0 3rem 0;
  }
}
.top-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
  /* hidden state */
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 420ms ease, transform 420ms ease;
  /* blur + tint */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(5px);
  /* fallback for browsers without backdrop-filter */
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .top-nav {
    background: rgba(0, 0, 0, 0.6);
  }
}

.top-nav.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.top-nav__inner {
  width: min(100% - 2 * var(--gutter), 1200px);
  margin-inline: auto;
  padding: 12px 0;
}

.top-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.top-nav__list a {
  display: inline-block;
  padding: 8px 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
}

.top-nav__list a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.top-nav__list a:hover {
  color: black;
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 800px) {
  .top-nav__list {
    gap: 10px;
  }
  .top-nav__list a {
    font-size: 0.6rem;
    padding: 0.2rem;
  }
}
/* Standalone quote component */
.quote-block {
  --qb-border: currentColor;
  --qb-bg: rgba(0, 0, 0, 0.035);
  --qb-radius: 10px;
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: var(--qb-bg);
  border-left: 3px solid var(--qb-border);
  border-radius: var(--qb-radius);
  font-style: italic;
  line-height: 1.6;
  /* Keep contrast conservative; inherit surrounding color */
  color: inherit;
  /* Quote mark accent */
  position: relative;
  /* Quote content wrapper (optional) */
  /* Attribution */
  /* Tighter on small screens */
}
.quote-block::before {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  content: "“";
  position: absolute;
  top: -2.5rem;
  left: 0.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  opacity: 0.17;
  font-size: clamp(12rem, 3vw, 18rem);
  pointer-events: none;
}
.quote-block::after {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  content: "”";
  position: absolute;
  bottom: -90%;
  right: 0.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  opacity: 0.2;
  font-size: clamp(16rem, 3vw, 22rem);
  pointer-events: none;
}
.quote-block__text {
  margin: 0;
  padding-left: 0.25rem; /* avoids colliding with the quote mark */
}
.quote-block__cite {
  display: block;
  margin-top: 0.6rem;
  font-style: normal;
  font-size: 0.95em;
  opacity: 0.78;
}
.quote-block__cite::before {
  content: "— ";
  opacity: 0.9;
}
@media (max-width: 480px) {
  .quote-block {
    padding: 0.9rem 1rem;
  }
  .quote-block::before {
    left: 0.6rem;
  }
}

:root {
  --gutter: clamp(16px, 4vw, 64px);
}

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #424242;
  color: rgba(255, 255, 255, 0.8980392157);
  font-family: "Montserrat", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.header-logo {
  margin-bottom: 3rem;
  width: 150px;
  height: auto;
}

.section-intro {
  background: #6f5f3e; /* olive clay */
}

.section-1 {
  background: #8a5a44; /* warm umber */
}

.section-2 {
  background: #5f7a6a; /* muted eucalyptus */
}

.section-3 {
  background: #a67c52; /* sunbaked sand */
}

.section-4 {
  background: #4f6b8a; /* weathered slate */
}

.section-5 {
  background: #7d6a5a; /* dry stone */
}

@media (max-width: 600px) {
  .header-logo {
    margin-bottom: 2rem;
    max-width: 100px;
    height: auto;
  }
}/*# sourceMappingURL=style.css.map */