:root {
  --depi-pink: #ff0f8a;
  --ink: #151013;
  --paper: #fffaf4;
  --muted: #756b70;
  --line: rgba(21, 16, 19, 0.12);
  --shadow: 0 18px 42px rgba(21, 16, 19, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100svh;
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  background:
    linear-gradient(135deg, rgba(255, 15, 138, 0.08) 0 22%, transparent 22% 100%),
    repeating-linear-gradient(90deg, rgba(21, 16, 19, 0.035) 0 1px, transparent 1px 44px),
    var(--paper);
}

a {
  color: inherit;
}

.page-shell {
  width: min(100%, 520px);
  min-height: 100svh;
  margin: 0 auto;
  padding: max(28px, env(safe-area-inset-top)) 16px max(30px, env(safe-area-inset-bottom));
}

.intro {
  padding: 6px 0 18px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(78vw, 360px);
  margin: 0 auto 28px;
  text-decoration: none;
  animation: logo-rise 640ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 26px rgba(255, 15, 138, 0.18));
}

.kicker,
.section-label {
  margin: 0 0 10px;
  color: var(--depi-pink);
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-inline: auto;
  font-size: 2rem;
  line-height: 0.95;
}

h2 {
  font-size: clamp(1.45rem, 7vw, 2.35rem);
  line-height: 1.04;
}

.intro-text {
  max-width: 28ch;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.links {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.action-link {
  --delay: 0ms;
  display: grid;
  grid-template-columns: 46px 1fr 24px;
  align-items: center;
  min-height: 72px;
  padding: 12px 14px 12px 12px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(21, 16, 19, 0.07);
  transform: translateY(16px);
  opacity: 0;
  animation: link-rise 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--delay);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.action-link:nth-child(1) { --delay: 80ms; }
.action-link:nth-child(2) { --delay: 140ms; }
.action-link:nth-child(3) { --delay: 200ms; }
.action-link:nth-child(4) { --delay: 260ms; }
.action-link:nth-child(5) { --delay: 320ms; }
.action-link:nth-child(6) { --delay: 380ms; }

.action-link-primary {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}

.action-link:focus-visible {
  outline: 3px solid rgba(255, 15, 138, 0.35);
  outline-offset: 3px;
}

@media (hover: hover) {
  .action-link:hover {
    background: #fff;
    border-color: rgba(255, 15, 138, 0.42);
    box-shadow: 0 18px 38px rgba(21, 16, 19, 0.12);
    transform: translateY(-2px);
  }

  .action-link-primary:hover {
    color: #fff;
    background: #23191f;
  }
}

.action-link:active {
  transform: scale(0.985);
}

.action-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--depi-pink);
  border-radius: 8px;
  font-size: 1.1rem;
}

.action-link strong,
.action-link small {
  display: block;
}

.action-link strong {
  font-size: 1.02rem;
  line-height: 1.15;
}

.action-link small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.2;
}

.action-link-primary small {
  color: rgba(255, 255, 255, 0.68);
}

.map-section {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.map-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #f0e9e3;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 72svh, 470px);
}

@keyframes logo-rise {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes link-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 359px) {
  .page-shell {
    padding-inline: 12px;
  }

  .action-link {
    grid-template-columns: 42px 1fr 20px;
    min-height: 68px;
    padding-inline: 10px;
  }

  .action-icon {
    width: 34px;
    height: 34px;
  }

  .action-link strong {
    font-size: 0.96rem;
  }

  .action-link small {
    font-size: 0.78rem;
  }
}

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