/* Malý princ — Landing Page (Eppi × Le Petit Prince)
 * Štruktúra: Figma "LP obsahova_desktop" + Eppi UIX patterny.
 * Paleta: kampaňová polnočná modrá (zo záberov) + Eppi pink/coral + zlato.
 */
@font-face {
  font-family: "PP Editorial New";
  src: url("assets/fonts/ppeditorialnew-regular.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: swap;
}

:root {
  --night:   #0e1d44;   /* midnight blue — campaign dark (sampled from hero) */
  --night-2: #0a1733;
  --ink:     #1b2440;   /* text on light */
  --pink:    #ffeeec;
  --pink-light: #fff6f3;
  --cream:   #faf4ee;
  --coral:   #ff6f61;
  --gold:    #c79a52;
  --teal:    #053333;
  --muted:   #5a6478;
  --line:    rgba(14,29,68,.12);
  --serif: "PP Editorial New", Georgia, serif;
  --sans: "Stabil Grotesk", "Helvetica Neue", Arial, sans-serif;
  --pill: 100px;
  --maxw: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: #fff; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

h1,h2,h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; }
.accent { color: var(--coral); }
.section-title { font-size: clamp(30px,4.2vw,52px); text-align: center; margin-bottom: 16px; }
.section-sub { text-align: center; max-width: 58ch; margin: 0 auto 52px; font-size: 17px; color: var(--muted); }
.eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: 12px; font-weight: 600; color: var(--coral); }

/* Buttons */
.cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; font-size: 12px; padding: 15px 32px; border-radius: var(--pill);
  background: var(--night); color: #fff; border: 1px solid var(--night); cursor: pointer; transition: transform .2s, opacity .2s; }
.cta:hover { transform: translateY(-2px); opacity: .92; }
.cta--light { background: #fff; color: var(--night); border-color: #fff; }
.cta--gold { background: var(--gold); color: var(--night-2); border-color: var(--gold); }
.cta--ghost { background: transparent; color: inherit; border-color: currentColor; }
.cta--sm { padding: 11px 22px; font-size: 11px; }

/* Hello bar */
.hellobar { background: var(--night-2); color: #fff; text-align: center; font-size: 12px; letter-spacing: .04em; padding: 9px 16px; }
.hellobar a { color: var(--gold); text-transform: uppercase; font-weight: 600; letter-spacing: .08em; margin-left: 6px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.site-header .logo img { height: 26px; }
.site-header nav { display: flex; gap: 26px; align-items: center; }
.site-header nav a.link { font-size: 13px; }
.site-header nav a.link:hover { color: var(--coral); }

/* HERO */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; color: #fff; overflow: hidden; background: var(--night-2); }
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(270deg, rgba(8,16,40,.82) 0%, rgba(8,16,40,.55) 42%, rgba(8,16,40,.08) 100%); }
.hero .inner { position: relative; z-index: 2; max-width: 560px; margin-left: auto; padding: 80px 0; text-align: left; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { font-size: clamp(40px,6vw,82px); margin: 20px 0 22px; color: #fff; }
.hero p { font-size: clamp(16px,1.4vw,20px); max-width: 48ch; margin-bottom: 34px; opacity: .92; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .trust { margin-top: 30px; display: flex; align-items: center; gap: 18px; font-size: 13px; opacity: .9; flex-wrap: wrap; }
.hero .trust .stars { color: var(--gold); letter-spacing: 2px; }

/* USP strip */
.usp { background: var(--night); color: #fff; }
.usp .wrap { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.usp .u { padding: 26px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.12); }
.usp .u:last-child { border-right: none; }
.usp .u .ico { color: var(--gold); font-size: 20px; margin-bottom: 8px; }
.usp .u h4 { font-family: var(--sans); font-weight: 600; font-size: 14px; letter-spacing: .02em; }
.usp .u p { font-size: 12px; opacity: .7; margin-top: 2px; }

/* STORY */
.story { padding: 110px 0; background: var(--cream); }
.story .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story h2 { font-size: clamp(30px,3.6vw,46px); margin-bottom: 22px; }
.story p { font-size: 17px; color: var(--muted); margin-bottom: 16px; }
.story p strong { color: var(--ink); font-weight: 600; }
.story .media { position: relative; }
.story .media img { width: 100%; border-radius: 14px; box-shadow: 0 24px 60px rgba(14,29,68,.18); }
.story .media .badge { position: absolute; bottom: -18px; left: -18px; background: var(--night); color: #fff; border-radius: 12px; padding: 16px 20px; font-family: var(--serif); font-size: 15px; max-width: 230px; box-shadow: 0 16px 40px rgba(14,29,68,.3); }
.story .media .badge span { color: var(--gold); display: block; font-size: 12px; font-family: var(--sans); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px; }

/* MOTIFS */
.motifs { padding: 100px 0; }
.motifs .grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.motif { background: var(--pink-light); border-radius: 14px; padding: 36px 28px; text-align: center; border: 1px solid var(--line); }
.motif .em { font-size: 34px; margin-bottom: 14px; }
.motif h3 { font-size: 22px; margin-bottom: 8px; }
.motif p { font-size: 14px; color: var(--muted); }

/* CATEGORIES */
.categories { padding: 96px 0; background: var(--night); color: #fff; }
.categories .section-title { color: #fff; }
.categories .tiles { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.tile { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 3/4; display: flex; align-items: flex-end; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.tile:hover img { transform: scale(1.06); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(8,16,40,.82)); }
.tile .lbl { position: relative; z-index: 1; padding: 18px; width: 100%; }
.tile .lbl h3 { font-size: 19px; color: #fff; }
.tile .lbl span { font-size: 12px; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; }

/* PRODUCTS */
.products { padding: 100px 0; }
.products .grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-bottom: 48px; }
.product { display: flex; flex-direction: column; }
.product .img { position: relative; background: var(--pink-light); border-radius: 12px; overflow: hidden; aspect-ratio: 1/1; margin-bottom: 16px; }
.product .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product:hover .img img { transform: scale(1.05); }
.product .wish { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--coral); }
.product .badge { position: absolute; top: 12px; left: 12px; background: var(--coral); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .06em; padding: 4px 10px; border-radius: 5px; text-transform: uppercase; }
.product .cat { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.product h3 { font-size: 21px; margin-bottom: 8px; }
.product .row { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product .price { font-weight: 600; font-size: 17px; }
.product .price small { display: block; font-weight: 400; font-size: 11px; color: #1f7a5a; letter-spacing: .06em; text-transform: uppercase; }

/* VIDEO */
.videoblock { padding: 0 0 100px; }
.videoblock .frame { position: relative; max-width: 1100px; margin: 0 auto; border-radius: 18px; overflow: hidden; box-shadow: 0 30px 80px rgba(14,29,68,.25); background: #000; aspect-ratio: 16/9; }
.videoblock video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* PERSONALIZE */
.personalize { padding: 100px 0; background: var(--cream); }
.personalize .layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.personalize img { width: 100%; border-radius: 14px; box-shadow: 0 24px 60px rgba(14,29,68,.18); }
.personalize h2 { font-size: clamp(30px,3.6vw,46px); margin-bottom: 18px; }
.personalize .quotes { display: flex; flex-direction: column; gap: 14px; margin: 22px 0 28px; }
.personalize .q { font-family: var(--serif); font-size: 20px; padding-left: 18px; border-left: 3px solid var(--gold); }
.personalize p.lead { color: var(--muted); font-size: 16px; margin-bottom: 8px; }

/* GIFTING band */
.gifting { position: relative; color: #fff; }
.gifting img { width: 100%; height: 520px; object-fit: cover; }
.gifting .overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,16,40,.7), rgba(8,16,40,.15)); display: flex; align-items: center; }
.gifting .box { max-width: 520px; padding: 0 6%; }
.gifting h2 { font-size: clamp(28px,3.4vw,44px); color: #fff; margin-bottom: 16px; }
.gifting p { opacity: .92; margin-bottom: 26px; }

/* REVIEWS */
.reviews { padding: 90px 0; text-align: center; }
.reviews .scores { display: flex; justify-content: center; gap: 56px; margin-bottom: 40px; flex-wrap: wrap; }
.reviews .score .n { font-family: var(--serif); font-size: 52px; color: var(--night); }
.reviews .score .stars { color: var(--gold); letter-spacing: 2px; }
.reviews .score p { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.reviews blockquote { max-width: 680px; margin: 0 auto; font-family: var(--serif); font-size: 24px; line-height: 1.4; }
.reviews cite { display: block; margin-top: 16px; font-style: normal; font-size: 13px; color: var(--muted); }

/* FAQ */
.faq { background: var(--night); color: var(--pink); padding: 100px 0; }
.faq .section-title { color: #fff; }
.faq .list { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid rgba(255,255,255,.16); padding: 22px 0; }
.faq summary { font-family: var(--serif); font-size: 21px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 26px; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 14px; font-size: 15px; opacity: .82; }

/* FINAL CTA */
.final { padding: 110px 0; text-align: center; background: var(--cream); }
.final h2 { font-size: clamp(32px,5vw,60px); max-width: 18ch; margin: 0 auto 16px; }
.final p { color: var(--muted); margin-bottom: 30px; }

/* Footer */
.site-footer { background: var(--night-2); color: var(--pink); padding: 50px 0; }
.site-footer .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.site-footer img { height: 22px; }
.site-footer small { opacity: .6; font-size: 12px; max-width: 62ch; }

/* Responsive */
@media (max-width: 1000px) {
  .story .wrap, .personalize .layout { grid-template-columns: 1fr; gap: 40px; }
  .motifs .grid { grid-template-columns: repeat(2,1fr); }
  .categories .tiles { grid-template-columns: repeat(3,1fr); }
  .products .grid { grid-template-columns: repeat(2,1fr); }
  .usp .wrap { grid-template-columns: repeat(2,1fr); }
  .usp .u:nth-child(2) { border-right: none; }
  .usp .u { border-bottom: 1px solid rgba(255,255,255,.12); }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .site-header nav .link { display: none; }
  /* Mobile hero: stacked — illustration on top, text below on solid bg (no overlap) */
  .hero { min-height: auto; flex-direction: column; align-items: stretch; background: var(--night-2); }
  .hero img.bg { position: relative; inset: auto; width: 100%; height: 56vh; object-fit: cover; object-position: 20% 52%; opacity: 1; }
  .hero::after { display: none; }
  .hero .inner { margin: 0; max-width: 100%; padding: 34px 0 46px; }
  .hero h1 { font-size: 40px; }
  .motifs .grid, .products .grid, .categories .tiles { grid-template-columns: 1fr 1fr; }
  .reviews .scores { gap: 32px; }
  .gifting img { height: 420px; }
}
