/* ============================================================
   V2 — KONCEPT „kavárenský editorial magazín"
   krémový papír + espresso + jantarová · Fraunces redakční sazba
   ============================================================ */
:root {
  --color-primary:     #6B4A36;
  --color-primary-dark:#4E3526;
  --color-primary-light:#9C7458;
  --color-accent:      #C8853F;
  --color-accent-text: #99611F;
  --color-text:        #2A2622;
  --color-text-muted:  #6E665C;
  --color-bg:          #FCFAF6;
  --color-bg-alt:      #F3EEE5;
  --color-bg-cream:    #ECE4D6;
  --color-bg-dark:     #211D19;
  --color-border:      #E4DCCD;
  --color-border-soft: #EFE9DD;

  --font-display: 'Fraunces', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --container:   1180px;

  --radius-sm:  6px;
  --radius-lg:  20px;

  --shadow-sm:  0 2px 8px rgba(42,38,34,0.05);
  --shadow-md:  0 14px 36px rgba(42,38,34,0.09);
  --shadow-lg:  0 28px 60px rgba(42,38,34,0.13);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  min-width: 1440px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--color-accent); color: #fff; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ---- Placeholder — jemný produktový obrys ---- */
.placeholder-img {
  background:
    radial-gradient(circle at 50% 42%, transparent 0 78px, rgba(107,74,54,0.07) 78px 79px, transparent 80px),
    repeating-linear-gradient(135deg, rgba(107,74,54,0.035) 0 12px, transparent 12px 24px),
    linear-gradient(150deg, #E9E0CE, #D6C8AF);
  color: #8A7A62;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 1.4rem;
  line-height: 1.5;
  width: 100%;
  height: 100%;
}

/* ---- Typography ---- */
.h1 {
  font-family: var(--font-display);
  font-size: 4.3rem;
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.05;
  letter-spacing: -0.022em;
}
.h2 {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.13;
  letter-spacing: -0.018em;
}
.h3 {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.008em;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.91rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-decoration: none;
  padding: 0.95rem 1.85rem;
  border: 1.5px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
              color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn-primary {
  background: var(--color-primary);
  color: #FCFAF6;
  box-shadow: 0 6px 18px rgba(107,74,54,0.22);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(107,74,54,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}
.btn-ghost:hover {
  border-color: var(--color-primary);
  background: var(--color-bg-alt);
  transform: translateY(-2px);
}
.btn-light {
  background: var(--color-bg);
  color: var(--color-primary-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
}
.btn-light:hover { transform: translateY(-2px); background: #fff; }
.btn-block { width: 100%; justify-content: center; padding-block: 1.1rem; }

/* ============================================================
   NAV — logo vlevo, odkazy vpravo
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252,250,246,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.16s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--color-text); }
.nav-links a:not(.btn):not(.nav-back) { position: relative; }
.nav-links a:not(.btn):not(.nav-back)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width 0.22s var(--ease);
}
.nav-links a:not(.btn):not(.nav-back):hover::after { width: 100%; }
.nav-back { color: var(--color-accent-text) !important; font-size: 0.8rem !important; font-weight: 600 !important; }
.nav-links a.btn { font-size: 0.83rem; padding: 0.7rem 1.4rem; }
.nav-links a.btn-primary { color: #FCFAF6; }
.nav-links a.btn-primary:hover { color: #FCFAF6; }
.logo { text-decoration: none; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.66rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-primary-dark);
}
.logo-dot { color: var(--color-accent-text); }

/* ============================================================
   HERO — editorial: nadpis vlevo, standfirst vpravo
   ============================================================ */
.hero {
  padding: 5rem 0 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -8%, #F4EADB, transparent 72%),
    var(--color-bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: end;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--color-border);
}
.hero-issue {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-text);
  margin-bottom: 1.6rem;
}
.hero-lead .h1 { max-width: 17ch; }
.accent { color: var(--color-accent-text); font-style: italic; }
.hero-standfirst {
  font-size: 1.13rem;
  line-height: 1.62;
  color: var(--color-text-muted);
  padding-left: 1.6rem;
  border-left: 2px solid var(--color-accent);
  margin-bottom: 1.8rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-feature {
  padding: 3.5rem 0 0;
}
.hero-feature-inner { position: relative; }
.hero-feature-img {
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-feature-cap {
  position: absolute;
  left: 1.6rem;
  bottom: 1.4rem;
  font-size: 0.78rem;
  font-style: italic;
  color: #FCFAF6;
  background: rgba(33,29,25,0.74);
  backdrop-filter: blur(6px);
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
}
.hero-figures { padding: 3rem 0 5.5rem; }
.hero-figures-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero-fig {
  padding: 0 1.8rem;
  border-left: 1px solid var(--color-border);
}
.hero-fig:first-child { padding-left: 0; border-left: none; }
.hero-fig-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 400;
  color: var(--color-primary-dark);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.hero-fig-lbl {
  font-size: 0.83rem;
  color: var(--color-text-muted);
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { margin-bottom: 3.8rem; }
.section-header.center { text-align: center; max-width: 42rem; margin-left: auto; margin-right: auto; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-text);
  margin-bottom: 1.1rem;
}
.section-tag::before {
  content: '';
  width: 1.6rem;
  height: 1.5px;
  background: var(--color-accent);
}
.section-header.center .section-tag::after {
  content: '';
  width: 1.6rem;
  height: 1.5px;
  background: var(--color-accent);
}

/* ============================================================
   PROCESS — alternující řádky
   ============================================================ */
.process {
  padding: 7rem 0;
  background: var(--color-bg);
}
.process-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.process-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.process-row.reverse .process-row-visual { order: 2; }
.process-row-visual {
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.process-row-text { padding: 0 1rem; }
.process-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
  color: var(--color-accent-text);
  margin-bottom: 0.7rem;
}
.process-row-text .h3 {
  font-size: 1.95rem;
  line-height: 1.16;
  margin-bottom: 0.9rem;
}
.process-row-text p {
  font-size: 1.04rem;
  color: var(--color-text-muted);
  max-width: 31rem;
}

/* ============================================================
   SIGNATURE — full-width produktový moment
   ============================================================ */
.signature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--color-bg-dark);
  align-items: stretch;
}
.signature-visual { min-height: 480px; }
.signature-text {
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
.signature-text .container {
  max-width: 540px;
  padding-left: 4.5rem;
  padding-right: 3.5rem;
  margin: 0;
}
.signature-quote { position: relative; }
.signature-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--color-accent);
  display: block;
  margin-bottom: 1.2rem;
}
.signature-quote p {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.32;
  color: #F3EADB;
  letter-spacing: -0.015em;
  margin-bottom: 1.6rem;
}
.signature-by {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* ============================================================
   WHY US — skutečné bento
   ============================================================ */
.why-us {
  padding: 7rem 0;
  background: var(--color-bg-alt);
}
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 1.4rem;
}
.bento-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s var(--ease);
}
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-bg-cream);
}
/* feature — velká karta s produktovým vizuálem */
.bento-feature {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bento-feature-img { flex: 1; min-height: 280px; }
.bento-feature-body { padding: 2.2rem 2.2rem 2.4rem; }
.bento-feature-body .h3 { font-size: 1.75rem; margin-bottom: 0.6rem; }
.bento-feature-body p { font-size: 1rem; color: var(--color-text-muted); }
/* zero — vysoká karta s obřím 0 Kč */
.bento-zero {
  grid-row: span 2;
  background: var(--color-bg-dark);
  border-color: var(--color-bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bento-zero:hover { border-color: var(--color-accent); }
.bento-zero-over {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
}
.bento-zero-num {
  font-family: var(--font-display);
  font-size: 4.6rem;
  font-weight: 400;
  color: #F3EADB;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.bento-zero p {
  font-size: 0.95rem;
  color: rgba(243,234,219,0.62);
}
/* drobné karty */
.bento-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: linear-gradient(150deg, var(--color-bg-cream), var(--color-bg-alt));
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.bento-icon svg { width: 23px; height: 23px; }
.bento-small .h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.bento-small p { font-size: 0.93rem; color: var(--color-text-muted); }
/* wide */
.bento-wide {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.bento-wide .bento-icon { margin-bottom: 0; flex-shrink: 0; }
.bento-wide-body .h3 { margin-bottom: 0.45rem; }
.bento-wide-body p { font-size: 0.97rem; color: var(--color-text-muted); }

/* ============================================================
   OFFER — tištěný lístek / menu
   ============================================================ */
.offer {
  padding: 7rem 0;
  background: var(--color-bg);
}
.menu-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3.4rem 3.6rem 2.6rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.menu-card::before {
  content: '';
  position: absolute;
  inset: 0.7rem;
  border: 1px solid var(--color-border-soft);
  border-radius: 14px;
  pointer-events: none;
}
.menu-head {
  text-align: center;
  padding-bottom: 2.4rem;
  border-bottom: 2px solid var(--color-text);
  margin-bottom: 0.6rem;
}
.menu-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-text);
  margin-bottom: 0.8rem;
}
.menu-head .h2 { margin-bottom: 0.7rem; }
.menu-note {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 36rem;
  margin: 0 auto;
}
.menu-list { list-style: none; }
.menu-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: baseline;
  gap: 1.4rem;
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--color-border);
}
.menu-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-accent-text);
  line-height: 1;
}
.menu-item-text .h3 { font-size: 1.6rem; margin-bottom: 0.3rem; }
.menu-item-text p {
  font-size: 0.97rem;
  color: var(--color-text-muted);
  max-width: 42rem;
}
.menu-leader {
  align-self: center;
  height: 0;
  border-bottom: 1.5px dotted var(--color-border-ink, #CFC4AF);
  min-width: 2rem;
}
.menu-tag {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-style: italic;
  color: var(--color-primary);
  white-space: nowrap;
}
.menu-foot {
  text-align: center;
  padding-top: 1.8rem;
}
.menu-foot span {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--color-text-muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 6rem 0;
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 0%, rgba(200,133,63,0.16), transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}
.cta-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.2rem;
}
.cta-inner .h2 { color: #F2E7D5; margin-bottom: 1rem; }
.cta-inner p {
  font-size: 1.08rem;
  color: rgba(242,231,213,0.62);
  margin-bottom: 2.2rem;
}

/* ============================================================
   CONTACT — dvousloupcový
   ============================================================ */
.contact {
  padding: 7rem 0;
  background: var(--color-bg-alt);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 4rem;
  align-items: start;
}
.contact-intro .h2 { margin-bottom: 1.1rem; }
.contact-lead {
  font-size: 1.04rem;
  color: var(--color-text-muted);
  margin-bottom: 1.8rem;
}
.contact-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2.4rem;
}
.contact-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.96rem;
  color: var(--color-text);
}
.contact-tick {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  position: relative;
}
.contact-tick::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 3.5px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.contact-person {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--color-border);
}
.contact-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #FCFAF6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  flex-shrink: 0;
}
.contact-person-text { display: flex; flex-direction: column; gap: 0.1rem; }
.contact-person-text strong {
  font-size: 1rem;
  font-weight: 700;
}
.contact-person-text a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.15s var(--ease);
}
.contact-person-text a:hover { color: var(--color-accent-text); }

.contact-form {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-text);
}
.form-field input,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  resize: vertical;
  transition: border-color 0.16s var(--ease), box-shadow 0.16s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200,133,63,0.13);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #A89C88; }
.form-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 0.95rem;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 4rem 0 2rem;
  background: var(--color-bg-cream);
  text-align: center;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 3px;
  background: var(--color-accent);
  border-radius: 0 0 3px 3px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  padding-bottom: 2.6rem;
}
.footer-claim {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  max-width: 31rem;
}
.footer-links {
  display: flex;
  gap: 1.8rem;
}
.footer-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.15s var(--ease);
}
.footer-links a:hover { color: var(--color-accent-text); }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1.9rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.79rem;
  color: var(--color-text-muted);
}
