:root {
  --canvas-bg: #FAF7F2;
  --canvas-bg-alt: #F1ECE2;
  --ink: #1B1F2B;
  --ink-soft: #565C6E;
  --ink-faint: #8A8F9E;
  --primary: #24316B;
  --primary-dark: #161E48;
  --primary-light: #47569E;
  --accent: #FF7A45;
  --accent-dark: #E15E29;
  --accent-light: #FFB088;
  --surface: #FFFDFB;
  --border: #E5DECF;
  --shadow-sm: 0 1px 2px rgba(27,31,43,0.06), 0 1px 1px rgba(27,31,43,0.04);
  --shadow-md: 0 8px 20px -4px rgba(27,31,43,0.10), 0 2px 6px rgba(27,31,43,0.06);
  --shadow-lg: 0 24px 48px -12px rgba(27,31,43,0.22), 0 10px 20px -6px rgba(27,31,43,0.10);
  --shadow-glow: 0 0 0 1px rgba(255,122,69,0.18), 0 16px 32px -8px rgba(255,122,69,0.28);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --ease: cubic-bezier(.22,.9,.32,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  background: var(--canvas-bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Clash Display', 'DM Sans', sans-serif;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .6em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1.1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.canvas { position: relative; }


.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .9rem 1.7rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .98rem;
  transition: all .35s var(--ease);
  border: 2px solid transparent;
  min-height: 44px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--accent), var(--accent-dark));
  transform: translateX(-101%);
  transition: transform .45s var(--ease);
  z-index: 0;
}
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { box-shadow: var(--shadow-glow); transform: translateY(-3px); }
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; margin-top: 1.2rem; }


.bridge {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transform: translateY(-100%);
  transition: transform .5s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.bridge--visible { transform: translateY(0); box-shadow: var(--shadow-md); }
.bridge__inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1.5rem;
}
.bridge__brand {
  display: flex; align-items: center; gap: .6rem;
  font-family: 'Clash Display', sans-serif;
  font-size: 1.05rem; font-weight: 600;
}
.bridge__logo { width: 34px; height: 34px; }
.bridge__nav { display: none; gap: 2rem; }
.bridge__link {
  position: relative;
  font-size: .95rem; font-weight: 500;
  color: var(--ink-soft);
  padding: .3rem 0;
  transition: color .25s var(--ease);
}
.bridge__link::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--accent);
  transition: width .3s var(--ease);
}
.bridge__link:hover { color: var(--ink); }
.bridge__link:hover::after { width: 100%; }
.bridge__link--active { color: var(--primary); font-weight: 700; }
.bridge__link--active::after { width: 100%; background: var(--primary); }

.bridge__toggle {
  width: 44px; height: 44px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: transparent; border: none;
}
.bridge__toggle span {
  width: 22px; height: 2px; background: var(--ink);
  transition: all .3s var(--ease);
}

@media (min-width: 900px) {
  .bridge__nav { display: flex; }
  .bridge__toggle { display: none; }
}


.drawer {
  position: fixed; inset: 0; z-index: 200;
  background: linear-gradient(160deg, var(--primary-dark), var(--primary) 55%, var(--accent-dark));
  display: flex; flex-direction: column;
  padding: 1.5rem;
  opacity: 0; visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .4s var(--ease), visibility .4s, transform .4s var(--ease);
}
.drawer--open { opacity: 1; visibility: visible; transform: translateY(0); }
.drawer__top {
  display: flex; align-items: center; justify-content: space-between;
  color: #fff; margin-bottom: 2.5rem;
}
.drawer__brand { display: flex; align-items: center; gap: .6rem; font-family: 'Clash Display', sans-serif; font-size: 1.1rem; font-weight: 600; color: #fff; }
.drawer__close {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: background .3s var(--ease), transform .3s var(--ease);
}
.drawer__close:hover { background: rgba(255,255,255,0.28); transform: rotate(90deg); }
.drawer__grid {
  flex: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-content: center;
}
.drawer__item {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .8rem;
  padding: 2rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  color: #fff;
  text-align: center;
  font-weight: 600;
  transition: background .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
  min-height: 120px;
}
.drawer__item i { font-size: 1.6rem; color: var(--accent-light); transition: transform .3s var(--ease); }
.drawer__item:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); border-color: rgba(255,255,255,0.4); }
.drawer__item:hover i { transform: scale(1.15); }


.stage {
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  padding: 7rem 1.5rem 4rem;
  position: relative;
  text-align: center;
  background: radial-gradient(circle at 20% 20%, rgba(255,122,69,0.10), transparent 45%),
              radial-gradient(circle at 80% 75%, rgba(36,49,107,0.10), transparent 50%),
              var(--canvas-bg);
}
.stage__inner { max-width: 900px; }
.stage__title {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 700;
  margin-bottom: 1.4rem;
  display: flex; flex-direction: column; gap: .1em;
}
.stage__mask {
  background: linear-gradient(100deg, var(--primary) 10%, var(--accent) 55%, var(--primary-light) 90%);
  background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: gradientShift 8s ease infinite;
}
.stage__mask--outline { -webkit-text-stroke: 0; }
@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.stage__lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 640px; margin: 0 auto 2.2rem;
  color: var(--ink-soft);
}
.stage__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.stage__sentinel { height: 1px; }

.beacon {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .45rem 1rem;
  border-radius: 999px;
  background: rgba(36,49,107,0.08);
  color: var(--primary);
  font-size: .85rem; font-weight: 600;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(36,49,107,0.15);
}
.beacon--accent { background: rgba(255,122,69,0.14); color: var(--accent-dark); border-color: rgba(255,122,69,0.25); margin-bottom: .8rem; }


.gallery { padding: 6rem 1.5rem; }
.gallery--alt { background: var(--canvas-bg-alt); }
.gallery--dark {
  background: linear-gradient(150deg, var(--primary-dark), var(--primary) 65%);
  color: #fff;
}
.gallery__title--light { color: #fff; }
.gallery__sub--light, .gallery--dark p { color: rgba(255,255,255,0.78); }
.gallery__inner { max-width: 1240px; margin: 0 auto; }
.gallery__inner--narrow { max-width: 860px; }
.gallery__inner--split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.gallery__inner--reverse { direction: rtl; }
.gallery__inner--reverse > * { direction: ltr; }
.gallery__head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.gallery__title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.gallery__sub { color: var(--ink-soft); font-size: 1.05rem; }
.gallery__text--center { text-align: center; }

.tile__img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.4; object-fit: cover;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.tile__img--tall { aspect-ratio: 4/4.6; }
.tile__img:hover { transform: scale(1.02) translateY(-4px); box-shadow: var(--shadow-glow); }


.feature-cols {
  display: grid; grid-template-columns: 1fr; gap: 0;
}
@media (min-width: 800px) {
  .feature-cols { grid-template-columns: 1fr 1fr; column-gap: 3.5rem; }
}
.feature-row {
  display: flex; gap: 1.1rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: transform .3s var(--ease);
}
.feature-row:hover { transform: translateX(6px); }
.feature-row:hover .feature-row__icon { background: var(--accent); color: #fff; transform: rotate(-8deg) scale(1.08); }
.feature-row__icon {
  flex-shrink: 0;
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: rgba(36,49,107,0.08); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: all .35s var(--ease);
}
.feature-row h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.feature-row p { margin-bottom: 0; font-size: .96rem; }


.shelf {
  display: grid; grid-template-columns: 1fr; gap: 1.6rem;
}
@media (min-width: 900px) {
  .shelf { grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto; }
  .shelf .spotlight { grid-row: span 2; }
}
.shelf--four { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .shelf--four { grid-template-columns: repeat(4, 1fr); } }

.spotlight {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  position: relative;
}
.spotlight:hover { transform: translateY(-8px); box-shadow: var(--shadow-glow); }
.spotlight__img { width: 100%; height: 260px; object-fit: cover; transition: transform .5s var(--ease); }
.spotlight:hover .spotlight__img { transform: scale(1.05); }
.spotlight__body { padding: 1.8rem; color: var(--ink); }
.spotlight__body p { color: var(--ink-soft); }
.spotlight__more {
  display: inline-flex; align-items: center; gap: .4em;
  font-size: .85rem; font-weight: 600; color: var(--accent-dark);
  opacity: 0; transform: translateY(6px);
  transition: all .35s var(--ease);
}
.spotlight:hover .spotlight__more { opacity: 1; transform: translateY(0); }

.tile {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent-light); }
.tile__img { height: 170px; object-fit: cover; border-radius: 0; box-shadow: none; }
.tile__body { padding: 1.3rem 1.4rem; }
.tile__body h4 { font-size: 1.02rem; margin-bottom: .3rem; }
.tile__body p { font-size: .92rem; margin-bottom: 0; }

.tile--plain {
  padding: 2rem 1.4rem;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}
.tile--plain:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }
.tile--plain p { color: rgba(255,255,255,0.75); font-size: .92rem; }
.tile__icon {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(255,122,69,0.2); color: var(--accent-light);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  transition: transform .35s var(--ease);
}
.tile--plain:hover .tile__icon { transform: scale(1.15) rotate(8deg); }
.tile--plain h4 { color: #fff; }


.ledger { border-radius: var(--radius-lg); overflow: hidden; }
.ledger__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.ledger__item:hover { box-shadow: var(--shadow-md); border-color: var(--accent-light); }
.ledger__item--open { border-color: var(--accent); box-shadow: var(--shadow-md); }
.ledger__header {
  width: 100%;
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent; border: none;
  text-align: left;
  font-size: 1.02rem; font-weight: 600;
  color: var(--ink);
  min-height: 44px;
}
.ledger__num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(36,49,107,0.08); color: var(--primary);
  font-size: .85rem; font-weight: 700;
}
.ledger__title-text { flex: 1; }
.ledger__chevron { transition: transform .35s var(--ease); color: var(--ink-faint); }
.ledger__item--open .ledger__chevron { transform: rotate(180deg); color: var(--accent); }
.ledger__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}
.ledger__item--open .ledger__panel { max-height: 600px; }
.ledger__panel-inner { padding: 0 1.5rem 1.6rem 1.5rem; display: flex; flex-direction: column; gap: .4rem; }
.ledger__icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: rgba(255,122,69,0.14); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
  margin-bottom: .6rem;
}
.gallery--dark .ledger__item { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.gallery--dark .ledger__header { color: #fff; }
.gallery--dark .ledger__panel-inner p { color: rgba(255,255,255,0.78); }


.timeline { display: flex; flex-direction: column; gap: 2.4rem; }
.timeline__item { display: flex; gap: 1.6rem; align-items: flex-start; }
.timeline__num {
  flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease);
}
.timeline__item:hover .timeline__num { transform: scale(1.1) rotate(-6deg); background: var(--accent); }
.timeline__item h3 { margin-bottom: .3rem; font-size: 1.15rem; }


.page-head { padding: 9rem 1.5rem 3rem; text-align: center; background: var(--canvas-bg-alt); }
.page-head__inner { max-width: 760px; margin: 0 auto; }
.page-head__lede { color: var(--ink-soft); font-size: 1.1rem; }


.field-label { display: block; font-weight: 600; font-size: .88rem; margin: 1rem 0 .4rem; color: var(--ink); }
.field-input {
  width: 100%; padding: .85rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface); font-size: .98rem; color: var(--ink);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  min-height: 44px; font-family: inherit;
}
.field-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255,122,69,0.14); }
.checkbox-row { display: flex; align-items: flex-start; gap: .7rem; font-size: .92rem; color: var(--ink-soft); margin: .5rem 0 .5rem; }
.checkbox-row input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent); }

.contact-info-row { display: flex; align-items: center; gap: .7rem; margin-bottom: .8rem; color: var(--ink-soft); }
.contact-info-row i { color: var(--accent); width: 20px; }
.contact-info-row a:hover { color: var(--accent-dark); }

.urgent-block {
  display: flex; gap: 1.1rem;
  margin-top: 2rem;
  padding: 1.6rem;
  background: rgba(255,122,69,0.08);
  border: 1px solid rgba(255,122,69,0.25);
  border-radius: var(--radius-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.urgent-block:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.urgent-block__icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.urgent-block h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.urgent-block p { font-size: .92rem; margin-bottom: 0; }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }


.legal-doc { display: flex; flex-direction: column; gap: 2.2rem; }
.legal-block h2 { font-size: 1.25rem; margin-bottom: .5rem; color: var(--primary); }
.legal-block p { font-size: .98rem; }


.thanks-canvas { background: linear-gradient(160deg, var(--canvas-bg-alt), var(--canvas-bg)); min-height: 70vh; }
.thanks-stage { display: flex; align-items: center; justify-content: center; padding: 10rem 1.5rem 6rem; }
.thanks-card {
  background: var(--surface);
  padding: 3rem 2.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  text-align: center;
  max-width: 480px;
}
.thanks-card__icon { font-size: 3rem; color: var(--accent); margin-bottom: 1rem; }
.thanks-card h1 { font-size: 1.6rem; }


.plinth { background: var(--primary-dark); padding: 5rem 1.5rem 2rem; color: #fff; }
.plinth__grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 1.4rem;
}
@media (min-width: 800px) { .plinth__grid { grid-template-columns: repeat(4, 1fr); } }
.plinth__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.plinth__card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.1); }
.plinth__card img { margin-bottom: .8rem; }
.plinth__card h3, .plinth__card h4 { color: #fff; font-size: 1.05rem; }
.plinth__card p { color: rgba(255,255,255,0.7); font-size: .9rem; }
.plinth__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.plinth__links a { color: rgba(255,255,255,0.72); font-size: .92rem; transition: color .25s var(--ease), padding .25s var(--ease); }
.plinth__links a:hover { color: var(--accent-light); padding-left: 4px; }
.plinth__bottom { text-align: center; margin-top: 2.4rem; color: rgba(255,255,255,0.5); font-size: .85rem; }


.stage-curtain {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  transform: translateY(-110%);
  transition: transform .5s var(--ease);
  background: var(--primary-dark);
  color: #fff;
  border-bottom: 3px solid var(--accent);
}
.stage-curtain--visible { transform: translateY(0); }
.stage-curtain__inner {
  max-width: 1240px; margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  flex-wrap: wrap;
}
.stage-curtain__text { margin: 0; font-size: .9rem; color: rgba(255,255,255,0.88); }
.stage-curtain__text a { color: var(--accent-light); text-decoration: underline; }
.stage-curtain__actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.stage-curtain .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.35); }
.stage-curtain .btn-ghost:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: #fff; }

@media (max-width: 640px) {
  .stage-curtain__inner { flex-direction: column; align-items: flex-start; }
  .stage-curtain__actions { width: 100%; flex-direction: column; }
  .stage-curtain__actions button { flex: 1; }
}


.alcove {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(20,22,30,0.6);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.alcove--visible { opacity: 1; visibility: visible; }
.alcove__panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 520px; width: 100%;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: scale(.95);
  transition: transform .35s var(--ease);
}
.alcove--visible .alcove__panel { transform: scale(1); }
.alcove__head { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.6rem; border-bottom: 1px solid var(--border); }
.alcove__head h3 { margin: 0; font-size: 1.15rem; }
.alcove__close { background: none; border: none; font-size: 1.1rem; color: var(--ink-faint); width: 44px; height: 44px; transition: color .25s var(--ease); }
.alcove__close:hover { color: var(--accent-dark); }
.alcove__body { padding: 1.2rem 1.6rem; display: flex; flex-direction: column; gap: 1.1rem; max-height: 50vh; overflow-y: auto; }
.alcove__row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; font-size: .9rem; color: var(--ink-soft); }
.alcove__row input { width: 22px; height: 22px; accent-color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.alcove__foot { padding: 1.2rem 1.6rem; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; }


@media (max-width: 800px) {
  .gallery__inner--split { grid-template-columns: 1fr; gap: 2rem; }
  .gallery__inner--reverse { direction: ltr; }
  .gallery { padding: 4rem 1.2rem; }
  .stage { padding-top: 8rem; }
}