:root {
  --breed-bg: #0f0d0f;
  --breed-surface: rgba(28, 24, 28, 0.92);
  --breed-surface-soft: rgba(255, 255, 255, 0.06);
  --breed-card: rgba(19, 16, 19, 0.9);
  --breed-border: rgba(213, 171, 100, 0.34);
  --breed-border-strong: rgba(213, 171, 100, 0.62);
  --breed-accent: #d5ab64;
  --breed-accent-soft: rgba(213, 171, 100, 0.14);
  --breed-text: #f6f3ef;
  --breed-muted: #cfc7bb;
  --breed-muted-soft: #a89f95;
  --breed-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --breed-radius-xl: 28px;
  --breed-radius-lg: 20px;
  --breed-radius-md: 14px;
  --breed-content: min(1120px, calc(100% - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--breed-text);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(213, 171, 100, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #181518 0%, #100f10 38%, #0b0a0c 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--breed-accent);
  outline-offset: 3px;
}

.breed-page {
  min-height: 100vh;
}

.container {
  width: var(--breed-content);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(13, 11, 14, 0.84);
  border-bottom: 1px solid rgba(213, 171, 100, 0.22);
}

.site-header__inner {
  width: var(--breed-content);
  margin: 0 auto;
  min-height: 82px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: auto;
  height: 82px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand__text {
  min-width: 0;
}

.brand__sub {
  margin-top: 0;
  color: var(--breed-muted-soft);
  font-size: 15px;
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(213, 171, 100, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.lang-btn {
  min-width: 48px;
  padding: 9px 14px;
  color: var(--breed-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.lang-btn + .lang-btn {
  border-left: 1px solid rgba(213, 171, 100, 0.18);
}

.lang-btn:hover {
  background: rgba(213, 171, 100, 0.12);
  color: var(--breed-text);
}

.lang-btn.active {
  background: linear-gradient(135deg, #efc777 0%, #d5ab64 100%);
  color: #17110d;
}

.header-booking-link,
.header-instagram-link,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.header-booking-link {
  padding: 11px 18px;
  border: none;
  background: linear-gradient(135deg, #efc777 0%, #d5ab64 100%);
  color: #17110d;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-instagram-link {
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.9);
  color: #111827;
  font-size: 13px;
  font-weight: 500;
}

.header-instagram-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.header-booking-link:hover,
.header-instagram-link:hover,
.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(680px, 56vw, 860px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 42%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(circle at left center, rgba(213, 171, 100, 0.18), transparent 38%);
  z-index: 1;
}

.hero__media {
  position: absolute;
  inset: 0;
  --hero-image-position-x: center;
  --hero-image-position-y: center;
}

.hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-image-position-x) var(--hero-image-position-y);
  filter: saturate(0.9);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: var(--breed-content);
  margin: 0 auto;
  min-height: inherit;
  padding: 96px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: center;
}

.hero__copy {
  max-width: 720px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(246, 243, 239, 0.82);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--breed-accent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(213, 171, 100, 0.12);
  border: 1px solid rgba(213, 171, 100, 0.22);
  color: #f6dbaa;
  font-size: 13px;
}

.hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero__lead {
  margin: 0;
  color: var(--breed-muted);
  font-size: 18px;
  line-height: 1.65;
  max-width: 64ch;
}

.hero__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-primary,
.button-secondary {
  padding: 14px 22px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--breed-shadow);
}

.button-primary {
  background: linear-gradient(135deg, #efc777 0%, #d5ab64 100%);
  color: #17110d;
}

.button-secondary {
  border: 1px solid rgba(213, 171, 100, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: var(--breed-text);
}

.hero__facts {
  display: grid;
  gap: 14px;
}

.fact-card {
  border-radius: var(--breed-radius-xl);
  padding: 20px;
  background: linear-gradient(180deg, rgba(29, 26, 29, 0.96) 0%, rgba(16, 14, 16, 0.96) 100%);
  border: 1px solid var(--breed-border);
  box-shadow: var(--breed-shadow);
}

.fact-card__label {
  color: var(--breed-muted-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fact-card__value {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 800;
  color: var(--breed-accent);
}

.fact-card__text {
  margin-top: 8px;
  color: var(--breed-muted);
  font-size: 14px;
  line-height: 1.6;
}

.section {
  padding: 56px 0;
}

.section--tight {
  padding-top: 24px;
}

.breed-anchor-nav {
  padding: 24px 26px;
}

.breed-anchor-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.breed-anchor-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(213, 171, 100, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--breed-text);
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.breed-anchor-link:hover {
  transform: translateY(-1px);
  border-color: var(--breed-border-strong);
  background: rgba(213, 171, 100, 0.12);
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.inline-links__item {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(213, 171, 100, 0.18);
  color: var(--breed-muted);
  font-size: 14px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.inline-links__item:hover {
  transform: translateY(-1px);
  border-color: var(--breed-border-strong);
  color: var(--breed-text);
}

.section__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.section__eyebrow {
  color: var(--breed-accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.section__subtext {
  margin: 0;
  color: var(--breed-muted);
  max-width: 70ch;
  line-height: 1.7;
}

.intro-grid,
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
}

.card,
.gallery-card,
.faq-card {
  background: linear-gradient(180deg, rgba(23, 20, 23, 0.96) 0%, rgba(15, 13, 15, 0.96) 100%);
  border: 1px solid var(--breed-border);
  border-radius: var(--breed-radius-xl);
  box-shadow: var(--breed-shadow);
}

.card {
  padding: 26px;
}

.rich-text p {
  margin: 0 0 16px;
  color: var(--breed-muted);
  line-height: 1.82;
  font-size: 16px;
}

.rich-text p:last-child {
  margin-bottom: 0;
}

.highlights {
  display: grid;
  gap: 14px;
}

.breed-profile-grid,
.breed-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.breed-profile {
  scroll-margin-top: 110px;
}

.breed-profile__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.breed-profile__header h3,
.breed-benefits h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}

.breed-profile__header a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(213, 171, 100, 0.22);
  background: rgba(213, 171, 100, 0.08);
  color: var(--breed-accent);
  font-size: 13px;
  font-weight: 700;
}

.breed-profile p,
.breed-benefits p {
  margin: 0 0 14px;
  color: var(--breed-muted);
  line-height: 1.78;
}

.breed-profile p:last-of-type,
.breed-benefits p:last-child {
  margin-bottom: 0;
}

.breed-checklist {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.breed-checklist li {
  padding: 14px 16px;
  border-radius: var(--breed-radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(213, 171, 100, 0.14);
  color: var(--breed-muted);
  line-height: 1.65;
}

.highlight {
  padding: 18px;
  border-radius: var(--breed-radius-lg);
  background: var(--breed-surface-soft);
  border: 1px solid rgba(213, 171, 100, 0.14);
}

.highlight__title {
  color: var(--breed-accent);
  font-weight: 700;
  font-size: 14px;
}

.highlight__text {
  margin-top: 8px;
  color: var(--breed-muted);
  font-size: 14px;
  line-height: 1.65;
}

.feature-list,
.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.feature-list li,
.price-list li {
  padding: 16px 18px;
  border-radius: var(--breed-radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(213, 171, 100, 0.14);
}

.feature-title,
.price-title {
  display: block;
  font-weight: 700;
  color: var(--breed-text);
}

.feature-text,
.price-note {
  display: block;
  margin-top: 6px;
  color: var(--breed-muted);
  line-height: 1.6;
  font-size: 14px;
}

.price-value {
  display: inline-flex;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(213, 171, 100, 0.12);
  color: var(--breed-accent);
  font-weight: 700;
  font-size: 14px;
}

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

.gallery-card {
  overflow: hidden;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--breed-radius-xl) - 8px);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-card {
  padding: 0 20px;
}

.faq-card summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 700;
  color: var(--breed-text);
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card p {
  margin: 0 0 18px;
  color: var(--breed-muted);
  line-height: 1.75;
}

.section--booking {
  padding-top: 44px;
}

.section__heading--center {
  align-items: center;
  text-align: center;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  position: relative;
}

.booking-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(213, 171, 100, 0.72);
}

.booking-card {
  position: relative;
  background: radial-gradient(circle at top left, #1f1b1f 0, #121012 45%, #0b090b 100%);
  border-radius: 22px;
  border: 1px solid rgba(213, 171, 100, 0.35);
  padding: 16px 16px 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.booking-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 10px;
  color: #f3f4f6;
}

.booking-row__label {
  min-width: 84px;
  font-weight: 700;
  color: #f9fafb;
}

.booking-row__value {
  color: #f3f4f6;
  line-height: 1.6;
}

.booking-row__note {
  margin-top: 8px;
  font-size: 12px;
  color: #d1d5db;
}

.booking-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(17, 24, 39, 0.85);
  color: #e5e7eb;
  font-size: 12px;
}

.booking-map {
  margin-top: 12px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: #e5e7eb;
}

.booking-map__link {
  padding: 12px;
  text-align: center;
  font-size: 11px;
  color: #6b7280;
}

.booking-map__frame iframe {
  width: 100%;
  height: 240px;
  display: block;
  border: 0;
}

.booking-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.booking-field label {
  font-weight: 600;
  color: #f9fafb;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  border-radius: 999px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 8px 12px;
  font-size: 13px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.booking-field textarea {
  border-radius: 16px;
  min-height: 64px;
  resize: vertical;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: var(--breed-accent);
  box-shadow: 0 0 0 1px rgba(213, 171, 100, 0.35);
  background: #ffffff;
}

.booking-field__hint {
  font-size: 11px;
  color: rgba(229, 231, 235, 0.75);
  line-height: 1.25;
}

.booking-field--full {
  margin-top: 8px;
}

.booking-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  font-size: 11px;
  color: #9ca3af;
}

.booking-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #efc777 0%, #d5ab64 100%);
  color: #17110d;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.booking-submit:hover {
  transform: translateY(-1px);
}

.booking-legal {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: rgba(229, 231, 235, 0.8);
}

.booking-legal a {
  color: rgba(229, 231, 235, 0.92);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.booking-status {
  margin-top: 10px;
  font-size: 12px;
  color: #e5e7eb;
}

.booking-status:empty {
  display: none;
}

.booking-status.is-error {
  color: #fecaca;
}

.site-footer {
  padding: 0 0 48px;
}

.site-footer__inner {
  width: var(--breed-content);
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(213, 171, 100, 0.16);
  color: var(--breed-muted-soft);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.site-footer__brand {
  justify-self: start;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer__legal a,
.site-footer__home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(213, 171, 100, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: var(--breed-muted);
}

.site-footer__home {
  justify-self: end;
}

@media (max-width: 900px) {
  .hero__content,
  .intro-grid,
  .content-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    min-height: auto;
    padding-top: 80px;
  }

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

  .breed-profile-grid,
  .breed-benefits {
    grid-template-columns: 1fr;
  }

  .booking-grid::before {
    display: none;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer__brand,
  .site-footer__home {
    justify-self: center;
  }

  .site-footer__nav {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  html {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 4px;
  }

  html::-webkit-scrollbar-track,
  body::-webkit-scrollbar-track {
    background: transparent;
  }

  html::-webkit-scrollbar-thumb,
  body::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
  }

  .site-header {
    position: static;
  }

  .site-header__inner {
    min-height: 0;
    padding: 8px 0 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px clamp(6px, 2vw, 12px);
  }

  .brand {
    width: auto;
    gap: clamp(6px, 1.8vw, 8px);
    min-width: 0;
  }

  .brand img {
    width: auto;
    height: clamp(36px, 11vw, 56px);
  }

  .hero__content {
    padding: 64px 0 56px;
  }

  .hero {
    min-height: 0;
  }

  .hero__media {
    --hero-image-position-x: var(--hero-mobile-position-x, center);
    --hero-image-position-y: var(--hero-mobile-position-y, 22%);
  }

  .hero__lead {
    font-size: 16px;
  }

  .breadcrumbs {
    font-size: 12px;
  }

  .section {
    padding: 44px 0;
  }

  .card,
  .booking-card {
    padding: 22px;
  }

  .gallery-grid,
  .hero__facts {
    grid-template-columns: 1fr;
  }

  .breed-anchor-links {
    width: 100%;
  }

  .breed-anchor-link {
    flex: 1 1 100%;
  }

  .breed-profile__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-actions {
    width: auto;
    display: grid;
    grid-template-columns: max-content clamp(112px, 31vw, 176px);
    grid-template-areas:
      "lang book"
      "inst book";
    align-items: center;
    justify-content: end;
    gap: clamp(3px, 1vw, 6px) clamp(4px, 1.2vw, 8px);
  }

  .inline-links {
    width: 100%;
  }

  .lang-switch {
    grid-area: lang;
    justify-self: start;
  }

  .lang-btn {
    min-width: clamp(30px, 8vw, 40px);
    padding: clamp(5px, 1.4vw, 6px) clamp(6px, 1.9vw, 10px);
    font-size: clamp(8px, 2.4vw, 12px);
    letter-spacing: clamp(0.02em, 0.1vw, 0.08em);
  }

  .header-booking-link,
  .header-instagram-link {
    width: auto;
    font-size: 12px;
  }

  .header-booking-link {
    grid-area: book;
    align-self: center;
    min-height: clamp(30px, 8.6vw, 40px);
    width: clamp(112px, 31vw, 176px);
    padding: clamp(8px, 1.8vw, 10px) clamp(6px, 2vw, 14px);
    font-size: clamp(7.5px, 2.2vw, 11px);
    letter-spacing: clamp(0.02em, 0.1vw, 0.06em);
  }

  .header-instagram-link {
    grid-area: inst;
    justify-self: center;
    width: clamp(30px, 8.6vw, 40px);
    min-width: clamp(30px, 8.6vw, 40px);
    height: clamp(30px, 8.6vw, 40px);
    padding: 0;
  }

  .header-instagram-link span {
    display: none;
  }

  .brand__sub {
    max-width: clamp(48px, 16vw, 108px);
    font-size: clamp(7px, 2vw, 10px);
    line-height: 1.2;
  }

  .booking-form__grid,
  .booking-form__footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .booking-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-row__label {
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
    min-width: 0;
    padding: 12px 14px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .hero__media {
    --hero-image-position-x: var(--hero-mobile-position-x, center);
    --hero-image-position-y: var(--hero-mobile-position-y-compact, var(--hero-mobile-position-y, 18%));
  }

  .site-header__inner {
    gap: 8px 4px;
  }

  .brand {
    gap: 4px;
  }

  .header-actions {
    transform: scale(0.84);
    transform-origin: right center;
  }

  .hero__actions {
    gap: 8px;
  }

  .button-primary,
  .button-secondary {
    padding: 10px 8px;
    font-size: 11px;
  }
}
