:root {
  --white: #ffffff;
  --ivory: #fbfaf8;
  --ivory-deep: #f5f1ec;
  --ink: #292725;
  --muted: #6f6b67;
  --rose: #b9515c;
  --rose-dark: #943d47;
  --rose-light: #f8e9ea;
  --sage: #778473;
  --sage-dark: #5e6b5b;
  --sage-light: #eef1ec;
  --gold: #c8a258;
  --line: #e9e4df;
  --shadow: 0 18px 55px rgba(68, 54, 45, 0.09);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --header-height: 94px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

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

figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: -5rem;
  left: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 0 0 10px 10px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: min(1400px, calc(100% - 6rem));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(5.5rem, 9vw, 9rem);
}

.eyebrow,
.section-kicker,
.card-kicker {
  margin: 0;
  color: var(--rose);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker {
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.98;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.section-heading.centered {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered > p {
  max-width: 620px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button i {
  font-size: 1.05rem;
}

.button-primary {
  background: var(--rose);
  color: var(--white);
}

.button-primary:hover {
  background: var(--rose-dark);
}

.button-secondary {
  border-color: rgba(185, 81, 92, 0.55);
  background: var(--white);
  color: var(--rose);
}

.button-secondary:hover {
  border-color: var(--rose);
  background: var(--rose-light);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: #403d39;
}

.text-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.25rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.text-link i,
.back-link i {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.text-link:hover i {
  transform: translateX(3px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 0 clamp(1.5rem, 4vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 5px 26px rgba(43, 39, 35, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand img {
  width: 200px;
  height: 68px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2.3vw, 2.7rem);
}

.desktop-nav a {
  position: relative;
  padding: 0.75rem 0;
  color: #44413e;
  font-size: 0.77rem;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 100% 0 0;
  height: 2px;
  background: var(--rose);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.instagram-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--rose);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  transition: background-color 180ms ease, transform 180ms ease;
}

.instagram-button:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
}

.instagram-button i {
  font-size: 1.05rem;
}

.menu-button,
.mobile-menu {
  display: none;
}

/* Hero */
.home-hero {
  padding-top: calc(var(--header-height) + clamp(1.5rem, 2vw, 2rem));
  background: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(600px, 1.35fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);
}

.hero-copy {
  padding-block: 2rem;
}

.hero-copy h1 {
  max-width: 610px;
  margin: 1.4rem 0 1.2rem;
  font-size: clamp(4rem, 4.6vw, 4.7rem);
  line-height: 0.91;
}

.faith-divider {
  width: min(260px, 70%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold);
}

.faith-divider span {
  height: 1px;
  background: var(--gold);
}

.faith-divider i {
  font-size: 1.15rem;
}

.hero-lead {
  max-width: 510px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-mosaic {
  height: 570px;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 2.08fr) minmax(190px, 1fr);
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hero-photo {
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--ivory-deep);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.hero-photo:hover img {
  transform: scale(1.025);
}

.hero-photo-main {
  grid-row: 1 / -1;
}

.hero-photo-main img {
  object-position: center center;
}

.hero-photo-small:first-of-type img {
  object-position: center 28%;
}

.hero-photo-wide img {
  object-position: center 42%;
}

.hero-event {
  min-height: 116px;
  display: grid;
  grid-template-columns: auto auto auto 1px 1fr auto;
  align-items: center;
  gap: clamp(1rem, 2.8vw, 2.6rem);
  margin-top: 1.25rem;
  padding: 1.25rem clamp(1.25rem, 3vw, 3rem);
  border: 1px solid rgba(200, 162, 88, 0.55);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.hero-event:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.hero-event-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose);
  font-size: 1.4rem;
}

.hero-event-label {
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
}

.hero-event strong {
  color: var(--rose);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero-event-divider {
  align-self: stretch;
  background: var(--line);
}

.hero-event-date {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-event-date i {
  color: var(--gold);
  font-size: 1.5rem;
}

.hero-event-arrow {
  color: var(--rose);
  font-size: 1.2rem;
}

/* About */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 10rem);
}

.about-photo {
  position: relative;
  padding: 0 0 2rem 2rem;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: 2rem 2rem 0 0;
  border: 1px solid rgba(200, 162, 88, 0.65);
  border-radius: var(--radius-md);
}

.about-photo img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 24%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.about-photo > span {
  position: absolute;
  right: 0;
  bottom: 0.7rem;
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(68, 54, 45, 0.13);
  color: var(--rose);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
}

.about-copy h2 {
  max-width: 760px;
}

.about-copy > p {
  max-width: 690px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.about-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.35;
}

.about-note {
  max-width: 650px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold);
  background: var(--ivory);
}

.about-note i {
  color: var(--rose);
  font-size: 1.35rem;
}

.about-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* Camps */
.camps {
  border-block: 1px solid var(--line);
  background: var(--ivory);
}

.camp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.camp-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.camp-card:hover {
  transform: translateY(-8px);
  border-color: rgba(185, 81, 92, 0.35);
  box-shadow: var(--shadow);
}

.camp-card-image {
  position: relative;
  display: block;
  height: 240px;
  overflow: hidden;
}

.camp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.camp-card:hover .camp-card-image img {
  transform: scale(1.045);
}

.camp-card-icon {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--rose);
  box-shadow: 0 8px 25px rgba(43, 39, 35, 0.18);
  font-size: 1.2rem;
}

.camp-card-body {
  padding: 1.5rem;
}

.camp-card-number {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.camp-card h3 {
  margin: 0;
  font-size: 1.85rem;
  line-height: 1.05;
}

.camp-card-body > p:not(.camp-card-number) {
  min-height: 8.1em;
  margin: 0.9rem 0 1.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

/* Quotes */
.quotes {
  background: var(--white);
}

.quote-shell {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.3fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ivory);
}

.quote-photo {
  overflow: hidden;
}

.quote-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.quote-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem);
}

.quote-content blockquote {
  min-height: 3.2em;
  margin-top: 1.2rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.6vw, 4.8rem);
  font-weight: 600;
  line-height: 1.02;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.quote-content blockquote.is-visible {
  opacity: 1;
  transform: none;
}

.quote-author {
  margin: 1.8rem 0 0;
  color: var(--muted);
  font-size: 0.77rem;
}

.quote-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.quote-controls > button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  transition: border-color 180ms ease, color 180ms ease;
}

.quote-controls > button:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.quote-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.quote-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cbc5bf;
  transition: width 180ms ease, background-color 180ms ease;
}

.quote-dots button.active {
  width: 25px;
  background: var(--rose);
}

/* Next camp */
.next-camp {
  background: var(--ivory);
}

.next-heading {
  max-width: 840px;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.next-heading h2 em {
  color: var(--rose);
  font-style: normal;
}

.next-heading > p:last-child {
  max-width: 620px;
  margin: 1.4rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.next-grid {
  display: grid;
  grid-template-columns: minmax(600px, 1.25fr) minmax(360px, 0.75fr);
  gap: 1.5rem;
}

.calendar-card,
.event-details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.calendar-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.calendar-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.calendar-title > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose);
  font-size: 1.25rem;
}

.calendar-title div {
  display: grid;
  gap: 0.2rem;
}

.calendar-title strong {
  font-family: var(--serif);
  font-size: 1.45rem;
}

.calendar-title span {
  color: var(--muted);
  font-size: 0.75rem;
}

.calendar-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-top: 1.7rem;
}

.calendar-month header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.calendar-month header strong {
  font-family: var(--serif);
  font-size: 1.3rem;
}

.calendar-month header span {
  color: var(--muted);
  font-size: 0.72rem;
}

.weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.3rem;
  text-align: center;
}

.weekdays {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
}

.calendar-grid > span {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.7rem;
}

.calendar-day.active {
  background: var(--rose);
  color: var(--white);
  font-weight: 700;
}

.event-details {
  padding: clamp(2rem, 4vw, 3.5rem);
}

.event-name {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.event-name span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-name strong {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 3rem;
}

.event-details dl {
  display: grid;
  gap: 1.2rem;
  padding-block: 1.5rem;
}

.event-details dl div {
  display: grid;
  gap: 0.35rem;
}

.event-details dt {
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-details dd {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.countdown-wrap {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--rose-light);
}

.countdown-wrap > p {
  margin: 0 0 0.9rem;
  color: var(--rose-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.countdown div {
  display: grid;
  justify-items: center;
  gap: 0.15rem;
}

.countdown strong {
  font-family: var(--serif);
  font-size: 1.75rem;
}

.countdown span {
  color: var(--muted);
  font-size: 0.58rem;
  text-transform: uppercase;
}

/* Registration */
.registration {
  background: var(--white);
}

.registration-grid {
  max-width: 1040px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-inline: auto;
}

.registration-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 430px;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 55px rgba(68, 54, 45, 0.06);
}

.registration-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 1.8rem;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose);
  font-size: 1.45rem;
}

.registration-icon.sage {
  background: var(--sage-light);
  color: var(--sage-dark);
}

.registration-card h3 {
  margin: 0.6rem 0 0;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1;
}

.registration-card > p:not(.card-kicker) {
  flex: 1;
  margin: 1.1rem 0 2rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.sage-button:not(.button-disabled) {
  background: var(--sage-dark);
}

.button-disabled,
.button-disabled:hover {
  cursor: not-allowed;
  transform: none;
  background: #d7d3cf;
  color: #77726d;
}

.registration-message {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

/* Instagram */
.instagram-section {
  border-top: 1px solid var(--line);
  background: var(--ivory);
}

.instagram-grid {
  display: grid;
  grid-template-columns: minmax(400px, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(4rem, 8vw, 9rem);
}

.instagram-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose);
  font-size: 1.5rem;
}

.instagram-copy h2 {
  max-width: 650px;
}

.instagram-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin: 1.4rem 0 2rem;
  color: var(--muted);
  line-height: 1.75;
}

.instagram-photo {
  position: relative;
}

.instagram-photo img {
  width: 100%;
  max-height: 610px;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.instagram-photo span {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 700;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr 0.7fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: 4.5rem;
}

.footer-brand img {
  width: 176px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  margin: 1rem 0 0;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-block,
.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.5;
}

.footer-block strong,
.footer-links strong,
.footer-social strong {
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 0.78rem;
}

.footer-links a,
.footer-social a {
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--rose);
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.69rem;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
}

/* Camp pages */
.camp-hero {
  padding-top: calc(var(--header-height) + 4.5rem);
}

.camp-hero-copy {
  padding-bottom: 3rem;
}

.back-link {
  margin-bottom: 4rem;
  color: var(--muted);
}

.camp-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.1rem;
}

.camp-title-row h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(4.3rem, 8vw, 8rem);
  line-height: 0.9;
}

.camp-title-row > span {
  flex: 0 0 auto;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose);
  font-size: 2rem;
}

.camp-lead {
  max-width: 680px;
  margin: 1.8rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.camp-hero-image {
  height: min(62vw, 680px);
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.camp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.camp-about-grid {
  display: grid;
  grid-template-columns: minmax(400px, 0.9fr) minmax(420px, 0.8fr);
  justify-content: space-between;
  gap: clamp(4rem, 10vw, 10rem);
}

.camp-about h2 {
  max-width: 670px;
}

.camp-about-copy p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.85;
}

.camp-gallery {
  border-top: 1px solid var(--line);
  background: var(--ivory);
}

.section-heading.compact {
  margin-bottom: 3rem;
}

.section-heading.compact h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}

.photo-item {
  position: relative;
  grid-column: span 5;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--ivory-deep);
}

.photo-item.photo-1,
.photo-item.photo-4 {
  grid-column: span 7;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.photo-item:hover img {
  transform: scale(1.035);
}

.photo-item span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
}

.gallery-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.2rem;
  border: 1px dashed #cfc8c1;
  border-radius: var(--radius-sm);
  color: var(--muted);
}

.gallery-note > i {
  color: var(--rose);
  font-size: 1.35rem;
}

.gallery-note strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.gallery-note p {
  margin: 0.4rem 0 0;
  font-size: 0.75rem;
  line-height: 1.6;
}

.gallery-note code {
  color: var(--rose-dark);
  font-size: 0.72rem;
}

.return-home {
  margin-top: 2rem;
}

.lightbox {
  width: min(1100px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  padding: 1rem;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 30px 100px rgba(20, 18, 16, 0.35);
}

.lightbox::backdrop {
  background: rgba(25, 23, 21, 0.82);
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox p {
  margin: 0.8rem 3.5rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 25px rgba(30, 27, 24, 0.2);
  font-size: 1.25rem;
}

@media (max-width: 1240px) {
  :root {
    --header-height: 82px;
  }

  .page-shell {
    width: min(1180px, calc(100% - 3rem));
  }

  .site-header {
    grid-template-columns: 190px 1fr auto;
    gap: 1rem;
    padding-inline: 1.5rem;
  }

  .brand img {
    width: 180px;
    height: 60px;
  }

  .desktop-nav {
    gap: 1.2rem;
  }

  .desktop-nav a {
    font-size: 0.7rem;
  }

  .instagram-button span {
    display: none;
  }

  .instagram-button {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .hero-grid {
    grid-template-columns: minmax(340px, 0.8fr) minmax(520px, 1.2fr);
    gap: 3rem;
  }

  .hero-mosaic {
    height: 510px;
  }

  .camp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .camp-card-body > p:not(.camp-card-number) {
    min-height: 5.2em;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .instagram-button {
    display: none;
  }

  .menu-button {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    font-size: 1.25rem;
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    inset: var(--header-height) 0 0;
    align-content: start;
    padding: 2rem 1.5rem;
    background: var(--white);
  }

  .mobile-menu:not([hidden]) {
    display: grid;
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-copy h1 {
    max-width: 760px;
  }

  .hero-mosaic {
    height: 620px;
  }

  .about-grid,
  .instagram-grid,
  .camp-about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 670px;
  }

  .about-copy {
    max-width: 780px;
  }

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

  .quote-shell {
    grid-template-columns: 0.75fr 1fr;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 74px;
  }

  .page-shell {
    width: calc(100% - 2rem);
  }

  .section-pad {
    padding-block: 5.3rem;
  }

  h2 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .site-header {
    min-height: var(--header-height);
    padding-inline: 1rem;
  }

  .brand img {
    width: 154px;
    height: 54px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .home-hero {
    padding-top: calc(var(--header-height) + 2.8rem);
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-copy {
    padding-block: 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.5rem, 17vw, 5.3rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-mosaic {
    height: 520px;
    grid-template-columns: 1.45fr 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .hero-photo-main {
    grid-row: 1 / -1;
  }

  .hero-photo-small:nth-of-type(3) {
    display: none;
  }

  .hero-event {
    grid-template-columns: auto 1fr auto;
    gap: 0.7rem 1rem;
    min-height: 0;
    padding: 1rem;
  }

  .hero-event-icon {
    width: 42px;
    height: 42px;
  }

  .hero-event-label {
    font-size: 1.1rem;
  }

  .hero-event strong {
    font-size: 2.6rem;
  }

  .hero-event-divider,
  .hero-event-arrow {
    display: none;
  }

  .hero-event-date {
    grid-column: 2 / -1;
    font-size: 0.9rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-grid,
  .instagram-grid {
    gap: 4rem;
  }

  .about-photo {
    padding: 0 0 1.4rem 1.2rem;
  }

  .about-photo > span {
    font-size: 0.95rem;
  }

  .camp-grid,
  .registration-grid {
    grid-template-columns: 1fr;
  }

  .camp-card-body > p:not(.camp-card-number) {
    min-height: 0;
  }

  .quote-shell {
    grid-template-columns: 1fr;
  }

  .quote-photo {
    height: 330px;
  }

  .quote-content {
    min-height: 480px;
    padding: 2.2rem 1.5rem;
  }

  .quote-content blockquote {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .calendar-pair {
    grid-template-columns: 1fr;
  }

  .calendar-card,
  .event-details {
    padding: 1.25rem;
  }

  .registration-card {
    min-height: 400px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-block: 3.5rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1.2rem;
  }

  .camp-hero {
    padding-top: calc(var(--header-height) + 2.5rem);
  }

  .back-link {
    margin-bottom: 2.5rem;
  }

  .camp-title-row {
    align-items: flex-start;
  }

  .camp-title-row h1 {
    font-size: clamp(3.7rem, 18vw, 5.3rem);
  }

  .camp-title-row > span {
    width: 58px;
    height: 58px;
    font-size: 1.4rem;
  }

  .camp-hero-image {
    min-height: 420px;
    height: 82vw;
  }

  .camp-about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 310px;
  }

  .photo-item,
  .photo-item.photo-1,
  .photo-item.photo-4 {
    grid-column: auto;
  }

  .gallery-note p {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 430px) {
  .hero-mosaic {
    height: 430px;
  }

  .hero-event-icon {
    display: none;
  }

  .hero-event {
    grid-template-columns: 1fr auto;
  }

  .hero-event-date {
    grid-column: 1 / -1;
  }

  .countdown {
    gap: 0.35rem;
  }

  .countdown strong {
    font-size: 1.45rem;
  }

  .photo-grid {
    grid-auto-rows: 260px;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
