:root {
  --gold: #d4af37;
  --gold-light: #f7e6a3;
  --gold-bright: #f3d269;
  --gold-deep: #a9822a;
  --ink: #14120c;
  --muted: #8a8577;
  --line: #efe9d8;
  --white: #ffffff;
  --radius: 26px;
  --shadow: 0 30px 60px -18px rgba(0, 0, 0, .6);
  --gold-grad: linear-gradient(150deg, #f7e6a3 0%, #d4af37 45%, #a9822a 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background:
    radial-gradient(1100px 560px at 50% -8%, #33291180 0%, transparent 60%),
    linear-gradient(160deg, #0c0b07 0%, #171308 55%, #0a0906 100%);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: env(safe-area-inset-top) 16px env(safe-area-inset-bottom);
  color: var(--ink);
}

/* CARD */
.card {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 175, 55, .35);
  animation: rise .6s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

/* HERO */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 50% -20%, #241d0d 0%, #100d07 55%, #070603 100%);
  color: #fff;
  text-align: center;
  padding: 34px 22px 26px;
  overflow: hidden;
  border-bottom: 2px solid var(--gold);
}

.hero__glow {
  position: absolute;
  top: -130px; left: 50%;
  width: 320px; height: 320px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212, 175, 55, .40), transparent 65%);
  filter: blur(12px);
  pointer-events: none;
}

/* jemný kráľovský vzor */
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(212, 175, 55, .10) 1px, transparent 1.4px);
  background-size: 18px 18px;
  opacity: .5;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}

.hero__logo {
  position: relative;
  width: 220px;
  margin: 4px auto 8px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 10px 26px rgba(212, 175, 55, .40));
  animation: float 5.5s ease-in-out infinite;
}
.hero__logo img { width: 100%; height: auto; max-width: 210px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.hero__tagline {
  position: relative;
  margin-top: 2px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: .3px;
  line-height: 1.3;
  color: var(--gold-light);
}

/* zlatý oddeľovač */
.hero__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px auto 4px;
  max-width: 210px;
  color: var(--gold);
  font-size: 12px;
}
.hero__rule span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* QUICK ACTIONS */
.quick {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 14px;
}
.quick__btn {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-grad);
  box-shadow: 0 8px 18px -6px rgba(212, 175, 55, .8);
  color: #241a05;
  transition: transform .18s ease, box-shadow .18s ease;
}
.quick__btn svg { width: 22px; height: 22px; fill: currentColor; }
.quick__btn:active { transform: scale(.9); }
@media (hover: hover) {
  .quick__btn:hover { transform: translateY(-3px); box-shadow: 0 12px 22px -6px rgba(212, 175, 55, .95); }
}

/* SOCIAL */
.social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.social__btn {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(212, 175, 55, .10);
  border: 1px solid rgba(212, 175, 55, .5);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.social__btn svg { width: 22px; height: 22px; fill: currentColor; }
.social__btn:active { transform: scale(.88); }
@media (hover: hover) {
  .social__btn:hover { transform: translateY(-3px); background: var(--gold-grad); color: #241a05; }
}

/* CTA */
.cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.cta__btn svg { width: 18px; height: 18px; fill: currentColor; }
.cta__btn:active { transform: scale(.95); }
.cta__btn--primary {
  background: var(--gold-grad);
  color: #241a05;
  box-shadow: 0 10px 22px -8px rgba(212, 175, 55, .75);
}
.cta__btn--ghost {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, .6);
}
@media (hover: hover) {
  .cta__btn--primary:hover { transform: translateY(-2px); }
  .cta__btn--ghost:hover { background: rgba(212, 175, 55, .14); transform: translateY(-2px); }
}

/* DETAILS */
.details {
  padding: 24px 22px 6px;
  background: #fff;
}
.details__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-deep);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.details__title svg { width: 20px; height: 20px; fill: var(--gold-deep); }

.row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: background .15s ease, padding-left .15s ease;
  border-radius: 12px;
}
.row:last-child { border-bottom: none; }
@media (hover: hover) {
  .row:hover { background: #fdf9ec; padding-left: 12px; }
}
.row:active { background: #f8f1da; }

.row__ic {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(160deg, #fbf3d6, #f0e0ac);
  color: var(--gold-deep);
  border: 1px solid rgba(212, 175, 55, .35);
}
.row__ic svg { width: 22px; height: 22px; fill: currentColor; }

.row__txt { display: flex; flex-direction: column; gap: 2px; }
.row__txt small { font-size: 12px; color: var(--muted); font-weight: 500; }
.row__txt strong { font-size: 15.5px; font-weight: 600; color: #201d14; }

/* FOOTER */
.foot {
  text-align: center;
  padding: 20px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(180deg, #fff, #fdfaf1);
}
.foot span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: .6px;
  color: var(--gold-deep);
}
.foot small { font-size: 11px; color: #bdb59c; }

/* TOAST */
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 20px);
  background: #1a1710;
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, .5);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, .6);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 50;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (min-width: 480px) {
  .card { max-width: 400px; }
}
