:root {
  --forest: #23392f;
  --forest-2: #10251d;
  --moss: #6f8f3f;
  --gold: #d9a326;
  --cream: #fbf7ec;
  --paper: #ffffff;
  --ink: #1f2420;
  --muted: #68706a;
  --line: rgba(31, 36, 32, 0.16);
  --shadow: 0 20px 55px rgba(18, 27, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(251, 247, 236, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand img {
  width: 68px;
  height: 58px;
  border-radius: 8px;
  object-fit: contain;
  background: #ffffff;
  border: 2px solid var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--forest);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--moss);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--forest);
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 32px;
  padding: 130px clamp(18px, 5vw, 72px) 72px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(13, 30, 22, 0.88), rgba(13, 30, 22, 0.42)),
    url("https://upload.wikimedia.org/wikipedia/commons/f/f2/Dedinky_and_Palcmanska_masa.jpg")
      center / cover;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow,
.label {
  margin: 0 0 10px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f5cd5c;
}

h1,
h2,
h3,
p,
strong {
  overflow-wrap: break-word;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.95;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: #1b1a12;
}

.button.primary:hover {
  background: #f0bd3b;
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.hero-panel {
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--forest);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 190px;
  height: 150px;
  margin-bottom: 18px;
  border-radius: 8px;
  object-fit: contain;
  background: #ffffff;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.hero-panel span {
  color: var(--muted);
}

.intro-section,
.section,
.feature-band,
.contact-section {
  padding: 84px clamp(18px, 5vw, 72px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 46px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.intro-section p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  display: grid;
  gap: 26px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.price-card.featured {
  background: var(--forest);
  color: #ffffff;
}

.price-card h3 {
  margin-top: 4px;
  color: inherit;
  font-size: clamp(3.2rem, 8vw, 5.2rem);
}

.price-card p {
  margin: 0;
  color: var(--muted);
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.price-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.price-card li + li {
  margin-top: 8px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
  color: #ffffff;
  background:
    linear-gradient(rgba(16, 37, 29, 0.9), rgba(16, 37, 29, 0.9)),
    url("https://upload.wikimedia.org/wikipedia/commons/c/c3/Lanovka_Geravy%2C_Dedinky%2C_okres_Ro%C5%BE%C5%88ava%2C_Slovensk%C3%BD_raj%2C_Ko%C5%A1ick%C3%BD_kraj_01.jpg")
      center / cover;
}

.feature-copy {
  align-self: start;
}

.feature-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-list span {
  display: inline-block;
  margin-bottom: 8px;
  color: #f5cd5c;
  font-weight: 900;
}

.feature-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.gallery-section {
  background: #f1ead9;
}

.gallery-group {
  margin-top: 30px;
}

.gallery-group h3 {
  margin-bottom: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.wide {
  grid-column: span 2;
}

.wide img {
  aspect-ratio: 16 / 9;
}

.poster img {
  object-fit: contain;
  background: #1f1308;
}

figcaption {
  padding: 13px 14px 15px;
  color: var(--forest);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  background: var(--paper);
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: grid;
  gap: 4px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.contact-card:hover {
  border-color: var(--moss);
}

.contact-card.social {
  background: #fff7df;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 14px 8px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  font-weight: 900;
}

.social-pill:hover {
  border-color: var(--moss);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
}

.instagram .social-icon {
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #515bd4);
}

.facebook .social-icon {
  background: #1877f2;
  font-family: Georgia, serif;
  font-size: 1.4rem;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-card strong {
  color: var(--forest);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--forest-2);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero,
  .intro-section,
  .feature-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wide {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .brand span {
    max-width: 150px;
    line-height: 1.15;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 78px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
  }

  .pricing-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .wide {
    grid-column: span 1;
  }

  .intro-section,
  .section,
  .feature-band,
  .contact-section {
    padding-block: 62px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }
}
