:root {
  color-scheme: light;
  --bg: #f3eee6;
  --bg-alt: #ebe4da;
  --card: #ffffff;
  --text: #141312;
  --muted: #5f564d;
  --accent: #141312;
  --accent-dark: #0c0b0a;
  --pine: #2f2a25;
  --sand: #d7cfc3;
  --line: rgba(43, 36, 27, 0.12);
  --shadow: 0 24px 50px rgba(43, 36, 27, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --font-serif: "Montserrat", sans-serif;
  --font-sans: "Montserrat", sans-serif;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: radial-gradient(circle at top left, #f7f2ea 0%, var(--bg) 35%, var(--bg-alt) 100%);
  line-height: 1.6;
}

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

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

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #f1ede5;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo-image {
  width: 150px;
  height: auto;
  display: block;
}

.site-header .logo-image {
  width: 150px;
}

.site-footer .logo-image {
  width: 160px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: var(--accent);
}

.nav a.is-active {
  border-color: var(--accent);
  font-weight: 600;
}

.nav a.nav-cta {
  margin-left: 12px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(43, 36, 27, 0.12);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 50%;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}

.menu-toggle span {
  height: 2px;
  background: var(--text);
  width: 100%;
  display: block;
}

.hero {
  padding: 80px 0 0;
}

.hero-heading-block {
  text-align: center;
  padding: 24px 20px 32px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  max-height: 700px;
  overflow: hidden;
}

.hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-carousel-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-carousel-prev,
.hero-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel-prev:hover,
.hero-carousel-next:hover {
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-carousel-prev {
  left: 20px;
}

.hero-carousel-prev::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-left: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: rotate(-45deg);
  margin-left: 4px;
}

.hero-carousel-next {
  right: 20px;
}

.hero-carousel-next::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--text);
  border-top: 2px solid var(--text);
  transform: rotate(-45deg);
  margin-right: 4px;
}

.hero-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s;
}

.hero-carousel-dot:hover,
.hero-carousel-dot.is-active {
  background: #fff;
}

.intro-section {
  padding: 48px 0 60px;
}

.intro-subheading {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  margin-bottom: 28px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.intro-split {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.intro-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

.intro-text p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

.intro-cta {
  margin-top: 20px;
  display: inline-block;
}

@media (max-width: 768px) {
  .intro-split {
    grid-template-columns: 1fr;
  }
  .intro-subheading {
    white-space: normal;
  }
}

/* Секция «Что такое Творческий ретрит» */
.retreat-section {
  padding: 60px 0 80px;
  background: var(--bg-alt);
}

.retreat-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  margin-bottom: 16px;
}

.retreat-subheading {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  margin-bottom: 16px;
}

.retreat-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 640px;
}

.retreat-founders {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.retreat-founder {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.retreat-founder-photo {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

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

.retreat-founder-bio {
  flex: 1;
  min-width: 0;
}

.retreat-founder-name {
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}

.retreat-founder-role {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.retreat-founder-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.retreat-constructor-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.retreat-constructor-list {
  margin: 0 0 20px 1.2em;
  padding: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.retreat-constructor-list li {
  margin-bottom: 10px;
}

.retreat-tagline {
  font-size: 17px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
}

.retreat-min-note {
  font-size: 13px;
  color: var(--muted);
  opacity: 0.9;
}

.constructor-placeholder {
  padding: 40px 0;
  min-height: 120px;
}

.constructor-placeholder-text {
  font-size: 15px;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  color: var(--pine);
  margin-bottom: 16px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(20, 19, 18, 0.18);
  background: var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn.small {
  padding: 10px 16px;
  font-size: 13px;
}

.hero-highlights {
  display: grid;
  gap: 14px;
  font-size: 14px;
}

.highlight-title {
  font-weight: 600;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.hero-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  max-width: 320px;
}

.hero-card-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.hero-card-price {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: var(--accent-dark);
}

.philosophy {
  padding: 60px 0;
}

.split {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.philosophy h2,
.section h2,
.discover h2,
.featured h2,
.booking h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 16px;
}

.founders {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.founder {
  display: flex;
  gap: 12px;
  align-items: center;
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f1dcc3, #cab39a);
}

.founder-name {
  font-weight: 600;
}

.founder-role {
  font-size: 13px;
  color: var(--muted);
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.media-tile {
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(179, 107, 60, 0.15), rgba(47, 75, 58, 0.15)),
    url("/static/photo/IMG_4321 2.jpg") center/cover;
  min-height: 180px;
  /* background-size: cover;
  background-position: center; */
  grid-column: 1;
  grid-row: 1 / 3;
}

.media-tile:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  background-image: linear-gradient(140deg, rgba(179, 107, 60, 0.18), rgba(47, 75, 58, 0.18)),
    url("/static/photo/IMG_11EB38D5AB75-1.jpg");
}

.media-tile:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
  background-image: linear-gradient(140deg, rgba(179, 107, 60, 0.15), rgba(47, 75, 58, 0.15)),
    url("/static/photo/IMG_11EB38D5AB75-2.jpg");
}

.featured {
  padding: 40px 0 80px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 20px;
}

.link {
  font-size: 14px;
  color: var(--accent-dark);
}

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

.card,
.discover-item,
.service-card,
.product-card,
.beyond-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(43, 36, 27, 0.05);
  display: grid;
  gap: 12px;
}

.card-image {
  height: 150px;
  border-radius: var(--radius-sm);
  background: linear-gradient(140deg, rgba(47, 75, 58, 0.2), rgba(179, 107, 60, 0.2)),
    url("https://images.unsplash.com/photo-1519710164239-da123dc03ef4?auto=format&fit=crop&w=900&q=80") center/cover;
}

.card:nth-child(2) .card-image {
  background-image: linear-gradient(140deg, rgba(47, 75, 58, 0.2), rgba(179, 107, 60, 0.2)),
    url("https://images.unsplash.com/photo-1519710164239-da123dc03ef4?auto=format&fit=crop&w=900&q=80");
}

.card:nth-child(3) .card-image {
  background-image: linear-gradient(140deg, rgba(47, 75, 58, 0.2), rgba(179, 107, 60, 0.2)),
    url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=900&q=80");
}

.card:nth-child(4) .card-image {
  background-image: linear-gradient(140deg, rgba(47, 75, 58, 0.2), rgba(179, 107, 60, 0.2)),
    url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=900&q=80");
}

.discover {
  padding: 60px 0;
  background: linear-gradient(120deg, rgba(179, 107, 60, 0.08), rgba(47, 75, 58, 0.08));
}

.discover-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 24px;
}

.discover-image {
  height: 150px;
  border-radius: var(--radius-sm);
  background: linear-gradient(130deg, rgba(179, 107, 60, 0.2), rgba(47, 75, 58, 0.2)),
    url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=900&q=80") center/cover;
}

.booking {
  padding: 80px 0;
}

.booking-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.booking-list {
  margin-top: 20px;
  padding-left: 16px;
  color: var(--muted);
}

.booking-form,
.contact-form {
  display: grid;
  gap: 14px;
  background: var(--card);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 6px;
  font-size: 13px;
}

input,
select,
textarea {
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 10px 12px;
  font-family: var(--font-sans);
  font-size: 14px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.section {
  padding: 80px 0;
}

.muted {
  color: var(--muted);
  font-size: 14px;
}

.service-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-image {
  height: 160px;
  border-radius: var(--radius-sm);
  background: linear-gradient(130deg, rgba(179, 107, 60, 0.2), rgba(47, 75, 58, 0.2)),
    url("https://images.unsplash.com/photo-1451477334999-a9321157a431?auto=format&fit=crop&w=900&q=80") center/cover;
}

.service-meta {
  font-weight: 600;
  font-size: 13px;
  color: var(--accent-dark);
}

.shop {
  background: #f8f3ea;
}

.product-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.product-image {
  height: 180px;
  border-radius: var(--radius-sm);
  background: linear-gradient(130deg, rgba(179, 107, 60, 0.2), rgba(47, 75, 58, 0.2)),
    url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=900&q=80") center/cover;
}

.shop-note {
  margin-top: 20px;
  color: var(--muted);
}

.beyond {
  background: #f3ede3;
}

.beyond-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.beyond-image {
  height: 160px;
  border-radius: var(--radius-sm);
  background: linear-gradient(130deg, rgba(179, 107, 60, 0.2), rgba(47, 75, 58, 0.2)),
    url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=900&q=80") center/cover;
}

.contact {
  padding-bottom: 100px;
}

.contact-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 24px;
}

.label {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.map-placeholder,
.video-placeholder {
  margin-top: 14px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--card);
  border: 1px dashed var(--line);
  color: var(--muted);
}

.map-embed {
  margin-top: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.map-link {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--accent-dark);
  border-top: 1px solid var(--line);
}

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--line);
  background: #f1ede5;
}

.booking-page {
  padding-bottom: 80px;
}

.booking-hero {
  padding: 60px 0 30px;
}

.booking-hero-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.booking-hero-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.booking-hero-card ul {
  margin-top: 12px;
  padding-left: 18px;
  color: var(--muted);
}

.booking-note {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  /* border: 1px solid var(--line); */
  background: #fff;
  font-size: 13px;
}

.booking-tabs-section {
  padding: 30px 0 60px;
}

.booking-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.tab-btn {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
}

.tab-btn.active {
  background: var(--accent);
  color: #fff;
}

.booking-panels {
  display: grid;
  gap: 20px;
}

.booking-feedback {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  display: none;
}

.booking-feedback.is-visible {
  display: block;
}

.booking-panel {
  display: none;
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  gap: 14px;
}

.booking-panel.active {
  display: grid;
}

.calendar-block {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cal-title {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.cal-nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  cursor: pointer;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  font-size: 12px;
}

.cal-day {
  text-align: center;
  padding: 6px 0;
  color: var(--muted);
  font-weight: 600;
}

.cal-cell {
  height: 34px;
  border-radius: 8px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cal-cell.is-disabled {
  color: #b5ada4;
  background: #f7f2ec;
  cursor: not-allowed;
}

.cal-cell.is-selected {
  background: var(--accent);
  color: #fff;
}

.time-slots,
.duration-picker {
  display: grid;
  gap: 8px;
}

.time-title {
  font-weight: 600;
  font-size: 13px;
}

.time-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
}

.slot-btn {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 8px 10px;
  font-size: 12px;
  cursor: pointer;
}

.slot-btn.is-disabled {
  color: #b5ada4;
  background: #f7f2ec;
  cursor: not-allowed;
}

.slot-btn.active {
  background: var(--accent);
  color: #fff;
}

.selected-dates {
  font-size: 13px;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 10px 12px;
}
.two-cols {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-inner {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.footer-links .footer-cta {
  font-weight: 700;
}

.footer-links,
.footer-contacts {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 72px;
    right: 20px;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 16px;
    flex-direction: column;
    gap: 12px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: flex;
  }

  .header-actions .pill {
    display: none;
  }

  .hero-card {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-card {
    position: static;
    margin-top: 20px;
  }

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Rectangular block style for both pages */
.hero-card,
.card,
.discover-item,
.service-card,
.product-card,
.beyond-card,
.booking-form,
.contact-form,
.booking-panel,
.booking-hero-card,
.booking-note,
.calendar-block,
.selected-dates,
.booking-feedback,
.map-embed,
.map-placeholder,
.video-placeholder,
.media-tile {
  border-radius: 0 !important;
  border: 1px solid var(--line) !important;
}
