/* ============================================================
   Penzion & Restaurace Celnice — shared stylesheet
   ============================================================ */


:root {
  /* Colors */
  --color-primary: #005235;
  --color-primary-dark: #003723;
  --color-accent: #C49243;
  --color-accent-light: #D4AE72;
  --color-bg: #FFFFFF;
  --color-bg-alt: #FAF7F2;
  --color-text: #2B2B2B;
  --color-text-secondary: #6B6B6B;
  --color-border: #E4DFD5;
  --color-white: #FFFFFF;

  /* Fonts */
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Poppins', sans-serif;

  /* Layout */
  --container-max: 1500px;
  --pad-desktop: 48px;
  --pad-tablet: 32px;
  --pad-mobile: 16px;

  /* Body text */
  --body-size: 18px;
  --body-size-mobile: 18px;
}

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

html {
  scroll-behavior: smooth;
  overflow-anchor: none;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--body-size);
  line-height: 1.6em;
  color: var(--color-text);
  background: var(--color-bg);
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  width: 100%;
}

@media (max-width: 599px) {
  body {
    font-size: var(--body-size-mobile);
  }
}

/* ============================================================
   Layout container
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--pad-mobile);
  padding-right: var(--pad-mobile);
}

@media (min-width: 600px) {
  .container {
    padding-left: var(--pad-tablet);
    padding-right: var(--pad-tablet);
  }
}

@media (min-width: 1025px) {
  .container {
    padding-left: var(--pad-desktop);
    padding-right: var(--pad-desktop);
  }
}

section {
  padding: 5rem 0;
  scroll-margin-top: 97px;
}

@media (max-width: 1024px) {
  section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 599px) {
  section {
    padding: 2.5rem 0;
  }
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-title-band {
  padding: 32px 0;
}

.section-title-band .section-head,
.section-title-band .section-head--left {
  margin-bottom: 0;
}

.section-title-band .section-head > *:last-child,
.section-title-band .section-head--left > *:last-child {
  margin-bottom: 0;
}

.section-title-band--tall {
  padding: 64px 0 32px;
}

@media (min-width: 600px) {
  .section-title-band--tall {
    padding: 96px 0 32px;
  }
}

@media (min-width: 1025px) {
  .section-title-band--tall {
    padding: 128px 0 32px;
  }
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4,
.nav-link,
.btn,
.logo-text {
  font-family: var(--font-heading);
}

h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: 1px;
  margin: 0 0 1rem;
}

h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: 1px;
  margin: 0 0 1rem;
}

h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: 1px;
  margin: 0 0 0.75rem;
}

@media (min-width: 600px) {
  h1 { font-size: 50px; }
  h2 { font-size: 35px; }
  h3 { font-size: 24px; }
}

@media (min-width: 1025px) {
  h1 { font-size: 60px; }
  h2 { font-size: 40px; }
  h3 { font-size: 27px; }
}

p {
  margin: 0 0 1rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: none;
}

.eyebrow--pin::before {
  content: none;
}

.eyebrow--pin .eyebrow-icon {
  font-style: normal;
  font-size: 1rem;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 7.6px 1.4rem;
  border-radius: 0;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  transform: translateY(-4px);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-accent:hover {
  transform: translateY(-4px);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-outline:hover {
  transform: translateY(-4px);
}

.rooms-toggle-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--color-text);
  cursor: pointer;
}

.rooms-toggle-link:hover {
  color: var(--color-accent);
}

.rooms-toggle-arrow {
  display: inline-flex;
  transition: transform 0.2s ease;
  opacity: 0.6;
}

.rooms-toggle-link[aria-expanded="true"] .rooms-toggle-arrow {
  transform: rotate(180deg);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-ghost:hover {
  transform: translateY(-4px);
}

/* ============================================================
   Header / Navigation
   ============================================================ */
.topbar {
  display: none;
}

.lang-switch {
  display: flex;
  gap: 0.5rem;
}

.lang-switch a {
  padding: 0.15rem 0.4rem;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
  opacity: 0.5;
  letter-spacing: 1px;
}

.lang-switch a:hover,
.lang-switch a.active {
  opacity: 1;
  color: var(--color-text);
}

.lang-switch .lang-disabled {
  padding: 0.15rem 0.4rem;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.2;
  cursor: not-allowed;
}

.site-header {
  background: var(--color-bg);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease, padding 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
  overflow-anchor: none;
}

.site-header.scrolled {
  background: var(--color-white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

/* ── Hero-mode header (homepage only) ── */
.site-header--hero {
  position: fixed;
  width: 100%;
  background: transparent;
  box-shadow: none;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;
}

.site-header--hero .main-nav a,
.site-header--hero .lang-switch a,
.site-header--hero .lang-switch .lang-disabled {
  color: var(--color-white);
  background: transparent;
  transition: color 0.4s ease;
}

.site-header--hero .hamburger span {
  background: var(--color-white);
  transition: background 0.4s ease;
}

.site-header--hero.scrolled .hamburger span {
  background: var(--color-text);
}

.site-header--hero .main-nav a::after {
  background: var(--color-white);
}

.site-header--hero .lang-switch a,
.site-header--hero .lang-switch a.active {
  color: var(--color-white);
  opacity: 1;
}

.site-header--hero .lang-switch a:not(.active) {
  opacity: 0.55;
}

.site-header--hero .logo-default { display: none; }
.site-header--hero .logo-white   { display: block; }
.logo-white { display: none; }

.site-header--hero.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.site-header--hero.scrolled .main-nav a,
.site-header--hero.scrolled .lang-switch a,
.site-header--hero.scrolled .lang-switch .lang-disabled {
  color: var(--color-text);
}

.site-header--hero.scrolled .main-nav a::after {
  background: var(--color-accent);
}

.site-header--hero.scrolled .lang-switch a.active {
  color: var(--color-text);
}

.site-header--hero.scrolled .logo-default { display: block; }
.site-header--hero.scrolled .logo-white   { display: none; }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  transition: padding 0.3s ease;
}

.site-header.scrolled .container {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  width: 140px;
}

.brand img {
  height: 73px;
  width: auto;
  transition: height 0.3s ease;
}

.site-header.scrolled .brand img {
  height: 54px;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-text);
  line-height: 1.1;
}

.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  gap: 2.75rem;
  align-items: center;
}

.main-nav a,
.main-nav .nav-disabled {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: calc(0.85rem + 2px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
  padding: 0.25rem 0;
}

.main-nav a:hover {
  color: #C49243;
}

.main-nav a.active {
  color: #C49243;
}

.nav-disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.header-cta {
  display: none;
}

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 98;
  background: var(--color-bg);
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: transform 0.25s ease;
  pointer-events: none;
  display: flex;
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav .container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: calc(1rem + 10px);
  padding-bottom: 1.5rem;
}

.mobile-nav a,
.mobile-nav .nav-disabled {
  padding: 0.75rem 0;
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--color-text);
  text-align: left;
  display: block;
}

.mobile-nav .btn {
  margin-top: 0.75rem;
  align-self: flex-start;
  color: var(--color-white);
  border-bottom: none;
  padding: 0.6rem 1.4rem;
}

.mobile-nav .container > a:last-of-type {
  border-bottom: none;
}

.mobile-nav-lang {
  display: flex;
  gap: 1.25rem;
  margin-top: calc(1.5rem + 10px);
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

.mobile-nav-lang a,
.mobile-nav-lang .lang-disabled {
  font-family: var(--font-body);
  font-size: calc(0.85rem + 5px);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text);
  border-bottom: none;
  padding: 0;
}

.mobile-nav-lang a.active {
  color: var(--color-text);
}

.mobile-nav-lang .lang-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  .lang-switch {
    display: none;
  }
}

@media (min-width: 1025px) {
  .main-nav {
    display: block;
  }

  .header-cta {
    display: inline-flex;
  }

  .hamburger,
  .mobile-nav {
    display: none !important;
  }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  color: var(--color-white);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.4) 88%, rgba(0, 0, 0, 0.05) 100%),
    url('../assets/hero-photo.jpg') center/cover no-repeat;
  padding: 7rem 0;
}

@media (max-width: 1024px) {
  .hero {
    padding: 5rem 0;
  }
}

@media (max-width: 599px) {
  .hero {
    padding: 3.5rem 0;
  }
}

.hero > .container {
  width: 100%;
}

.hero-home {
  min-height: calc(90vh - 97px);
  display: flex;
  align-items: center;
}

.hero h1 {
  color: var(--color-bg);
  margin-top: 0.1em;
  font-size: 60px;
}

@media (min-width: 600px) {
  .hero h1 { font-size: 70px; }
}

@media (min-width: 1025px) {
  .hero h1 { font-size: 80px; }
}

.hero-h1-light {
  font-weight: 400;
}

.hero-h1-caps {
  text-transform: uppercase;
}

.hero-eyebrow {
  color: var(--color-bg);
  opacity: 0.85;
}

.hero-eyebrow::before {
  background: var(--color-bg);
}

.hero p {
  font-size: 1.15rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============================================================
   Quick booking bar (floating card over hero)
   ============================================================ */
.quick-booking-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
  z-index: 10;
}

.quick-booking-wrap .container {
  max-width: 1300px;
}

.quick-booking {
  background: var(--color-white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  padding: 28.6px 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.quick-booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1 1 120px;
  min-width: 0;
}

.quick-booking-field label {
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text);
}

.quick-booking-field input {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--color-border);
  border-radius: 0;
  background: var(--color-bg);
  color: var(--color-text);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.quick-booking-field input:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--color-white);
}

.quick-booking .btn {
  flex: 0 0 auto;
}

@media (max-width: 899px) {
  .hero-home {
    flex-direction: column;
  }

  .quick-booking-wrap {
    position: static;
    transform: none;
    margin-top: 2rem;
  }

  .quick-booking {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 1rem;
  }
}

/* ============================================================
   Info blocks
   ============================================================ */
.info-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 600px) {
  .info-blocks {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .info-blocks {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.info-block {
  text-align: center;
  padding: 1.5rem;
}

.info-block h3 {
  margin: 0 0 0.3rem;
}


.info-block .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-block .icon img {
  display: block;
}

/* ============================================================
   Cards (services, rooms)
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 600px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 3px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.card[hidden] {
  display: none;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(31, 43, 32, 0.12);
  border-top-color: var(--color-accent);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.card-body h3 {
  margin: 0;
}

.card-meta {
  color: var(--color-text-secondary);
  font-size: 14px;
}

.card-price {
  font-family: var(--font-heading);
  color: var(--color-accent);
  font-size: 1.25rem;
  margin-top: auto;
}

.card-link {
  margin-top: 0.75rem;
}

/* Room tiles — full-bleed photo with text overlay */
.room-tile {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  color: var(--color-white);
  text-decoration: none;
  background: var(--color-border);
}

.room-tile[hidden] {
  display: none;
}

.room-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.room-tile:hover img {
  transform: scale(1.08);
}

.room-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 35%, rgba(0, 0, 0, 0) 60%);
}

.room-tile-price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.5px;
  padding: 7.6px 1.4rem;
}

.room-tile-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.5rem;
}

.room-tile-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin: 0 0 0.3rem;
}

.room-tile-body h3 {
  margin: 0 0 0.3rem;
}

.room-tile-meta {
  font-size: var(--body-size);
  opacity: 0.9;
  margin: 0;
}

@media (max-width: 599px) {
  .room-tile-meta {
    font-size: var(--body-size-mobile);
  }
}

/* Trip tips — cards with map preview */
.trip-card {
  border: none;
  box-shadow: 0 16px 32px rgba(31, 43, 32, 0.12);
  transition: box-shadow 0.3s ease;
}

.trip-card:hover {
  transform: none;
  border-top-color: transparent;
  box-shadow: 0 24px 48px rgba(31, 43, 32, 0.2);
}

.trip-map-embed {
  position: relative;
  overflow: hidden;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
}

.trip-map-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(196, 146, 67, 0.25) 0%, rgba(196, 146, 67, 0) 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%23FFFFFF' stroke-opacity='0.14' stroke-width='1.2'%3E%3Cpath d='M-20 40 Q 60 10 120 40 T 260 40'/%3E%3Cpath d='M-20 90 Q 60 60 120 90 T 260 90'/%3E%3Cpath d='M-20 140 Q 60 110 120 140 T 260 140'/%3E%3Cpath d='M-20 190 Q 60 160 120 190 T 260 190'/%3E%3Ccircle cx='70' cy='65' r='2'/%3E%3Ccircle cx='170' cy='115' r='2'/%3E%3Ccircle cx='40' cy='165' r='2'/%3E%3Ccircle cx='200' cy='55' r='2'/%3E%3C/g%3E%3C/svg%3E"),
    var(--color-primary-dark);
  cursor: pointer;
}

.trip-map-overlay span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  padding: 0.6rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.trip-map-embed.active .trip-map-overlay {
  display: none;
}

.trip-card:hover .trip-map-embed {
  filter: grayscale(0);
}

.trip-map-embed iframe {
  display: block;
  width: 100%;
}

.trip-card-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 0.4rem;
}

.trip-card .card-body p:last-child {
  color: var(--color-text-secondary);
  margin-top: 0.4rem;
}

/* ============================================================
   Tables
   ============================================================ */
.table-wrap {
  overflow-x: auto;
}

.data-table {
  min-width: 480px;
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border);
}

.data-table th {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  color: var(--color-text);
}

/* ============================================================
   Info list (Důležité informace)
   ============================================================ */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 600px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Contact page (info card + map) */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 4fr 6fr;
  }
}

.contact-info-card {
  background: var(--color-bg-alt);
  color: var(--color-text);
  padding: 2.5rem 2rem;
}

.contact-info-card .eyebrow {
  color: var(--color-accent);
}

.contact-info-card h2 {
  font-size: 1.6rem;
  margin: 0.75rem 0 1.75rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-details li {
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
  line-height: 1.4;
}

.contact-details li:first-child {
  border-top: none;
  padding-top: 0;
}

.contact-details a {
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--body-size);
}

.contact-details a:hover {
  color: var(--color-accent);
}

.contact-map {
  min-height: 500px;
  box-shadow: 0 16px 32px rgba(31, 43, 32, 0.12);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
}

/* Contact page — no card background */
.contact-info-card--plain {
  background: transparent;
  padding: 0;
}

.contact-address {
  color: var(--color-text);
  margin: 0 0 1.5rem;
}

.contact-details--plain {
  gap: 0.6rem;
}

.contact-details--plain li {
  border-top: none;
  padding-top: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-details--plain svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-accent);
}

/* Room detail page (gallery + info) */
.room-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .room-detail-layout {
    grid-template-columns: 4fr 6fr;
  }

  .room-detail-gallery {
    order: 2;
  }

  .room-detail-info {
    order: 1;
  }
}

.room-detail-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.room-detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: calc(1rem + 20px);
}


/* Accordion (Než dorazíte k nám) */
.info-accordion {
  max-width: 760px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.accordion-item[open] summary::after {
  transform: rotate(-135deg);
}

.accordion-item ul {
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-body);
  color: var(--color-text);
}

.accordion-item li {
  position: relative;
  padding-left: 1.4rem;
}

.accordion-item li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--color-accent);
}

.info-grid ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-grid li::before {
  content: '\2014\00A0';
  color: var(--color-accent);
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1025px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-grid a {
  display: block;
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 15, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  line-height: 1;
}

/* ============================================================
   Reservation layout
   ============================================================ */
.reservation-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.reservation-info {
  order: 2;
}

.reservation-form-card {
  order: 1;
}

@media (min-width: 900px) {
  .reservation-layout {
    grid-template-columns: 7fr 3fr;
  }
}

.reservation-info {
  background: var(--color-bg-alt);
  color: var(--color-text);
  padding: 2.5rem 2rem;
}

@media (min-width: 900px) {
  .reservation-info {
    position: sticky;
    top: 120px;
  }
}

.reservation-info .eyebrow {
  color: var(--color-accent);
}

.reservation-info h2 {
  color: var(--color-text);
  font-size: 1.6rem;
  margin: 0.75rem 0 1.75rem;
}

.reservation-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.reservation-perks li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.4;
}

.reservation-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  background: var(--color-accent);
}

.reservation-contact {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
}

.reservation-contact p {
  margin: 0 0 0.5rem;
}

.reservation-contact a {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.reservation-contact a:hover {
  color: var(--color-accent);
}

.reservation-form-card {
  background: var(--color-bg-alt);
  padding: 2.5rem;
}

@media (max-width: 599px) {
  .reservation-form-card {
    padding: 1.75rem 1.25rem;
  }
}

/* ============================================================
   Forms
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 600;
  font-size: 16px;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 0;
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-field select {
  padding-right: 2.5rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%232B2B2B' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--color-white);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.phone-field {
  display: flex;
  gap: 0.5rem;
}

.phone-field select {
  flex: 0 0 110px;
}

.phone-field input {
  flex: 1;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.checkbox-field input {
  margin-top: 0.3rem;
}

.checkbox-field label {
  font-weight: 400;
}

.checkbox-field a {
  color: var(--color-accent);
  text-decoration: underline;
}

.form-error {
  color: #A6321F;
  font-size: 14px;
  min-height: 1.2em;
}

.form-status {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 0;
  display: none;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: var(--color-bg-alt);
  color: var(--color-text);
  border: 1px solid var(--color-accent);
}

.form-status.error {
  background: #FBEAE6;
  color: #A6321F;
  border: 1px solid #A6321F;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  position: relative;
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 0 2rem;
  border-top: 3px solid var(--color-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 14px;
}

.site-footer h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-accent-light);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.site-footer a {
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--color-accent-light);
}

.site-footer .brand-text {
  color: var(--color-white);
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}

/* ============================================================
   Utility
   ============================================================ */
.text-center {
  text-align: center;
}

.section-head {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-head--left {
  max-width: none;
  text-align: left;
  margin: 0 0 1.5rem;
}

.mt-0 { margin-top: 0; }
.nowrap { white-space: nowrap; }

/* Two-column content + image layout */
.content-image-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.content-image-split img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

.img-placeholder-square {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--color-border);
  border-radius: 0;
}

/* Two overlapping photos */
.img-stack {
  position: relative;
  width: 100%;
  padding-top: 15%;
}

.img-stack .img-stack-main {
  width: 85%;
  aspect-ratio: 4 / 3;
  height: auto;
  background: var(--color-border);
  object-fit: cover;
  margin-top: 10px;
}

.img-stack .img-stack-secondary {
  position: absolute;
  right: 0;
  top: -50px;
  width: 55%;
  aspect-ratio: 4 / 3;
  height: auto;
  background: var(--color-bg-alt);
  object-fit: cover;
  border: 8px solid var(--color-bg-alt);
  transform: rotate(10deg);
}

@media (max-width: 599px) {
  .img-stack {
    padding-top: 20%;
  }
}

@media (max-width: 768px) {
  .content-image-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-image-split img {
    height: 300px;
  }
}
