/*
Theme Name: Tommy Barber Shop
Theme URI: https://tommybarber.cz
Author: Custom Theme
Author URI: https://tommybarber.cz
Description: Prémiová WordPress šablona pro pánské holičství Tommy Barber Shop. Minimalistický luxusní design s elegantními animacemi.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tommy-barbershop
Tags: one-page, custom-logo, custom-colors, full-width-template, featured-images, custom-menu, editor-style
*/

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */
:root {
  --color-black: #0A0A0A;
  --color-white: #F5F2EC;
  --color-cream: #EDE9DF;
  --color-gold: #C9A96E;
  --color-gold-light: #E8D5B0;
  --color-dark: #111111;
  --color-mid: #1E1E1E;
  --color-gray: #8A8A8A;
  --color-gray-light: #C5C0B8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --border-thin: 1px solid rgba(201, 169, 110, 0.25);
  --border-gold: 1px solid var(--color-gold);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.display-xl {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.display-lg {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
}

.display-md {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.label-sm {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.body-lg { font-size: 1.125rem; line-height: 1.75; }
.body-sm { font-size: 0.875rem; line-height: 1.6; color: var(--color-gray); }

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--spacing-xl) 0;
}

.section--dark { background-color: var(--color-dark); }
.section--mid { background-color: var(--color-mid); }
.section--light {
  background-color: var(--color-white);
  color: var(--color-black);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition-smooth), padding var(--transition-smooth);
}

#site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 2rem;
  border-bottom: var(--border-thin);
}

.site-logo img {
  height: 48px;
  width: auto;
  transition: height var(--transition-smooth);
}

#site-header.scrolled .site-logo img { height: 36px; }

.site-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-white);
}

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

.main-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray-light);
  transition: color var(--transition-fast);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-smooth);
}

.main-nav a:hover { color: var(--color-white); }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
  background: transparent;
  border: var(--border-gold);
  color: var(--color-gold) !important;
  padding: 0.6rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--transition-fast) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--color-gold) !important;
  color: var(--color-black) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}

.hamburger span {
  display: block;
  height: 1px;
  background: var(--color-white);
  transition: all var(--transition-smooth);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 6rem 2rem;
  padding-left: clamp(2rem, 5vw, 6rem);
  position: relative;
  z-index: 2;
}

.hero__right {
  position: relative;
  overflow: hidden;
}

.hero__right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 8s ease;
  filter: brightness(0.7) contrast(1.1);
}

#hero:hover .hero__right-img { transform: scale(1.03); }

.hero__right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-black) 0%, transparent 40%);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 2rem;
  color: var(--color-white);
}

.hero__title em {
  font-style: italic;
  color: var(--color-gold);
}

.hero__subtitle {
  max-width: 420px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-gray-light);
  margin-bottom: 3rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-gold);
  color: var(--color-black);
  padding: 1rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--transition-smooth);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
}

.btn-primary .arrow {
  width: 16px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width var(--transition-smooth);
}

.btn-primary .arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

.btn-primary:hover .arrow { width: 24px; }

.btn-ghost {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray-light);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-fast);
}

.btn-ghost:hover { color: var(--color-white); }

.hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: clamp(2rem, 5vw, 6rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

.hero__badge {
  position: absolute;
  right: 4%;
  bottom: 8%;
  z-index: 10;
  width: 120px;
  height: 120px;
}

.hero__badge-circle {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__badge-inner {
  position: absolute;
  text-align: center;
  animation: rotateSlow 20s linear infinite reverse;
}

.hero__badge-inner span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
}

/* ==========================================================================
   Marquee / Ticker
   ========================================================================== */
.marquee-section {
  padding: 1.5rem 0;
  border-top: var(--border-thin);
  border-bottom: var(--border-thin);
  background: var(--color-dark);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  white-space: nowrap;
  padding: 0 3rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.05em;
  color: var(--color-gray);
  display: flex;
  align-items: center;
  gap: 3rem;
}

.marquee-item::after {
  content: '✦';
  color: var(--color-gold);
  font-size: 0.5rem;
  font-style: normal;
}

/* ==========================================================================
   About / Team Section
   ========================================================================== */
#o-nas {
  padding: var(--spacing-xl) 0;
  background: var(--color-dark);
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}

.section-header__left .label-sm { margin-bottom: 1rem; }
.section-header__right { color: var(--color-gray); line-height: 1.8; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.team-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--color-mid);
}

.team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-slow);
  filter: grayscale(30%) brightness(0.85);
}

.team-card:hover .team-card__img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(0.9);
}

.team-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.3) 50%, transparent 100%);
  transition: opacity var(--transition-smooth);
}

.team-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  transform: translateY(12px);
  transition: transform var(--transition-smooth);
}

.team-card:hover .team-card__content { transform: translateY(0); }

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 0.4rem;
}

.team-card__tagline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.team-card__bio {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--color-gray-light);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), opacity var(--transition-smooth);
  opacity: 0;
}

.team-card:hover .team-card__bio {
  max-height: 200px;
  opacity: 1;
}

/* ==========================================================================
   Services / Pricing
   ========================================================================== */
#cenik {
  padding: var(--spacing-xl) 0;
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}

#cenik::before {
  content: 'CENÍK';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 20vw;
  font-weight: 300;
  color: rgba(255,255,255,0.018);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.3em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
}

.pricing-card {
  background: var(--color-dark);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition-smooth);
  border-top: 2px solid transparent;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.pricing-card:hover { background: var(--color-mid); }
.pricing-card:hover::before { transform: scaleX(1); }

.pricing-card--featured {
  background: var(--color-gold);
}

.pricing-card--featured::before { display: none; }

.pricing-card--featured * { color: var(--color-black) !important; }

.pricing-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 2rem;
  opacity: 0.6;
}

.pricing-card--featured .pricing-icon { opacity: 0.8; }

.pricing-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
  color: var(--color-white);
}

.pricing-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-gray);
  margin-bottom: 2.5rem;
  min-height: 60px;
}

.pricing-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 1.75rem;
}

.pricing-card--featured .pricing-divider { background: rgba(0,0,0,0.12); }

.pricing-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--color-gold);
  line-height: 1;
}

.pricing-card--featured .pricing-price { color: var(--color-black); }

.pricing-price sup {
  font-size: 1.2rem;
  vertical-align: super;
  color: inherit;
  opacity: 0.6;
}

.pricing-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-top: 0.5rem;
}

/* ==========================================================================
   Booking / Contact Section
   ========================================================================== */
#rezervace {
  padding: var(--spacing-xl) 0;
  background: var(--color-dark);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.booking-left .display-md { margin-bottom: 1.5rem; }
.booking-left .body-lg { color: var(--color-gray); margin-bottom: 3rem; }

.contact-list { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: var(--border-thin);
}

.contact-item:last-child { border-bottom: none; padding-bottom: 0; }

.contact-icon {
  width: 40px;
  height: 40px;
  border: var(--border-thin);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
  font-size: 0.85rem;
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-white);
}

.booking-right {
  background: var(--color-mid);
  padding: 3rem;
  border-top: 2px solid var(--color-gold);
}

.booking-form .form-group {
  margin-bottom: 1.5rem;
}

.booking-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.6rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 0.75rem 0;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.booking-form select {
  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 1l5 5 5-5' stroke='%238A8A8A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
}

.booking-form select option { background: var(--color-mid); color: var(--color-white); }

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-bottom-color: var(--color-gold);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder { color: var(--color-gray); font-style: italic; }

.booking-form textarea { resize: none; height: 80px; }

/* ==========================================================================
   Map / Location
   ========================================================================== */
#kontakt {
  padding: 0;
  height: 400px;
  position: relative;
  background: var(--color-mid);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 35%;
  background: var(--color-black);
  z-index: 10;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-overlay .display-md { margin-bottom: 1.5rem; }

.location-address {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-gray-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.map-frame {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) invert(90%) contrast(90%);
  opacity: 0.7;
}

/* ==========================================================================
   Footer
   ========================================================================== */
#site-footer {
  background: var(--color-black);
  border-top: var(--border-thin);
  padding: 4rem 0 2rem;
}

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

.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--color-gray);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }

.footer-links a {
  font-size: 0.9rem;
  color: var(--color-gray);
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--color-white); }

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border: var(--border-thin);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  font-size: 0.7rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: var(--border-thin);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--color-gray);
}

/* ==========================================================================
   Animations / Reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Cursor */
.custom-cursor {
  width: 12px;
  height: 12px;
  background: var(--color-gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  mix-blend-mode: difference;
}

.custom-cursor.expanded {
  width: 48px;
  height: 48px;
  background: rgba(201, 169, 110, 0.3);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .pricing-grid { grid-template-columns: 1fr; gap: 2px; }
  .pricing-card { padding: 2.5rem 2rem; }
}

@media (max-width: 768px) {
  #hero { grid-template-columns: 1fr; min-height: 100svh; }
  .hero__right { position: absolute; inset: 0; z-index: 0; }
  .hero__left {
    position: relative;
    z-index: 2;
    padding: 7rem 1.5rem 4rem;
    background: linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.9) 60%, var(--color-black) 100%);
  }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    align-items: center;
    justify-content: center;
  }
  .main-nav.open ul { flex-direction: column; gap: 2.5rem; text-align: center; }
  .main-nav.open a { font-size: 1rem; }
  .section-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { aspect-ratio: 4/3; }
  .booking-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .map-overlay { position: relative; width: 100%; height: auto; }
  #kontakt { height: auto; display: flex; flex-direction: column; }
  .map-frame { height: 300px; }
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .hero__badge { display: none; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .display-md { font-size: clamp(1.6rem, 7vw, 2.5rem); }
}

/* ==========================================================================
   WordPress Admin Bar
   ========================================================================== */
.admin-bar #site-header { top: 32px; }

@media screen and (max-width: 782px) {
  .admin-bar #site-header { top: 46px; }
}

/* ==========================================================================
   WP Block Editor Customizations
   ========================================================================== */
.wp-block-image img { width: 100%; }
.alignfull { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); width: 100vw; }
