﻿:root {
  --bg: #ede9f7;
  --bg-deep: #ddd5f0;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #faf8ff;
  --text: #1f1d1b;
  --muted: #62584f;
  --line: rgba(31, 29, 27, 0.1);
  --accent: #2f6fdf;
  --accent-deep: #1f4fae;
  --accent-soft: #dbe9ff;
  --secondary: #1f8aa6;
  --secondary-soft: #d9f2f8;
  --shadow: 0 20px 50px rgba(91, 54, 28, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 111, 223, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(31, 138, 166, 0.12), transparent 22%),
    linear-gradient(180deg, #faf8ff 0%, var(--bg) 52%, #e6dff5 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 64px;
  flex: 1 0 auto;
}

.narrow-main {
  width: min(920px, calc(100% - 32px));
}

.pricing-main {
  width: min(1320px, calc(100% - 24px));
}

.staff-main {
  width: min(1280px, calc(100% - 32px));
}

.site-header {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  flex: 0 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0 10px;
  flex-wrap: wrap;
}

.brand {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "logo kicker"
    "logo name";
  align-items: center;
  column-gap: 12px;
  row-gap: 4px;
}

.brand-logo-link {
  grid-area: logo;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-right: 2px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.brand-kicker,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--accent-deep);
  font-weight: 700;
}

.brand-name,
h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
}

.brand-name {
  grid-area: name;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-kicker {
  grid-area: kicker;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 720px;
  min-width: 0;
}

.main-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
}

.main-nav-end {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.main-nav a,
.nav-dropdown summary {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.75);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(31, 79, 174, 0);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.main-nav a::before,
.nav-dropdown summary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(219, 233, 255, 0.92));
  opacity: 0;
  transform: translateY(10px) scale(0.92);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
  z-index: -2;
}

.main-nav a::after,
.nav-dropdown summary::after {
  content: "";
  position: absolute;
  inset: 1px auto 1px -58%;
  width: 44%;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.86) 50%, transparent 100%);
  transform: skewX(-20deg);
  opacity: 0;
  transition: left 280ms ease, opacity 180ms ease;
  z-index: -1;
}

.main-nav .nav-icon-link {
  width: 44px;
  padding: 10px 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
}

.icon-glyph {
  display: block;
  width: 1.18rem;
  height: 1.18rem;
  fill: currentColor;
  pointer-events: none;
}

.main-nav .nav-icon-link .icon-glyph {
  width: 1.2rem;
  height: 1.2rem;
}

.main-nav .nav-icon-link-end {
  margin-left: auto;
}


.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active,
.nav-dropdown summary:hover,
.nav-dropdown summary:focus-visible,
.nav-dropdown.is-active summary,
.nav-dropdown[open] summary {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(47, 111, 223, 0.22);
  color: var(--accent-deep);
  box-shadow: 0 18px 34px rgba(31, 79, 174, 0.16);
  transform: translateY(-3px) scale(1.02);
}

.main-nav a:hover::before,
.main-nav a:focus-visible::before,
.main-nav a.active::before,
.nav-dropdown summary:hover::before,
.nav-dropdown summary:focus-visible::before,
.nav-dropdown.is-active summary::before,
.nav-dropdown[open] summary::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after,
.nav-dropdown summary:hover::after,
.nav-dropdown summary:focus-visible::after,
.nav-dropdown.is-active summary::after,
.nav-dropdown[open] summary::after {
  left: 120%;
  opacity: 1;
}

.nav-dropdown.is-active summary,
.nav-dropdown[open] summary {
  background: rgba(255, 255, 255, 0.9);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
  z-index: 5;
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 12px;
}

.nav-dropdown-menu a:hover {
  background: rgba(15, 118, 110, 0.08);
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(20px, 4vw, 32px);
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 20px;
  background: rgba(12, 17, 25, 0.22);
  box-shadow: 0 18px 40px rgba(17, 34, 68, 0.16);
  backdrop-filter: blur(18px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(100% + 28px)) scale(0.9);
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  z-index: 30;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: rgba(47, 111, 223, 0.3);
  border-color: rgba(255, 255, 255, 0.66);
  box-shadow: 0 24px 48px rgba(31, 79, 174, 0.24);
}

.back-to-top span {
  color: #fff;
  opacity: 1;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(2px);
}

.hero,
.page-hero {
  display: grid;
  gap: 24px;
}

.hero {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
  align-items: stretch;
  padding: 28px 0 36px;
}

.hero-copy,
.hero-card,
.section-panel,
.info-card,
.price-card {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  padding: 34px;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1.02;
  margin: 8px 0 14px;
  text-wrap: balance;
  overflow-wrap: break-word;
  word-break: normal;
}

.hero-text,
.page-hero p,
.info-card p,
.section-panel p,
.price-card p,
.timeline-item p {
  color: var(--muted);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform: translateY(0) scale(1);
  box-shadow: 0 12px 26px rgba(31, 79, 174, 0.08);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    filter 220ms ease,
    background-position 300ms ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep), var(--secondary));
  background-size: 190% 190%;
  color: white;
}

.button-secondary {
  background: linear-gradient(135deg, var(--secondary-soft), #fff, var(--accent-soft));
  background-size: 190% 190%;
  color: var(--secondary);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 18px 38px rgba(31, 79, 174, 0.16);
  filter: saturate(1.08);
  background-position: 100% 50%;
}

.button:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 10px 22px rgba(31, 79, 174, 0.12);
}

.button:focus-visible {
  outline: 3px solid rgba(47, 111, 223, 0.28);
  outline-offset: 3px;
}

.button-small {
  padding: 10px 14px;
}

.hero-card {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.15), transparent 70%),
    rgba(255, 250, 243, 0.92);
}

.shop-stage {
  align-items: stretch;
}

.shop-under-construction {
  display: grid;
  gap: 12px;
  text-align: center;
  padding: 48px 28px;
  background:
    radial-gradient(circle at top, rgba(47, 111, 223, 0.14), transparent 32%),
    rgba(255, 255, 255, 0.84);
}

.shop-under-construction-label {
  margin: 0 auto;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(219, 233, 255, 0.9);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-under-construction h1,
.shop-under-construction h2,
.shop-under-construction p {
  margin: 0;
}

.shop-progress-card {
  display: grid;
  align-content: space-between;
  gap: 20px;
  background:
    radial-gradient(circle at top right, rgba(47, 111, 223, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(219, 233, 255, 0.62));
}

.shop-progress-card h2 {
  margin: 0;
  font-size: 1.8rem;
}

.shop-progress-card p {
  margin: 0;
}

.shop-progress-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(47, 111, 223, 0.16), rgba(31, 79, 174, 0.28)),
    rgba(255, 255, 255, 0.88);
  color: var(--accent-deep);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: inset 0 0 0 1px rgba(47, 111, 223, 0.12);
}

.shop-checklist {
  margin: 18px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.shop-checklist li::marker {
  color: var(--accent);
}

.shop-mini-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(219, 233, 255, 0.62);
  border: 1px solid rgba(47, 111, 223, 0.14);
}

.opening-flyer,
.home-stage,
.home-strip,
.home-feature-links,
.home-columns,
.home-actions-row,
.home-contact,
.home-faq {
  margin-top: 26px;
}

.home-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.82fr);
  gap: 34px;
  padding: 42px 0 24px;
  align-items: start;
}

.home-stage-copy h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.94;
  margin: 10px 0 18px;
  max-width: 10ch;
}

.home-lead {
  max-width: 680px;
  font-size: 1.16rem;
  line-height: 1.8;
  color: var(--muted);
}

.home-stage-side {
  padding-top: 14px;
}

.home-stage-label {
  margin: 0 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.home-video-stage {
  --home-video-height: 468px;
  --home-image-height: 186px;
  --home-video-fit: cover;
  --home-image-fit: cover;
}

.home-video-stage-card {
  position: relative;
  align-items: stretch;
}

.home-video-stage-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 1;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(31, 79, 174, 0.88);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-photo-flow {
  --home-video-height: 388px;
  --home-image-height: 186px;
  --home-video-fit: cover;
  --home-image-fit: cover;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  grid-template-areas:
    "video image-one"
    "video image-two"
    "image-three image-three";
  gap: 14px;
  align-items: start;
}

.photo-flow-card {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-radius: 28px;
  overflow: hidden;
  padding: 12px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.45)),
    linear-gradient(140deg, rgba(232, 93, 42, 0.12), rgba(15, 118, 110, 0.08));
  border: 1px solid rgba(31, 29, 27, 0.08);
  box-shadow: 0 18px 35px rgba(31, 79, 174, 0.12);
}

.photo-flow-video {
  grid-area: video;
}

.photo-flow-image-one {
  grid-area: image-one;
}

.photo-flow-image-two {
  grid-area: image-two;
}

.photo-flow-image-three {
  grid-area: image-three;
}

.photo-flow-image {
  min-height: 0;
}

.photo-flow-media {
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
  object-fit: var(--home-image-fit);
  background: rgba(255, 255, 255, 0.35);
  border-radius: 20px;
}

.photo-flow-video .photo-flow-media {
  object-fit: var(--home-video-fit);
  max-height: var(--home-video-height);
}

.home-video-stage .photo-flow-video .photo-flow-media {
  min-height: clamp(320px, 40vw, 468px);
}

.photo-flow-image .photo-flow-media {
  object-fit: var(--home-image-fit);
  max-height: none;
}

.photo-flow-image {
  cursor: zoom-in;
}

.photo-flow-image .photo-flow-media {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.photo-flow-image:hover .photo-flow-media,
.photo-flow-image:focus-within .photo-flow-media {
  transform: scale(1.015);
  box-shadow: 0 16px 32px rgba(31, 79, 174, 0.14);
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(17, 24, 39, 0.78);
  backdrop-filter: blur(8px);
}

.media-lightbox.is-open {
  display: grid;
}

.media-lightbox-dialog {
  position: relative;
  max-width: min(1120px, 92vw);
  max-height: 88vh;
}

.media-lightbox-image {
  display: block;
  width: auto;
  max-width: min(1120px, 92vw);
  max-height: 88vh;
  height: auto;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.86);
}

.media-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-ink);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.14);
}

body.has-lightbox-open {
  overflow: hidden;
}

body.dialog-open {
  overflow: hidden;
}

.confirm-dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(31, 79, 174, 0.22);
  backdrop-filter: blur(10px);
}

.confirm-dialog-overlay.is-open {
  display: grid;
}

.confirm-dialog-panel {
  width: min(460px, 100%);
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(237, 233, 247, 0.96));
  border: 1px solid rgba(47, 111, 223, 0.18);
  box-shadow: 0 24px 60px rgba(31, 79, 174, 0.18);
}

.confirm-dialog-head {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.confirm-dialog-head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.confirm-dialog-message {
  margin: 0;
  color: var(--muted);
}

.confirm-dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.confirm-dialog-danger {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
}

.home-strip {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 26px;
  padding: 26px 0;
  border-top: 1px solid rgba(31, 29, 27, 0.12);
  border-bottom: 1px solid rgba(31, 29, 27, 0.12);
}

.home-feature-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 8px 0 0;
  border-top: 1px solid rgba(31, 29, 27, 0.12);
}

.home-feature-card {
  position: relative;
  display: block;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 20px 38px rgba(31, 79, 174, 0.14);
  isolation: isolate;
}

.home-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 24, 62, 0.04) 0%, rgba(10, 24, 62, 0.2) 42%, rgba(10, 24, 62, 0.8) 100%);
  transition: opacity 180ms ease;
}

.home-feature-card:hover::after,
.home-feature-card:focus-visible::after {
  opacity: 0.88;
}

.home-feature-image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.home-feature-card:hover .home-feature-image,
.home-feature-card:focus-visible .home-feature-image {
  transform: scale(1.03);
}

.home-feature-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.home-feature-kicker {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.home-feature-overlay strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.02;
}

.home-strip h2,
.home-columns h2,
.home-contact h2 {
  margin: 6px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.home-strip-content p:last-child,
.home-columns p:last-child {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.home-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding: 12px 0;
}

.home-columns article {
  padding-right: 12px;
}

.home-actions-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding: 10px 0 2px;
}

.home-contact {
  padding: 26px 0 8px;
  border-top: 1px solid rgba(31, 29, 27, 0.12);
}

.home-faq {
  padding: 26px 0 8px;
  border-top: 1px solid rgba(31, 29, 27, 0.12);
}

.home-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.faq-item {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 29, 27, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 56px 18px 20px;
  font-weight: 700;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent-deep);
  border-bottom: 2px solid var(--accent-deep);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 160ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.hero-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.media-tile {
  min-height: 140px;
  border-radius: 22px;
  padding: 18px;
  display: flex;
  align-items: end;
  color: var(--muted);
  font-weight: 700;
  background:
    linear-gradient(145deg, rgba(232, 93, 42, 0.12), rgba(15, 118, 110, 0.08)),
    rgba(255, 255, 255, 0.8);
  border: 1px dashed rgba(31, 29, 27, 0.15);
}

.media-tile-large {
  grid-column: 1 / -1;
  min-height: 220px;
}

.feature-list {
  display: grid;
  gap: 14px;
  padding-left: 20px;
  margin: 20px 0 0;
}

.info-grid,
.pricing-grid,
.dashboard-grid,
.contact-grid,
.feed-layout,
.team-grid {
  display: grid;
  gap: 20px;
}

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

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

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

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

.pricing-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.pricing-table .schedule-row {
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1.6fr;
}

.pricing-carousel-section {
  margin-top: 22px;
}

.pricing-carousel-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.pricing-carousel-copy {
  text-align: center;
}

.pricing-nav-button {
  margin-top: 0;
}

.pricing-carousel {
  position: relative;
  min-height: 410px;
  touch-action: pan-y;
  user-select: none;
  perspective: 1200px;
  transform-style: preserve-3d;
  cursor: grab;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 2%, rgba(0, 0, 0, 1) 7%, rgba(0, 0, 0, 1) 93%, rgba(0, 0, 0, 0.55) 98%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 2%, rgba(0, 0, 0, 1) 7%, rgba(0, 0, 0, 1) 93%, rgba(0, 0, 0, 0.55) 98%, transparent 100%);
}

.pricing-carousel[data-count="1"] {
  min-height: 360px;
}

.pricing-carousel[data-count="2"] {
  min-height: 390px;
}

.pricing-carousel[data-count="5"] {
  min-height: 430px;
}

.pricing-carousel[data-count="7"] {
  min-height: 440px;
}

.pricing-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100%, 330px);
  margin: 0;
  transition: transform 240ms cubic-bezier(0.22, 0.7, 0.2, 1), opacity 240ms ease, box-shadow 240ms ease, filter 240ms ease;
  will-change: transform, opacity;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  box-shadow: 0 24px 55px rgba(56, 35, 18, 0.14);
}

.pricing-card.is-far-side {
  filter: none;
}

.pricing-card.is-outer-side {
  filter: none;
}

.pricing-carousel.is-dragging {
  cursor: grabbing;
}

.pricing-carousel.is-dragging .pricing-card {
  transition: none;
}

.pricing-card.is-side {
  transform: scale(0.9) rotateY(14deg);
  opacity: 0.82;
}

.pricing-card.is-side[data-position="left"] {
  transform: scale(0.9) rotateY(18deg) translateX(10px);
}

.pricing-card.is-side[data-position="right"] {
  transform: scale(0.9) rotateY(-18deg) translateX(-10px);
}

.pricing-card.is-center {
  transform: scale(1.04) translateY(-8px);
  background:
    linear-gradient(180deg, rgba(232, 93, 42, 0.08), rgba(255, 255, 255, 0.88)),
    rgba(255, 255, 255, 0.9);
}

.feed-layout {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.2fr);
}

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

.news-card {
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(31, 29, 27, 0.08);
}

.team-card,
.news-item-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 29, 27, 0.08);
  overflow: hidden;
}

.team-card {
  padding: 20px;
}

.team-photo,
.website-thumb,
.news-item-image {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  background: rgba(15, 118, 110, 0.08);
}

.team-photo,
.website-thumb {
  aspect-ratio: 4 / 3;
}

.news-item-image {
  aspect-ratio: 4 / 3;
}

.team-photo-placeholder,
.website-thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 700;
}

.team-role {
  color: var(--accent-deep);
  font-weight: 700;
}

.news-item-body {
  padding: 20px 22px;
}

.website-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.website-item-copy h4 {
  margin: 0 0 8px;
}

.news-meta {
  font-weight: 700;
  color: var(--accent-deep);
  margin-bottom: 8px;
}

.info-card,
.price-card {
  padding: 24px;
}

.section-panel {
  padding: 28px;
  margin-top: 24px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  box-shadow: 0 0 0 5px rgba(38, 166, 186, 0.12);
}

.section-heading {
  margin-bottom: 22px;
}

.page-hero {
  padding: 20px 0 10px;
}

.page-hero p {
  max-width: 720px;
}

.legal-page-panel {
  margin-top: 18px;
}

.legal-copy {
  display: grid;
  gap: 16px;
}

.legal-copy h2 {
  margin: 10px 0 0;
  font-size: 1.3rem;
}

.legal-copy p {
  margin: 0;
}

.timeline {
  display: grid;
  gap: 22px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-time {
  display: inline-flex;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 700;
}

.price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  margin: 8px 0;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.schedule-table {
  display: grid;
  gap: 10px;
}

.schedule-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
}

.schedule-head {
  background: var(--accent-soft);
  font-weight: 700;
}

.club-form,
.login-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.club-form label,
.login-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.checkbox-field {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
}

.checkbox-field input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  padding: 0;
  border-radius: 6px;
  flex: 0 0 auto;
}

.checkbox-field span {
  font-weight: 600;
}

.checkbox-field-wide {
  grid-column: 1 / -1;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.work-staff-field {
  display: grid;
  gap: 10px;
}

.work-staff-field > span {
  font-weight: 600;
}

.work-staff-field .helper-text {
  margin: 0;
}

.work-staff-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.work-staff-option {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.work-staff-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

.work-staff-option-text {
  display: grid;
  gap: 2px;
}

.work-staff-option-text strong {
  font-size: 0.98rem;
}

.work-staff-option-text small {
  color: var(--muted);
  font-size: 0.84rem;
}

.work-staff-empty {
  margin: 0;
  padding: 14px 16px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.status-pill-confirmed {
  background: rgba(47, 111, 223, 0.12);
  border-color: rgba(47, 111, 223, 0.28);
  color: var(--accent-deep);
}

.status-pill-trial {
  background: rgba(221, 213, 240, 0.7);
  border-color: rgba(31, 79, 174, 0.18);
  color: var(--accent-deep);
}

.status-pill-compact {
  padding: 6px 10px;
  font-size: 0.82rem;
  line-height: 1.2;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: rgba(255, 255, 255, 0.9);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.form-feedback,
.helper-text {
  color: var(--muted);
  margin: 0;
}

.form-action-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.info-note {
  display: inline-grid;
  gap: 10px;
  margin: 0;
}

.info-note summary {
  list-style: none;
}

.info-note summary::-webkit-details-marker {
  display: none;
}

.info-note-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(47, 111, 223, 0.18);
  box-shadow: 0 10px 24px rgba(31, 79, 174, 0.08);
  backdrop-filter: blur(12px);
  color: var(--accent-deep);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.info-note-button:hover,
.info-note-button:focus-visible,
.info-note[open] .info-note-button {
  transform: translateY(-1px);
  background: rgba(219, 233, 255, 0.92);
  border-color: rgba(47, 111, 223, 0.28);
  box-shadow: 0 16px 30px rgba(31, 79, 174, 0.12);
}

.info-note-icon {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1;
}

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

.info-note-content {
  max-width: min(640px, 100%);
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(47, 111, 223, 0.12);
  box-shadow: 0 16px 34px rgba(31, 79, 174, 0.08);
  color: var(--muted);
  line-height: 1.65;
}

.info-note-content p {
  margin: 0;
}

.hidden {
  display: none;
}

.dashboard-topbar,
.section-header-inline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.request-count-heading {
  margin-bottom: 8px;
}

.request-count-heading h3 {
  margin: 0;
}

.dashboard-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.staff-tabs {
  margin-top: 24px;
}

.tab-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.tab-button {
  border: 1px solid rgba(31, 29, 27, 0.08);
  border-radius: 999px;
  padding: 12px 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(219, 233, 255, 0.46)),
    rgba(255, 255, 255, 0.72);
  background-size: 180% 180%;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  color: var(--text);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(31, 79, 174, 0.04);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    background-position 260ms ease,
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.tab-button::after {
  content: "";
  position: absolute;
  inset: 1px auto 1px -70%;
  width: 48%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  opacity: 0;
  transition: left 320ms ease, opacity 180ms ease;
}

.tab-button.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 14px 30px rgba(31, 79, 174, 0.16);
}

.tab-button:hover,
.tab-button:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(47, 111, 223, 0.22);
  box-shadow: 0 18px 36px rgba(31, 79, 174, 0.14);
  background-position: 100% 50%;
  color: var(--accent-deep);
}

.tab-button:hover::after,
.tab-button:focus-visible::after {
  left: 122%;
  opacity: 1;
}

.tab-button.is-active:hover,
.tab-button.is-active:focus-visible {
  color: #fff;
}

.tab-button:active {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(31, 79, 174, 0.1);
}

.tab-button:focus-visible {
  outline: 3px solid rgba(47, 111, 223, 0.26);
  outline-offset: 3px;
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.subsection-divider {
  height: 1px;
  background: var(--line);
  margin: 26px 0;
}

.planning-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.nested-panel {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: none;
}

.week-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.week-label {
  margin: 0;
  min-width: 220px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.week-nav .icon-button {
  margin-top: 0;
  flex-shrink: 0;
  position: relative;
  font-size: 0;
  color: var(--accent-deep);
}

#attendancePrevWeek::before,
#workPrevWeek::before,
#attendanceNextWeek::before,
#workNextWeek::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  display: block;
}

#attendancePrevWeek::before,
#workPrevWeek::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}

#attendanceNextWeek::before,
#workNextWeek::before {
  transform: rotate(45deg);
  margin-right: 4px;
}

.view-toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 29, 27, 0.08);
}

.toggle-button {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 9px 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  color: var(--muted);
}

.toggle-button.is-active {
  background: var(--accent);
  color: #fff;
}

.compact-form .form-grid {
  margin-bottom: 6px;
}

.section-spacing-top {
  margin-top: 28px;
}

.stack-list,
.member-list,
.attendance-board,
.feed-list {
  display: grid;
  gap: 14px;
}

.data-card,
.member-card,
.slot-card,
.summary-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 29, 27, 0.08);
}

.data-card h4,
.member-card h4,
.slot-card h4 {
  margin: 0 0 8px;
}

.data-card p,
.member-card p,
.slot-card p,
.summary-card p {
  margin: 4px 0;
}

.member-card {
  cursor: default;
}

.member-card-head,
.attendance-student-head,
.member-summary-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.assign-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 14px;
}

.slot-chip-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.slot-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  font: inherit;
  cursor: pointer;
}

.slot-chip.is-selected {
  background: var(--accent-soft);
  border-color: rgba(232, 93, 42, 0.35);
  color: var(--accent-deep);
  font-weight: 700;
}

.assign-select {
  min-width: 0;
}

.summary-card {
  padding: 0;
  overflow: hidden;
}

.summary-card summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  padding: 18px;
  font-weight: 700;
}

.summary-card summary::-webkit-details-marker {
  display: none;
}

.summary-card[open] summary {
  border-bottom: 1px solid var(--line);
}

.summary-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.2s ease;
  width: 18px;
  height: 18px;
  font-size: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.summary-card[open] .summary-chevron {
  transform: rotate(180deg);
}

.summary-chevron::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.summary-card-body {
  padding: 18px;
}

.summary-card-body .status-pill-compact {
  margin-top: 6px;
}

.website-manager-list {
  display: grid;
  gap: 16px;
}

.website-manager-group summary {
  font-size: 1.05rem;
}

.website-manager-body {
  display: grid;
  gap: 18px;
}

.work-manager-group summary {
  font-size: 1.02rem;
}

.work-manager-summary-main {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.work-manager-body {
  display: grid;
  gap: 16px;
}

.work-manager-body .helper-text {
  margin: 0;
}

.website-manager-body .helper-text {
  margin: 0;
}

.summary-meta {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.card-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.terms-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 24, 35, 0.42);
  backdrop-filter: blur(6px);
}

.terms-overlay.hidden {
  display: none;
}

.terms-dialog {
  width: min(920px, 100%);
  max-height: min(84vh, 920px);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(31, 79, 174, 0.2);
}

.terms-dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--line);
}

.terms-dialog-head h2 {
  margin: 0;
}

.terms-close-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.terms-dialog-body {
  overflow-y: auto;
  padding: 20px 24px 28px;
}

.terms-dialog-body h2,
.terms-dialog-body h3 {
  margin-top: 0;
}

.terms-dialog-body h3 {
  margin-top: 22px;
  margin-bottom: 8px;
}

.terms-dialog-body p {
  margin: 0 0 12px;
  line-height: 1.7;
  color: var(--muted);
}

.action-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: white;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(31, 79, 174, 0.04);
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.action-button:hover,
.action-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(31, 79, 174, 0.12);
  border-color: rgba(47, 111, 223, 0.22);
}

.action-button:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(31, 79, 174, 0.08);
}

.icon-action-button {
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-action-button .icon-glyph {
  width: 1.15rem;
  height: 1.15rem;
}

.icon-action-button-danger {
  color: #a62f4f;
}

.action-button.action-complete {
  background: var(--secondary-soft);
  color: var(--secondary);
}

.action-button.action-danger {
  background: #fff1f4;
  border-color: rgba(166, 47, 79, 0.24);
  color: #a62f4f;
}

.action-button.action-danger:hover,
.action-button.action-danger:focus-visible {
  background: #ffe4ea;
  border-color: rgba(166, 47, 79, 0.42);
}

.schedule-manager-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.member-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.attendance-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.attendance-birthdays {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.birthday-card {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(221, 213, 240, 0.78), rgba(219, 233, 255, 0.82));
  border: 1px solid rgba(47, 111, 223, 0.16);
}

.birthday-card h4,
.birthday-card p {
  margin: 0;
}

.birthday-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.birthday-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
}

.birthday-item-copy {
  display: grid;
  gap: 4px;
}

.dropzone {
  min-height: 100px;
  display: grid;
  gap: 12px;
  padding-top: 12px;
}

.dropzone.dragover {
  outline: 2px dashed var(--secondary);
  outline-offset: 6px;
  border-radius: 18px;
}

.attendance-student {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: var(--surface-strong);
  border: 1px solid rgba(31, 29, 27, 0.08);
}

.attendance-student h4,
.attendance-student p {
  margin: 0;
}

.attendance-note {
  display: grid;
  gap: 8px;
}

.attendance-note-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.attendance-note-input {
  min-height: 84px;
  padding: 12px 14px;
  border-radius: 14px;
}

.attendance-note-meta {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.icon-button {
  width: 38px;
  height: 38px;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.icon-button:disabled {
  opacity: 0.45;
  cursor: default;
}

.attendance-student .icon-button[data-action="remove-attendance"] {
  display: none;
}

.attendance-slot-card {
  padding: 0;
  overflow: hidden;
}

.attendance-slot-card summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  padding: 18px;
}

.attendance-slot-card summary::-webkit-details-marker {
  display: none;
}

.attendance-slot-card[open] summary {
  border-bottom: 1px solid var(--line);
}

.attendance-slot-heading {
  display: grid;
  gap: 6px;
}

.attendance-slot-heading h4 {
  margin: 0;
}

.attendance-slot-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.attendance-slot-arrow {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: transform 0.2s ease;
  font-size: 0;
  position: relative;
}

.attendance-slot-card[open] .attendance-slot-arrow {
  transform: rotate(180deg);
}

.attendance-slot-arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.attendance-slot-body {
  padding: 18px;
}

.work-agenda {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.agenda-day-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 29, 27, 0.08);
}

.agenda-day-card h4 {
  margin: 0 0 12px;
}

.agenda-day-items {
  display: grid;
  gap: 10px;
}

.agenda-item {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.agenda-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.status-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.status-button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
}

.status-button.is-active[data-status="aanwezig"] {
  background: #d8f5d0;
  border-color: #8fd07d;
}

.status-button.is-active[data-status="ziek"] {
  background: #fff0b8;
  border-color: #e5c64b;
}

.status-button.is-active[data-status="afwezig"] {
  background: #ffd9d1;
  border-color: #ef8c78;
}

.feed-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 29, 27, 0.08);
  box-shadow: var(--shadow);
}

.feed-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.feed-author,
.feed-meta {
  color: var(--muted);
}

.feed-author {
  margin: 0 0 6px;
  font-weight: 700;
}

.reaction-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.feed-video {
  width: 100%;
  border-radius: 18px;
  background: #000;
  margin: 14px 0;
}

.feed-video-compact {
  max-width: 420px;
  max-height: 280px;
}

.reaction-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  font: inherit;
  cursor: pointer;
}

.feed-search-label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.followed-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer {
  width: 100%;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(180deg, #11161f 0%, #0c1119 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-shell,
.footer-sponsors-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-shell {
  padding: 42px 0 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(180px, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 14px;
  max-width: 320px;
}

.footer-brand-logo {
  display: inline-flex;
  width: 86px;
  height: 86px;
  padding: 14px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(47, 111, 223, 0.26), rgba(221, 213, 240, 0.16));
  box-shadow: 0 20px 42px rgba(15, 22, 38, 0.34);
}

.footer-brand-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-brand-name {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  color: #fff;
}

.footer-brand-copy {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.footer-column {
  display: grid;
  gap: 14px;
}

.footer-column h3 {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.footer-link-list {
  display: grid;
  gap: 10px;
}

.footer-link-list p {
  margin: 0;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.footer-text-link,
.footer-terms-link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-text-link:hover,
.footer-terms-link:hover {
  color: #fff;
  transform: translateY(-1px);
}

.footer-socials {
  display: grid;
  gap: 12px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-social-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, background 180ms ease;
}

.footer-social-badge .icon-glyph {
  width: 1.05rem;
  height: 1.05rem;
}

.footer-social-link:hover {
  color: #fff;
}

.footer-social-link:hover .footer-social-badge {
  transform: translateY(-1px);
  background: rgba(47, 111, 223, 0.32);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.footer-sponsors {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 233, 247, 0.92));
  border-top: 1px solid rgba(31, 79, 174, 0.08);
}

.footer-sponsors-inner {
  display: grid;
  gap: 18px;
  padding: 18px 0 24px;
}

.footer-sponsors-label {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 700;
}

.footer-sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.footer-sponsor {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(31, 79, 174, 0.08);
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(31, 79, 174, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.footer-sponsor:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(31, 79, 174, 0.12);
}

.footer-sponsor--springs {
  padding-inline: 24px;
}

.footer-sponsor--rheden {
  padding-inline: 22px;
}

.footer-sponsor span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}

.footer-sponsor--melanie {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(31, 79, 174, 0.08);
  padding: 8px 12px;
}

.footer-sponsor img {
  display: block;
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
  object-position: center center;
  margin-inline: auto;
}

.footer-sponsor--springs img {
  width: min(220px, 100%);
  max-height: 50px;
}

.footer-sponsor--rheden img {
  width: min(200px, 100%);
  max-height: 56px;
}

.footer-sponsor--melanie img {
  width: min(152px, 100%);
  max-height: 152px;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-separator {
  font-size: 0;
  line-height: 0;
}

.footer-separator::before {
  content: "|";
  font-size: 1rem;
  line-height: 1;
}

.footer-terms-link,
.inline-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.footer-terms-link {
  margin: 0;
}

.inline-link-button {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-link-button:hover {
  color: var(--accent-deep);
}

.form-inline-link {
  margin-top: 8px;
}


.opening-flyer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 28px;
  align-items: stretch;
  margin-top: 28px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(219, 233, 255, 0.42), transparent 28%),
    linear-gradient(135deg, var(--accent-deep), var(--accent));
  box-shadow: 0 28px 70px rgba(31, 79, 174, 0.28);
  overflow: hidden;
  position: relative;
}

.opening-flyer::after {
  content: "";
  position: absolute;
  inset: auto -80px -140px auto;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(237, 233, 247, 0.22);
}

.opening-flyer-copy {
  position: relative;
  z-index: 1;
}

.opening-flyer .eyebrow {
  color: #dbe9ff;
}

.opening-flyer h1 {
  max-width: 760px;
  margin: 10px 0 18px;
  font-size: clamp(2.5rem, 5.8vw, 5.4rem);
  line-height: 0.95;
}

.opening-flyer p {
  max-width: 680px;
  font-size: 1.16rem;
  line-height: 1.65;
}

.opening-flyer-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.opening-flyer-details span,
.opening-flyer-badge {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.opening-flyer-details span {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.opening-flyer-badge {
  position: relative;
  z-index: 1;
  min-height: 240px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  text-align: center;
  align-content: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
}

.opening-flyer-badge span {
  color: #dbe9ff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.compact-home-stage .home-stage-copy h1 {
  max-width: 12ch;
}

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

.home-strip-content h3 {
  margin: 4px 0 10px;
  font-size: 1.5rem;
}

@media (max-width: 1180px) and (min-width: 1025px) {
  .site-header {
    gap: 14px;
    align-items: center;
  }

  .brand {
    column-gap: 10px;
  }

  .brand-logo-link {
    width: 50px;
    height: 50px;
  }

  .brand-name {
    font-size: 1.18rem;
  }

  .brand-kicker {
    font-size: 0.66rem;
  }

  .main-nav {
    gap: 8px;
    flex: 1 1 620px;
  }

  .main-nav-links {
    gap: 8px;
    flex-wrap: nowrap;
  }

  .main-nav a,
  .nav-dropdown summary {
    padding: 9px 11px;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .main-nav .nav-icon-link {
    width: 42px;
    min-width: 42px;
  }

  .home-stage {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .home-stage-copy h1 {
    max-width: 12ch;
  }

  .home-stage-side {
    padding-top: 0;
  }

  .home-video-stage {
    --home-video-height: 420px;
  }

  .home-photo-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-flow-video .photo-flow-media {
    max-height: min(var(--home-video-height), 360px);
  }

  .home-feature-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 1180px) and (min-width: 1025px) {
  .site-header {
    gap: 16px;
  }

  .brand {
    grid-template-columns: auto;
    grid-template-areas: "logo";
    column-gap: 0;
    row-gap: 0;
    align-self: center;
  }

  .brand-kicker,
  .brand-name {
    display: none;
  }

  .brand-logo-link {
    width: 54px;
    height: 54px;
    margin-right: 0;
  }

  .main-nav {
    flex: 1 1 0;
    min-width: 0;
  }

  .main-nav-links {
    justify-content: flex-end;
  }
}

@media (max-width: 980px) {
  .hero,
  .opening-flyer,
.home-stage,
  .home-feature-links,
  .home-strip,
  .home-columns,
  .home-contact-grid,
  .info-grid,
  .pricing-grid,
  .pricing-grid-two,
  .dashboard-grid,
  .contact-grid,
  .attendance-board,
  .planning-grid,
  .feed-layout,
  .team-grid,
  .pricing-carousel,
  .pricing-carousel-head {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .form-grid-four,
  .schedule-row,
  .assign-controls,
  .hero-media-grid {
    grid-template-columns: 1fr;
  }

  .home-stage-copy h1 {
    max-width: none;
  }

  .home-video-stage {
    --home-video-height: 380px;
  }

  .photo-flow-large {
    min-height: 260px;
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .home-photo-flow {
    grid-template-columns: 0.82fr 1.18fr;
  }

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

@media (max-width: 1024px) {
  .site-header {
    align-items: center;
    position: relative;
    padding-right: 76px;
  }

  .brand {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "logo kicker"
      "logo name";
    column-gap: 10px;
    row-gap: 4px;
  }

  .brand-logo-link {
    width: 46px;
    height: 46px;
  }

  .brand-name,
  .brand-kicker {
    display: block;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 70;
    opacity: var(--mobile-toggle-opacity, 1);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(0px);
    box-shadow: 0 10px 26px rgba(31, 79, 174, 0.14);
    transition:
      opacity 220ms ease,
      background 220ms ease,
      border-color 220ms ease,
      backdrop-filter 220ms ease,
      transform 160ms ease;
  }

  .site-header.header-scrolled .nav-toggle {
    background: rgba(255, 255, 255, 0.52);
    border-color: rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(14px);
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    width: auto;
    max-height: calc(100vh - 98px);
    overflow-y: auto;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    z-index: 65;
  }

  .main-nav-links,
  .main-nav-end {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .main-nav-end {
    margin-left: 0;
    align-items: stretch;
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .main-nav a,
  .nav-dropdown summary {
    width: 100%;
  }

  .main-nav .nav-icon-link {
    width: 100%;
    padding: 10px 14px;
  }

  .main-nav .nav-icon-link-end {
    margin-left: 0;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    box-shadow: none;
    padding: 8px 0 0;
    background: transparent;
  }

  .back-to-top {
    right: 14px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .brand-logo-link {
    width: 42px;
    height: 42px;
  }

  .hero-copy,
  .hero-card,
  .section-panel {
    padding: 22px;
  }

  .hero-copy h1,
  .page-hero h1,
  .home-stage-copy h1,
  .opening-flyer h1 {
    font-size: clamp(1.78rem, 7.6vw, 2.35rem);
    line-height: 1.14;
    text-wrap: balance;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: manual;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .website-item {
    grid-template-columns: 1fr;
  }

  .home-stage {
    padding-top: 24px;
  }

  .home-video-stage {
    --home-video-height: 340px;
  }

  .home-photo-flow {
    grid-template-columns: 0.88fr 1.12fr;
    grid-template-areas:
      "video image-one"
      "video image-two"
      "image-three image-three";
  }

  .home-actions-row,
  .hero-actions {
    flex-direction: column;
  }

  .home-actions-row .button,
  .hero-actions .button {
    width: 100%;
    text-align: center;
  }

  .photo-flow-card {
    min-height: 0;
  }

  .photo-flow-video {
    min-height: 0;
  }

  .photo-flow-video .photo-flow-media {
    min-height: 0;
    max-height: min(var(--home-video-height), 340px);
  }

  .home-feature-card,
  .home-feature-image {
    min-height: 220px;
  }

  .photo-flow-image {
    min-height: 0;
  }

  .photo-flow-image .photo-flow-media {
    max-height: none;
  }

  .pricing-card.is-side,
  .pricing-card.is-side[data-position="left"],
  .pricing-card.is-side[data-position="right"],
  .pricing-card.is-center {
    transform: translate(-50%, -50%);
    opacity: 1;
  }

  .work-agenda {
    grid-template-columns: 1fr;
  }

  .week-nav {
    width: 100%;
    gap: 8px;
    align-items: center;
  }

  .week-nav .view-toggle {
    order: 1;
  }

  .week-nav .icon-button {
    order: 2;
    width: 36px;
    height: 36px;
  }

  .week-nav .week-label {
    order: 3;
    width: 100%;
    min-width: 0;
    text-align: left;
  }

  .schedule-head {
    display: none;
  }

  .schedule-row {
    gap: 10px;
    padding: 16px;
  }

  .schedule-row span {
    display: grid;
    gap: 4px;
  }

  .schedule-row span::before {
    content: attr(data-label);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-deep);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .pricing-table .schedule-head {
    display: none;
  }

  .pricing-table .schedule-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 28px rgba(31, 79, 174, 0.08);
  }

  .pricing-table .schedule-row + .schedule-row {
    margin-top: 12px;
  }

  .pricing-table .schedule-row span {
    display: grid;
    gap: 4px;
    line-height: 1.35;
  }

  .pricing-table .schedule-row span:first-child {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
  }

  .footer-main,
  .footer-sponsor-grid {
    grid-template-columns: 1fr;
  }

  .back-to-top {
    right: 12px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .back-to-top span {
    font-size: 1.5rem;
  }

  .footer-legal {
    align-items: flex-start;
  }

  .footer-legal-links {
    gap: 12px;
  }

  .club-form label {
    min-width: 0;
  }

  .club-form input,
  .club-form select,
  .club-form textarea {
    min-width: 0;
    max-width: 100%;
  }

  .club-form input[type="date"],
  .club-form input[type="time"] {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    appearance: none;
    -webkit-appearance: none;
  }

  #workScheduleForm .form-grid-four {
    grid-template-columns: 1fr;
  }

  #workScheduleForm label {
    min-width: 0;
  }

  #workScheduleForm input,
  #workScheduleForm select {
    min-width: 0;
    max-width: 100%;
  }

  #workScheduleForm input[type="date"],
  #workScheduleForm input[type="time"] {
    width: 100%;
    min-width: 0;
    appearance: none;
    -webkit-appearance: none;
  }
}

@media (max-width: 699px) {
  .home-video-stage {
    --home-video-height: 320px;
  }

  .home-video-stage .photo-flow-video .photo-flow-media {
    min-height: 240px;
  }

  .home-photo-flow {
    grid-template-columns: 1fr;
    grid-template-areas:
      "video"
      "image-one"
      "image-two"
      "image-three";
  }

  .photo-flow-video .photo-flow-media,
  .photo-flow-image .photo-flow-media {
    max-height: none;
  }

  .media-lightbox {
    padding: 16px;
  }

  .media-lightbox-image {
    max-width: 100%;
    max-height: 82vh;
    border-radius: 18px;
  }

  .confirm-dialog-panel {
    padding: 20px;
    border-radius: 22px;
  }
}





