/* ============================================================
   AzulBay Guest Portal — v2 (Le Cannet)
   Brand: #0D59F2 primary · #FFBC7D accent · DM Sans + Playfair
   Mobile-first, bottom tab nav, premium feel.
   ============================================================ */

:root {
  --primary: #0D59F2;
  --primary-2: #4A82FF;
  --primary-dark: #0945C9;
  --primary-soft: #EBF1FF;
  --accent: #FFBC7D;
  --accent-2: #F39E54;
  --sand: #FFF7EE;
  --sea: #F2F7FF;
  --ink: #0F1F3D;
  --body: #4A5365;
  --muted: #8A91A0;
  --line: #ECEEF3;
  --line-2: #E2E5EC;
  --bg: #F7F8FB;
  --white: #FFFFFF;
  --success: #16A34A;
  --whatsapp: #25D366;

  --shadow-xs: 0 1px 2px rgba(15, 31, 61, .04);
  --shadow-sm: 0 2px 8px rgba(15, 31, 61, .06);
  --shadow-md: 0 8px 24px rgba(15, 31, 61, .08);
  --shadow-lg: 0 20px 48px rgba(13, 89, 242, .18);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --tabbar-h: 72px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-y: contain;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3 { color: var(--ink); margin: 0; line-height: 1.2; letter-spacing: -.01em; }
p { margin: 0; }

/* ─── Demo banner ─── */
.demo-banner {
  background: var(--accent);
  color: #6B3D0F;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  letter-spacing: .02em;
}

/* ============================================================
   APP SHELL
   ============================================================ */

.app {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg);
  min-height: 100vh;
  position: relative;
  padding-bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom));
}

/* ============================================================
   HERO with cover photo
   ============================================================ */

.hero {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  display: flex;
  flex-direction: column;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(15, 31, 61, .15) 0%,
    rgba(15, 31, 61, .35) 55%,
    rgba(15, 31, 61, .85) 100%);
}
.hero-top {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px;
  color: white;
}
.brand-mini { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; letter-spacing: .01em; }
.brand-mini .dot {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: 14px;
  box-shadow: 0 4px 12px rgba(13, 89, 242, .45);
}
.hero-wa {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--whatsapp);
  display: grid; place-items: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, .4);
  transition: transform .15s;
}
.hero-wa:active { transform: scale(.92); }

.hero-bottom {
  position: relative; z-index: 2;
  margin-top: auto;
  padding: 0 22px 26px;
  color: white;
}
.hero-prop {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  opacity: .85;
  margin-bottom: 6px;
}
.hero-greet {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 14px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .25);
  color: white;
}
.hero-greet em {
  font-style: normal;
  color: var(--accent);
  display: inline-block;
}

.hero-chips {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.chip .lbl { color: var(--muted); font-weight: 500; }

/* ============================================================
   TAB CONTENT
   ============================================================ */

.tab-pane {
  display: none;
  padding: 24px 18px 24px;
  animation: fadeSlide .25s ease-out;
}
.tab-pane.active { display: block; }

.tab-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 4px;
}
.tab-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}

/* ─── Generic card ─── */
.card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.card + .card { margin-top: 12px; }

.info-row {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.info-row:first-child { padding-top: 4px; }
.info-row:last-child { border-bottom: none; padding-bottom: 4px; }
.info-row .ico {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--sea);
  display: grid; place-items: center;
  font-size: 18px;
}
.info-row .body { flex: 1; }
.info-row .lbl { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; margin-bottom: 2px; }
.info-row .val { color: var(--ink); font-size: 15px; font-weight: 500; }
.info-row .val.muted-val { color: var(--body); font-weight: 400; line-height: 1.5; }
.info-row .copy-btn,
.info-row .link-btn {
  align-self: center;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 9px;
  padding: 8px 12px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .02em;
}
.info-row .link-btn { background: var(--ink); color: white; }

/* ─── Steps (check-in / check-out) ─── */
.steps {
  list-style: none; padding: 0; margin: 0;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding: 14px 0 14px 48px;
  counter-increment: step;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 14px;
  width: 32px; height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 700;
  box-shadow: 0 4px 10px rgba(13, 89, 242, .3);
}

/* ─── Hint box ─── */
.hint {
  background: var(--sand);
  border-radius: 12px;
  padding: 14px;
  font-size: 14px;
  color: #6B3D0F;
  display: flex; gap: 10px; align-items: flex-start;
}
.hint .hint-ico { font-size: 18px; line-height: 1; flex-shrink: 0; }

/* ─── WIFI tab — big hero card ─── */
.wifi-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #5B91FF 100%);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  color: white;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.wifi-hero::before {
  content: '📶';
  position: absolute;
  top: -10px; right: -10px;
  font-size: 140px;
  opacity: .07;
  transform: rotate(-12deg);
}
.wifi-hero h3 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.wifi-field { margin-bottom: 14px; position: relative; z-index: 1; }
.wifi-field:last-child { margin-bottom: 0; }
.wifi-field .lbl {
  font-size: 11px; opacity: .8; text-transform: uppercase;
  letter-spacing: .1em; font-weight: 600; margin-bottom: 4px;
}
.wifi-field .val-wrap {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 12px 14px;
}
.wifi-field .val {
  flex: 1;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 17px; font-weight: 600;
  word-break: break-all;
}
.wifi-copy {
  background: white;
  color: var(--primary);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}
.wifi-meta {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  font-size: 13px; opacity: .85;
  display: flex; align-items: center; gap: 8px;
}

/* ─── SERVICES ─── */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: flex-start;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.svc-card:active { transform: scale(.99); }
@media (hover: hover) {
  .svc-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-soft); transform: translateY(-2px); }
}
.svc-icon {
  font-size: 28px;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--sea);
  display: grid; place-items: center;
}
.svc-card[data-payable="1"] .svc-icon { background: var(--primary-soft); }
.svc-card[data-payable="0"] .svc-icon { background: var(--sand); }

.svc-head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 2px; }
.svc-title { font-weight: 700; color: var(--ink); font-size: 16px; }
.svc-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 999px;
}
.svc-card[data-payable="1"] .svc-badge { background: var(--primary-soft); color: var(--primary); }
.svc-card[data-payable="0"] .svc-badge { background: var(--sand); color: #6B3D0F; }
.svc-sub { font-size: 13.5px; color: var(--body); margin-bottom: 10px; line-height: 1.45; }
.svc-price { font-size: 13px; color: var(--primary); font-weight: 700; margin-bottom: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background-color .15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: white;
  box-shadow: 0 4px 12px rgba(13, 89, 242, .22);
}
.btn-primary:hover, .btn-primary:active {
  background: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(13, 89, 242, .35);
}
.btn-ghost {
  background: white; color: var(--ink);
  border: 1.5px solid var(--line-2);
}
.btn-ghost:hover { background: var(--bg); border-color: var(--primary-soft); }
.btn-full { width: 100%; }

/* ─── Recommendations ─── */
.reco-list { display: grid; grid-template-columns: 1fr; gap: 12px; }
.reco-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  transition: transform .15s, box-shadow .15s;
}
.reco-card:active { transform: scale(.99); }
@media (hover: hover) {
  .reco-card:hover { box-shadow: var(--shadow-md); }
}
.reco-cat {
  font-size: 12px;
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 4px;
}
.reco-title { font-weight: 700; color: var(--ink); font-size: 16px; margin-bottom: 2px; }
.reco-sub { font-size: 13.5px; color: var(--body); line-height: 1.4; margin-bottom: 6px; }
.reco-dist { font-size: 12px; color: var(--muted); display: inline-flex; align-items: center; gap: 4px; }
.reco-map {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid; place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* ─── House notes ─── */
.note-card {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.note-card:last-child { border-bottom: none; }
.note-ico {
  font-size: 22px;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--sand);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.note-title { font-weight: 700; color: var(--ink); font-size: 15px; margin-bottom: 2px; }
.note-body { font-size: 13.5px; color: var(--body); line-height: 1.45; }

/* ============================================================
   BOTTOM TAB BAR
   ============================================================ */

.tabbar {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.tabbar-inner {
  max-width: 720px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: var(--tabbar-h);
}
.tab-btn {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  color: var(--muted);
  transition: color .15s, transform .15s;
  position: relative;
}
.tab-btn .tab-ico {
  font-size: 22px;
  line-height: 1;
  transition: transform .2s;
}
.tab-btn .tab-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .01em;
}
.tab-btn.active {
  color: var(--primary);
}
.tab-btn.active .tab-ico {
  transform: scale(1.12) translateY(-1px);
}
.tab-btn.active::before {
  content: '';
  position: absolute;
  top: 6px;
  width: 28px; height: 3px;
  border-radius: 99px;
  background: var(--primary);
}
.tab-btn:active .tab-ico { transform: scale(.92); }

/* ============================================================
   MODAL
   ============================================================ */

.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15, 31, 61, .55);
  display: none;
  align-items: flex-end; justify-content: center;
  animation: fadeIn .2s;
  backdrop-filter: blur(4px);
}
.modal-backdrop.open { display: flex; }
.modal {
  background: white;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  width: 100%;
  max-width: 720px;
  padding: 28px 22px calc(28px + env(safe-area-inset-bottom));
  animation: slideUp .3s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
@media (min-width: 600px) {
  .modal-backdrop { align-items: center; }
  .modal { border-radius: var(--r-xl); max-width: 480px; margin: 20px; }
}
.modal-grabber {
  width: 36px; height: 4px;
  background: var(--line-2);
  border-radius: 2px;
  margin: -16px auto 18px;
}
.modal h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.modal .modal-sub {
  color: var(--body);
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.price-pill {
  display: inline-block;
  background: var(--primary-soft); color: var(--primary);
  padding: 6px 12px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
  margin-bottom: 14px;
}
.modal .details {
  background: var(--sand);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13.5px;
  color: #6B3D0F;
  margin-bottom: 16px;
  line-height: 1.5;
}
.modal .secure {
  display: flex; gap: 8px; align-items: center;
  font-size: 12.5px; color: var(--muted);
  margin-bottom: 16px;
}
.modal label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.modal textarea {
  width: 100%;
  border: 1.5px solid var(--line-2);
  border-radius: 12px;
  padding: 12px;
  font-family: inherit;
  font-size: 15px;
  min-height: 90px;
  resize: vertical;
  margin-bottom: 16px;
  background: var(--bg);
}
.modal textarea:focus { outline: none; border-color: var(--primary); background: white; }
.modal .actions { display: flex; gap: 10px; }
.modal .actions .btn { flex: 1; }
.modal .close-x {
  position: absolute; right: 16px; top: 16px;
  background: var(--bg);
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 16px; color: var(--body);
  display: grid; place-items: center;
  z-index: 10;
}

/* Toast */
.toast {
  position: fixed; top: 24px; left: 50%; transform: translateX(-50%) translateY(-20px);
  background: var(--success); color: white;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  box-shadow: 0 12px 32px rgba(22, 163, 74, .35);
  z-index: 300;
  opacity: 0; transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─── Animations ─── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Landing page (route /) ─── */
.landing {
  min-height: 100vh;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--sea) 0%, white 100%);
  padding: 40px 20px;
}
.landing-inner { text-align: center; max-width: 480px; }
.landing-inner h1 {
  font-family: var(--serif);
  font-size: 38px;
  margin-bottom: 14px;
}
.landing-inner p { color: var(--body); font-size: 17px; margin-bottom: 24px; }

/* ============================================================
   CODE D'ACCÈS — révélation temporelle
   ============================================================ */
.code-card {
  border-radius: var(--r-lg);
  padding: 26px 22px;
  margin-bottom: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.code-card-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px;
}

/* UNLOCKED — big bold digits */
.code-card.unlocked {
  background: linear-gradient(135deg, #16A34A 0%, #22C55E 100%);
  color: white;
  box-shadow: 0 12px 28px rgba(22, 163, 74, .25);
}
.code-card.unlocked::before {
  content: '🔓';
  position: absolute; top: -10px; right: -10px;
  font-size: 100px; opacity: .1; transform: rotate(-12deg);
}
.code-digits {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1;
  margin: 4px 0 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.code-copy {
  background: white;
  color: var(--success);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 14px; font-weight: 700;
  margin-bottom: 10px;
}
.code-note {
  font-size: 13px;
  opacity: .9;
  margin-top: 6px;
}

/* LOCKED — countdown */
.code-card.locked {
  background: linear-gradient(135deg, #0F1F3D 0%, #2A3D6B 100%);
  color: white;
  box-shadow: var(--shadow-md);
}
.code-card.locked::before {
  content: '🔒';
  position: absolute; top: -10px; right: -10px;
  font-size: 100px; opacity: .08; transform: rotate(-12deg);
}
.code-locked-msg {
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.4;
  opacity: .92;
}
.code-countdown {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--accent);
  margin: 6px 0 12px;
  font-variant-numeric: tabular-nums;
}
.code-early-link {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .85);
  margin-top: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, .08);
  border-radius: 10px;
}
.code-early-link strong { color: var(--accent); }

/* ============================================================
   REGISTER PAGE
   ============================================================ */
.register {
  background: var(--bg);
  min-height: 100vh;
}
.register-hero {
  height: 260px;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  overflow: hidden;
}
.register-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,31,61,.2) 0%, rgba(15,31,61,.9) 100%);
  padding: 18px 22px 28px;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.register-greet {
  color: white;
}
.register-prop {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .85;
  margin-bottom: 6px;
}
.register-greet h1 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px;
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.register-greet h1 em {
  font-style: normal;
  color: var(--accent);
}
.register-greet p {
  font-size: 15px;
  opacity: .92;
  margin: 0;
}

.register-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 22px 60px;
}
.reg-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.reg-sub {
  color: var(--body);
  font-size: 14.5px;
  margin-bottom: 24px;
  line-height: 1.55;
}
.reg-form { display: flex; flex-direction: column; gap: 14px; }
.reg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.reg-field label {
  display: block;
  font-size: 12.5px; font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
}
.reg-field input {
  width: 100%;
  border: 1.5px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 14px;
  font-family: inherit;
  font-size: 16px; /* 16px évite le zoom iOS */
  background: white;
  transition: border-color .15s, box-shadow .15s;
}
.reg-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.reg-consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--body);
  padding: 12px;
  background: var(--sea);
  border-radius: 12px;
  margin-top: 6px;
  line-height: 1.5;
  cursor: pointer;
}
.reg-consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--primary); }
.reg-submit { margin-top: 8px; height: 52px; font-size: 16px; }
.reg-legal {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
}
.reg-legal a { color: var(--primary); }

/* Not found */
.nf {
  min-height: 100vh;
  display: grid; place-items: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--sand) 0%, white 100%);
}
.nf-inner { text-align: center; max-width: 420px; }
.nf-inner h1 { font-family: var(--serif); font-size: 30px; margin: 14px 0 8px; }
