:root {
  --deep-red: #b2141b;
  --holly-green: #1f4d2e;
  --midnight-green: #0d3020;
  --linen: #f9f4ed;
  --gold: #d7a447;
  --text: #1e1b18;
  --max-width: 1100px;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Assistant', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, #f4ede1 100%);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  cursor: url('cursor.cur'), auto;
}

body > * {
  position: relative;
  z-index: 1;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  background-size: 200px 200px;
  mix-blend-mode: screen;
}

body::before {
  background-image: radial-gradient(circle at 20px 40px, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.9) 2.5px, transparent 3.5px), radial-gradient(circle at 100px 140px, rgba(255, 255, 255, 0.8) 0, rgba(255, 255, 255, 0.8) 2px, transparent 3px), radial-gradient(circle at 160px 60px, rgba(255, 255, 255, 0.95) 0, rgba(255, 255, 255, 0.95) 3px, transparent 4px), radial-gradient(circle at 80px 180px, rgba(255, 255, 255, 0.85) 0, rgba(255, 255, 255, 0.85) 2px, transparent 3px);
  animation: snow-drift 15s linear infinite;
}

body::after {
  background-image: radial-gradient(circle at 60px 120px, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.9) 2.5px, transparent 3.5px), radial-gradient(circle at 140px 40px, rgba(255, 255, 255, 0.7) 0, rgba(255, 255, 255, 0.7) 2px, transparent 3px), radial-gradient(circle at 30px 170px, rgba(255, 255, 255, 0.8) 0, rgba(255, 255, 255, 0.8) 2.5px, transparent 3.5px), radial-gradient(circle at 180px 100px, rgba(255, 255, 255, 0.75) 0, rgba(255, 255, 255, 0.75) 2px, transparent 3px);
  animation: snow-drift 20s linear infinite reverse;
}

@keyframes snow-drift {
  0% {
    transform: translateY(-10%) translateX(-2%);
  }
  100% {
    transform: translateY(10%) translateX(2%);
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Mountains of Christmas', cursive;
  color: var(--deep-red);
  margin: 0 0 0.85rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

a {
  color: inherit;
}

a:hover,
a:focus {
  color: var(--deep-red);
}

a,
button,
.btn,
.lightbox-trigger {
  cursor: url('cursor.cur'), pointer;
}

.wrap {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-family: 'Mountains of Christmas', cursive;
  box-shadow: 0 6px 18px rgba(178, 20, 27, 0.08);
  overflow: visible;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
  background-size: 200px 200px;
  mix-blend-mode: screen;
  background-image: radial-gradient(circle at 20px 40px, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.9) 2.5px, transparent 3.5px), radial-gradient(circle at 100px 140px, rgba(255, 255, 255, 0.8) 0, rgba(255, 255, 255, 0.8) 2px, transparent 3px), radial-gradient(circle at 160px 60px, rgba(255, 255, 255, 0.95) 0, rgba(255, 255, 255, 0.95) 3px, transparent 4px);
  animation: snow-drift 15s linear infinite;
}

.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 36px;
  background: repeating-linear-gradient(90deg, #d7a447 0 18px, #b2141b 18px 36px);
  border-radius: 0 0 50% 50%;
  transform: translateY(8px);
  box-shadow: 0 12px 24px rgba(178, 20, 27, 0.15);
  animation: twinkle 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes twinkle {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.25);
  }
}

@keyframes confetti-drift {
  0% {
    background-position: 0 0, 120px -80px, -60px 40px;
  }
  50% {
    background-position: 0 120px, 120px 40px, -60px 160px;
  }
  100% {
    background-position: 0 240px, 120px 160px, -60px 280px;
  }
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  max-height: clamp(72px, 10vw, 96px);
  width: auto;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.site-nav a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0;
  line-height: 1;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  border-color: var(--gold);
}

.site-nav .cta {
  color: #fff;
  background: var(--deep-red);
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  border: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-bottom: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 70vh;
  background: radial-gradient(circle at 20% 20%, rgba(215, 164, 71, 0.45), transparent 55%), var(--midnight-green);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero-countdown {
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: min(7vw, 4rem);
  display: flex;
  align-items: center;
  align-self: center;
  margin-top: 0;
}

.hero-countdown .countdown {
  margin: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 54, 33, 0.82) 20%, rgba(15, 54, 33, 0.45) 60%, rgba(0, 0, 0, 0.2));
  pointer-events: none;
  z-index: 1;
}

.carousel--hero .carousel-window,
.carousel--hero .carousel-track,
.carousel--hero .carousel-slide {
  height: 100%;
}

.carousel--hero .carousel-slide {
  background: transparent;
}

.carousel--hero .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 0;
  box-shadow: none;
}

.carousel--hero .carousel-slide img[src="cjkringlephillypops.JPG"] {
  object-position: center 85%;
}

.carousel--hero .carousel-dots {
  position: absolute;
  left: 50%;
  bottom: clamp(0.75rem, 3vw, 1.5rem);
  transform: translateX(-50%);
  z-index: 2;
}

.carousel-caption {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  margin: min(12vw, 6rem);
  max-width: 520px;
}

.eyebrow {
  font-family: 'Mountains of Christmas', cursive;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(2.75rem, 5vw, 4rem);
  margin: 0 0 1rem;
  color: #fff;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
}

.page-hero {
  background: linear-gradient(140deg, rgba(13, 48, 32, 0.95), rgba(178, 20, 27, 0.88));
  color: #fff;
  padding: clamp(4rem, 12vw, 6.5rem) 0;
}

.page-hero .wrap {
  display: grid;
  gap: 1.25rem;
  text-align: center;
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.page-hero h1 {
  margin: 0;
  color: #fff;
}

.page-hero p {
  margin: 0 auto;
  max-width: 640px;
}

.page-hero .btn {
  justify-self: center;
}

.resume-hero {
  background: linear-gradient(140deg, rgba(178, 20, 27, 0.9), rgba(13, 48, 32, 0.85));
}

.press-hero {
  background: linear-gradient(140deg, rgba(31, 77, 46, 0.92), rgba(215, 164, 71, 0.85));
  color: var(--text);
}

.press-hero h1 {
  color: var(--deep-red);
}

.press-hero .eyebrow {
  color: rgba(30, 27, 24, 0.6);
}

.gallery-hero {
  background: linear-gradient(145deg, rgba(178, 20, 27, 0.85), rgba(31, 77, 46, 0.9));
}

.gallery-hero h1 {
  color: #fff;
}

.gallery-hero p {
  color: rgba(255, 255, 255, 0.85);
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--midnight-green);
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 20%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-120%) rotate(25deg);
  transition: transform 0.5s ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(220%) rotate(25deg);
}

.btn:focus-visible {
  outline: 2px solid rgba(215, 164, 71, 0.8);
  outline-offset: 3px;
}

.countdown {
  position: relative;
  margin: 1.5rem 0 2rem;
  padding: 1.1rem 1.4rem 1.35rem;
  background:
    radial-gradient(circle at 10% -20%, rgba(215, 164, 71, 0.4), transparent 60%),
    radial-gradient(circle at 90% 120%, rgba(178, 20, 27, 0.4), transparent 65%),
    rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 18px 28px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 340px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.countdown::before,
.countdown::after {
  content: '';
  position: absolute;
  inset: -14px -18px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0 2px, transparent 3px);
  background-size: 120px 120px;
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
  animation: confetti-drift 22s linear infinite;
}

.countdown::after {
  inset: -18px -22px;
  background-image: radial-gradient(circle, rgba(215, 164, 71, 0.45) 0 2px, transparent 3px);
  background-size: 160px 160px;
  animation-direction: reverse;
}

.countdown__label {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff7e6;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.countdown__label::before,
.countdown__label::after {
  content: '✶';
  font-size: 0.95rem;
  color: rgba(215, 164, 71, 0.9);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.45));
}

.countdown__ticker {
  display: grid;
  grid-template-columns: repeat(4, minmax(40px, 1fr));
  gap: 0.75rem;
}

.countdown__segment {
  display: grid;
  gap: 0.25rem;
  justify-items: center;
  padding: 0.6rem 0.4rem;
  background: linear-gradient(160deg, rgba(13, 48, 32, 0.78), rgba(178, 20, 27, 0.72));
  border-radius: 16px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.countdown__segment::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 14px;
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.countdown__segment strong {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Mountains of Christmas', cursive;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}

.countdown__segment small {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
  color: var(--deep-red);
}

.section h2 {
  font-family: 'Mountains of Christmas', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  color: var(--deep-red);
  text-align: center;
}

.about {
  background:
    linear-gradient(135deg, rgba(215, 164, 71, 0.16), rgba(31, 77, 46, 0.12))
    , repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.45) 0 18px, rgba(249, 244, 237, 0.45) 18px 36px);
}

.about .wrap {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.4fr);
}

.about-copy h2 {
  text-align: left;
}

.about-copy p {
  font-size: 1.05rem;
}

.highlights {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.highlights li::before {
  content: '✶';
  margin-right: 0.75rem;
  color: var(--gold);
  font-size: 1rem;
}

.about-image {
  justify-self: stretch;
}

.about-image img {
  width: 100%;
  max-width: 640px;
  border-radius: 18px;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.18);
}

.schedule {
  background:
    linear-gradient(180deg, rgba(13, 48, 32, 0.08), rgba(249, 244, 237, 0.65))
    , repeating-linear-gradient(-45deg, rgba(215, 164, 71, 0.14) 0 28px, rgba(255, 255, 255, 0.6) 28px 56px);
}

.schedule .wrap {
  width: min(1400px, 98vw);
}

.schedule__header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2rem;
}

.schedule__header p {
  margin: 0;
  color: rgba(30, 27, 24, 0.8);
  font-size: 1.05rem;
}

.schedule__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
}

.schedule-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(13, 48, 32, 0.08);
  display: grid;
  gap: 1rem;
  align-content: start;
}

.schedule-card__month {
  font-family: 'Mountains of Christmas', cursive;
  font-size: 1.5rem;
  color: var(--holly-green);
  letter-spacing: 0.04em;
}

.schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.event {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  background: linear-gradient(135deg, rgba(13, 48, 32, 0.06), rgba(215, 164, 71, 0.08));
  border-radius: 12px;
  padding: 0.7rem;
  border: 1px solid rgba(13, 48, 32, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.event-date {
  min-width: 70px;
  text-align: center;
  background: var(--deep-red);
  color: #fff;
  border-radius: 10px;
  padding: 0.4rem 0.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 18px rgba(178, 20, 27, 0.15);
}

.event-body h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--midnight-green);
}

.event-meta {
  margin: 0.2rem 0 0;
  color: rgba(30, 27, 24, 0.85);
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
}

.event-details {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  display: grid;
  gap: 0.25rem;
}

.event-details li {
  margin: 0;
}

.event-details strong {
  color: var(--midnight-green);
  display: block;
}

.services {
  background:
    linear-gradient(160deg, rgba(178, 20, 27, 0.12), rgba(13, 48, 32, 0.08))
    , repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.6) 0 12px, rgba(255, 255, 255, 0.45) 12px 24px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '✶';
  position: absolute;
  top: -12px;
  right: 16px;
  font-size: 3rem;
  color: rgba(215, 164, 71, 0.15);
  pointer-events: none;
}

.service-card h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--deep-red);
}

.service-card p {
  margin: 0;
  font-size: 1rem;
}

.gallery-preview {
  background:
    linear-gradient(120deg, rgba(249, 244, 237, 0.85), rgba(215, 164, 71, 0.35))
    , repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0 24px, rgba(255, 255, 255, 0.35) 24px 48px);
  position: relative;
  overflow: hidden;
}

.gallery-preview__grid {
  margin-top: clamp(1.25rem, 3.5vw, 2rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(0.75rem, 3vw, 1.5rem);
}

.gallery-preview__grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 24px 32px rgba(0, 0, 0, 0.16);
}

.gallery-preview__grid img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-preview__grid figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gallery-preview__grid figure:hover img,
.gallery-preview__grid figure:focus-within img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.gallery-preview__grid figure:hover::after,
.gallery-preview__grid figure:focus-within::after {
  opacity: 1;
}

.gallery-preview__cta {
  margin-top: clamp(1.25rem, 3vw, 2rem);
  text-align: center;
}

.gallery-preview__link {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--midnight-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.85);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.gallery-preview__link::after {
  content: '›';
  font-size: 1.1rem;
  color: var(--deep-red);
}

.gallery-preview__link:hover,
.gallery-preview__link:focus-visible {
  background: rgba(215, 164, 71, 0.18);
  border-color: rgba(215, 164, 71, 0.45);
  transform: translateY(-1px);
}

.gallery {
  background: var(--linen);
}

.gallery-grid {
  display: grid;
  gap: 1.25rem;
}

.gallery-grid--feature {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery-grid--feature img {
  height: 260px;
}

.gallery-grid--archive {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  display: block;
  height: 220px;
  object-fit: cover;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-grid figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.gallery-grid figure:hover::after,
.gallery-grid figure:focus-within::after {
  opacity: 1;
}

.gallery-grid figure:hover img,
.gallery-grid figure:focus-within img {
  transform: scale(1.04);
  filter: brightness(1.05);
}


.gallery-carousel {
  position: relative;
}

.carousel-window {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-track {
  position: relative;
}

.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.4s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(340px, 58vw, 600px);
  background: #fff;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.carousel-slide.is-active img {
  transform: scale(1.01);
}

.carousel-btn {
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.carousel-btn.prev {
  left: clamp(0.25rem, 2vw, 0.9rem);
}

.carousel-btn.next {
  right: clamp(0.25rem, 2vw, 0.9rem);
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  background: rgba(178, 20, 27, 0.8);
  transform: translateY(-50%) scale(1.05);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active {
  background: var(--deep-red);
  transform: scale(1.2);
}

.carousel-dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .carousel-slide {
    height: clamp(280px, 70vw, 460px);
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
  }
}

@media (max-width: 560px) {
  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .carousel-btn.prev {
    left: 0.35rem;
  }

  .carousel-btn.next {
    right: 0.35rem;
  }
}

@media (max-width: 1100px) {
  .hero {
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: clamp(3rem, 10vw, 6rem) 0;
  }

  .hero-copy {
    margin: 12vw 6vw 4vw;
    text-align: center;
    max-width: 640px;
  }

  .hero-countdown {
    margin: 0;
    justify-content: center;
    padding-bottom: 1.75rem;
    align-self: center;
    margin-top: 0;
  }

  .countdown {
    max-width: none;
    align-items: stretch;
    padding: 0.8rem 1rem 0.9rem;
    gap: 0.35rem;
  }

  .countdown__ticker {
    grid-template-columns: repeat(2, minmax(72px, 1fr));
  }

}

.lightbox-trigger {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 2000;
}

.lightbox::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  pointer-events: none;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
}

.lightbox__content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 960px);
  max-height: 90vh;
  display: grid;
  gap: 0;
  background: #fff;
  border-radius: 18px;
  padding: clamp(1rem, 3vw, 1.5rem);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.lightbox__image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 999px;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  background: rgba(178, 20, 27, 0.85);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .lightbox {
    padding: 8vw;
  }

  .lightbox__content {
    max-height: 80vh;
  }
}

.resources {
  background:
    linear-gradient(140deg, rgba(249, 244, 237, 0.78), rgba(31, 77, 46, 0.18))
    , repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0 20px, rgba(235, 227, 210, 0.45) 20px 40px);
  position: relative;
  overflow: hidden;
}

.gallery-preview .wrap,
.resources .wrap {
  position: relative;
  z-index: 1;
}

.gallery-preview::after,
.resources::after {
  content: '';
  position: absolute;
  inset: -20% -10%;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.7) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(215, 164, 71, 0.45) 0 2.5px, transparent 3.5px),
    radial-gradient(circle, rgba(255, 255, 255, 0.6) 0 1.5px, transparent 2.5px);
  background-size: 220px 220px, 320px 320px, 260px 260px;
  background-position: 0 0, 120px -80px, -60px 40px;
  animation: confetti-drift 28s linear infinite;
  opacity: 0.6;
  pointer-events: none;
}

.contact {
  background:
    linear-gradient(150deg, rgba(249, 244, 237, 0.9), rgba(13, 48, 32, 0.22))
    , repeating-linear-gradient(-60deg, rgba(255, 255, 255, 0.55) 0 22px, rgba(215, 164, 71, 0.15) 22px 44px);
}

.resources h2 {
  color: var(--holly-green);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.resource-grid article {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
  text-align: left;
}

.resource-grid .btn {
  justify-self: start;
}

.press-notes {
  background: var(--linen);
}

.press-notes .resume-list {
  max-width: 760px;
  margin: 0 auto;
}

.press-notes .resume-list li {
  background: rgba(255, 255, 255, 0.75);
  padding: 0.75rem 1rem 0.75rem 1.5rem;
  border-radius: 12px;
}

.cta-section {
  background: linear-gradient(150deg, rgba(31, 77, 46, 0.92), rgba(178, 20, 27, 0.88));
  color: #fff;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
}

.cta-section p {
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.resume {
  background:
    linear-gradient(180deg, rgba(249, 244, 237, 0.5), rgba(255, 255, 255, 0.9)),
    repeating-linear-gradient(45deg, rgba(178, 20, 27, 0.03) 0 20px, rgba(31, 77, 46, 0.03) 20px 40px);
  position: relative;
  overflow: hidden;
}

.resume::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  background-size: 200px 200px;
  background-image:
    radial-gradient(circle at 20px 40px, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.9) 2.5px, transparent 3.5px),
    radial-gradient(circle at 100px 140px, rgba(215, 164, 71, 0.8) 0, rgba(215, 164, 71, 0.8) 2px, transparent 3px),
    radial-gradient(circle at 160px 60px, rgba(255, 255, 255, 0.95) 0, rgba(255, 255, 255, 0.95) 3px, transparent 4px);
  animation: snow-drift 20s linear infinite;
}

.resume-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.resume-hero {
  margin-bottom: 3rem;
  border-radius: 32px;
}

.resume-hero-card {
  background:
    linear-gradient(135deg, var(--deep-red), var(--holly-green)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.1) 18px 36px);
  color: #fff;
  padding: 3rem 2.5rem;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), inset 0 -3px 0 rgba(215, 164, 71, 0.6);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(215, 164, 71, 0.3);
}

.resume-hero-card::before {
  content: '❄';
  position: absolute;
  top: 10%;
  left: 10%;
  font-size: 2rem;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

.resume-hero-card::after {
  content: '❄';
  position: absolute;
  bottom: 15%;
  right: 15%;
  font-size: 3rem;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.resume-hero-card h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 0.5rem;
  color: #fff;
  position: relative;
  z-index: 1;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(215, 164, 71, 0.5),
    0 0 40px rgba(215, 164, 71, 0.3);
  letter-spacing: 0.05em;
}

.resume-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 2rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resume-contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

.contact-icon {
  font-size: 1.1rem;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: var(--gold);
}

.resume-profile-box {
  background:
    linear-gradient(135deg, rgba(215, 164, 71, 0.15), rgba(178, 20, 27, 0.1)),
    repeating-linear-gradient(-45deg, transparent 0 12px, rgba(255, 255, 255, 0.5) 12px 24px);
  padding: 2rem 2.5rem;
  border-radius: 16px;
  border-left: 5px solid var(--gold);
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  margin-bottom: 3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: visible;
}

.resume-profile-box::before {
  content: '🎄';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  opacity: 0.2;
}

.resume-profile-box h3 {
  font-size: 1.75rem;
  color: var(--deep-red);
  margin: 0 0 1rem;
  position: relative;
}

.resume-profile-box h3::after {
  content: '✶';
  margin-left: 0.5rem;
  color: var(--gold);
  font-size: 1.5rem;
}

.resume-profile-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
  color: var(--text);
}

.resume-section {
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--holly-green);
  margin: 0 0 2rem;
  text-align: left;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title.centered {
  text-align: center;
}

.section-title.centered::after {
  left: 50%;
  transform: translateX(-50%);
}

.resume-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.resume-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--gold);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
}

.resume-card::before {
  content: '✶';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 3rem;
  color: rgba(215, 164, 71, 0.1);
  pointer-events: none;
}

.resume-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15), 0 0 30px rgba(215, 164, 71, 0.2);
}

.resume-card:hover::before {
  color: rgba(215, 164, 71, 0.25);
  transform: rotate(180deg);
  transition: all 0.5s ease;
}

.resume-card.featured {
  border-top: 4px solid var(--deep-red);
  background:
    linear-gradient(135deg, #fff, rgba(178, 20, 27, 0.03)),
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(178, 20, 27, 0.02) 30px 60px);
}

.resume-card.featured::before {
  content: '🎅';
  font-size: 2.5rem;
  top: 1rem;
  right: 1rem;
}

.card-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.resume-card h4 {
  font-size: 1.35rem;
  color: var(--deep-red);
  margin: 0;
  line-height: 1.3;
}

.year-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--holly-green), var(--midnight-green));
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  align-self: flex-start;
}

.resume-card p {
  margin: 0;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.8);
  flex-grow: 1;
}

.awards-section {
  margin-bottom: 3rem;
  padding: 3rem 2rem;
  background:
    linear-gradient(135deg, rgba(31, 77, 46, 0.08), rgba(215, 164, 71, 0.08)),
    repeating-linear-gradient(60deg, transparent 0 15px, rgba(255, 255, 255, 0.4) 15px 30px);
  border-radius: 20px;
  border: 3px solid rgba(178, 20, 27, 0.15);
  position: relative;
}

.awards-section::before {
  content: '🎁';
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 2rem;
  opacity: 0.2;
}

.awards-section::after {
  content: '🌟';
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  opacity: 0.2;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.award-card {
  background:
    linear-gradient(135deg, #fff, rgba(215, 164, 71, 0.05)),
    repeating-linear-gradient(45deg, transparent 0 10px, rgba(215, 164, 71, 0.03) 10px 20px);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--gold);
  position: relative;
  overflow: visible;
}

.award-card::before {
  content: '⭐';
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 1.5rem;
  opacity: 0.15;
}

.award-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 20px rgba(215, 164, 71, 0.3);
  border-color: var(--gold);
}

.award-card:hover::before {
  opacity: 0.25;
  transform: rotate(180deg);
  transition: all 0.5s ease;
}

.award-card.highlight {
  border: 2px solid var(--gold);
  background:
    linear-gradient(135deg, #fff, rgba(215, 164, 71, 0.05)),
    repeating-linear-gradient(45deg, transparent 0 10px, rgba(215, 164, 71, 0.03) 10px 20px);
}

.award-card.highlight::before {
  content: '⭐';
  opacity: 0.15;
}

.award-year {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: 'Mountains of Christmas', cursive;
  color: var(--deep-red);
  margin-bottom: 0.5rem;
}

.award-card p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
  color: var(--text);
}

.award-card strong {
  color: var(--holly-green);
  display: block;
  margin-top: 0.25rem;
}

.resume-download {
  margin-top: 4rem;
  text-align: center;
  padding: 3rem 2rem;
  background:
    linear-gradient(135deg, rgba(178, 20, 27, 0.08), rgba(31, 77, 46, 0.08)),
    repeating-linear-gradient(90deg, rgba(215, 164, 71, 0.05) 0 18px, rgba(178, 20, 27, 0.05) 18px 36px);
  border-radius: 20px;
  border: 3px solid rgba(215, 164, 71, 0.3);
  position: relative;
}

.resume-download::before {
  content: '🎄';
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  font-size: 3rem;
  opacity: 0.15;
}

.resume-download::after {
  content: '🎄';
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  font-size: 3rem;
  opacity: 0.15;
}

.resume-download .btn {
  font-size: 1.15rem;
  padding: 1.15rem 3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.resume-download .btn::before {
  content: '📄 ';
}

@media (max-width: 768px) {
  .resume-grid {
    grid-template-columns: 1fr;
  }

  .awards-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .resume-contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.resume-frame {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.resume-object {
  display: block;
  width: min(100%, 900px);
  height: min(80vh, 960px);
  margin: 0 auto;
  border: none;
  border-radius: 12px;
}

.resume-fallback {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  text-align: center;
}

.resume-fallback a {
  font-weight: 600;
}


.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.press-grid article {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.press-grid img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}

.contact .wrap {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.contact-copy h2 {
  text-align: left;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.contact-info a {
  font-weight: 600;
  text-decoration: none;
}

.contact-iframe {
  width: 100%;
  max-width: 900px;
  height: 790px;
  border: none;
  display: block;
  background: #ffffff00;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
}

.contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  font: inherit;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--deep-red);
  box-shadow: 0 0 0 3px rgba(178, 20, 27, 0.15);
  outline: none;
}

.contact-form button {
  margin-top: 0.5rem;
  background: var(--deep-red);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover,
.contact-form button:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.form-note {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.55);
}

.site-footer {
  background: var(--midnight-green);
  color: rgba(255, 255, 255, 0.8);
  padding: 1.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-size: 200px 200px;
  mix-blend-mode: screen;
  background-image: radial-gradient(circle at 20px 40px, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.9) 2.5px, transparent 3.5px), radial-gradient(circle at 100px 140px, rgba(255, 255, 255, 0.8) 0, rgba(255, 255, 255, 0.8) 2px, transparent 3px), radial-gradient(circle at 160px 60px, rgba(255, 255, 255, 0.95) 0, rgba(255, 255, 255, 0.95) 3px, transparent 4px);
  animation: snow-drift 15s linear infinite;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.site-footer p {
  margin: 0;
}

.back-to-top {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--gold);
  text-decoration: none;
}

.back-to-top:hover,
.back-to-top:focus {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .site-nav {
    gap: 0.75rem;
    font-size: 0.8rem;
  }

  .hero {
    min-height: 60vh;
    flex-direction: column;
    gap: 2rem;
  }

  .hero-copy {
    margin: 16vw 6vw 6vw;
    text-align: center;
  }

  .hero-countdown {
    margin: 0;
    justify-content: center;
    padding-bottom: 1.5rem;
    align-self: center;
    margin-top: 0;
  }

  .countdown {
    max-width: 280px;
    align-items: stretch;
    padding: 0.6rem 0.8rem 0.7rem;
    gap: 0.3rem;
  }

  .countdown__ticker {
    grid-template-columns: repeat(2, minmax(60px, 1fr));
    gap: 0.5rem;
  }

  .countdown__segment {
    padding: 0.4rem 0.3rem;
  }

  .countdown__segment strong {
    font-size: 1.2rem;
  }

  .countdown__segment small {
    font-size: 0.55rem;
  }

  .countdown__label {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .countdown::before,
  .countdown::after {
    inset: -10px -12px;
  }

  .about .wrap {
    grid-template-columns: 1fr;
  }

  .about-image {
    justify-self: center;
  }

  .resume-object {
    height: min(70vh, 720px);
  }

  .gallery-grid--feature {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .gallery-grid--feature img {
    height: 200px;
  }

  .press-grid article {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact .wrap {
    gap: 2.5rem;
  }
}

@media (max-width: 560px) {
  .site-header .wrap {
    flex-direction: column;
    gap: 0.75rem;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo {
    max-height: 72px;
  }

  .hero-countdown {
    width: 100%;
    justify-content: center;
    padding-bottom: 1.75rem;
    align-self: center;
    margin-top: 0;
  }

  .countdown {
    max-width: 250px;
    padding: 0.5rem 0.7rem 0.6rem;
    gap: 0.25rem;
  }

  .countdown__ticker {
    grid-template-columns: repeat(2, minmax(52px, 1fr));
    gap: 0.4rem;
  }

  .countdown__segment {
    padding: 0.35rem 0.25rem;
  }

  .countdown__segment strong {
    font-size: 1.1rem;
  }

  .countdown__segment small {
    font-size: 0.5rem;
  }

  .countdown__label {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
  }

  .countdown::before,
  .countdown::after {
    inset: -8px -10px;
  }


  .resume-object {
    height: 65vh;
  }

  .gallery-grid img {
    height: 180px;
  }

  .gallery-cta {
    margin-top: 1.5rem;
  }

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

  .page-hero .wrap {
    text-align: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .about .wrap {
    text-align: center;
  }

  .contact-copy h2,
  .section h2 {
    text-align: center;
  }
}
.hero-countdown + .carousel-caption {
  margin-top: 1rem;
}
