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

:root {
  --green: #3d6b52;
  --green-light: #5a8c6e;
  --green-pale: #eaf3ee;
  --cream: #f5f0e8;
  --sand: #e8dfd0;
  --text: #2a2a2a;
  --muted: #6b6b6b;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(61, 107, 82, 0.12);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
}

.nav-logo span { font-weight: 400; color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-links a {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--green); }

.nav-book {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}

.nav-book:hover {
  background: var(--green-light) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 61px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  padding: 20px 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
}

.nav-mobile a {
  font-size: 1rem;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--sand);
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.active { color: var(--green); }
.nav-mobile.open { display: flex; }

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 4px 24px rgba(61, 107, 82, 0.45);
  transition: background 0.2s, transform 0.15s;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  transition: background 0.2s;
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.2); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--green);
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-white:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

/* SECTIONS */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 56px;
}

.cta-band {
  background: var(--green);
  border-radius: 28px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(90, 140, 110, 0.4) 0%, transparent 70%);
}

.cta-band > * { position: relative; z-index: 1; }

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../IMG_2702-scaled.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.42) saturate(0.85);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(61, 107, 82, 0.3) 0%, rgba(10, 20, 15, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero h1 em { font-style: normal; color: #a8d5b5; }

.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* TRUST */
.trust {
  background: var(--white);
  padding: 32px 48px;
  display: flex;
  justify-content: center;
  gap: clamp(32px, 6vw, 96px);
  flex-wrap: wrap;
  border-bottom: 1px solid var(--sand);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s;
}

a.trust-item:hover { transform: translateY(-2px); }

.trust-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--green);
  line-height: 1;
}

.trust-item span {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* WHY + CARDS */
.why { padding: 96px 24px; max-width: 1100px; margin: 0 auto; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 20px;
  padding: 36px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  transform: translateY(-4px);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--green);
}

.card-icon svg { width: 24px; height: 24px; }

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* SERVICES / PRICING */
.services {
  padding: 0 24px 96px;
  max-width: 560px;
  margin: 0 auto;
}

.price-list {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid var(--sand);
  gap: 16px;
}

.price-row:last-child { border-bottom: none; }

.price-row--featured {
  background: var(--green-pale);
}

.price-duration {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.price-row--featured .price-duration { color: var(--green); }

.price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

.services-cta {
  text-align: center;
}

.services-cta p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 16px;
}

/* REVIEWS */
.reviews {
  background: var(--white);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: 64px 24px;
  text-align: center;
}

.reviews-inner { max-width: 640px; margin: 0 auto; }

.reviews-stars {
  font-size: 1.5rem;
  color: #e8a838;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.reviews p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.reviews a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}

.reviews a:hover { text-decoration: underline; }

.home-cta { margin: 0 24px 96px; }

/* PAGE HEADER */
.page-header {
  position: relative;
  height: 340px;
  display: grid;
  place-items: end start;
  overflow: hidden;
  padding: 0 0 56px 8vw;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-image: url('../IMG_2702-scaled.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.38) saturate(0.75);
}

.page-header-bg--portrait {
  background-image: url('../masermarian.png');
  background-position: center 20%;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(61, 107, 82, 0.2) 0%, rgba(10, 20, 15, 0.6) 100%);
}

.page-header-content { position: relative; z-index: 2; }

.breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.breadcrumb a:hover { color: rgba(255, 255, 255, 0.8); }

.page-header-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
}

/* ABOUT */
.main {
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 24px 120px;
}

.main--contact { padding-bottom: 40px; }

.main--contact .section-title { margin-bottom: 32px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 28px;
}

.about-text h2 em { font-style: italic; color: var(--green); }

.about-text p {
  font-size: 1.025rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-text p strong { color: var(--text); font-weight: 600; }

.pillars {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 14px;
  padding: 18px 16px;
}

.pillar-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  margin-top: 6px;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

.about-cta { margin-top: 48px; }

.about-photo-col {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.photo-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  aspect-ratio: 3 / 4;
  background: var(--sand);
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-card span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.quote-section {
  background: var(--green);
  border-radius: 28px;
  margin: 0 24px 80px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(90, 140, 110, 0.4) 0%, transparent 70%);
}

.quote-section > * { position: relative; z-index: 1; }

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.2);
  line-height: 0.5;
  margin-bottom: 20px;
  display: block;
}

.quote-section blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: var(--white);
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.quote-section cite {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* CONTACT */
.top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
  align-items: start;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 24px;
  padding: 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.info-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--green-pale);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--green);
}

.info-icon svg { width: 20px; height: 20px; }

.info-body .label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.info-body a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  line-height: 1.45;
}

.info-body a:hover { color: var(--green); }

.info-body p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.6;
}

.contact-aside {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--sand);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.contact-aside-room {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.contact-aside-room img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-aside-body {
  background: var(--white);
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-aside-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  line-height: 1.2;
  margin-top: -4px;
}

.contact-tips {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-tips li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}

.contact-tips li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.contact-aside-price {
  font-size: 0.95rem;
  color: var(--text);
  margin-top: 4px;
}

.contact-aside-price strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--green);
}

.contact-aside-price a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}

.contact-aside-price a:hover { text-decoration: underline; }

.map-section {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
  border: 1px solid var(--sand);
}

.map-section iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: none;
  filter: saturate(0.75);
}

.contact-cta { margin-bottom: 80px; }

/* FOOTER */
footer {
  background: #1c2b23;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: 40px 24px;
  font-size: 0.85rem;
}

footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

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

/* RESPONSIVE */

/* Tablet & menšie laptopy */
@media (max-width: 1024px) {
  nav { padding: 16px 28px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .main { padding: 72px 28px 96px; }
  .why { padding: 72px 28px; }
  .services { padding: 0 28px 72px; }
  .reviews { padding: 56px 28px; }
  .home-cta { margin: 0 28px 72px; }
  .quote-section { margin: 0 28px 64px; padding: 56px 40px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-photo-col {
    position: static;
    order: -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .photo-wrap { aspect-ratio: 4 / 3; }

  .top-grid { grid-template-columns: 1fr; }

  .contact-aside {
    max-width: 520px;
  }

  .page-header {
    padding: 0 0 48px 28px;
    height: 300px;
  }

  .cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .cta-band { padding: 56px 36px; }
}

/* Tablet na výšku */
@media (max-width: 768px) {
  .nav-mobile { top: 57px; }

  .hero {
    min-height: 88vh;
    min-height: 88dvh;
  }

  .hero-content {
    padding: 72px 20px 0;
  }

  .hero-badge {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    max-width: 100%;
    line-height: 1.4;
  }

  .trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    padding: 28px 24px;
  }

  .trust-item strong { font-size: 1.65rem; }

  .section-sub { margin-bottom: 40px; }

  .card { padding: 28px 22px; }

  .price-row { padding: 16px 20px; }

  .price-tag { font-size: 1.2rem; }

  .pillars {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-cta .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .map-section iframe { height: 360px; }

  .contact-cta { margin-bottom: 64px; }

  footer {
    padding: 32px 20px;
    font-size: 0.8rem;
    line-height: 1.7;
  }
}

/* Mobil */
@media (max-width: 640px) {
  html { scroll-padding-top: 60px; }

  nav { padding: 12px 16px; }

  .nav-logo { font-size: 1.1rem; }

  .nav-mobile {
    top: 53px;
    padding: 16px 20px;
  }

  .hero { min-height: 100svh; }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .trust {
    padding: 24px 16px;
    gap: 20px 12px;
  }

  .trust-item strong { font-size: 1.5rem; }

  .trust-item span { font-size: 0.75rem; }

  .why { padding: 56px 16px; }

  .services { padding: 0 16px 56px; }

  .reviews { padding: 48px 16px; }

  .home-cta {
    margin: 0 16px 56px;
    border-radius: 20px;
  }

  .main { padding: 48px 16px 64px; }

  .page-header {
    padding: 0 0 32px 16px;
    height: 240px;
  }

  .page-header-content h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .quote-section {
    margin: 0 16px 48px;
    padding: 44px 20px;
    border-radius: 20px;
  }

  .quote-mark { font-size: 3.5rem; }

  .info-card {
    padding: 24px 18px;
    gap: 20px;
  }

  .info-row { gap: 14px; }

  .info-icon {
    width: 40px;
    height: 40px;
  }

  .info-body a { font-size: 1rem; }

  .cta-band {
    padding: 44px 20px;
    border-radius: 20px;
  }

  .btn-primary,
  .btn-white {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .services-cta .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .map-section { border-radius: 16px; }

  .map-section iframe { height: 260px; }

  .contact-cta { margin-bottom: 48px; }

  .section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .main--contact .section-title br { display: none; }
}

/* Malý mobil */
@media (max-width: 380px) {
  .hero h1 { font-size: 2rem; }

  .hero p { font-size: 0.95rem; }

  .cards { grid-template-columns: 1fr; }
}

/* Dotykové zariadenia — bez hover efektov */
@media (hover: none) {
  .card:hover {
    transform: none;
    box-shadow: none;
  }

  .btn-primary:hover,
  .btn-white:hover,
  .btn-secondary:hover,
  .nav-book:hover {
    transform: none;
  }

  a.trust-item:hover { transform: none; }
}

/* Výrez displeja (iPhone atď.) */
@supports (padding: max(0px)) {
  nav {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .nav-mobile {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }

  footer {
    padding-bottom: max(32px, env(safe-area-inset-bottom));
  }
}
