/* =========================
   Header
========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  border-bottom: 2px solid var(--color-yellow);
  background: rgba(5, 47, 40, 0.97);
  backdrop-filter: blur(12px);
}

.header-container {
  width: min(
    1440px,
    calc(100% - 40px)
  );
  min-height: 86px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 30px;
}

.site-logo {
  width: 150px;
  flex: 0 0 auto;
}

.site-logo img {
  width: 100%;
  max-height: 105px;
  object-fit: contain;
}

.main-navigation {
  margin-left: auto;

  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
}

.nav-link {
  position: relative;
  padding: 30px 0;

  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;

  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;

  height: 2px;

  background: var(--color-yellow);
  transform: scaleX(0);
  transform-origin: center;

  transition: transform var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-yellow);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-booking-button {
  margin-left: 6px;
  flex: 0 0 auto;
}

.mobile-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 10px;
  border: 1px solid rgba(255, 201, 40, 0.4);
  border-radius: 8px;
  background: transparent;
}

.mobile-menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--color-yellow);
  transition:
    transform var(--transition-normal),
    opacity var(--transition-normal);
}

/* =========================
   Hero
========================== */
.hero-section {
  position: relative;
  min-height: 620px;
  overflow: hidden;

  color: var(--color-white);

  background:
    linear-gradient(
      90deg,
      rgba(3, 35, 29, 0.7) 0%,
      rgba(3, 35, 29, 0.7) 38%,
      rgba(3, 35, 29, 0.3) 68%,
      rgba(3, 35, 29, 0.25) 100%
    ),
    url("../assets/images/court/court1.jpg")
    center / cover no-repeat;
}

.hero-section::after {
display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(1, 19, 16, 0.15),
      rgba(1, 19, 16, 0.45)
    );
}

.hero-container {
  position: relative;
  z-index: 2;
  min-height: 620px;

  display: flex;
  align-items: center;
}

.hero-content {
  width: min(720px, 65%);
  padding: 80px 0;
}

.hero-eyebrow {
  margin-bottom: 14px;

  color: var(--color-yellow);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.28em;
}

.hero-title {
  margin-bottom: 24px;

  font-size: clamp(3rem, 6vw, 6.4rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.hero-title span,
.hero-title strong {
  display: block;
}

.hero-title span {
  color: var(--color-white);
  text-shadow:
    4px 4px 0 rgba(0, 0, 0, 0.26);
}

.hero-title strong {
  margin-top: 14px;
  color: var(--color-yellow);
  font-weight: inherit;
  text-shadow:
    4px 4px 0 rgba(116, 68, 0, 0.42);
}

.hero-description {
  max-width: 670px;
  margin-bottom: 34px;

  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 600;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.circle-icon {
  width: 31px;
  height: 31px;
  border-radius: 50%;

  color: var(--color-green-950);
  font-size: 0.54rem;

  background: var(--color-white);

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   Feature bar
========================== */
.feature-bar {
  position: relative;
  z-index: 5;

  color: var(--color-white);
  border-top: 1px solid rgba(255, 201, 40, 0.35);
  background:
    linear-gradient(
      90deg,
      var(--color-green-950),
      var(--color-green-800),
      var(--color-green-950)
    );
}

.feature-grid {
  min-height: 112px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-item {
  position: relative;
  padding: 24px 34px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25%;
  right: 0;
  bottom: 25%;

  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.feature-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border: 2px solid var(--color-yellow);
  border-radius: 14px;

  color: var(--color-yellow);
  font-weight: 900;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: rotate(-6deg);
}

.feature-item h2 {
  margin-bottom: 2px;

  color: var(--color-yellow);
  font-size: 1rem;
  font-weight: 900;
}

.feature-item p {
  margin: 0;

  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
}

/* =========================
   首頁內容
========================== */
.home-content-section {
  padding: 62px 0 50px;
  background:
    radial-gradient(
      circle at 10% 0,
      rgba(255, 201, 40, 0.08),
      transparent 24%
    ),
    var(--color-cream);
}

.home-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.home-column {
  min-width: 0;
}

.section-heading {
  min-height: 62px;
  margin-bottom: 18px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.section-label {
  margin: 0 0 2px;

  color: var(--color-green-700);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.section-heading h2 {
  margin: 0;

  color: var(--color-green-950);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 950;
  line-height: 1.2;
}

.section-lightning {
  color: var(--color-yellow);
}

.section-more-link {
  padding-bottom: 4px;

  color: var(--color-green-950);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;

  transition: color var(--transition-fast);
}

.section-more-link:hover {
  color: var(--color-orange);
}

.content-card {
  height: calc(100% - 80px);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(5, 47, 40, 0.1);
  border-radius: var(--border-radius-medium);

  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-small);
}

/* =========================
   活動
========================== */
.featured-activity {
  position: relative;
  min-height: 310px;
  overflow: hidden;
}

.featured-activity img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(5, 47, 40, 0.94),
      rgba(5, 47, 40, 0.54) 65%,
      rgba(5, 47, 40, 0.1)
    );
}

.featured-activity-content {
  position: relative;
  z-index: 2;

  max-width: 82%;
  padding: 28px;
  color: var(--color-white);
}

.status-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 4px 12px;
  border-radius: 999px;

  color: var(--color-green-950);
  font-size: 0.72rem;
  font-weight: 900;

  background: #6ee27f;
}

.featured-activity h3 {
  margin-bottom: 8px;
  font-size: 2rem;
  line-height: 1.2;
}

.activity-date {
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.activity-summary {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.87rem;
}

.small-outline-button {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid var(--color-yellow);
  border-radius: 6px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 800;

  transition:
    color var(--transition-fast),
    background-color var(--transition-fast);
}

.small-outline-button:hover {
  color: var(--color-green-950);
  background: var(--color-yellow);
}

.small-outline-button.dark {
  color: var(--color-green-950);
}

.activity-list,
.coach-list,
.product-list {
  padding: 0 20px;
}

.activity-list-item,
.coach-list-item,
.product-list-item {
  min-height: 80px;
  padding: 13px 0;
  border-bottom: 1px solid var(--color-gray-200);

  display: flex;
  align-items: center;
  gap: 14px;

  transition:
    background-color var(--transition-fast),
    padding var(--transition-fast);
}

.activity-list-item:last-child,
.coach-list-item:last-child,
.product-list-item:last-child {
  border-bottom: 0;
}

.activity-list-item:hover,
.coach-list-item:hover,
.product-list-item:hover {
  padding-right: 8px;
  padding-left: 8px;
  background: rgba(255, 201, 40, 0.08);
}

.activity-thumbnail {
  width: 82px;
  height: 52px;
  flex: 0 0 82px;
  overflow: hidden;
  border-radius: 7px;
}

.activity-list-item h3,
.coach-list-item h3,
.product-list-item h3 {
  margin-bottom: 3px;
  font-size: 0.9rem;
}

.activity-list-item p,
.coach-list-item p,
.product-list-item p {
  margin: 0;
  color: var(--color-gray-500);
  font-size: 0.76rem;
}

/* =========================
   教練
========================== */
.featured-coach {
  min-height: 310px;
  padding: 0 22px;

  display: grid;
  grid-template-columns: 44% 56%;
  align-items: stretch;

  background:
    linear-gradient(
      135deg,
      #ece8de,
      #f7f3e9
    );
}

.featured-coach-image {
  min-height: 310px;
  padding-top: 25px;

  display: flex;
  align-items: flex-end;
}

.featured-coach-image img {
  width: 100%;
  height: 275px;

  border-radius: 12px 12px 0 0;

  object-fit: cover;
}

.featured-coach-image .large-image-placeholder {
  width: 100%;
  height: 275px;
  border-radius: 12px 12px 0 0;
}

.featured-coach-info {
  padding: 48px 10px 30px 24px;
}

.featured-coach-info h3 {
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.coach-highlights {
  margin-bottom: 22px;
}

.coach-highlights li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 21px;

  color: var(--color-gray-700);
  font-size: 0.82rem;
  font-weight: 600;
}

.coach-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-green-700);
  font-weight: 900;
}

.text-link {
  color: var(--color-green-700);
  font-size: 0.8rem;
  font-weight: 900;
}

.text-link:hover {
  color: var(--color-orange);
}

.coach-avatar {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  overflow: hidden;
  border-radius: 8px;
}

.coach-avatar img,
.activity-thumbnail img,
.product-thumbnail img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* =========================
   商品
========================== */
.featured-product {
  min-height: 310px;
  padding: 20px;

  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
  gap: 18px;

  background:
    linear-gradient(
      135deg,
      #eae6db,
      #f7f3e9
    );
}

.featured-product-image .large-image-placeholder {
  width: 100%;
  height: 250px;
  border-radius: 14px;
}

.featured-product-image img {
  width: 100%;
  height: 250px;

  border-radius: 14px;

  object-fit: cover;
}

.product-category {
  margin-bottom: 5px;

  color: var(--color-green-700);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.featured-product-info h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.35;
}

.product-price {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 900;
}

.product-description {
  margin-bottom: 18px;
  color: var(--color-gray-500);
  font-size: 0.8rem;
}

.product-thumbnail {
  width: 84px;
  height: 60px;
  flex: 0 0 84px;
  overflow: hidden;
  border-radius: 8px;
}

/* =========================
  最新公告
========================== */
.home-news-section {
  padding: 8px 0 56px;
}

.home-news-heading {
  margin-bottom: 16px;
}

.home-news-list {
  overflow: hidden;

  border: 1px solid rgba(5, 47, 40, 0.1);
  border-radius: var(--border-radius-medium);

  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-small);
}

.home-news-item {
  display: block;

  padding: 16px 20px;

  border-bottom: 1px solid var(--color-gray-200);

  transition:
    background-color var(--transition-fast),
    padding var(--transition-fast);
}

.home-news-item:last-child {
  border-bottom: 0;
}

.home-news-item:hover {
  padding-right: 24px;
  padding-left: 24px;
  background: rgba(255, 201, 40, 0.08);
}

.home-news-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 6px;
}

.home-news-date {
  color: var(--color-green-700);

  font-size: 0.76rem;
  font-weight: 800;
}

.home-news-category,
.home-news-pinned {
  padding: 2px 8px;
  border-radius: 999px;

  color: #113f34;

  font-size: 0.7rem;
  font-weight: 800;

  background: rgba(18, 99, 79, 0.12);
}

.home-news-pinned {
  background: rgba(255, 201, 40, 0.3);
}

.home-news-item h3 {
  margin-bottom: 4px;

  color: var(--color-gray-900);
  font-size: 1rem;
}

.home-news-item p {
  margin: 0;

  color: var(--color-gray-700);
  font-size: 0.82rem;
}

.home-empty {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 310px;
  padding: 24px;

  color: var(--color-gray-500);

  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

/* =========================
   預約 CTA
========================== */
.booking-cta-section {
  padding: 14px 0 62px;
  background: var(--color-cream);
}

.booking-cta {
  min-height: 150px;
  padding: 28px 48px;
  border-radius: var(--border-radius-medium);

  color: var(--color-white);

  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(255, 201, 40, 0.13),
      transparent 25%
    ),
    linear-gradient(
      90deg,
      var(--color-green-950),
      var(--color-green-800)
    );

  display: flex;
  align-items: center;
  gap: 34px;

  box-shadow: var(--shadow-medium);
}

.booking-cta-icon {
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  border: 2px solid var(--color-yellow);
  border-radius: 22px;

  color: var(--color-yellow);
  font-size: 2.4rem;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: rotate(-7deg);
}

.booking-cta-content {
  margin-right: auto;
}

.booking-cta-content p {
  margin-bottom: 1px;
  color: var(--color-yellow);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.booking-cta-content h2 {
  margin-bottom: 4px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.booking-cta-content span {
  color: rgba(255, 255, 255, 0.78);
}

/* =========================
   Footer
========================== */
.site-footer {
  color: rgba(255, 255, 255, 0.82);

  background:
    linear-gradient(
      120deg,
      #042b24,
      #073c32 55%,
      #031f1a
    );
}

.footer-grid {
  padding: 54px 0;

  display: grid;
  grid-template-columns: 1.35fr 1fr 0.8fr 0.7fr;
  gap: 54px;
}

.footer-logo {
  display: block;
  width: 400px;
  margin-bottom: 10px;
}

.footer-logo img {
  margin-left: -80px;
  margin-top: -70px;
  width: 100%;
  border-radius: 100px;
}



.footer-brand p {
  max-width: 330px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  line-height: 1.85;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;

  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 800;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background-color var(--transition-fast);
}

.social-links a:hover {
  color: var(--color-green-950);
  border-color: var(--color-yellow);
  background: var(--color-yellow);
}

.footer-section h2 {
  margin-bottom: 20px;

  color: var(--color-white);
  font-size: 1rem;
}

.footer-info-list {
  display: grid;
  gap: 14px;
}

.footer-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.8rem;
}

.footer-info-list li > span:first-child {
  color: var(--color-yellow);
}

.footer-info-list a:hover {
  color: var(--color-yellow);
}

.business-hours {
  display: grid;
  gap: 12px;
}

.business-hours p {
  margin: 0;
  font-size: 0.82rem;
}

.business-hours span,
.business-hours strong {
  display: block;
}

.business-hours strong {
  margin-top: 2px;
  color: var(--color-white);
}

.footer-navigation {
  display: grid;
  gap: 10px;
}

.footer-navigation a {
  font-size: 0.82rem;
}

.footer-navigation a:hover {
  color: var(--color-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(0, 0, 0, 0.14);
}

.footer-bottom-container {
  min-height: 68px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.72rem;
}

.back-to-top {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;

  color: var(--color-white);
  font-size: 0.58rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background-color var(--transition-fast);
}

.back-to-top span {
  font-size: 1rem;
  line-height: 1;
}

.back-to-top:hover {
  color: var(--color-green-950);
  border-color: var(--color-yellow);
  background: var(--color-yellow);
}

/* =========================
   平板尺寸
========================== */
@media (max-width: 1180px) {
  .main-navigation {
    gap: 16px;
  }

  .nav-link {
    font-size: 0.82rem;
  }

  .home-content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-column:last-child {
    grid-column: 1 / -1;
  }

  .home-column:last-child .content-card {
    min-height: auto;
  }

  .products-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
  }

  .product-list {
    padding-top: 18px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-section:last-child {
    grid-column: 2 / -1;
  }
}

/* =========================
   手機與小平板
========================== */
@media (max-width: 900px) {
  .header-container {
    min-height: 72px;
  }

  .site-logo {
    width: 115px;
  }

  .mobile-menu-button {
    display: block;
  }

  .mobile-menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-navigation {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;

    max-height: calc(100vh - 72px);
    padding: 20px 24px 30px;
    overflow-y: auto;

    background: var(--color-green-950);

    display: grid;
    gap: 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);

    transition:
      opacity var(--transition-normal),
      visibility var(--transition-normal),
      transform var(--transition-normal);
  }

  .main-navigation.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    padding: 16px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link::after {
    display: none;
  }

  .header-booking-button {
    display: none;
  }

  .hero-section,
  .hero-container {
    min-height: 580px;
  }

  .hero-content {
    width: 78%;
  }

  .hero-decoration {
    right: -120px;
    opacity: 0.65;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item:nth-child(2)::after {
    display: none;
  }

  .feature-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .home-content-grid {
    grid-template-columns: 1fr;
  }

  .home-column:last-child {
    grid-column: auto;
  }

  .content-card {
    min-height: auto;
  }

  .products-card {
    display: block;
  }

  .booking-cta {
    padding: 32px;
    flex-wrap: wrap;
  }

  .booking-cta-content {
    width: calc(100% - 130px);
  }

  .booking-cta .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-logo {
    width: min(100%, 400px);
    margin-inline: auto;
  }

  .footer-logo img {
    margin: 0;
  }

  .footer-section:last-child {
    grid-column: auto;
  }
}

/* =========================
   手機
========================== */
@media (max-width: 640px) {
  .page-container {
    width: min(
      100% - 30px,
      var(--page-width)
    );
  }

  .header-container {
    width: calc(100% - 28px);
  }

  .hero-section,
  .hero-container {
    min-height: 610px;
  }

  .hero-section {
    background:
      linear-gradient(
        rgba(3, 35, 29, 0.84),
        rgba(3, 35, 29, 0.92)
      ),
      url("../assets/images/home/hero-court.jpg")
      center / cover no-repeat;
  }

  .hero-content {
    width: 100%;
    padding: 76px 0 110px;
  }

  .hero-eyebrow {
    font-size: 0.74rem;
  }

  .hero-title {
    font-size: clamp(2.9rem, 15vw, 4.4rem);
  }

  .hero-description {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .hero-buttons {
    display: grid;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-decoration {
    right: -150px;
    bottom: -60px;
    transform: scale(0.75);
  }

  .feature-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .feature-item {
    justify-content: flex-start;
    padding: 21px 34px;
  }

  .feature-item::after {
    display: none;
  }

  .feature-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .home-content-section {
    padding-top: 45px;
  }

  .section-heading {
    align-items: center;
  }

  .featured-activity-content {
    max-width: 100%;
    padding: 24px;
  }

  .featured-coach {
    grid-template-columns: 1fr;
  }

  .featured-coach-image {
    min-height: 220px;
    padding: 24px 30px 0;
  }

  .featured-coach-image .large-image-placeholder {
    height: 220px;
  }

  .featured-coach-info {
    padding: 26px;
  }

  .featured-product {
    grid-template-columns: 1fr;
  }

  .featured-product-image .large-image-placeholder {
    height: 230px;
  }

  .booking-cta {
    padding: 28px 22px;
    text-align: center;
    justify-content: center;
  }

  .booking-cta-icon {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
  }

  .booking-cta-content {
    width: 100%;
    margin: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom-container {
    padding: 18px 0;
    text-align: center;
    flex-direction: column;
  }

  .contact-empty-page {
  min-height: 180px;
  background: var(--color-cream);
}
}