:root {
  --navy-950: #020d19;
  --navy-900: #051c34;
  --navy-800: #082a49;
  --navy-700: #0b3a5b;
  --gold: #e2a42d;
  --gold-bright: #f6c956;
  --cream: #faf4e3;
  --cream-deep: #eee1c3;
  --red: #981a16;
  --red-bright: #bc2720;
  --green: #063b31;
  --ink: #071727;
  --white: #fffdf7;
  --shadow: 0 24px 70px rgba(0, 8, 18, 0.34);
  --shell: min(1480px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--navy-950);
  font-family: "Trebuchet MS", "Avenir Next", Arial, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--gold-bright);
  border-radius: 4px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topline {
  position: absolute;
  z-index: 50;
  top: 0;
  width: 100%;
  height: 36px;
  color: #f4d37e;
  background: rgba(1, 22, 22, 0.93);
  border-bottom: 1px solid rgba(226, 164, 45, 0.26);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.topline__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 10px;
}

.topline__star {
  color: var(--gold-bright);
  font-size: 0.65rem;
}

.site-header {
  position: absolute;
  z-index: 40;
  top: 36px;
  width: 100%;
  border-bottom: 1px solid rgba(226, 164, 45, 0.24);
  background: linear-gradient(180deg, rgba(2, 13, 25, 0.92), rgba(2, 13, 25, 0.35));
  backdrop-filter: blur(7px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr auto;
  align-items: center;
  min-height: 108px;
  gap: clamp(20px, 3vw, 52px);
}

.brand {
  display: inline-block;
  width: min(100%, 340px);
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 2.5vw, 44px);
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 24px;
  color: var(--white);
  background: linear-gradient(180deg, var(--red-bright), #78100d);
  border: 1px solid var(--gold-bright);
  border-radius: 4px;
  box-shadow: inset 0 0 0 3px rgba(3, 23, 39, 0.18), 0 10px 24px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  transition: transform 150ms ease, filter 150ms ease;
}

.button:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.button--small {
  min-height: 48px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: var(--navy-950);
}

.hero__slides,
.hero__slide {
  position: absolute;
  inset: 0;
}

.hero__slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 850ms ease, visibility 850ms ease;
}

.hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.hero__slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  transform: scale(1.025);
  transition: transform 8s ease-out;
}

.hero__slide.is-active > img {
  transform: scale(1.085);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 13, 25, 0.86) 0%, rgba(2, 13, 25, 0.58) 34%, rgba(2, 13, 25, 0.1) 65%, rgba(2, 13, 25, 0.14) 100%),
    linear-gradient(180deg, rgba(2, 13, 25, 0.4) 0%, transparent 42%, rgba(2, 13, 25, 0.74) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 174px;
  padding-bottom: 136px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-bright);
  text-transform: uppercase;
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.24em;
}

.hero h1,
.hero h2 {
  max-width: 850px;
  margin: 0;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 6vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 4px 0 rgba(3, 20, 33, 0.8), 0 14px 35px rgba(0, 0, 0, 0.6);
}

.hero__content > p:last-child {
  max-width: 610px;
  margin: 26px 0 0;
  color: #fff9e9;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

.hero__controls {
  position: absolute;
  z-index: 4;
  bottom: 94px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(250, 244, 227, 0.32);
  border-radius: 999px;
  background: rgba(2, 13, 25, 0.66);
  backdrop-filter: blur(9px);
  transform: translateX(-50%);
}

.hero__arrow,
.hero__pause,
.hero__dot {
  color: var(--cream);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero__arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
}

.hero__arrow:hover,
.hero__pause:hover {
  color: var(--gold-bright);
}

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

.hero__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid var(--cream);
  border-radius: 50%;
}

.hero__dot.is-active {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow: 0 0 12px rgba(246, 201, 86, 0.8);
}

.hero__pause {
  min-width: 54px;
  padding: 6px 9px;
  border-left: 1px solid rgba(250, 244, 227, 0.24);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.visit-ribbon {
  position: relative;
  z-index: 10;
  margin-top: -64px;
}

.visit-ribbon .shell {
  padding: 0 24px 10px;
  background: linear-gradient(160deg, #062d44, var(--navy-950));
  border: 2px solid var(--gold-bright);
  border-radius: 28px;
  box-shadow: var(--shadow), inset 0 0 30px rgba(246, 201, 86, 0.05);
}

.visit-ribbon__heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: -22px auto 4px;
}

.visit-ribbon__heading span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.visit-ribbon__heading span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.visit-ribbon__heading h2 {
  margin: 0;
  padding: 4px 20px;
  color: var(--cream);
  background: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 14px 0 8px;
}

.visit-card {
  display: flex;
  align-items: center;
  min-height: 102px;
  gap: 18px;
  padding: 10px clamp(18px, 3vw, 44px);
}

.visit-card + .visit-card {
  border-left: 1px solid rgba(226, 164, 45, 0.65);
}

.visit-card__icon {
  display: grid;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--gold-bright);
  border: 1px solid rgba(226, 164, 45, 0.54);
  border-radius: 50%;
  background: rgba(1, 20, 27, 0.42);
  font-family: Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.visit-card--location {
  justify-content: space-between;
}

.visit-card h3 {
  margin: 0 0 4px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit-card p {
  margin: 0;
  color: #e7dcc4;
  font-size: 0.92rem;
}

.volunteer {
  position: relative;
  margin-top: -60px;
  padding: 150px 0 90px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 50%, rgba(226, 164, 45, 0.12), transparent 27%),
    linear-gradient(135deg, var(--cream) 0%, #fffaf0 48%, var(--cream-deep) 100%);
  overflow: hidden;
}

.volunteer::before,
.volunteer::after {
  position: absolute;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--gold);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}

.volunteer::before {
  top: 116px;
  left: 8%;
}

.volunteer::after {
  right: 10%;
  bottom: 90px;
}

.volunteer__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(440px, 1.15fr);
  align-items: center;
  gap: clamp(48px, 8vw, 130px);
}

.volunteer__art {
  position: relative;
  display: grid;
  width: min(100%, 450px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
  color: var(--gold-bright);
  background:
    radial-gradient(circle at center, rgba(11, 58, 63, 0.35), transparent 58%),
    var(--green);
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: inset 0 0 0 12px var(--green), inset 0 0 0 13px rgba(226, 164, 45, 0.4), var(--shadow);
}

.volunteer__heart {
  font-family: Georgia, serif;
  font-size: clamp(7rem, 14vw, 11rem);
  line-height: 1;
  text-shadow: 0 0 28px rgba(246, 201, 86, 0.25);
  transform: translateY(-5%);
}

.volunteer__hands {
  position: absolute;
  bottom: 21%;
  font-family: Georgia, serif;
  font-size: clamp(5rem, 10vw, 8rem);
  transform: rotate(180deg) scaleX(1.25);
}

.volunteer__spark {
  position: absolute;
  color: var(--gold-bright);
}

.volunteer__spark--one {
  top: 19%;
  left: 18%;
  font-size: 1.8rem;
}

.volunteer__spark--two {
  top: 29%;
  right: 17%;
  font-size: 1.1rem;
}

.eyebrow--dark {
  color: #8e5a00;
}

.volunteer__copy h2 {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.volunteer__copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: #314151;
  font-size: clamp(1.04rem, 1.45vw, 1.25rem);
  line-height: 1.75;
}

.volunteer__note {
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: 560px;
  gap: 16px;
  margin-top: 30px;
  padding: 16px 20px;
  color: var(--cream);
  background: var(--navy-900);
  border-left: 4px solid var(--gold);
  border-radius: 3px 10px 10px 3px;
  box-shadow: 0 14px 30px rgba(5, 28, 52, 0.18);
}

.volunteer__note > span {
  color: var(--gold-bright);
  font-size: 1.45rem;
}

.volunteer__note p {
  margin: 0;
}

.site-footer {
  position: relative;
  color: #e9dfca;
  background:
    radial-gradient(circle at 80% 50%, rgba(11, 58, 91, 0.5), transparent 35%),
    var(--navy-950);
  border-top: 2px solid var(--gold);
  overflow: hidden;
}

.site-footer__main {
  position: relative;
  display: grid;
  grid-template-columns: 330px minmax(480px, 1fr) minmax(260px, 0.7fr);
  align-items: center;
  min-height: 290px;
  gap: 44px;
  padding-block: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-brand img {
  width: 136px;
  height: 136px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.35));
}

.footer-brand p {
  margin: 0;
  color: #f1e6ce;
  font-family: Georgia, serif;
  font-size: 0.98rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.footer-links > div {
  display: flex;
  min-height: 130px;
  flex-direction: column;
  gap: 8px;
  padding: 2px 30px;
  border-left: 1px solid rgba(226, 164, 45, 0.55);
}

.footer-links h2 {
  margin: 0 0 6px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: #e9dfca;
  font-size: 0.85rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-scene {
  position: relative;
  height: 160px;
  align-self: end;
  color: var(--gold);
}

.footer-scene__star {
  position: absolute;
  top: 4px;
  right: 20%;
  font-size: 1.6rem;
}

.footer-scene__tree {
  position: absolute;
  right: 24px;
  bottom: 35px;
  color: var(--gold);
  font-size: 4rem;
  transform: scaleX(0.8);
}

.footer-scene__road {
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 100%;
  height: 70px;
  border-bottom: 3px solid var(--gold);
  border-radius: 0 0 70% 10%;
  transform: skewY(-6deg);
}

.footer-scene__road::after {
  position: absolute;
  right: 18%;
  bottom: -14px;
  width: 58%;
  height: 2px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--gold) 0 28px, transparent 28px 45px);
  transform: rotate(-2deg);
}

.footer-scene__car {
  position: absolute;
  right: 45%;
  bottom: 14px;
  color: var(--red-bright);
  font-size: 3.5rem;
  text-shadow: 0 0 12px rgba(188, 39, 32, 0.55);
}

.site-footer__bottom {
  border-top: 1px solid rgba(226, 164, 45, 0.52);
  background: rgba(3, 19, 35, 0.86);
}

.site-footer__bottom .shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 17px;
  color: #bdb7aa;
  font-size: 0.78rem;
}

@media (max-width: 1180px) {
  .site-header__inner {
    grid-template-columns: minmax(210px, 290px) 1fr auto;
    gap: 20px;
  }

  .site-nav {
    gap: 20px;
  }

  .site-nav a {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
  }

  .site-header .button {
    display: none;
  }

  .visit-card {
    padding-inline: 22px;
  }

  .site-footer__main {
    grid-template-columns: 280px 1fr;
  }

  .footer-scene {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .site-header__inner {
    grid-template-columns: minmax(210px, 300px) auto;
    min-height: 94px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 10px;
    padding: 10px 12px;
    color: var(--cream);
    border: 1px solid rgba(226, 164, 45, 0.58);
    border-radius: 5px;
    background: rgba(5, 28, 52, 0.82);
    cursor: pointer;
  }

  .nav-toggle__label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .nav-toggle__lines,
  .nav-toggle__lines::before,
  .nav-toggle__lines::after {
    display: block;
    width: 22px;
    height: 2px;
    content: "";
    background: currentColor;
    transition: transform 180ms ease;
  }

  .nav-toggle__lines {
    position: relative;
  }

  .nav-toggle__lines::before {
    position: absolute;
    top: -7px;
  }

  .nav-toggle__lines::after {
    position: absolute;
    top: 7px;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__lines {
    background: transparent;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 60;
    top: 130px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 24px;
    background: rgba(2, 13, 25, 0.98);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 12px;
    border-bottom: 1px solid rgba(226, 164, 45, 0.22);
    text-align: center;
  }

  .hero {
    min-height: 830px;
  }

  .hero__slide > img {
    object-position: 58% 66%;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(2, 13, 25, 0.8) 0%, rgba(2, 13, 25, 0.35) 70%, rgba(2, 13, 25, 0.18) 100%),
      linear-gradient(180deg, rgba(2, 13, 25, 0.54) 0%, transparent 42%, rgba(2, 13, 25, 0.84) 100%);
  }

  .hero__content {
    justify-content: flex-start;
    padding-top: 240px;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(3.1rem, 9vw, 5rem);
  }

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

  .visit-card + .visit-card {
    border-top: 1px solid rgba(226, 164, 45, 0.45);
    border-left: 0;
  }

  .visit-card--location {
    justify-content: flex-start;
  }

  .visit-card--location > div:first-child {
    flex: 1;
  }

  .volunteer {
    padding-top: 130px;
  }

  .volunteer__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .volunteer__art {
    width: min(76vw, 380px);
  }

  .volunteer__copy {
    text-align: center;
  }

  .volunteer__copy > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .volunteer__note {
    margin-inline: auto;
    text-align: left;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-links > div:first-child {
    border-left: 0;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .topline {
    font-size: 0.67rem;
  }

  .topline__inner {
    justify-content: center;
  }

  .site-header__inner {
    grid-template-columns: minmax(180px, 245px) auto;
  }

  .nav-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
  }

  .site-nav {
    top: 130px;
  }

  .hero {
    min-height: 760px;
  }

  .hero__slide > img {
    object-position: 62% 70%;
  }

  .hero__content {
    padding-top: 220px;
    padding-bottom: 160px;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
    line-height: 0.98;
  }

  .hero__content > p:last-child {
    max-width: 94%;
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero__controls {
    bottom: 82px;
    gap: 8px;
  }

  .hero__pause {
    min-width: 48px;
  }

  .visit-ribbon {
    margin-top: -52px;
  }

  .visit-ribbon .shell {
    padding-inline: 14px;
    border-radius: 20px;
  }

  .visit-ribbon__heading {
    gap: 8px;
  }

  .visit-ribbon__heading h2 {
    padding-inline: 10px;
    font-size: 1.15rem;
  }

  .visit-card {
    min-height: 92px;
    padding-inline: 12px;
  }

  .visit-card__icon {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
    font-size: 1.45rem;
  }

  .visit-card h3 {
    font-size: 0.98rem;
  }

  .visit-card p {
    font-size: 0.82rem;
  }

  .volunteer__copy h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .footer-brand {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-links > div,
  .footer-links > div:first-child {
    min-height: auto;
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(226, 164, 45, 0.35);
    border-left: 0;
    text-align: center;
  }

  .site-footer__bottom .shell {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero__slide > img,
  .hero__slide.is-active > img {
    transform: none;
  }
}
