
:root {
  --bg: #12081d;
  --bg-soft: rgba(26, 10, 35, 0.82);
  --card: rgba(32, 11, 42, 0.72);
  --card-strong: rgba(29, 8, 39, 0.9);
  --text: #fff6ee;
  --muted: #ffd9c3;
  --muted-2: #f2b8a8;
  --line: rgba(255, 196, 170, 0.24);
  --accent: #ff9d3d;
  --accent-2: #ff4b8c;
  --accent-3: #ffca57;
  --success: #7dffa1;
  --warning: #ffd067;
  --danger: #ff7b7b;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 154, 83, 0.18), transparent 30%),
    radial-gradient(circle at 90% 25%, rgba(255, 95, 142, 0.16), transparent 25%),
    linear-gradient(180deg, rgba(13, 5, 23, 1) 0%, rgba(18, 8, 29, 1) 100%);
  min-height: 100vh;
}

body::before,
body::after,
.page-glow::before,
.page-glow::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(4px);
}

body::before {
  width: 14rem;
  height: 14rem;
  background: rgba(255, 185, 100, 0.14);
  top: 12vh;
  left: -4rem;
}

body::after {
  width: 20rem;
  height: 20rem;
  background: rgba(255, 68, 119, 0.12);
  bottom: 18vh;
  right: -6rem;
}

.page-glow::before {
  width: 8rem;
  height: 8rem;
  background: rgba(255, 186, 119, 0.16);
  top: 42vh;
  right: 10vw;
}

.page-glow::after {
  width: 6rem;
  height: 6rem;
  background: rgba(255, 95, 142, 0.14);
  bottom: 12vh;
  left: 12vw;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-frame {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.page--home .site-frame {
  width: min(100% - 1rem, 640px);
  padding: 0.55rem 0 1rem;
}

.home-landing {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 205, 155, 0.26);
  border-radius: 34px;
  min-height: calc(100vh - 7.4rem);
  background:
    linear-gradient(180deg, rgba(12, 4, 18, 0.18), rgba(12, 4, 18, 0.82)),
    radial-gradient(circle at 54% 14%, rgba(255, 206, 117, 0.2), transparent 16%),
    radial-gradient(circle at 8% 82%, rgba(255, 148, 94, 0.24), transparent 24%),
    radial-gradient(circle at 84% 74%, rgba(255, 126, 84, 0.2), transparent 19%),
    var(--hero-image) center/cover no-repeat;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.46);
}

.home-landing__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 8, 39, 0.14), rgba(18, 8, 29, 0.76)),
    radial-gradient(circle at 50% 12%, rgba(255, 212, 145, 0.23), transparent 15%),
    radial-gradient(circle at 90% 8%, rgba(255, 107, 143, 0.15), transparent 20%);
  pointer-events: none;
}

.home-landing__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.15rem 0.95rem 1.05rem;
}

.home-title {
  margin: 0;
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: clamp(3rem, 9vw, 4.5rem);
  line-height: 0.94;
  color: #ffd972;
  text-shadow: 0 6px 28px rgba(255, 173, 74, 0.35);
}

.home-board {
  margin-top: 0.8rem;
  width: min(94%, 420px);
  padding: 0.72rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 196, 144, 0.22);
  background:
    linear-gradient(140deg, rgba(66, 29, 23, 0.92), rgba(33, 13, 28, 0.93)),
    repeating-linear-gradient(125deg, rgba(255, 163, 92, 0.06), rgba(255, 163, 92, 0.06) 12px, rgba(0, 0, 0, 0.07) 12px, rgba(0, 0, 0, 0.07) 24px);
  font-size: clamp(2.05rem, 7vw, 2.95rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #ffd25e;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.home-actions {
  margin-top: 1.05rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 3.1rem;
  padding: 0.62rem 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 209, 171, 0.38);
  font-size: 1.01rem;
  font-weight: 800;
  color: #fffaf5;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.home-btn__icon {
  font-size: 1.05rem;
}

.home-btn--orange {
  background: linear-gradient(135deg, #ff9029, #dd4309);
}

.home-btn--pink {
  background: linear-gradient(135deg, #ff4e9f, #be0b60);
}

.home-btn--gold {
  background: linear-gradient(135deg, #ffbe2f, #f08f00);
}

.home-flirty {
  margin: 1.05rem 0 0;
  max-width: 31rem;
  font-size: clamp(1.34rem, 4vw, 2.05rem);
  font-weight: 800;
  line-height: 1.12;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.32);
}

.home-status {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.home-status__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.42rem 0.66rem;
  border-radius: 999px;
  background: rgba(12, 4, 18, 0.52);
  border: 1px solid rgba(255, 201, 157, 0.22);
  color: var(--muted);
  font-size: 0.92rem;
}

.home-status__hint {
  margin: 0.44rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.home-divider {
  margin-top: 0.95rem;
  width: min(95%, 530px);
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 205, 160, 0.34);
}

.home-divider__script {
  display: inline-block;
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: clamp(2rem, 6.4vw, 2.75rem);
  color: #ffcf88;
  text-shadow: 0 4px 18px rgba(255, 168, 84, 0.34);
}

.home-divider p {
  margin: 0.1rem 0 0;
  font-size: clamp(1.42rem, 4.3vw, 2rem);
  line-height: 1.16;
  font-weight: 500;
}

.home-crew {
  margin-top: 0.92rem;
  width: min(96%, 540px);
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 0.75rem;
  align-items: center;
  border: 1px solid rgba(255, 201, 158, 0.22);
  border-radius: 20px;
  padding: 0.55rem;
  background: linear-gradient(180deg, rgba(36, 12, 42, 0.66), rgba(24, 8, 30, 0.75));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

.home-crew__image {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  border-radius: 13px;
  border: 1px solid rgba(255, 189, 132, 0.23);
}

.home-crew__content {
  text-align: left;
}

.home-crew__content h2 {
  margin: 0;
  font-size: 2rem;
}

.home-crew__content h3 {
  margin: 0.12rem 0 0;
  font-size: 2.2rem;
}

.home-crew__content p {
  margin: 0.24rem 0 0.56rem;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.2;
}

.home-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 202, 161, 0.38);
  background: linear-gradient(180deg, rgba(49, 17, 45, 0.88), rgba(31, 11, 36, 0.9));
  font-size: 1.25rem;
  font-weight: 700;
}

.home-social-proof {
  margin-top: 0.58rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #ffd3b7;
  font-size: 1.22rem;
}

.home-social-proof strong {
  color: #fff1e5;
  font-size: 1.3rem;
}

.home-more-btn {
  margin-top: 0.42rem;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  padding: 0.64rem 1.18rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 201, 160, 0.42);
  background: linear-gradient(180deg, rgba(51, 18, 44, 0.85), rgba(30, 11, 35, 0.88));
  font-size: 1.22rem;
  font-weight: 700;
  box-shadow: 0 11px 26px rgba(0, 0, 0, 0.32);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 7, 26, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 166, 70, 0.94), rgba(255, 75, 140, 0.96));
  box-shadow: 0 10px 26px rgba(255, 102, 102, 0.28);
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.topnav__link {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: 0.22s ease;
}

.topnav__link:hover,
.topnav__link.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.topnav__link--ghost {
  background: rgba(255, 121, 121, 0.12);
}

.flash {
  margin: 0 0 1rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.flash--success {
  background: rgba(90, 222, 140, 0.12);
  border-color: rgba(125, 255, 161, 0.28);
}

.flash--error {
  background: rgba(255, 123, 123, 0.12);
  border-color: rgba(255, 123, 123, 0.28);
}

.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 203, 167, 0.24);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(18, 7, 26, 0.08), rgba(12, 4, 18, 0.84)),
    linear-gradient(180deg, rgba(18, 8, 29, 0.15), rgba(18, 8, 29, 0.88)),
    var(--hero-image) center/cover no-repeat;
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 212, 137, 0.28), transparent 14%),
    radial-gradient(circle at 9% 84%, rgba(255, 125, 94, 0.3), transparent 20%),
    radial-gradient(circle at 85% 68%, rgba(255, 177, 102, 0.22), transparent 16%);
  mix-blend-mode: screen;
}

.hero__content {
  position: relative;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.2rem, 4vw, 3rem) 2.4rem;
}

.hero__title {
  margin: 0;
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  line-height: 0.95;
  color: #ffd672;
  text-shadow: 0 8px 34px rgba(255, 179, 84, 0.32);
}

.hero__banner {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 1.4rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(48, 18, 18, 0.92), rgba(41, 17, 35, 0.94));
  border: 1px solid rgba(255, 188, 139, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  font-size: clamp(1.75rem, 5.8vw, 3rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.hero__line {
  max-width: 34rem;
  margin: 1rem 0 0;
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  color: var(--text);
  text-wrap: balance;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(19, 8, 29, 0.68);
  border: 1px solid rgba(255, 193, 150, 0.24);
  backdrop-filter: blur(12px);
}

.status-hint {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.hero__buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.45rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  padding: 1.05rem 1.25rem;
  border: 0;
  border-radius: 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28); }
.btn:disabled { opacity: 0.65; cursor: wait; transform: none; }

.btn--gradient {
  background: linear-gradient(135deg, #ff9d3d, #ff4b8c);
}

.btn--gold {
  background: linear-gradient(135deg, #ffc94d, #ff9b1e);
}

.btn--dark {
  color: var(--text);
  background: linear-gradient(180deg, rgba(35, 12, 39, 0.96), rgba(24, 8, 30, 0.96));
  border: 1px solid rgba(255, 185, 134, 0.18);
}

.btn--ghost {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.hero__teaser {
  margin-top: 2rem;
  max-width: 54rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 217, 195, 0.18);
  text-align: center;
}

.hero__teaser p {
  margin: 0.25rem 0;
  font-size: clamp(1.02rem, 2.25vw, 1.2rem);
}

.content-grid {
  display: grid;
  gap: 1.3rem;
  margin-top: 1.4rem;
}

.section-card,
.photo-card,
.admin-card,
.stat-card,
.form-shell,
.comment-card,
.contact-card {
  border: 1px solid rgba(255, 197, 153, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(29, 10, 38, 0.82), rgba(20, 8, 29, 0.88));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.section-card {
  padding: 1.4rem;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.section-heading p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.preview-grid,
.gallery-grid,
.admin-photo-grid,
.stats-grid,
.dashboard-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.photo-card {
  overflow: hidden;
}

.photo-card__image {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
}

.photo-card__body {
  padding: 1rem;
}

.photo-card__title {
  margin: 0;
  font-size: 1.02rem;
}

.photo-card__caption {
  margin: 0.4rem 0 0.9rem;
  color: var(--muted);
  min-height: 2.5rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  color: var(--muted-2);
  font-size: 0.94rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.crew-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 1.2rem;
  align-items: center;
}

.crew-card__image {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
}

.crew-card__content h3 {
  margin: 0 0 0.35rem;
  font-size: 1.55rem;
}

.crew-card__content p {
  margin: 0;
  color: var(--muted);
  max-width: 44rem;
}

.gallery-summary {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.form-shell {
  padding: 1.35rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

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

label,
.field-label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.field-help {
  margin-top: 0.35rem;
  color: var(--muted-2);
  font-size: 0.92rem;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
select,
textarea,
input[type="file"] {
  width: 100%;
  padding: 0.9rem 1rem;
  color: var(--text);
  border: 1px solid rgba(255, 196, 170, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  outline: none;
}

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

input.is-invalid,
textarea.is-invalid {
  border-color: rgba(255, 123, 123, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 123, 123, 0.14);
}

.choice-grid,
.radio-grid {
  display: grid;
  gap: 0.8rem;
}

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

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

.choice-card,
.radio-card {
  position: relative;
  overflow: hidden;
}

.choice-card input,
.radio-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.choice-card span,
.radio-card span {
  display: block;
  padding: 1rem 1rem;
  border: 1px solid rgba(255, 196, 170, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  min-height: 100%;
}

.choice-card input:checked + span,
.radio-card input:checked + span {
  border-color: rgba(255, 190, 120, 0.68);
  background: linear-gradient(135deg, rgba(255, 157, 61, 0.16), rgba(255, 75, 140, 0.12));
  box-shadow: inset 0 0 0 1px rgba(255, 198, 102, 0.14), 0 12px 30px rgba(255, 120, 94, 0.12);
}

.stepper {
  display: grid;
  gap: 1rem;
}

.stepper__step {
  animation: fadeUp 0.24s ease;
}

.stepper__nav {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1rem;
}

.stepper__progress {
  color: var(--muted);
  font-weight: 700;
  text-align: right;
}

.preview-image {
  margin-top: 0.8rem;
  max-width: 240px;
  border-radius: 16px;
  border: 1px solid rgba(255, 196, 170, 0.18);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.photo-detail {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.photo-detail__image {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(255, 197, 153, 0.18);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.04);
}

.photo-nav {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-nav .btn {
  width: 100%;
}

.photo-nav__placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.55rem 0.8rem;
  border-radius: 18px;
  border: 1px dashed rgba(255, 196, 170, 0.28);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.comment-list {
  display: grid;
  gap: 0.85rem;
}

.comment-card,
.contact-card,
.admin-card,
.stat-card {
  padding: 1rem;
}

.comment-card__head,
.contact-card__head {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: baseline;
}

.muted { color: var(--muted); }
.small { font-size: 0.92rem; }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.36rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.88rem;
}

.badge--success { background: rgba(125, 255, 161, 0.16); color: #c9ffd7; }
.badge--warning { background: rgba(255, 208, 103, 0.16); color: #ffeeb4; }
.badge--muted { background: rgba(255, 255, 255, 0.06); color: var(--muted); }

.stats-grid,
.dashboard-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  margin-top: 0.35rem;
}

.admin-list {
  display: grid;
  gap: 1rem;
}

.admin-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.confirm-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  padding: 0.5rem 0.15rem;
}

.confirm-inline input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.admin-hero {
  margin-bottom: 1rem;
}

.empty-state {
  padding: 1.6rem;
  text-align: center;
  color: var(--muted);
}

.legal-text {
  white-space: pre-wrap;
  line-height: 1.7;
}

.site-footer {
  margin-top: 1.4rem;
  padding: 1rem 1.2rem 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(17, 7, 26, 0.6);
}

.site-footer--home {
  margin-top: 0.52rem;
  padding: 0.35rem 0.25rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.social-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.social-pill {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.social-icon {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  border: 1px solid rgba(255, 207, 172, 0.3);
  color: #fffaf1;
}

.social-icon--instagram {
  background: linear-gradient(135deg, #ffca49, #ff3f7f 54%, #853aff);
}

.social-icon--whatsapp {
  background: linear-gradient(135deg, #20d96d, #0ca144);
}

.social-icon--muted {
  opacity: 0.42;
}

.social-pill--muted {
  color: var(--muted);
}

.footer-links a {
  color: var(--muted);
}

.site-footer--home .footer-links {
  gap: 0.55rem;
}

.site-footer--home .footer-links a {
  color: rgba(255, 234, 219, 0.88);
  font-size: 0.87rem;
}

.section-spacer {
  margin-top: 1.2rem;
}

.center { text-align: center; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dashboard-grid, .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photo-detail { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .topbar {
    border-radius: 24px;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }

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

  .form-row,
  .choice-grid,
  .radio-grid,
  .crew-card,
  .admin-photo-grid,
  .photo-nav {
    grid-template-columns: 1fr;
  }

  .crew-card__image {
    max-width: 240px;
  }
}

@media (max-width: 700px) {
  .home-landing {
    border-radius: 26px;
    min-height: auto;
  }

  .home-crew {
    grid-template-columns: 108px 1fr;
  }
}

@media (max-width: 560px) {
  .site-frame {
    width: min(100% - 1rem, var(--container));
    padding-top: 0.55rem;
  }

  .preview-grid,
  .gallery-grid,
  .stats-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    border-radius: 26px;
  }

  .hero__content {
    padding: 1.25rem 1rem 1.35rem;
  }

  .hero__banner {
    max-width: none;
  }

  .topnav {
    justify-content: flex-start;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer--home {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .home-title {
    font-size: clamp(2.45rem, 10.6vw, 3rem);
  }

  .home-board {
    font-size: clamp(1.48rem, 7.1vw, 2rem);
    line-height: 1.03;
  }

  .home-btn {
    min-height: 2.58rem;
    font-size: 0.85rem;
    gap: 0.2rem;
    padding-inline: 0.25rem;
  }

  .home-btn__icon {
    font-size: 0.92rem;
  }

  .home-flirty {
    font-size: clamp(1.08rem, 5.7vw, 1.4rem);
  }

  .home-divider__script {
    font-size: clamp(1.44rem, 8vw, 1.9rem);
  }

  .home-divider p {
    font-size: clamp(1rem, 5vw, 1.25rem);
  }

  .home-crew__content h2 {
    font-size: 1.2rem;
  }

  .home-crew__content h3 {
    font-size: 1.46rem;
  }

  .home-crew__content p {
    font-size: 0.95rem;
  }

  .home-link-btn {
    font-size: 0.92rem;
    padding: 0.48rem 0.75rem;
  }

  .home-social-proof {
    font-size: 0.95rem;
  }

  .home-social-proof strong {
    font-size: 1.04rem;
  }

  .home-more-btn {
    font-size: 0.95rem;
    padding: 0.54rem 0.95rem;
  }
}

@media (max-width: 410px) {
  .home-actions {
    grid-template-columns: 1fr;
  }
}
