:root {
  --navy: #1a2f4a;
  --navy-light: #2c4a6e;
  --sand: #f7f4ef;
  --cream: #fffdf9;
  --gold: #b8955a;
  --gold-dark: #96753f;
  --text: #1e1e1e;
  --muted: #5f6b7a;
  --border: #e6dfd4;
  --shadow: 0 18px 50px rgba(26, 47, 74, 0.08);
  --radius: 18px;
  --max: 1140px;
  --airbnb: #ff385c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--sand);
  color: var(--text);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

.site-top {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.site-top-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; padding: 0.45rem 0; min-height: 5rem;
}
.logo-link { display: inline-flex; align-items: center; flex-shrink: 0; line-height: 0; }
.logo-img { height: clamp(76px, 12vw, 96px); width: auto; display: block; }
.nav-panel { display: flex; align-items: center; gap: 1.5rem; }
.nav-links { display: flex; gap: 1.4rem; list-style: none; font-size: 0.95rem; font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-dark); }

.menu-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; border: 1px solid var(--border);
  border-radius: 12px; background: var(--cream); cursor: pointer;
}
.menu-toggle span {
  display: block; height: 2px; width: 100%; background: var(--navy);
  border-radius: 2px; transition: transform .2s, opacity .2s;
}
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.lang-switch {
  display: flex; gap: 0.2rem; background: var(--cream);
  border: 1px solid var(--border); border-radius: 999px; padding: 0.2rem;
}
.lang-switch button {
  border: none; background: transparent; padding: 0.35rem 0.7rem;
  border-radius: 999px; cursor: pointer; font-size: 0.82rem; color: var(--muted);
}
.lang-switch button.active { background: var(--navy); color: #fff; }

.page-hero {
  padding: 4.5rem 0 3rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
}
.page-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1; margin-bottom: 0.75rem;
}
.page-hero p { color: rgba(255,255,255,0.88); font-size: 1.08rem; max-width: 640px; }

.home-hero {
  min-height: 78vh; display: grid; align-items: center;
  background:
    linear-gradient(90deg, rgba(26,47,74,0.88) 0%, rgba(26,47,74,0.45) 55%, rgba(26,47,74,0.15) 100%),
    url("/img/apartment/01.png") center/cover no-repeat;
  color: #fff;
}
.home-hero--fullscreen {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5.5rem, 14svh, 9rem) 0 clamp(2rem, 5svh, 3.5rem);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.home-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(12, 22, 36, 0.38) 0%,
    rgba(12, 22, 36, 0.18) 42%,
    rgba(12, 22, 36, 0.62) 100%
  );
  pointer-events: none;
}
.home-hero-content {
  position: relative;
  z-index: 2;
  padding: 0;
  width: 100%;
}
.page-home main {
  position: relative;
}
.page-home .site-top--hero:not(.site-top--solid) .logo-img--home {
  height: clamp(120px, 22vw, 172px);
  width: auto;
}
.page-home .logo-img--home {
  height: clamp(100px, 15vw, 140px);
  width: auto;
}
/* Úvod – fotka přes celé okno, menu se objeví až po scrollu */
.page-home .site-top--hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: transparent;
  border-bottom: none;
  color: var(--text);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.page-home .site-top--hero.site-top--solid {
  position: fixed;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(26, 47, 74, 0.08);
  z-index: 220;
}
.page-home .site-top--hero.site-top--solid .site-top-inner {
  min-height: auto;
  padding: 0.45rem 0;
}
.page-home .site-top--hero.site-top--solid .logo-img--home {
  height: clamp(76px, 12vw, 92px);
}
.page-home .site-top--hero .nav-links a {
  color: var(--text);
}
.page-home .site-top--hero .nav-links a:hover,
.page-home .site-top--hero .nav-links a.active {
  color: var(--gold-dark);
}
@media (min-width: 901px) {
  .page-home .site-top--hero:not(.site-top--solid) .nav-links {
    display: none;
  }
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1rem;
}
.home-hero .container { padding: 4rem 0; }
.home-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.05; max-width: 700px; margin-bottom: 1rem;
}
.home-hero--fullscreen h1 {
  max-width: 12ch;
  margin-inline: auto;
  font-size: clamp(2.2rem, 7vw, 5.2rem);
}
.home-hero p { max-width: 560px; font-size: 1.12rem; color: rgba(255,255,255,0.92); margin-bottom: 1.75rem; }
.home-hero--fullscreen p {
  max-width: 640px;
  margin-inline: auto;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.home-hero--fullscreen .hero-actions { justify-content: center; }

section { padding: 4rem 0; }
.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem; margin-bottom: 0.4rem; color: var(--navy);
}
.section-subtitle { color: var(--muted); margin-bottom: 2rem; max-width: 720px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 1.5rem; border-radius: 999px; font-weight: 600;
  border: none; cursor: pointer; transition: transform .15s, opacity .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-dark); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-outline {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.85); color: #fff;
}
.btn-airbnb { background: var(--airbnb); color: #fff; }
.btn-airbnb:hover { background: #e31c5f; }

.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.2rem;
}
.card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow);
}
.card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--navy); }
.card p { color: var(--muted); font-size: 0.95rem; }

.gallery {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 0.85rem;
}
.gallery img {
  border-radius: 14px; width: 100%; height: 100%; object-fit: cover; min-height: 220px;
}
.gallery .span-7 { grid-column: span 7; min-height: 420px; }
.gallery .span-5 { grid-column: span 5; }
.gallery .span-4 { grid-column: span 4; }
.gallery .span-6 { grid-column: span 6; }
.gallery--surroundings {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.gallery--surroundings .gallery-item.span-6 { grid-column: span 6; }
.gallery--surroundings .gallery-item.span-4 { grid-column: span 4; }
.gallery-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.gallery-item img {
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  flex: 1;
}
.gallery-item--portrait img {
  aspect-ratio: 4 / 5;
  max-height: 520px;
}
.gallery-item figcaption {
  display: grid;
  gap: 0.35rem;
}
.gallery-item figcaption strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.gallery-item__desc {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.55;
}
.gallery--preview .gallery-item img {
  aspect-ratio: 4 / 3;
}

.split {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center;
}
.feature-list { list-style: none; display: grid; gap: 0.85rem; }
.feature-list li {
  padding-left: 1.4rem; position: relative; color: var(--muted);
}
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55rem;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.amenity-group {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.25rem;
  box-shadow: var(--shadow);
}
.amenity-group h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}
.amenity-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}
.amenity-icon {
  width: 2.1rem;
  height: 2.1rem;
  flex-shrink: 0;
  background: var(--sand);
  border-radius: 12px;
  padding: 0.2rem;
}

.map-wrap {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow); min-height: 380px; background: #dde5ec;
}
.map-wrap iframe { width: 100%; min-height: 380px; border: 0; display: block; }

.places-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.area-grid--preview {
  grid-template-columns: repeat(3, 1fr);
}
.area-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 8px 24px rgba(26, 47, 74, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.area-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(26, 47, 74, 0.1);
}
.area-card__media {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sand);
}
.area-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.area-card:hover .area-card__media img {
  transform: scale(1.03);
}
.area-card__media--photo img {
  object-fit: cover;
}
.area-card__media--icon {
  background: #fffdf9;
}
.area-card__media--icon img {
  object-fit: contain;
  padding: 0.35rem 1.25rem 0.15rem;
  transform: none;
}
.area-card:hover .area-card__media--icon img {
  transform: scale(1.02);
}
.area-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--navy) 0%, #243f5f 55%, var(--navy-light) 100%);
}
.area-card__media--placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 15%, rgba(184, 149, 90, 0.22), transparent 55%);
  pointer-events: none;
}
.area-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  z-index: 1;
}
.area-card__badge {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(6px);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid rgba(184, 149, 90, 0.28);
  line-height: 1.2;
}
.area-card__body {
  padding: 1.15rem 1.25rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
  min-height: 0;
}
.area-card__body h3 {
  font-size: 1.08rem;
  color: var(--navy);
  line-height: 1.3;
  font-weight: 600;
}
.area-card__desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1;
}
.area-card__footer {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.area-card__dist {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}
.area-card__footer a {
  color: var(--navy-light);
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}
.area-card__footer a:hover {
  color: var(--gold-dark);
}
.place-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.35rem;
}
.place-card .tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.45rem;
}
.place-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.place-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.7rem; }
.place-card a { color: var(--navy-light); font-weight: 600; font-size: 0.9rem; }

.booking-panel, .contact-panel {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); max-width: 720px;
}
.note { color: var(--muted); font-size: 0.92rem; margin-top: 0.85rem; }

.contact-form { display: grid; gap: 1rem; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-group label { display: block; font-size: 0.9rem; margin-bottom: 0.35rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.8rem 0.9rem; border: 1px solid var(--border);
  border-radius: 12px; font: inherit; background: #fff;
}
.form-group textarea { min-height: 140px; resize: vertical; }

.nav-steps { display: block; }
.nav-step, .nav-slide { scroll-snap-align: start; }

/* Navigační stránka – jeden krok = celá obrazovka */
.nav-page { background: #fff; }
.nav-page-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96); border-bottom: 1px solid var(--border);
}
.nav-page-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 0;
}
.btn-sm { padding: 0.55rem 1rem; font-size: 0.9rem; }
.nav-intro { padding: 2rem 0 1rem; text-align: center; }
.nav-intro h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem; color: var(--navy); margin-bottom: 0.5rem;
}
.nav-intro p { color: var(--muted); max-width: 560px; margin: 0 auto; }
.nav-main { scroll-snap-type: y proximity; }
.nav-slide {
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-slide:nth-child(even) { background: var(--sand); }
.nav-slide-inner {
  width: min(100% - 2rem, var(--max)); margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 2rem;
  align-items: center; min-height: calc(100vh - 8rem); min-height: calc(100dvh - 8rem);
}
.nav-slide-text h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem; color: var(--navy); margin-bottom: 0.75rem;
}
.nav-slide-text p { color: var(--muted); font-size: 1.02rem; }
.step-badge {
  display: inline-block; margin-bottom: 0.75rem; padding: 0.3rem 0.75rem;
  border-radius: 999px; background: var(--navy); color: #fff;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em;
}
.nav-slide-media {
  height: 100%; max-height: calc(100vh - 10rem); max-height: calc(100dvh - 10rem);
  display: flex; align-items: center; justify-content: center;
}
.nav-slide-media img {
  width: 100%; height: 100%; max-height: calc(100vh - 10rem); max-height: calc(100dvh - 10rem);
  object-fit: contain; border-radius: 16px; border: 1px solid var(--border);
  background: #f0f0f0;
}

.site-footer {
  background: var(--navy); color: rgba(255,255,255,0.82); padding: 2.5rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem;
}
.footer-brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem; line-height: 1.15; color: #fff; margin-bottom: 0.55rem;
}
.footer-grid h4 { color: #fff; margin-bottom: 0.75rem; font-size: 0.95rem; }
.footer-grid a, .footer-grid p { color: rgba(255,255,255,0.75); font-size: 0.92rem; display: block; margin-bottom: 0.45rem; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1rem; font-size: 0.85rem; text-align: center; }

.cta-band {
  background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-band .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.5rem 0;
}

@media (min-width: 901px) {
  .menu-toggle { display: none; }
  .menu-overlay { display: none !important; }
  .site-top-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 2rem;
    min-height: 5.25rem;
  }
  .nav-panel { justify-self: end; }
}

@media (max-width: 900px) {
  .site-top {
    background: #fffdf9;
    backdrop-filter: none;
    z-index: 220;
  }
  .page-home .site-top--hero {
    z-index: 230;
  }
  .page-home .site-top--hero:not(.site-top--solid) {
    background: transparent !important;
    border-bottom: none !important;
  }
  .page-home .site-top--hero:not(.site-top--solid) .logo-img--home {
    height: 148px;
  }
  .page-home .site-top--hero .menu-toggle {
    position: relative;
    z-index: 2;
  }
  .page-home .site-top--hero.site-top--solid .logo-img--home {
    height: 72px;
  }
  .home-hero--fullscreen {
    min-height: 100svh;
    min-height: 100dvh;
    padding: clamp(5rem, 12svh, 7rem) 0 clamp(1.5rem, 4svh, 2.5rem);
  }
  .home-hero--fullscreen h1 {
    font-size: clamp(1.9rem, 9vw, 3.2rem);
  }
  .home-hero--fullscreen p {
    font-size: clamp(0.95rem, 3.5vw, 1.08rem);
    margin-bottom: 1.25rem;
  }
  .logo-img { height: 80px; }
  .menu-toggle { display: flex; }
  .menu-overlay {
    position: fixed;
    inset: 0;
    border: 0;
    padding: 0;
    margin: 0;
    background: rgba(26, 47, 74, 0.55);
    z-index: 200;
    cursor: pointer;
  }
  .menu-overlay[hidden] { display: none; }
  body.menu-open .menu-overlay { display: block; }
  .nav-panel {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(88vw, 320px); max-width: 100%;
    background: #fffdf9;
    border-left: 1px solid var(--border);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 5.5rem 1.5rem 2rem; gap: 2rem;
    transform: translateX(100%);
    transition: transform .25s ease;
    box-shadow: -12px 0 40px rgba(0,0,0,0.18);
    z-index: 210;
    overflow-y: auto;
    display: flex;
    visibility: hidden;
    pointer-events: none;
  }
  body.menu-open .nav-panel {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  body.menu-open { overflow: hidden; }
  .nav-links {
    flex-direction: column; gap: 0; font-size: 1.1rem;
  }
  .nav-links a {
    display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--border);
    color: var(--navy);
  }
  .site-top-inner { min-height: 4.75rem; padding: 0.35rem 0; }
  .logo-img { height: 80px; }
  .lang-switch { align-self: flex-start; }
  .split, .footer-grid { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery .span-7, .gallery .span-5, .gallery .span-4, .gallery .span-6 { grid-column: span 12; min-height: 240px; }
  .gallery--surroundings .gallery-item.span-6,
  .gallery--surroundings .gallery-item.span-4 { grid-column: span 12; }
  .gallery-item--portrait img { max-height: none; }
  .area-grid,
  .area-grid--preview { grid-template-columns: repeat(2, 1fr); }
  .area-card__footer { flex-wrap: wrap; }
  .nav-slide-inner {
    grid-template-columns: 1fr; min-height: auto; gap: 1rem;
  }
  .nav-slide { min-height: auto; padding: 2rem 0; }
  .nav-slide-media, .nav-slide-media img {
    max-height: 55vh; max-height: 55dvh;
  }
}

@media (max-width: 560px) {
  .area-grid,
  .area-grid--preview { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr; }
}

@media (max-height: 720px) and (min-width: 901px) {
  .home-hero--fullscreen {
    align-items: flex-start;
    padding-top: clamp(5rem, 10svh, 6.5rem);
  }
  .home-hero--fullscreen h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }
  .hero-eyebrow { margin-bottom: 0.6rem; }
  .home-hero--fullscreen p { margin-bottom: 1rem; }
}
