/* ==========================================================================
   POLETA — coming soon
   Design tokens: BRG zelená #1B4234, krém #F4EFE6, whisky #8B5E3C, camel #B8956A
   ========================================================================== */

@font-face {
  font-family: 'Cormorant Upright';
  src: url('fonts/CormorantUpright-SemiBold.woff2') format('woff2');
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #1B4234;
  --cream: #F4EFE6;
  --whisky: #8B5E3C;
  --camel: #B8956A;

  --text-65: rgba(244, 239, 230, 0.65);
  --text-80: rgba(244, 239, 230, 0.8);
  --text-70: rgba(244, 239, 230, 0.7);
  --text-55: rgba(244, 239, 230, 0.55);
  --text-45: rgba(244, 239, 230, 0.45);
  --line-25: rgba(244, 239, 230, 0.25);
  --line-18: rgba(244, 239, 230, 0.18);
  --line-35: rgba(244, 239, 230, 0.35);

  --font-display: 'Cormorant Upright', Georgia, serif;
  --font-text: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--green);
  color: var(--cream);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus-visible { color: var(--camel); }

a:focus-visible {
  outline: 1px solid var(--camel);
  outline-offset: 4px;
}

img { border-style: none; }

.page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-55);
}

/* --- Hero ---------------------------------------------------------------- */

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 9vh, 88px) 20px 40px;
  text-align: center;
}

.hero__wordmark {
  width: min(320px, 78vw);
  height: auto;
  display: block;
}

.hero__meta {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-65);
}

.hero__rule {
  width: 32px;
  height: 1px;
  background: var(--whisky);
  margin: clamp(28px, 5vh, 44px) auto;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.15;
  margin: 0;
  max-width: 620px;
}

.hero__lead {
  font-size: clamp(15px, 4vw, 16px);
  line-height: 1.7;
  color: var(--text-80);
  max-width: 520px;
  margin: 20px 0 0;
  padding: 0 8px;
}

/* --- Fotky + mapa -------------------------------------------------------- */

.content { padding: 0 clamp(16px, 4vw, 24px) clamp(48px, 8vw, 72px); }

.content__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-label {
  text-align: center;
  margin-bottom: 24px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 40vw), 1fr));
  gap: clamp(10px, 2vw, 16px);
}

.gallery img {
  width: 100%;
  height: clamp(200px, 34vw, 300px);
  object-fit: cover;
  display: block;
  background: rgba(244, 239, 230, 0.06);
}

.map { margin-top: clamp(24px, 4vw, 40px); }

.map iframe {
  width: 100%;
  height: clamp(280px, 40vw, 420px);
  border: 1px solid var(--line-25);
  display: block;
}

/* --- Footer -------------------------------------------------------------- */

.footer {
  border-top: 1px solid var(--line-18);
  padding: 40px clamp(16px, 4vw, 24px) 48px;
}

.footer__grid {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(28px, 4vw, 36px);
  text-align: center;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__line {
  font-size: 16px;
  line-height: 1.6;
}

.footer__line--hours { line-height: 1.8; }

.footer__link {
  font-size: 16px;
}

.footer__maplink {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-35);
  padding-bottom: 2px;
  align-self: center;
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  justify-content: center;
  margin-top: clamp(32px, 5vw, 44px);
}

.social a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-70);
}

.copyright {
  text-align: center;
  margin-top: 36px;
  font-size: 12px;
  color: var(--text-45);
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
