﻿/* EuroDrop foundation: tokens, base, header, hero, grids. */

:root {
  --ink: #0e1116;
  --graphite: #1b212b;
  --slate: #5f6b7a;
  --muted: #7d8794;
  --line: #eaecef;
  --line-strong: #d8dde3;
  --surface: #ffffff;
  --soft: #f6f7f9;
  --mist: #eef1f5;
  --silver: #cfd7e2;
  --blue: #1f5eff;
  --blue-soft: #dbe5ff;
  --red: #ff3b30;
  --coral: #ff6b3d;
  --coral-soft: #ffe3d6;
  --cream: #fff6ec;
  --lime: #d7ff3d;
  --green: #168a55;
  --amber: #c9831f;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(14, 17, 22, 0.10);
  --shadow-soft: 0 6px 18px rgba(14, 17, 22, 0.05);
  --shadow-hover: 0 20px 48px rgba(14, 17, 22, 0.14);
  --shadow-coral: 0 14px 36px rgba(255, 107, 61, 0.32);
  --shadow-ink: 0 14px 36px rgba(14, 17, 22, 0.28);
  --gradient-warm: radial-gradient(120% 80% at 10% 0%, var(--cream) 0%, #ffffff 55%);
  --display: "Inter", "Helvetica Neue", Arial, sans-serif;
  --body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.2, 0.8, 0.2, 1);
  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s5: 24px;
  --s6: 32px;
  --s7: 48px;
  --s8: 72px;
  --s9: 104px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--body);
  line-height: 1.45;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.announce {
  display: flex;
  justify-content: center;
  gap: var(--s6);
  overflow: hidden;
  padding: 10px var(--s4);
  color: var(--surface);
  background: linear-gradient(90deg, var(--ink) 0%, var(--graphite) 50%, var(--ink) 100%);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.announce span {
  position: relative;
  opacity: 0.95;
  padding-left: 18px;
}

.announce span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  transform: translateY(-50%);
}

.announce span:nth-child(2)::before { background: var(--lime); }
.announce span:nth-child(3)::before { background: var(--blue); }
.announce span:nth-child(4)::before { background: var(--coral); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(234, 236, 239, 0.8);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  transition: box-shadow 200ms var(--ease-soft), border-color 200ms var(--ease-soft);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(14, 17, 22, 0.06);
  border-bottom-color: rgba(234, 236, 239, 0);
}

.header-main {
  display: grid;
  grid-template-columns: minmax(140px, auto) minmax(0, 1fr) minmax(140px, auto);
  gap: var(--s5);
  align-items: center;
  max-width: 1500px;
  min-height: 68px;
  margin: 0 auto;
  padding: var(--s2) var(--s5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  width: fit-content;
  transition: opacity 160ms var(--ease-soft);
}

.brand:hover {
  opacity: 0.82;
}

.brand-logo-shell {
  display: inline-block;
}

.brand-logo-shell--header .brand-logo-img {
  width: auto;
  height: 38px;
  max-height: 38px;
}

.brand-logo-shell--drawer .brand-logo-img {
  height: 34px;
}

.brand-logo-img {
  display: block;
  width: auto;
  max-width: 100%;
}

.footer-brand .brand-logo-img {
  width: auto;
  height: 54px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.primary-nav,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s4);
}

.primary-nav a,
.pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px var(--s3);
  color: var(--ink);
  background: transparent;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 160ms var(--ease-soft);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 2px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transition: left 220ms var(--ease-snap), right 220ms var(--ease-snap);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  left: var(--s3);
  right: var(--s3);
}

.primary-nav a:hover,
.pill:hover,
.pill.active {
  color: var(--coral);
}

.pill {
  padding: 8px var(--s4);
  background: var(--soft);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 160ms var(--ease-soft), background 160ms var(--ease-soft);
}

.pill:hover,
.pill.active {
  color: var(--surface);
  background: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--s2);
}

.icon-btn {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-weight: 900;
  transition: color 160ms var(--ease-soft), background 160ms var(--ease-soft), transform 160ms var(--ease-soft);
}

.icon-btn:hover {
  color: var(--coral);
  background: var(--coral-soft);
  transform: translateY(-1px);
}

.icon-btn svg {
  display: block;
}

.ed-search-panel {
  overflow: hidden;
  max-height: 0;
  background: var(--surface);
  border-top: 1px solid transparent;
  transition: max-height 260ms var(--ease-soft), border-color 260ms var(--ease-soft);
}

.ed-search-panel.is-open {
  max-height: 140px;
  border-top-color: var(--line);
}

.ed-search-form {
  display: flex;
  align-items: center;
  gap: var(--s3);
  max-width: 720px;
  margin: 0 auto;
  padding: var(--s4) var(--s5);
}

.ed-search-form svg {
  color: var(--muted);
  flex: 0 0 auto;
}

.ed-search-form input[type="search"] {
  flex: 1 1 auto;
  min-height: 46px;
  padding: 0 var(--s2);
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  outline: none;
  transition: border-color 160ms var(--ease-soft);
}

.ed-search-form input[type="search"]:focus {
  border-bottom-color: var(--ink);
}

.ed-search-form .btn {
  min-height: 46px;
  padding: 0 var(--s5);
}

.ed-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
}

.ed-icon-search {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.ed-icon-search::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: rotate(45deg);
}

.ed-icon-bag {
  width: 17px;
  height: 16px;
  margin-top: 3px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.ed-icon-bag::before {
  content: "";
  position: absolute;
  left: 4px;
  top: -7px;
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  display: grid;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  place-items: center;
  color: var(--surface);
  background: var(--coral);
  border: 2px solid var(--surface);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(255, 107, 61, 0.4);
}

.container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--s5);
}

.container.tight {
  max-width: 1200px;
}

.section {
  padding: clamp(var(--s6), 7vw, var(--s8)) 0;
}

.section + .section {
  padding-top: 0;
}

.section.dark {
  color: var(--surface);
  background: var(--ink);
  padding: clamp(var(--s6), 7vw, var(--s8)) 0;
}

.section.split-tone {
  background: var(--soft);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 var(--s3);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dark .kicker {
  color: rgba(255,255,255,0.88);
}

.kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.dark .kicker::before {
  background: var(--coral);
}

.kicker:has(> i[data-lucide])::before,
.kicker:has(> svg.lucide)::before {
  display: none;
}

.kicker > i[data-lucide],
.kicker > svg.lucide {
  width: 16px;
  height: 16px;
  color: var(--coral);
}

.h1,
.h2,
.h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.h1 {
  font-size: clamp(2.4rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
}

.h1 .accent,
.h2 .accent {
  display: inline;
  color: var(--coral);
  font-style: italic;
  font-weight: 800;
}

.h1 .accent::after,
.h2 .accent::after {
  content: ".";
  color: var(--coral);
}

.h2 {
  font-size: clamp(1.7rem, 4.2vw, 3.4rem);
  line-height: 1.06;
}

.h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.copy {
  max-width: 640px;
  margin: var(--s4) 0 0;
  color: var(--slate);
  font-size: clamp(0.95rem, 1.2vw, 1.02rem);
  line-height: 1.55;
}

.dark .copy {
  color: rgba(255,255,255,0.78);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: var(--s5);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: clamp(46px, 5vw, 56px);
  padding: 0 clamp(20px, 2.4vw, 28px);
  color: var(--surface);
  background: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  font-size: clamp(0.85rem, 1.05vw, 0.95rem);
  font-weight: 700;
  letter-spacing: -0.005em;
  text-transform: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms var(--ease-snap), box-shadow 260ms var(--ease-snap), color 220ms var(--ease-snap), border-color 220ms var(--ease-snap);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, var(--coral) 0%, #ff8c5f 60%, var(--coral) 100%);
  transform: translateX(-101%);
  transition: transform 420ms var(--ease-snap);
  pointer-events: none;
}

.btn .btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  transition: transform 260ms var(--ease-snap);
}

.btn:hover {
  transform: translateY(-2px);
  color: var(--surface);
  border-color: var(--coral);
  box-shadow: var(--shadow-coral);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn:hover .btn-arrow {
  transform: translateX(5px);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.btn.secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.btn.secondary::before {
  background: var(--ink);
}

.btn.secondary:hover {
  color: var(--surface);
  border-color: var(--ink);
  box-shadow: var(--shadow-ink);
}

.btn.ghost {
  color: var(--ink);
  background: transparent;
  border-color: transparent;
}

.btn.ghost::before {
  background: var(--soft);
}

.btn.ghost:hover {
  color: var(--ink);
  background: var(--soft);
  border-color: transparent;
  box-shadow: none;
}

.btn.ghost:hover::before {
  transform: translateX(0);
}

.btn.dark {
  color: var(--surface);
  background: var(--blue);
  border-color: var(--blue);
}

.btn.dark::before {
  background: linear-gradient(100deg, #4a7eff 0%, #1f5eff 100%);
}

.btn.dark:hover {
  border-color: var(--blue);
  box-shadow: 0 14px 36px rgba(31, 94, 255, 0.36);
}

.btn.full {
  width: 100%;
}

.btn.sm {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.85rem;
  border-radius: 10px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(var(--s4), 4vw, var(--s5)) 0 clamp(var(--s5), 6vw, var(--s8));
  background:
    radial-gradient(45% 55% at 10% 30%, rgba(255, 107, 61, 0.28) 0%, rgba(255, 107, 61, 0) 70%),
    radial-gradient(40% 50% at 100% 10%, rgba(31, 94, 255, 0.14) 0%, rgba(31, 94, 255, 0) 70%),
    linear-gradient(180deg, var(--cream) 0%, #ffffff 85%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(rgba(14, 17, 22, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: 0 0;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 80%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 80%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(var(--s4), 4vw, var(--s8));
  align-items: center;
  padding-top: var(--s4);
  padding-bottom: var(--s5);
}

@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }
}

.hero-note {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--s5);
  padding: 8px 14px 8px 10px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(14, 17, 22, 0.05);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-note::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 107, 61, 0.22);
  animation: edPulse 1800ms ease-in-out infinite;
}

.hero-note:has(> i[data-lucide])::before,
.hero-note:has(> svg.lucide)::before {
  display: none;
}

.hero-note > i[data-lucide],
.hero-note > svg.lucide {
  width: 16px;
  height: 16px;
  color: var(--coral);
}

.hero-visual {
  position: relative;
  aspect-ratio: 5 / 4;
  min-height: clamp(280px, 60vw, 480px);
  overflow: visible;
  border-radius: var(--radius-lg);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 0;
  background: radial-gradient(50% 50% at 50% 55%, rgba(255, 107, 61, 0.45) 0%, rgba(255, 107, 61, 0) 75%);
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 110px;
  height: 110px;
  background: var(--lime);
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(215, 255, 61, 0.28);
}

.hero-visual img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px rgba(14, 17, 22, 0.18), 0 18px 36px rgba(255, 107, 61, 0.22);
  transition: transform 1400ms var(--ease-soft);
}

.hero-visual:hover img {
  transform: scale(1.035);
}

.ticket {
  position: absolute;
  left: clamp(-12px, -1.5vw, -20px);
  bottom: clamp(-12px, -1.5vw, -20px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(14, 17, 22, 0.2);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ticket > i[data-lucide],
.ticket > svg.lucide {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: var(--coral);
}

.ticket > div {
  display: grid;
  gap: 2px;
}

.ticket span {
  color: var(--slate);
}

.ticket strong {
  font-weight: 800;
  font-size: 0.86rem;
}

@keyframes edPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(255, 59, 48, 0.05); }
}

.stat-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1480px;
  margin: var(--s4) auto 0;
  padding: clamp(var(--s3), 2vw, var(--s5));
  gap: 0;
  background: var(--soft);
  border-radius: var(--radius-lg);
}

@media (min-width: 720px) {
  .stat-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.stat {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px clamp(12px, 2vw, var(--s5));
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.stat > i[data-lucide],
.stat > svg.lucide {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: var(--coral);
}

.stat > div {
  display: grid;
}

@media (min-width: 720px) {
  .stat + .stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: var(--line);
  }
}

.stat strong {
  display: block;
  font-size: clamp(1.15rem, 1.6vw, 1.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
}

.stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: clamp(0.66rem, 0.9vw, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.grid {
  display: grid;
  gap: var(--s4);
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
