:root {
  --dep-ink: #25231e;
  --dep-muted: #6b675e;
  --dep-paper: #f5f0e6;
  --dep-paper-deep: #e8dfce;
  --dep-gold: #b7924c;
  --dep-gold-dark: #73561d;
  --dep-green: #2e4438;
  --dep-green-deep: #14231b;
  --dep-clay: #9a5845;
  --dep-night: #0d110e;
  --dep-line: rgba(66, 58, 43, 0.18);
}

html { scroll-behavior: smooth; }

.dep-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(720px, 94svh, 970px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--dep-night);
}

.dep-hero__image,
.dep-hero__veil { position: absolute; inset: 0; pointer-events: none; }

.dep-hero__image {
  z-index: -3;
  background-image: var(--dep-hero-image);
  background-position: center 54%;
  background-size: cover;
  transform: scale(1.025);
  animation: depHeroReveal 1.2s ease-out both;
}

.dep-hero__veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 8, 6, 0.96) 0%, rgba(5, 8, 6, 0.82) 42%, rgba(5, 8, 6, 0.18) 75%, rgba(5, 8, 6, 0.42) 100%),
    linear-gradient(180deg, rgba(5, 8, 6, 0.44), rgba(5, 8, 6, 0.06) 40%, rgba(5, 8, 6, 0.94));
}

.dep-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(7, 11, 8, 0.88));
}

.dep-hero__inner { padding-top: clamp(8rem, 17vh, 12rem); padding-bottom: clamp(2rem, 5vh, 4rem); }

.dep-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(3rem, 8vh, 6rem);
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dep-breadcrumb a { color: inherit; text-decoration: none; }
.dep-breadcrumb a:hover { color: #e4c783; }
.dep-breadcrumb i { color: #d1ad62; font-size: 0.6rem; }
.dep-hero__copy { max-width: 1040px; }

.dep-eyebrow,
.dep-kicker {
  margin: 0 0 1rem;
  color: var(--dep-gold-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dep-eyebrow { display: flex; align-items: center; gap: 0.7rem; color: #e4c77f; }
.dep-eyebrow span { width: 34px; height: 1px; background: currentColor; }

.dep-hero h1 {
  max-width: 1120px;
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.dep-hero__lead {
  max-width: 790px;
  margin: 1.55rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.75;
}

.dep-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.8rem; }

.dep-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.78rem 1.15rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.dep-button--gold { color: #15140f; background: #d3b46d; border-color: #d3b46d; }
.dep-button--ghost { background: rgba(10, 13, 10, 0.2); backdrop-filter: blur(8px); }
.dep-button:hover { color: #15140f; background: #e2c984; border-color: #e2c984; transform: translateY(-1px); }

.dep-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(2.7rem, 6vh, 4.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.19);
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
}

.dep-snapshot > div { display: flex; align-items: center; gap: 0.9rem; min-width: 0; padding: 1.15rem 1.35rem; }
.dep-snapshot > div + div { border-left: 1px solid rgba(255, 255, 255, 0.19); }
.dep-snapshot i { flex: 0 0 auto; color: #e1bf70; font-size: 1.2rem; }
.dep-snapshot span { color: rgba(255, 255, 255, 0.63); font-size: 0.78rem; line-height: 1.45; }
.dep-snapshot strong { display: block; margin-bottom: 0.15rem; color: #fff; font-size: 0.87rem; }

.dep-section-nav {
  position: sticky;
  top: var(--dep-nav-offset, 0px);
  z-index: 20;
  color: #fff;
  background: rgba(15, 18, 14, 0.95);
  border-bottom: 1px solid rgba(201, 170, 100, 0.2);
  backdrop-filter: blur(14px);
  transition: top 220ms ease;
}

.dep-section-nav .container { display: flex; gap: 0.35rem; overflow-x: auto; scrollbar-width: none; }
.dep-section-nav .container::-webkit-scrollbar { display: none; }

.dep-section-nav a {
  flex: 0 0 auto;
  position: relative;
  padding: 1rem 0.82rem;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.dep-section-nav a::after {
  content: "";
  position: absolute;
  right: 0.82rem;
  bottom: 0;
  left: 0.82rem;
  height: 2px;
  background: #d0ad63;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.dep-section-nav a:hover,
.dep-section-nav a.is-active { color: #fff; }
.dep-section-nav a.is-active::after { transform: scaleX(1); }

.dep-main {
  overflow: clip;
  padding: clamp(2rem, 4vw, 4rem) 0;
  color: var(--dep-ink);
  background:
    radial-gradient(circle at 100% 8%, rgba(185, 147, 79, 0.12), transparent 28rem),
    var(--dep-paper);
}

#departure-list,
#how-groups-work,
#seasonal-windows,
#group-fit,
#departure-faq { scroll-margin-top: calc(5.5rem + var(--dep-nav-offset, 0px)); }

.dep-status {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  padding: 1.1rem 0;
  border-top: 1px solid var(--dep-line);
  border-bottom: 1px solid var(--dep-line);
}

.dep-status > i { color: var(--dep-gold-dark); font-size: 1.35rem; }
.dep-status--confirmed > i { color: var(--dep-green); }
.dep-status strong { color: var(--dep-ink); font-size: 0.78rem; }
.dep-status p { margin: 0.18rem 0 0; color: var(--dep-muted); font-size: 0.75rem; line-height: 1.55; }
.dep-status a { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--dep-gold-dark); font-size: 0.76rem; font-weight: 900; text-decoration: none; white-space: nowrap; }

.dep-list-section,
.dep-process,
.dep-fit,
.dep-faq { padding-bottom: clamp(5rem, 10vw, 9rem); }

.dep-section-heading { max-width: 930px; margin-bottom: clamp(2.3rem, 5vw, 4.5rem); }
.dep-section-heading h2,
.dep-seasons h2,
.dep-cta h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 4.5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 1.04;
  text-wrap: balance;
}

.dep-section-heading > p:last-child { max-width: 720px; margin: 1.1rem 0 0; color: var(--dep-muted); line-height: 1.75; }
.dep-section-heading--split { max-width: none; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr); align-items: end; gap: 2rem 5rem; }
.dep-section-heading--split > p:last-child { margin: 0; }

.dep-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--dep-line);
  border-bottom: 1px solid var(--dep-line);
}

.dep-filters { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.dep-filters button {
  padding: 0.54rem 0.8rem;
  color: var(--dep-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 850;
}
.dep-filters button:hover,
.dep-filters button.is-active { color: var(--dep-ink); background: var(--dep-paper-deep); border-color: var(--dep-line); }
.dep-tools > p { margin: 0; color: var(--dep-muted); font-size: 0.74rem; font-weight: 750; white-space: nowrap; }

.dep-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.4rem); }

.dep-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  color: #f7f4ed;
  background: #171a16;
  border: 1px solid rgba(36, 32, 24, 0.18);
  border-radius: 1.15rem;
  box-shadow: 0 20px 60px rgba(46, 37, 24, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.dep-card:hover { transform: translateY(-3px); box-shadow: 0 26px 70px rgba(43, 35, 23, 0.19); }
.dep-card[hidden] { display: none !important; }

.dep-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #252820; }
.dep-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7, 9, 7, 0.12), transparent 45%, rgba(7, 9, 7, 0.78)); pointer-events: none; }
.dep-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.dep-card:hover .dep-card__media img { transform: scale(1.025); }

.dep-card__type,
.dep-card__date {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.dep-card__type { top: 0.8rem; left: 0.8rem; padding: 0.45rem 0.65rem; color: #fff; background: rgba(10, 12, 10, 0.6); border: 1px solid rgba(255, 255, 255, 0.16); }
.dep-card__date { right: 0.8rem; bottom: 0.8rem; padding: 0.48rem 0.66rem; color: #17150f; background: rgba(218, 187, 115, 0.96); }
.dep-card__body { display: flex; flex: 1; flex-direction: column; padding: 1.25rem; }
.dep-card__title-row { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 0.75rem; align-items: start; }
.dep-card__title-row > span { margin-top: 0.16rem; color: #d6b76e; font-family: Georgia, serif; font-size: 0.8rem; }
.dep-card h3 { margin: 0; color: #fff; font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.35rem, 1.7vw, 1.7rem); line-height: 1.13; }
.dep-card h3 a { color: inherit; text-decoration: none; }
.dep-card h3 a:hover { color: #e3c77f; }
.dep-card__season { display: flex; gap: 0.45rem; align-items: center; margin: 0.9rem 0 0; color: #d6b76e; font-size: 0.7rem; font-weight: 800; line-height: 1.45; }
.dep-card__description { margin: 0.9rem 0 0; color: rgba(255, 255, 255, 0.66); font-size: 0.86rem; line-height: 1.68; }

.dep-card__facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 1.15rem 0 0; border-top: 1px solid rgba(255, 255, 255, 0.12); border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.dep-card__facts > div { min-width: 0; padding: 0.75rem 0; }
.dep-card__facts > div:nth-child(even) { padding-left: 0.8rem; border-left: 1px solid rgba(255, 255, 255, 0.12); }
.dep-card__facts > div:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.dep-card__facts dt { margin: 0 0 0.22rem; color: rgba(255, 255, 255, 0.42); font-size: 0.6rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.dep-card__facts dd { margin: 0; color: rgba(255, 255, 255, 0.88); font-size: 0.73rem; font-weight: 750; line-height: 1.4; }

.dep-card__timing { display: flex; flex-wrap: wrap; gap: 0.55rem 0.9rem; margin-top: 0.95rem; color: rgba(255, 255, 255, 0.57); font-size: 0.69rem; font-weight: 750; }
.dep-card__timing > span { display: inline-flex; align-items: center; gap: 0.35rem; }
.dep-card__timing i { color: #d2b36b; }
.dep-capacity { height: 3px; margin-top: 0.8rem; overflow: hidden; background: rgba(255, 255, 255, 0.1); border-radius: 99px; }
.dep-capacity span { display: block; width: var(--dep-fill, 0%); height: 100%; background: #d3b36a; }

.dep-card__actions { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; padding-top: 1.15rem; }
.dep-join-button,
.dep-detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 43px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  text-decoration: none;
}

.dep-join-button { flex: 1; padding: 0.65rem 0.85rem; color: #17150f; background: #d6b76e; border: 1px solid #d6b76e; }
.dep-join-button:hover { color: #17150f; background: #e4ca8b; border-color: #e4ca8b; }
.dep-detail-link { flex: 0 0 auto; color: rgba(255, 255, 255, 0.74); }
.dep-detail-link:hover { color: #fff; }

.dep-empty { grid-column: 1 / -1; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 1.2rem; padding: 2rem 0; border-top: 1px solid var(--dep-line); border-bottom: 1px solid var(--dep-line); }
.dep-empty > i { color: var(--dep-gold-dark); font-size: 2rem; }
.dep-empty h3 { margin: 0; font-family: Georgia, serif; }
.dep-empty p { margin: 0.3rem 0 0; color: var(--dep-muted); }
.dep-empty a { color: var(--dep-gold-dark); font-size: 0.8rem; font-weight: 900; text-decoration: none; }
.dep-no-results { padding: 1.2rem; color: var(--dep-muted); background: var(--dep-paper-deep); text-align: center; }

.dep-disclaimer { display: flex; align-items: flex-start; gap: 0.8rem; max-width: 1050px; margin: 1.6rem auto 0; color: var(--dep-muted); font-size: 0.77rem; line-height: 1.7; }
.dep-disclaimer i { flex: 0 0 auto; color: var(--dep-gold-dark); font-size: 1.1rem; }
.dep-disclaimer strong { color: var(--dep-ink); }

.dep-process { padding-top: clamp(5rem, 10vw, 9rem); border-top: 1px solid var(--dep-line); }
.dep-process__steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; border-top: 1px solid var(--dep-line); border-bottom: 1px solid var(--dep-line); list-style: none; }
.dep-process__steps > li { min-width: 0; padding: 2rem clamp(1rem, 2.4vw, 2.2rem); }
.dep-process__steps > li + li { border-left: 1px solid var(--dep-line); }
.dep-process__steps > li > span { color: var(--dep-gold-dark); font-family: Georgia, serif; font-size: 1.05rem; }
.dep-process__steps > li > div > p:first-child { margin: 2rem 0 0.45rem; color: var(--dep-clay); font-size: 0.67rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.dep-process__steps h3 { margin: 0; font-family: Georgia, serif; font-size: 1.45rem; line-height: 1.2; }
.dep-process__steps > li > div > p:last-child { margin: 1rem 0 0; color: var(--dep-muted); font-size: 0.88rem; line-height: 1.72; }

.dep-seasons {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: clamp(5rem, 10vw, 9rem) max(calc((100vw - 1320px) / 2), 1.5rem);
  color: #fff;
  background:
    radial-gradient(circle at 85% 18%, rgba(203, 174, 106, 0.16), transparent 28rem),
    var(--dep-green-deep);
}

.dep-seasons .dep-kicker,
.dep-cta .dep-kicker { color: #dfbf75; }
.dep-seasons__intro > p:not(.dep-kicker) { max-width: 650px; margin: 1.35rem 0 0; color: rgba(255, 255, 255, 0.66); line-height: 1.78; }
.dep-seasons__intro a { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.35rem; color: #e0c37b; font-size: 0.82rem; font-weight: 850; text-decoration: none; }
.dep-seasons__list { border-top: 1px solid rgba(255, 255, 255, 0.15); }
.dep-seasons__list article { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.dep-seasons__list article > span { color: #d7b568; font-family: Georgia, serif; font-size: 0.9rem; }
.dep-seasons__list h3 { margin: 0; font-family: Georgia, serif; font-size: 1.3rem; }
.dep-seasons__list p { margin: 0.45rem 0 0; color: rgba(255, 255, 255, 0.62); font-size: 0.86rem; line-height: 1.65; }

.dep-fit { padding-top: clamp(5rem, 10vw, 9rem); border-bottom: 1px solid var(--dep-line); }
.dep-fit__columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--dep-line); border-bottom: 1px solid var(--dep-line); }
.dep-fit__columns article { padding: clamp(2rem, 4vw, 3.5rem); }
.dep-fit__columns article + article { border-left: 1px solid var(--dep-line); }
.dep-fit__columns article > p { display: flex; align-items: center; gap: 0.55rem; margin: 0 0 1.15rem; color: var(--dep-clay); font-size: 0.69rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.dep-fit__columns ul { margin: 0; padding: 0; list-style: none; }
.dep-fit__columns li { position: relative; padding: 0.68rem 0 0.68rem 1.2rem; color: var(--dep-muted); border-bottom: 1px solid var(--dep-line); font-size: 0.9rem; }
.dep-fit__columns li::before { content: ""; position: absolute; top: 1.08rem; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--dep-gold); }
.dep-fit__columns a { display: inline-flex; gap: 0.45rem; margin-top: 1.3rem; color: var(--dep-gold-dark); font-size: 0.8rem; font-weight: 900; text-decoration: none; }

.dep-faq { padding-top: clamp(5rem, 10vw, 9rem); }
.dep-faq__list { max-width: 1050px; margin-left: auto; border-top: 1px solid var(--dep-line); }
.dep-faq details { border-bottom: 1px solid var(--dep-line); }
.dep-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.35rem 0; color: var(--dep-ink); cursor: pointer; font-family: Georgia, serif; font-size: clamp(1rem, 1.8vw, 1.3rem); font-weight: 700; list-style: none; }
.dep-faq summary::-webkit-details-marker { display: none; }
.dep-faq summary i { color: var(--dep-gold-dark); transition: transform 180ms ease; }
.dep-faq details[open] summary i { transform: rotate(45deg); }
.dep-faq details p { max-width: 850px; margin: -0.25rem 0 1.45rem; color: var(--dep-muted); line-height: 1.78; }

.dep-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: clamp(3rem, 7vw, 6rem);
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(206, 176, 105, 0.18), transparent 24rem),
    var(--dep-green-deep);
}

.dep-cta > div > p:last-child { max-width: 720px; margin: 1.2rem 0 0; color: rgba(255, 255, 255, 0.67); line-height: 1.75; }
.dep-cta > a { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; min-height: 52px; padding: 0.85rem 1.2rem; color: #17150f; background: #d4b56f; border-radius: 999px; font-size: 0.83rem; font-weight: 900; text-decoration: none; white-space: nowrap; }
.dep-cta > a:hover { color: #17150f; background: #e2ca8d; }

.dep-modal .modal-dialog { max-width: 560px; }
.dep-modal .modal-content { overflow: hidden; color: #fff; background: #151a16; border: 1px solid rgba(214, 183, 110, 0.32); border-radius: 1.25rem; box-shadow: 0 30px 100px rgba(0, 0, 0, 0.52); }
.dep-modal .modal-header { align-items: flex-start; padding: 1.5rem; background: radial-gradient(circle at 90% 0, rgba(214, 183, 110, 0.16), transparent 18rem); border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.dep-modal .modal-header p { margin: 0 0 0.4rem; color: #d7b76d; font-size: 0.66rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.dep-modal .modal-title { margin: 0; font-family: Georgia, serif; font-size: 1.85rem; }
.dep-modal .modal-header span { display: block; margin-top: 0.4rem; color: rgba(255, 255, 255, 0.6); font-size: 0.78rem; }
.dep-modal .modal-body { padding: 1.5rem; }
.dep-modal__intro { margin: 0 0 1.4rem; color: rgba(255, 255, 255, 0.68); font-size: 0.87rem; line-height: 1.65; }
.dep-field { margin-bottom: 1rem; }
.dep-field label { display: block; margin-bottom: 0.4rem; color: rgba(255, 255, 255, 0.84); font-size: 0.75rem; font-weight: 800; }
.dep-field input { width: 100%; min-height: 48px; padding: 0.7rem 0.8rem; color: #fff; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 0.65rem; outline: none; }
.dep-field input:focus { border-color: #d3b46d; box-shadow: 0 0 0 3px rgba(211, 180, 109, 0.15); }
.dep-field small { display: block; margin-top: 0.35rem; color: rgba(255, 255, 255, 0.5); font-size: 0.68rem; }
.dep-modal__status { margin-bottom: 1rem; padding: 0.75rem; border-radius: 0.6rem; font-size: 0.76rem; line-height: 1.55; }
.dep-modal__status.is-success { color: #d9f0dc; background: rgba(69, 124, 79, 0.3); border: 1px solid rgba(121, 190, 132, 0.32); }
.dep-modal__status.is-error { color: #ffd7d0; background: rgba(143, 66, 51, 0.32); border: 1px solid rgba(218, 126, 108, 0.34); }
.dep-modal__submit { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; min-height: 50px; padding: 0.75rem 1rem; color: #17150f; background: #d6b76e; border: 1px solid #d6b76e; border-radius: 999px; font-size: 0.8rem; font-weight: 900; }
.dep-modal__submit:disabled { cursor: wait; opacity: 0.68; }
.dep-modal__note { display: flex; align-items: flex-start; gap: 0.55rem; margin: 1rem 0 0; color: rgba(255, 255, 255, 0.5); font-size: 0.67rem; line-height: 1.55; }
.dep-modal__note i { color: #d5b66d; }

.dep-section-nav a:focus-visible,
.dep-status a:focus-visible,
.dep-filters button:focus-visible,
.dep-join-button:focus-visible,
.dep-detail-link:focus-visible,
.dep-seasons a:focus-visible,
.dep-fit a:focus-visible,
.dep-faq summary:focus-visible,
.dep-cta a:focus-visible,
.dep-modal button:focus-visible {
  outline: 3px solid #c7a354;
  outline-offset: 3px;
}

@keyframes depHeroReveal {
  from { opacity: 0.65; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.025); }
}

@media (max-width: 1199.98px) {
  .dep-hero { min-height: 900px; }
  .dep-hero__veil { background: linear-gradient(90deg, rgba(6, 10, 7, 0.9), rgba(6, 10, 7, 0.34)), linear-gradient(180deg, rgba(6, 9, 6, 0.4), rgba(6, 9, 6, 0.93)); }
  .dep-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dep-process__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dep-process__steps > li:nth-child(3) { border-top: 1px solid var(--dep-line); border-left: 0; }
  .dep-process__steps > li:nth-child(4) { border-top: 1px solid var(--dep-line); }
}

@media (max-width: 991.98px) {
  .dep-section-heading--split,
  .dep-seasons { grid-template-columns: 1fr; }
  .dep-section-heading--split > p:last-child { margin-top: 1rem; }
  .dep-seasons { gap: 3.5rem; }
  .dep-cta { grid-template-columns: 1fr; align-items: start; }
  .dep-cta > a { justify-self: start; }
}

@media (max-width: 767.98px) {
  .dep-hero { min-height: 100svh; }
  .dep-hero__inner { padding-bottom: 1.4rem; }
  .dep-breadcrumb { margin-bottom: 2rem; font-size: 0.61rem; }
  .dep-hero h1 { font-size: clamp(2.8rem, 11.5vw, 4.2rem); }
  .dep-hero__lead { line-height: 1.6; }
  .dep-hero__actions,
  .dep-button { width: 100%; }
  .dep-snapshot { grid-template-columns: 1fr; margin-top: 1.4rem; }
  .dep-snapshot > div { padding: 0.75rem 0; }
  .dep-snapshot > div + div { border-top: 1px solid rgba(255, 255, 255, 0.14); border-left: 0; }
  .dep-section-nav a { padding: 0.85rem 0.65rem; }
  .dep-status { grid-template-columns: auto minmax(0, 1fr); }
  .dep-status > a { grid-column: 1 / -1; justify-content: space-between; }
  .dep-tools { align-items: flex-start; flex-direction: column; }
  .dep-grid { grid-template-columns: 1fr; }
  .dep-card:hover { transform: none; }
  .dep-process__steps { grid-template-columns: 1fr; }
  .dep-process__steps > li { padding: 1.5rem 0; border-top: 1px solid var(--dep-line); border-left: 0 !important; }
  .dep-process__steps > li:first-child { border-top: 0; }
  .dep-process__steps > li > div > p:first-child { margin-top: 1rem; }
  .dep-seasons { padding-right: max(1rem, calc((100vw - 1320px) / 2)); padding-left: max(1rem, calc((100vw - 1320px) / 2)); }
  .dep-seasons__list article { grid-template-columns: 78px minmax(0, 1fr); }
  .dep-fit__columns { grid-template-columns: 1fr; }
  .dep-fit__columns article { padding: 2rem 0; }
  .dep-fit__columns article + article { border-top: 1px solid var(--dep-line); border-left: 0; }
  .dep-cta { padding: 2.2rem 1.25rem; }
  .dep-cta > a { width: 100%; }
  .dep-empty { grid-template-columns: auto minmax(0, 1fr); }
  .dep-empty a { grid-column: 1 / -1; }
}

@media (max-width: 420px) {
  .dep-hero h1 { font-size: 2.7rem; }
  .dep-card__facts { grid-template-columns: 1fr; }
  .dep-card__facts > div:nth-child(n) { padding: 0.65rem 0; border-top: 1px solid rgba(255, 255, 255, 0.12); border-left: 0; }
  .dep-card__facts > div:first-child { border-top: 0; }
  .dep-card__actions { align-items: stretch; flex-direction: column; }
  .dep-detail-link { min-height: auto; }
  .dep-seasons { margin-right: -1rem; margin-left: -1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .dep-hero__image { animation: none; transform: none; }
  .dep-button,
  .dep-section-nav,
  .dep-section-nav a::after,
  .dep-card,
  .dep-card__media img,
  .dep-faq summary i { transition: none; }
}

@media print {
  .dep-hero,
  .dep-section-nav,
  .dep-status,
  .dep-tools,
  .dep-card__actions,
  .dep-cta,
  .dep-modal { display: none !important; }
  .dep-main { padding: 0; background: #fff; }
  .dep-grid { grid-template-columns: 1fr 1fr; }
  .dep-card { break-inside: avoid; color: #000; background: #fff; box-shadow: none; }
  .dep-card * { color: #000 !important; }
  .dep-seasons { margin: 2rem 0; padding: 2rem; color: #000; background: #fff; border: 1px solid #999; }
  .dep-seasons * { color: #000 !important; }
}
