:root {
  --bg: #f7f4ef;
  --card: #fffdf9;
  --ink: #26211b;
  --muted: #8d8478;
  --line: #e9e1d3;
  --accent: #a06a35;
  --accent-2: #c99b62;
  --grad: linear-gradient(135deg, #c99b62, #a06a35);
  --shadow-sm: 0 2px 10px rgba(60, 45, 25, .07);
  --shadow-md: 0 12px 34px rgba(60, 45, 25, .13);
  --radius: 16px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }

::selection { background: rgba(160, 106, 53, .22); }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
  z-index: 3000;
  box-shadow: var(--shadow-md);
  max-width: calc(100vw - 40px);
  text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, opacity .2s;
  text-decoration: none;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn:active { transform: scale(.97); }

.btn.primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 20px rgba(160, 106, 53, .32);
}
.btn.primary:hover { box-shadow: 0 10px 26px rgba(160, 106, 53, .42); }

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid rgba(160, 106, 53, .4);
}
.btn.ghost:hover { background: rgba(160, 106, 53, .08); }

.btn.wa {
  background: #1faf54;
  color: #fff;
}
.btn.wa:hover { background: #189347; }

.btn.big { padding: 14px 28px; font-size: 16px; width: 100%; }
.btn[disabled] { opacity: .55; pointer-events: none; }

/* ============================================================
   VIEW: CREATE
============================================================ */
.view-create { min-height: 100vh; display: flex; flex-direction: column; }

.brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 56px);
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
}
.brand-logo svg { width: 24px; height: 24px; color: var(--accent); }
.brand-logo em { font-style: italic; color: var(--accent); }
.brand-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
}

.create-wrap {
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px clamp(20px, 5vw, 48px) 70px;
}

.create-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 18px;
}
.create-hero h1 span { color: var(--accent); font-style: italic; }
.create-hero > p {
  color: var(--muted);
  font-size: 16px;
  max-width: 46ch;
  margin-bottom: 28px;
}

.feature-list { list-style: none; display: grid; gap: 14px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14.5px;
  font-weight: 500;
  color: #4d463d;
}
.feature-list svg {
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 11px;
  background: rgba(160, 106, 53, .1);
  color: var(--accent);
  flex-shrink: 0;
}

/* Form card */
.create-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow-md);
}
.create-card h2 {
  font-family: var(--font-head);
  font-size: 23px;
  margin-bottom: 22px;
}

.field { display: block; margin-bottom: 17px; }
.field > span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
  color: #57503f;
}
.field > span b { color: #c0392b; }
.field > span i { font-weight: 400; color: var(--muted); font-style: normal; }
.field small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.field input[type="url"],
.field input[type="text"],
.field input[type="tel"],
.field input[type="password"],
.fb-form-card input,
.fb-form-card textarea,
.lock-card input {
  width: 100%;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus,
.fb-form-card input:focus,
.fb-form-card textarea:focus,
.lock-card input:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(201, 155, 98, .16);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.pw-box { position: relative; }
.pw-box input { padding-right: 44px; }
.pw-box button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 8px;
  color: var(--muted);
  display: flex;
}
.pw-box button:hover { color: var(--accent); }
.pw-box svg { width: 18px; height: 18px; }

.adv { margin-bottom: 17px; }
.adv summary {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
}
.adv[open] summary { margin-bottom: 12px; }

.form-error {
  background: #fdecea;
  color: #b03a2e;
  border: 1px solid #f5c6c0;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  margin-bottom: 15px;
}

#btn-create { margin-top: 4px; }
#btn-create.loading { pointer-events: none; opacity: .65; }

/* Result */
.result-panel { padding: 0 clamp(20px, 5vw, 48px) 80px; }
.result-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  padding: clamp(26px, 4vw, 42px);
  animation: fadeUp .5s ease both;
}
.result-head { display: flex; gap: 16px; align-items: center; margin-bottom: 24px; }
.result-head h2 { font-family: var(--font-head); font-size: 24px; }
.result-head p { color: var(--muted); font-size: 14px; }
.check-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e8f6ee;
  color: #27ae60;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.check-badge svg { width: 24px; height: 24px; }

.link-box {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.link-box input {
  flex: 1;
  min-width: 0;
  border: 1.5px dashed rgba(160, 106, 53, .45);
  background: rgba(160, 106, 53, .05);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 13px;
  color: var(--ink);
  outline: none;
}
.link-box .btn { white-space: nowrap; }

.result-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }

.qr-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.qr-wrap img {
  border-radius: 12px;
  border: 1px solid var(--line);
  width: 150px;
  height: 150px;
}
.qr-wrap p {
  font-size: 13px;
  color: var(--muted);
  text-align: left;
  line-height: 1.6;
}

.site-footer {
  text-align: center;
  padding: 26px;
  font-size: 13px;
  color: var(--muted);
}

/* ============================================================
   VIEW: GALLERY
============================================================ */

/* Lock screen */
#lock-screen {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(201, 155, 98, .25), transparent),
    radial-gradient(800px 400px at 10% 110%, rgba(160, 106, 53, .18), transparent),
    var(--bg);
}
.lock-card {
  width: 100%;
  max-width: 380px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  padding: 38px 30px;
  text-align: center;
  animation: popIn .45s cubic-bezier(.2,.9,.3,1.3) both;
}
.lock-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(160, 106, 53, .35);
}
.lock-icon svg { width: 26px; height: 26px; }
.lock-card h2 { font-family: var(--font-head); font-size: 24px; margin-bottom: 6px; }
.lock-card p { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.lock-card input { text-align: center; margin-bottom: 14px; }

/* Hero */
.hero {
  position: relative;
  height: clamp(420px, 68vh, 640px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, #3a3128, #191512);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 12, 9, .82) 0%, rgba(15, 12, 9, .25) 45%, rgba(15, 12, 9, .35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 5vw, 64px) 58px;
  max-width: 900px;
  animation: fadeUp .8s ease .15s both;
}
.hero-kicker {
  font-size: 12px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: #e6cba4;
  margin-bottom: 10px;
  font-weight: 600;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(34px, 6vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero-meta {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-meta .dot { opacity: .5; }

.hero-share {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background .2s;
}
.hero-share:hover { background: rgba(255,255,255,.3); }
.hero-share svg { width: 18px; height: 18px; }

.hero-scroll-hint {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.75);
  animation: bob 1.8s ease-in-out infinite;
}
.hero-scroll-hint svg { width: 22px; height: 22px; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0);} 50% { transform: translate(-50%, 7px);} }

/* Folder nav chips */
.folder-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  gap: 9px;
  padding: 13px clamp(16px, 4vw, 48px);
  overflow-x: auto;
  scrollbar-width: none;
  background: rgba(247, 244, 239, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.folder-nav::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0;
  border: 1.5px solid var(--line);
  background: #fff;
  color: #57503f;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 17px;
  border-radius: 999px;
  transition: all .2s;
  white-space: nowrap;
}
.chip:hover { border-color: var(--accent-2); color: var(--accent); }
.chip.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.chip .cnt { opacity: .6; font-weight: 500; margin-left: 5px; }

/* Sections */
.sections {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 60px) clamp(16px, 4vw, 48px) 30px;
}

.photo-section { margin-bottom: clamp(46px, 7vw, 84px); scroll-margin-top: 76px; }

.ps-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.ps-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 700;
}
.ps-count {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ps-line {
  height: 1px;
  background: linear-gradient(to right, var(--line), transparent);
  margin: 10px 0 20px;
}

.masonry { columns: 2; column-gap: 12px; }
@media (min-width: 700px) { .masonry { columns: 3; column-gap: 14px; } }
@media (min-width: 1150px) { .masonry { columns: 4; column-gap: 16px; } }

.ph-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(120deg, #efe9df 30%, #f7f3ec 50%, #efe9df 70%);
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
  cursor: zoom-in;
}
@keyframes shimmer { to { background-position: -200% 0; } }

.ph-item img {
  width: 100%;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .5s ease, transform .6s ease;
}
.ph-item img.loaded { opacity: 1; transform: scale(1); }
.ph-item:hover img.loaded { transform: scale(1.045); }

.ph-item .ph-dl {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(20, 16, 12, .55);
  backdrop-filter: blur(6px);
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity .25s, background .2s;
}
.ph-item:hover .ph-dl { opacity: 1; }
.ph-item .ph-dl:hover { background: rgba(160, 106, 53, .92); }
.ph-item .ph-dl svg { width: 16px; height: 16px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

.load-more-wrap { text-align: center; padding: 8px 0 4px; }

.empty-note {
  color: var(--muted);
  font-size: 14px;
  padding: 30px 0;
  text-align: center;
}

.gallery-error {
  max-width: 480px;
  margin: 90px auto;
  text-align: center;
  padding: 40px 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.gallery-error h2 { font-family: var(--font-head); margin-bottom: 10px; }
.gallery-error p { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; }

.skeleton-hero { height: 60vh; }

/* ---------- Feedback ---------- */
.feedback-section {
  background:
    radial-gradient(900px 400px at 90% 0%, rgba(201, 155, 98, .14), transparent),
    linear-gradient(#f2ede4, #f7f4ef);
  border-top: 1px solid var(--line);
  padding: clamp(46px, 7vw, 90px) clamp(20px, 5vw, 48px);
}
.fb-inner { max-width: 720px; margin: 0 auto; }

.sec-kicker {
  font-size: 11.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}
.sec-title { font-family: var(--font-head); font-size: clamp(26px, 4vw, 38px); }
.sec-desc { color: var(--muted); font-size: 14.5px; margin: 8px 0 26px; }

.fb-form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: clamp(18px, 3vw, 26px);
  margin-bottom: 34px;
}

.stars-input {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 15px;
}
.stars-input button {
  background: none;
  border: none;
  padding: 3px;
  color: #d8cfbe;
  transition: transform .12s ease, color .15s;
}
.stars-input button svg { width: 29px; height: 29px; fill: currentColor; stroke: none; }
.stars-input button.on { color: #e8a33d; }
.stars-input button:hover { transform: scale(1.18); }
.stars-label { margin-left: 10px; font-size: 13px; color: var(--muted); }

.fb-form-card input { margin-bottom: 11px; }
.fb-form-card textarea { resize: vertical; min-height: 74px; }

.fb-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }

.fb-list { display: grid; gap: 13px; }
.fb-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 16px 18px;
  animation: fadeUp .45s ease both;
}
.fb-top { display: flex; align-items: center; gap: 12px; margin-bottom: 7px; }
.fb-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.fb-name { font-weight: 600; font-size: 14.5px; }
.fb-time { font-size: 12px; color: var(--muted); }
.fb-stars { display: inline-flex; gap: 1px; margin-left: auto; }
.fb-stars svg { width: 14px; height: 14px; fill: #e8a33d; }
.fb-stars svg.off { fill: #ded5c4; }
.fb-msg-text { font-size: 14px; color: #4d463d; white-space: pre-wrap; word-break: break-word; }

.fb-empty {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  padding: 26px;
  border: 1.5px dashed var(--line);
  border-radius: 14px;
}

.gallery-footer {
  text-align: center;
  padding: 34px 20px 90px;
  color: var(--muted);
  font-size: 13.5px;
}
.gallery-footer strong { color: var(--ink); }

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .2s;
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); }
.to-top svg { width: 20px; height: 20px; }

/* ============================================================
   LIGHTBOX
============================================================ */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, .96);
  animation: fadeIn .25s ease both;
}
#lightbox[hidden] { display: none; }

.lb-stage {
  position: relative;
  z-index: 2;
  max-width: min(94vw, 1300px);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
#lb-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 70px rgba(0,0,0,.55);
  animation: lbIn .3s ease both;
}
#lb-caption {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  max-width: 90vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@keyframes lbIn { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: scale(1); } }

.lb-topbar {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  color: #fff;
}
#lb-counter { font-size: 13.5px; font-weight: 600; letter-spacing: .04em; opacity: .9; }
.lb-tools { display: flex; gap: 8px; }
.lb-tools button, .lb-tools a {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.13);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: background .2s;
}
.lb-tools button:hover, .lb-tools a:hover { background: rgba(255,255,255,.28); }
.lb-tools svg { width: 18px; height: 18px; }
.lb-tools button.active-slide { background: var(--grad); }

.lb-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background .2s, opacity .2s;
}
.lb-arrow:hover { background: rgba(255,255,255,.28); }
.lb-arrow.prev { left: 14px; }
.lb-arrow.next { right: 14px; }
.lb-arrow svg { width: 21px; height: 21px; }
@media (max-width: 640px) {
  .lb-arrow { top: auto; bottom: 26px; transform: none; }
  .lb-arrow.prev { left: calc(50% - 60px); }
  .lb-arrow.next { right: calc(50% - 60px); }
  #lb-caption { margin-bottom: 66px; }
}

.lb-progress {
  position: absolute;
  z-index: 6;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--grad);
  transition: width 3.4s linear;
}

body.lb-open { overflow: hidden; }

/* ============================================================
   Animations & responsive
============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 880px) {
  .create-wrap { grid-template-columns: 1fr; gap: 34px; padding-top: 6px; }
  .create-hero > p { max-width: none; }
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .link-box { flex-direction: column; }
  .qr-wrap { flex-direction: column; text-align: center; }
  .qr-wrap p { text-align: center; }
  .hero-content { padding-bottom: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
