@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600;6..72,700&display=swap");

:root {
  --coral: #ec555e;
  --teal: #81acb3;
  --lilac: #c5bdee;
  --taupe: #b89579;
  --canvas: #faf7f2;
  --wood: #e7d8c3;
  --detail: #d0ccd4;
  --ink: #2d2522;
  --muted: #655a54;
  --line: rgba(58, 43, 37, 0.12);
  --shadow: 0 24px 60px rgba(91, 73, 58, 0.08);
  --shadow-soft: 0 16px 30px rgba(91, 73, 58, 0.06);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(197, 189, 238, 0.34), transparent 24rem),
    radial-gradient(circle at 90% 12%, rgba(129, 172, 179, 0.16), transparent 18rem),
    var(--canvas);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(208, 204, 212, 0.42) 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  opacity: 0.32;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 72%);
  pointer-events: none;
  z-index: -1;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-tight {
  padding: 4rem 0;
}

.section-booking {
  padding: 2.5rem 0 3.25rem;
}

.section-discovery {
  padding: 2rem 0 2rem;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section-heading-compact {
  margin-bottom: 1.5rem;
}

.section-label-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.eyebrow {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  font-family: "Newsreader", serif;
  line-height: 1.05;
  margin: 0 0 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.9rem, 5vw, 5.2rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 16ch;
}

h3 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
}

.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.2rem);
  max-width: 38rem;
  color: #473d38;
}

.small {
  font-size: 0.95rem;
}

.muted {
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  box-shadow: var(--shadow-soft);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--coral);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.84);
  border-color: var(--line);
  color: var(--ink);
}

.button-tertiary {
  background: rgba(129, 172, 179, 0.14);
  border-color: rgba(129, 172, 179, 0.3);
  color: var(--ink);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  font-size: 0.9rem;
  color: #4e4440;
}

.badge {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(197, 189, 238, 0.18);
  color: #504546;
  font-size: 0.85rem;
  font-weight: 700;
}

.announcement-bar {
  border-bottom: 1px solid var(--line);
  background: rgba(236, 85, 94, 0.08);
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.2rem;
  font-size: 0.95rem;
}

.announcement-inner p {
  margin: 0;
  color: #4c3f39;
}

.announcement-inner a {
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(250, 247, 242, 0.86);
  border-bottom: 1px solid rgba(58, 43, 37, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 5.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  line-height: 1.1;
}

.brand-logo {
  display: block;
  width: clamp(8.5rem, 12vw, 10.5rem);
  height: auto;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav a {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: #403631;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.nav-toggle {
  display: none;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  color: var(--ink);
}

.hero {
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy::after {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  border-radius: 46% 54% 45% 55% / 56% 46% 54% 44%;
  background: rgba(197, 189, 238, 0.22);
  top: -2rem;
  left: -3rem;
  z-index: -1;
  filter: blur(2px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.hero-panel {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(58, 43, 37, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 30rem;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto auto 2rem -2.5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 46% 54% 67% 33% / 38% 31% 69% 62%;
  background: rgba(236, 85, 94, 0.12);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 1.5rem -2rem auto auto;
  width: 11rem;
  height: 11rem;
  border-radius: 55% 45% 40% 60% / 61% 43% 57% 39%;
  background: rgba(129, 172, 179, 0.18);
}

.panel-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.atmosphere-card,
.paper-card,
.surface-card,
.event-card,
.value-card,
.offer-card,
.scenario-card,
.detail-card,
.story-card,
.note-card,
.form-card,
.booking-card,
.placeholder-frame,
.step-card,
.cta-panel {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(58, 43, 37, 0.09);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
}

.atmosphere-card {
  padding: 1.5rem;
}

.atmosphere-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.swatch-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.swatch {
  flex: 1 1 8rem;
  min-height: 7.5rem;
  border-radius: 1.8rem;
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  font-weight: 700;
  color: #3f3531;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.swatch-coral {
  background: linear-gradient(180deg, rgba(236, 85, 94, 0.18), rgba(236, 85, 94, 0.32));
}

.swatch-teal {
  background: linear-gradient(180deg, rgba(129, 172, 179, 0.18), rgba(129, 172, 179, 0.3));
}

.swatch-wood {
  background: linear-gradient(180deg, rgba(231, 216, 195, 0.45), rgba(184, 149, 121, 0.28));
}

.paper-note {
  padding: 1.3rem 1.5rem;
  background: linear-gradient(180deg, rgba(250, 247, 242, 0.96), rgba(250, 247, 242, 0.82));
  position: relative;
  transform: rotate(-1.2deg);
}

.paper-note::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: rgba(236, 85, 94, 0.2);
  box-shadow: 0 0 0 6px rgba(236, 85, 94, 0.06);
}

.studio-list,
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.studio-list li,
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #473d38;
}

.studio-list span {
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--coral);
  flex: 0 0 auto;
}

.feature-list span {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(236, 85, 94, 0.14);
  color: var(--coral);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  flex: 0 0 auto;
  font-weight: 800;
}

.section-surface {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(58, 43, 37, 0.06);
  box-shadow: var(--shadow-soft);
}

.section-surface-booking {
  padding: 1.15rem;
  background:
    linear-gradient(135deg, rgba(236, 85, 94, 0.08), rgba(255, 255, 255, 0.74) 35%, rgba(129, 172, 179, 0.12)),
    rgba(255, 255, 255, 0.58);
  border-color: rgba(58, 43, 37, 0.08);
  box-shadow: var(--shadow);
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.booking-card,
.placeholder-frame {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 247, 242, 0.88)),
    radial-gradient(circle at top left, rgba(197, 189, 238, 0.2), transparent 14rem);
}

.booking-card {
  display: grid;
  gap: 1.5rem;
}

.booking-card-home {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  align-items: center;
  padding: 1.35rem;
  gap: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 242, 0.92)),
    radial-gradient(circle at top left, rgba(236, 85, 94, 0.14), transparent 18rem),
    radial-gradient(circle at bottom right, rgba(129, 172, 179, 0.14), transparent 18rem);
  box-shadow: var(--shadow);
}

.booking-copy {
  text-align: left;
  padding: 0.6rem 0.35rem 0.6rem 0.15rem;
}

.booking-copy .eyebrow {
  margin-bottom: 0.85rem;
}

.booking-copy strong {
  display: block;
  font-family: "Newsreader", serif;
  font-size: clamp(1.75rem, 2.8vw, 2.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #403631;
}

.booking-copy p {
  max-width: 31rem;
  margin: 0.7rem 0 0;
}

.booking-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.booking-pills .pill {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(58, 43, 37, 0.1);
}

.booking-copy .button-row {
  margin-top: 1.1rem;
  gap: 0.75rem;
}

.home-format-card {
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.home-format-card .badge {
  margin-bottom: 0.65rem;
}

.home-format-card h3 {
  margin-bottom: 0.55rem;
}

.home-format-card p {
  margin-bottom: 0;
}

.home-format-card .examples-row {
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.home-format-card .pill {
  padding: 0.38rem 0.72rem;
  font-size: 0.84rem;
}

.card-actions {
  margin-top: auto;
}

.home-format-card .button-row {
  margin-top: 1rem;
}

.home-format-card .button {
  padding: 0.8rem 1rem;
}

.reservio-shell {
  position: relative;
  padding: 0.78rem;
  border-radius: calc(var(--radius-lg) + 0.25rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 242, 0.94)),
    radial-gradient(circle at top left, rgba(197, 189, 238, 0.16), transparent 14rem);
  border: 1px solid rgba(58, 43, 37, 0.09);
  box-shadow: 0 22px 44px rgba(91, 73, 58, 0.12);
}

.reservio-frame {
  display: block;
  width: 100%;
  min-height: 36rem;
  border: 0;
  border-radius: calc(var(--radius-lg) - 0.1rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 242, 0.94)),
    radial-gradient(circle at top left, rgba(197, 189, 238, 0.12), transparent 14rem);
}

.booking-card:not(.booking-card-home) strong,
.placeholder-frame strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: #403631;
}

.booking-card:not(.booking-card-home) p,
.placeholder-frame p {
  max-width: 28rem;
  margin: 0 auto;
}

.placeholder-frame {
  min-height: 18rem;
  display: grid;
  place-items: center;
  text-align: center;
}

.placeholder-frame.hidden,
.placeholder-frame[hidden] {
  display: none;
}

.reservio-note {
  margin-top: 0.9rem;
  color: #544944;
}

.reservio-note a {
  font-weight: 700;
  color: #403631;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.filter-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: #4b403a;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-button.is-active,
.filter-button:hover {
  background: rgba(129, 172, 179, 0.14);
  border-color: rgba(129, 172, 179, 0.36);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.event-card {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.event-card h3 {
  font-size: 1.45rem;
  margin: 0;
}

.event-card p {
  margin: 0;
}

.event-card.is-hidden {
  display: none;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.event-meta .pill {
  background: rgba(129, 172, 179, 0.12);
  border-color: rgba(129, 172, 179, 0.28);
}

.value-card,
.offer-card,
.scenario-card,
.detail-card,
.story-card,
.note-card,
.form-card,
.step-card,
.cta-panel {
  padding: 1.5rem;
}

.value-card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: auto -1.6rem -2rem auto;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: rgba(231, 216, 195, 0.38);
}

.value-card h3 {
  margin-bottom: 0.4rem;
}

.notice-band {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(58, 43, 37, 0.08);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.notice-band strong {
  font-family: "Newsreader", serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.offer-card--accent {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(236, 85, 94, 0.08));
}

.offer-card--teal {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(129, 172, 179, 0.08));
}

.examples-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.examples-row .pill {
  background: rgba(231, 216, 195, 0.42);
}

.info-strip {
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(129, 172, 179, 0.12);
  border: 1px solid rgba(129, 172, 179, 0.26);
}

.rental-split,
.about-split,
.contact-grid,
.story-grid,
.community-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

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

.step-number {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.page-hero {
  padding: 4.5rem 0 2rem;
}

.story-card--tinted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(197, 189, 238, 0.14));
}

.story-card--warm {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(231, 216, 195, 0.34));
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 700;
  color: #403631;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(58, 43, 37, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(129, 172, 179, 0.28);
  border-color: rgba(129, 172, 179, 0.5);
}

.form-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.status-note {
  display: none;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(129, 172, 179, 0.12);
  border: 1px solid rgba(129, 172, 179, 0.24);
  color: #3f3531;
  margin-top: 1rem;
}

.status-note.is-visible {
  display: block;
}

.contact-card-list {
  display: grid;
  gap: 1rem;
}

.contact-line {
  display: grid;
  gap: 0.25rem;
}

.contact-line strong {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b6059;
}

.contact-line a,
.contact-line span {
  font-size: 1.1rem;
  color: #3f3531;
}

.cta-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(197, 189, 238, 0.16));
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58, 43, 37, 0.12), transparent);
  margin: 2rem 0;
}

.footer {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
  gap: 1.5rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
}

.footer small {
  color: var(--muted);
  display: block;
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  .hero-grid,
  .grid-3,
  .grid-4,
  .rental-split,
  .about-split,
  .contact-grid,
  .story-grid,
  .community-grid,
  .footer-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

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

  .booking-card-home {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    padding: 0;
  }
}

@media (max-width: 800px) {
  h1 {
    max-width: 14ch;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.8rem);
    padding: 1rem;
    border-radius: 24px;
    background: rgba(250, 247, 242, 0.98);
    box-shadow: var(--shadow);
    border: 1px solid rgba(58, 43, 37, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .rental-split,
  .about-split,
  .contact-grid,
  .story-grid,
  .community-grid,
  .footer-grid,
  .steps,
  .events-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .section-booking {
    padding: 2.6rem 0 2.2rem;
  }

  .section-discovery {
    padding: 2.3rem 0 1.8rem;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-panel {
    min-height: auto;
  }

  .announcement-inner,
  .section-label-row,
  .notice-band {
    align-items: flex-start;
  }

  .reservio-frame {
    min-height: 28rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max-width), calc(100% - 1.25rem));
  }

  .header-inner {
    min-height: 4.7rem;
  }

  .brand-logo {
    width: 7.5rem;
  }

  .button {
    width: 100%;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-meta,
  .examples-row,
  .filters {
    gap: 0.5rem;
  }

  .booking-card,
  .placeholder-frame {
    padding: 1.25rem;
  }

  .section-surface-booking,
  .booking-card-home {
    padding: 1rem;
  }

  .home-format-card {
    padding: 1.2rem;
  }

  .reservio-shell {
    padding: 0.55rem;
  }

  .reservio-frame {
    min-height: 22rem;
  }
}
