/* ==========================================================================
   Macaron café box — redizajn (handoff Claude design, high-fidelity)
   Design tokens podľa README balíka design_handoff_macaron_web
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

:root{
  --bg:        #FFF6FA; /* ružovkastá biela */
  --ink:       #2E1E27; /* tmavá slivková */
  --pink:      #F2A7C7; /* primárna ružová podľa loga */
  --rose:      #C4416F; /* sýta ružová — odkazy, akcenty */
  --rose-dark: #92264C; /* hover odkazov */
  --muted:     #5C4652; /* sekundárny text */
  --on-dark:   #E6D2DB; /* svetlý text na tmavej */
  --on-dark-dim:#A98D9B;/* tlmený text na tmavej */
  --tag-border:#E3B9CD;
  --hairline:  #EED6E1;
  --tag-text:  #8C6478;
  --card:      #FFFFFF;
  --hero-text: #F4E4EB;
  --on-pink:   #3B2530;

  --font-head: "Archivo", sans-serif;
  --font-body: "Manrope", sans-serif;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }

a { color: var(--rose); text-decoration: none; }
a:hover { color: var(--rose-dark); }

.container{ max-width: 1280px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }

.sr-only{
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ============ Typografia ============ */
.kicker{
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rose); margin: 0 0 14px;
}

h1, h2, h3 { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; }

.h1-hero{ font-size: clamp(44px, 7.5vw, 76px); line-height: 0.95; letter-spacing: -0.03em; margin: 0 0 22px; }
.h1-page{ font-size: clamp(40px, 6.5vw, 62px); line-height: 0.95; letter-spacing: -0.03em; margin: 0 0 20px; }
.h2-section{ font-size: clamp(32px, 5vw, 48px); letter-spacing: -0.02em; margin: 0; }
.h2-sub{ font-size: clamp(26px, 4vw, 32px); letter-spacing: -0.02em; }

.lead{ font-size: 18px; line-height: 1.65; color: var(--muted); max-width: 60ch; margin: 0; }

/* ============ Tlačidlá a odkazy ============ */
.btn{
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 17px 30px;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-sm{ font-size: 13px; padding: 12px 22px; }
.btn-dark{ background: var(--ink); color: var(--bg); }
.btn-dark:hover{ background: var(--rose); color: var(--bg); }
.btn-pink{ background: var(--pink); color: var(--ink); }
.btn-pink:hover{ background: var(--bg); color: var(--ink); }
.btn-outline-light{ border: 2px solid var(--bg); color: var(--bg); padding: 15px 28px; }
.btn-outline-light:hover{ background: var(--bg); color: var(--ink); }
.btn-outline-pink{ border: 2px solid var(--pink); color: var(--pink); padding: 14px 26px; }
.btn-outline-pink:hover{ background: var(--pink); color: var(--ink); }

.link-underline{
  display: inline-block;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 2px solid var(--pink);
  padding-bottom: 4px;
}
.link-underline-lg{ font-size: 14px; }

/* ============ Header ============ */
.site-header{
  position: sticky; top: 0; z-index: 20;
  background: var(--bg);
  border-bottom: 2px solid var(--ink);
}
.site-header .container{
  padding-top: 14px; padding-bottom: 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand{ display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover{ color: var(--ink); }
.brand img{ width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
.brand span{
  font-family: var(--font-head); font-weight: 800; font-size: 17px;
  letter-spacing: -0.01em; text-transform: uppercase;
}
.site-nav{ display: flex; gap: 26px; }
.site-nav a{
  color: var(--ink);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.site-nav a:hover{ color: var(--rose); }
.site-nav a[aria-current="page"]{ border-bottom: 2px solid var(--pink); padding-bottom: 3px; }
.header-cta{ white-space: nowrap; }

.nav-toggle{
  display: none;
  background: none; border: 2px solid var(--ink);
  color: var(--ink); padding: 9px 12px;
  font: 700 13px/1 var(--font-body);
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; min-height: 44px;
}

/* ============ Hero (Domov) ============ */
.hero{ position: relative; }
.hero > img{ width: 100%; height: 640px; object-fit: cover; }
.hero-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(46,30,39,0.72) 0%, rgba(46,30,39,0.35) 55%, rgba(46,30,39,0.1) 100%);
}
.hero-content{ position: absolute; inset: 0; display: flex; align-items: center; }
.hero-inner{ max-width: 640px; color: var(--bg); }
.hero-inner .h1-hero em{ font-style: normal; color: var(--pink); }
.hero-badge{
  display: inline-flex; gap: 10px; align-items: center;
  background: var(--pink); color: var(--ink);
  padding: 8px 16px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-inner p{
  font-size: 19px; line-height: 1.6;
  margin: 0 0 32px; color: var(--hero-text);
  max-width: 52ch; text-wrap: pretty;
}
.hero-actions{ display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ Marquee pás ============ */
.marquee{ background: var(--ink); color: var(--bg); }
.marquee .container{
  padding-top: 20px; padding-bottom: 20px;
  display: flex; gap: 32px; flex-wrap: wrap; justify-content: space-between;
  font-family: var(--font-head);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.marquee .dot{ color: var(--pink); }

/* ============ Sekcie ============ */
.section{ padding-top: 88px; }
.section-page-head{ padding-top: 72px; }
.section-tight{ padding-top: 48px; }
.section-mid{ padding-top: 56px; }
.section-head{
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; margin-bottom: 36px;
}
.section-head p{ margin: 0; font-size: 17px; line-height: 1.6; color: var(--muted); max-width: 44ch; }
.section-head .head-note{ font-size: 16px; max-width: 56ch; }
.social-links{ display: flex; gap: 22px; flex-wrap: wrap; }

/* ============ Karty a gridy ============ */
.grid-2, .grid-3, .grid-4{ display: grid; gap: 16px; }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }

.card{ background: var(--card); border: 2px solid var(--ink); }
.card-img{ width: 100%; height: 200px; object-fit: cover; border-bottom: 2px solid var(--ink); }
.card-body{ padding: 20px; }
.card-body h3, .card-body .card-title{
  font-size: 17px; letter-spacing: -0.01em; margin: 0 0 8px;
}
.card-body p{ margin: 0; font-size: 15px; line-height: 1.6; color: var(--muted); }

.card-dark{ background: var(--ink); border-color: var(--ink); color: var(--bg); display: flex; flex-direction: column; }
.card-dark .card-img{ border-bottom-color: var(--pink); }
.card-dark .card-body{ display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-dark .card-body h3{ margin: 0; color: var(--pink); }
.card-dark .card-body p{ color: var(--on-dark); }
.card-dark .link-underline{ margin-top: auto; align-self: flex-start; font-size: 12px; color: var(--pink); border-bottom-color: var(--pink); padding-bottom: 3px; }
.card-dark .link-underline:hover{ color: var(--bg); }

.after-grid-link{ margin-top: 28px; }

/* Foto mriežka (Domov — vitrína) */
.photo-row img{ width: 100%; height: 320px; object-fit: cover; border: 2px solid var(--ink); }

/* ============ Bez lepku blok ============ */
.glutenfree{ margin-top: 88px; background: var(--pink); }
.glutenfree .container{
  padding-top: 80px; padding-bottom: 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.glutenfree h2{
  font-size: clamp(36px, 5.5vw, 60px); line-height: 0.95;
  letter-spacing: -0.03em; margin: 0 0 22px;
}
.glutenfree .glutenfree-text{ font-size: 18px; line-height: 1.65; margin: 0; color: var(--on-pink); max-width: 44ch; }
.glutenfree-cards{ display: grid; gap: 14px; }
.gf-card{ background: var(--bg); border: 2px solid var(--ink); padding: 24px 26px; }
.gf-card h3{ font-size: 17px; margin: 0 0 8px; }
.gf-card p{ margin: 0; font-size: 15px; line-height: 1.6; color: var(--muted); }
.gf-rating{
  background: var(--ink); color: var(--bg);
  padding: 24px 26px;
  display: flex; align-items: baseline; gap: 16px;
}
.gf-rating strong{
  font-family: var(--font-head); font-weight: 800;
  font-size: 40px; letter-spacing: -0.03em;
}
.gf-rating span{ font-size: 14px; line-height: 1.5; letter-spacing: 0.08em; text-transform: uppercase; }

/* ============ Recenzie ============ */
.review-card{ border: 2px solid var(--ink); padding: 28px; background: var(--card); }
.review-card p{ margin: 0 0 16px; font-size: 17px; line-height: 1.6; }
.review-card cite{
  font-style: normal;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rose);
}

/* ============ Split karty (foto | text) ============ */
.split{ border: 2px solid var(--ink); background: var(--card); display: grid; grid-template-columns: 0.85fr 1.15fr; }
.split > img{ width: 100%; height: 100%; object-fit: cover; border-right: 2px solid var(--ink); min-height: 280px; }
.split-body{ padding: 28px; }
.split-body h3, .split-body h2{ font-size: 24px; margin: 0 0 10px; }
.split-body .split-text{ margin: 0 0 16px; font-size: 16px; line-height: 1.6; color: var(--muted); }
.split-menu{ grid-template-columns: 0.9fr 1.1fr; }
.split-menu > img{ min-height: 230px; }
.split-menu .split-text{ margin-bottom: 14px; }

.hours{ display: grid; grid-template-columns: auto 1fr; gap: 8px 20px; font-size: 15px; }
.hours dt{ color: var(--muted); }
.hours dd{ margin: 0; text-align: right; }
.split .link-underline{ margin-top: 20px; }

.tags{
  display: flex; gap: 8px; flex-wrap: wrap;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.tags span{ border: 1px solid var(--tag-border); padding: 6px 10px; color: var(--tag-text); }

/* ============ Náš tím / placeholder ============ */
.team{ border: 2px solid var(--ink); display: grid; grid-template-columns: 1.05fr 0.95fr; }
.placeholder{
  background: repeating-linear-gradient(45deg, #F7D9E6 0 14px, #FFF1F6 14px 28px);
  border-right: 2px solid var(--ink);
  min-height: 420px;
  display: flex; align-items: flex-end; padding: 18px;
}
.placeholder span{
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px; letter-spacing: 0.06em; color: var(--tag-text);
}
.team-body{ padding: 48px 44px; background: var(--card); }
.team-body h2{ font-size: clamp(30px, 4.5vw, 42px); line-height: 1; letter-spacing: -0.02em; margin: 0 0 20px; }
.team-body p{ margin: 0 0 16px; font-size: 17px; line-height: 1.65; color: var(--muted); max-width: 48ch; }
.team-body p:last-child{ margin-bottom: 0; }

/* ============ Tmavé bannery ============ */
.banner-dark{
  grid-column: 1 / -1;
  border: 2px solid var(--ink);
  background: var(--ink); color: var(--bg);
  padding: 32px 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.banner-dark h2{ font-size: 24px; margin: 0 0 8px; color: var(--pink); }
.banner-dark p{ margin: 0; font-size: 16px; line-height: 1.6; color: var(--on-dark); max-width: 64ch; }

/* ============ Smoothie blok ============ */
.smoothie{
  border: 2px solid var(--ink); background: var(--pink);
  padding: 44px 40px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
}
.smoothie .kicker{ color: var(--ink); margin-bottom: 12px; }
.smoothie h2{ font-size: clamp(30px, 4.5vw, 40px); line-height: 1; letter-spacing: -0.02em; margin: 0 0 16px; }
.smoothie p{ margin: 0; font-size: 17px; line-height: 1.65; color: var(--on-pink); max-width: 48ch; }
.placeholder-smoothie{
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.55) 0 12px, rgba(255,255,255,0.85) 12px 24px);
  border: 2px solid var(--ink);
  min-height: 200px; height: 100%;
  padding: 14px;
}

/* ============ Ako si objednáte ============ */
.order-panel{
  border: 2px solid var(--ink);
  background: var(--ink); color: var(--bg);
  padding: 44px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.order-panel h2{ font-size: clamp(28px, 4vw, 34px); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 16px; }
.order-panel .order-lead{ margin: 0 0 26px; font-size: 17px; line-height: 1.65; color: var(--on-dark); max-width: 44ch; }
.order-actions{ display: flex; gap: 12px; flex-wrap: wrap; }
.order-actions .btn-pink{ padding: 16px 28px; }
.order-actions .btn-pink:hover{ background: var(--bg); }
.order-steps{ display: grid; gap: 14px; align-content: start; }
.order-step{ display: flex; gap: 16px; align-items: baseline; }
.order-step b{
  font-family: var(--font-head); font-weight: 800;
  font-size: 15px; color: var(--pink);
}
.order-step span{ font-size: 16px; line-height: 1.6; color: var(--on-dark); }
.order-note{ margin: 10px 0 0; font-size: 13px; line-height: 1.6; color: var(--on-dark-dim); }

/* ============ Galéria ============ */
.gallery{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery img{ width: 100%; height: 250px; object-fit: cover; border: 2px solid var(--ink); }
.gallery .span2{ grid-column: span 2; }
.gallery-heading{ margin: 56px 0 20px; }

/* ============ Kontakt ============ */
.contact-card{ border: 2px solid var(--ink); background: var(--card); }
.contact-card > img{ width: 100%; height: 300px; object-fit: cover; border-bottom: 2px solid var(--ink); }
.contact-body{ padding: 30px; }
.contact-body .kicker{ margin-bottom: 8px; }
.contact-body h2{ font-size: 28px; margin: 0 0 12px; }
.contact-body .contact-desc{ margin: 0 0 20px; font-size: 16px; line-height: 1.6; color: var(--muted); }
.hours-label{
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--tag-text); margin-bottom: 10px;
}
.contact-body .hours{ gap: 9px 20px; padding-bottom: 20px; border-bottom: 1px solid var(--hairline); }
.contact-body .tags{ margin-top: 20px; }
.contact-body .link-underline{ margin-top: 22px; }
.contact-card iframe{
  width: 100%; height: 280px; border: none;
  border-top: 2px solid var(--ink); display: block;
}

/* ============ FAQ ============ */
.faq-card{ border: 2px solid var(--ink); padding: 26px; background: var(--card); }
.faq-card h3{ font-size: 17px; margin: 0 0 10px; }
.faq-card p{ margin: 0; font-size: 16px; line-height: 1.6; color: var(--muted); }

/* ============ Footer ============ */
.site-footer{ margin-top: 88px; background: var(--ink); color: var(--bg); }
.site-footer .footer-grid{
  padding-top: 72px; padding-bottom: 32px;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 44px;
}
.site-footer h2{ font-size: clamp(30px, 4.5vw, 42px); line-height: 1; letter-spacing: -0.02em; margin: 0; }
.site-footer h2 em{ font-style: normal; color: var(--pink); }
.footer-col{ font-size: 16px; line-height: 2; color: var(--on-dark); }
.footer-col a{ color: var(--pink); }
.footer-col a:hover{ color: var(--bg); }
.footer-copy{ padding-bottom: 36px; font-size: 13px; color: var(--on-dark-dim); letter-spacing: 0.06em; }

/* ==========================================================================
   Responzivita
   ========================================================================== */
@media (max-width: 1020px){
  .grid-4{ grid-template-columns: repeat(2, 1fr); }
  .glutenfree .container{ grid-template-columns: 1fr; gap: 40px; }
  .order-panel{ grid-template-columns: 1fr; gap: 32px; }
  .site-footer .footer-grid{ grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 900px){
  .site-nav{
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 2px solid var(--ink);
    flex-direction: column; gap: 0;
    padding: 8px 28px 16px;
  }
  .site-nav.open{ display: flex; }
  .site-nav a{ padding: 12px 0; min-height: 44px; display: flex; align-items: center; }
  .site-nav a[aria-current="page"]{ padding-bottom: 12px; border-bottom: none; color: var(--rose); }
  .nav-toggle{ display: inline-block; }
  .grid-2, .grid-3{ grid-template-columns: 1fr; }
  .photo-row{ grid-template-columns: 1fr 1fr; }
  .photo-row img:last-child{ grid-column: 1 / -1; }
  .split, .split-menu{ grid-template-columns: 1fr; }
  .split > img{ border-right: none; border-bottom: 2px solid var(--ink); min-height: 0; height: 240px; }
  .team{ grid-template-columns: 1fr; }
  .team .placeholder{ border-right: none; border-bottom: 2px solid var(--ink); min-height: 280px; }
  .team-body{ padding: 32px 28px; }
  .smoothie{ grid-template-columns: 1fr; padding: 32px 28px; }
  .smoothie img{ height: 260px; }
  .order-panel{ padding: 32px 28px; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .gallery img{ height: 200px; }
  .hero > img{ height: 560px; }
}

@media (max-width: 640px){
  .container{ padding-left: 20px; padding-right: 20px; }
  .header-cta{ display: none; }
  .site-nav{ padding-left: 20px; padding-right: 20px; }
  .hero > img{ height: 520px; }
  .hero-inner p{ font-size: 17px; }
  .photo-row{ grid-template-columns: 1fr; }
  .photo-row img{ height: 260px; }
  .photo-row img:last-child{ grid-column: auto; }
  .grid-4{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .gallery img{ height: 160px; }
  .banner-dark{ padding: 26px 22px; }
  .section{ padding-top: 64px; }
  .section-page-head{ padding-top: 48px; }
  .glutenfree{ margin-top: 64px; }
  .glutenfree .container{ padding-top: 56px; padding-bottom: 56px; }
  .site-footer{ margin-top: 64px; }
  .site-footer .footer-grid{ padding-top: 48px; }
}
