:root {
  --green: #1f5b25;
  --leaf: #3f7d34;
  --brown: #734018;
  --ink: #1f261f;
  --muted: #606a5b;
  --cream: #fff8e8;
  --paper: #fffdf4;
  --line: rgba(31, 91, 37, 0.18);
  --shadow: 0 24px 70px rgba(23, 32, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(118, 177, 75, 0.16), transparent 28%),
    radial-gradient(circle at 86% 30%, rgba(192, 146, 77, 0.15), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, #f5f0e3 44%, #eef3e5 100%);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 91, 37, 0.14);
  border-radius: 50%;
  color: var(--green);
  background: rgba(255, 255, 255, 0.66);
  text-decoration: none;
}

.social-icons svg,
.social-links svg,
.whatsapp-float svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-fill {
  fill: currentColor;
  stroke: none;
}

.social-icons a:hover {
  color: #fff;
  background: var(--green);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 253, 244, 0.9);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.11);
  backdrop-filter: blur(14px);
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.header-social {
  margin-left: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 91, 37, 0.16);
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 13px;
  color: #2e3b2a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

nav a:hover {
  background: rgba(31, 91, 37, 0.1);
}

.nav-book {
  color: #fff;
  background: var(--green);
}

.nav-book:hover {
  background: #17451c;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 42px auto 0;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 320px;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 244, 0.78);
  box-shadow: var(--shadow);
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
}

h1 {
  max-width: 760px;
  color: var(--brown);
  font-size: clamp(46px, 8vw, 94px);
}

h2 {
  color: var(--green);
  font-size: clamp(30px, 4.6vw, 54px);
}

h3 {
  color: var(--brown);
  font-size: 24px;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: #2d382a;
  font-size: clamp(18px, 2.1vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 91, 37, 0.2);
  border-radius: 999px;
  padding: 13px 20px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 24px rgba(31, 91, 37, 0.12);
  text-decoration: none;
  font-weight: 900;
}

.btn.primary {
  color: #fff;
  border-color: var(--green);
  background: linear-gradient(135deg, #1f5b25, #3f7d34);
}

.btn.light {
  color: var(--green);
  background: #fff;
}

.btn.compact {
  min-height: 40px;
  margin-top: 4px;
  padding: 9px 16px;
  box-shadow: none;
  font-size: 14px;
}

.mini-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 4px;
  border-radius: 999px;
  padding: 8px 18px;
  color: #fff;
  background: var(--green);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.hero-logo-panel {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(31, 91, 37, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-logo-panel img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 91, 37, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 42px rgba(31, 91, 37, 0.14);
}

.hero-visual > img {
  width: 100%;
  height: 330px;
  padding: 10px;
  object-fit: contain;
}

.hero-logo-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 132px;
  height: 92px;
  border: 1px solid rgba(31, 91, 37, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.hero-logo-badge img {
  width: 112px;
  height: 78px;
  object-fit: contain;
}

.hero-art {
  margin: 24px 0 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #111b10;
  box-shadow: var(--shadow);
}

.hero-art img {
  width: 100%;
  max-height: min(58svh, 620px);
  object-fit: contain;
}

.quick-info {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px auto 0;
}

.quick-info div,
.experience-strip article,
.option-grid article,
.amenity-grid div,
.location-card > div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 244, 0.86);
  box-shadow: 0 10px 28px rgba(31, 91, 37, 0.07);
}

.quick-info div {
  padding: 22px 20px;
  text-align: center;
}

.quick-info strong {
  display: block;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.quick-info span {
  color: var(--muted);
  font-weight: 800;
}

.section,
.showcase,
.experience-strip,
.booking-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 86px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: start;
}

.intro > p,
.showcase-copy p,
.option-grid p,
.experience-strip p,
.location-card p {
  color: var(--muted);
  font-size: 18px;
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-bottom: 72px;
}

.experience-strip article,
.option-grid article {
  padding: 26px;
}

.experience-strip strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-family: Georgia, "Times New Roman", serif;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 36px;
  align-items: center;
  padding: 0 0 72px;
}

.showcase-image {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #182514;
  box-shadow: var(--shadow);
}

.showcase-image img {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
}

.showcase-copy {
  padding: 12px 0;
}

.resort-photo-stack {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-auto-rows: 198px;
  gap: 14px;
}

.feature-photo {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 244, 0.88);
  box-shadow: var(--shadow);
}

.feature-photo.large {
  grid-row: span 2;
}

.feature-photo img {
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
}

.home-gallery {
  padding-top: 34px;
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.gallery-heading h2 {
  max-width: 720px;
}

.gallery-carousel {
  position: relative;
}

.carousel-track {
  display: grid;
  grid-auto-columns: minmax(280px, 38%);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 18px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  min-width: 0;
  display: grid;
  gap: 12px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 10px;
  color: var(--green);
  background: rgba(255, 253, 244, 0.88);
  box-shadow: 0 14px 34px rgba(31, 91, 37, 0.1);
  text-decoration: none;
  font-weight: 900;
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  object-fit: contain;
  background: #eef3e5;
}

.gallery-slide span {
  padding: 0 4px 4px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 91, 37, 0.18);
  border-radius: 50%;
  color: var(--green);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  transform: translateY(-50%);
}

.carousel-btn.prev {
  left: -10px;
}

.carousel-btn.next {
  right: -10px;
}

.gallery-page-main {
  width: min(1180px, calc(100% - 32px));
  margin: 42px auto 0;
}

.gallery-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 244, 0.82);
  box-shadow: var(--shadow);
}

.gallery-hero p {
  color: var(--muted);
  font-size: 18px;
}

.gallery-hero-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #eef3e5;
}

.gallery-hero-photo img {
  width: 100%;
  max-height: 420px;
  padding: 10px;
  object-fit: contain;
}

.gallery-grid-section {
  padding: 70px 0 90px;
}

.gallery-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.gallery-filter-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--green);
  background: rgba(255, 253, 244, 0.86);
  font-size: 13px;
  font-weight: 900;
}

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

.gallery-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 244, 0.9);
  box-shadow: 0 12px 30px rgba(31, 91, 37, 0.1);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 8px;
  object-fit: contain;
  background: #eef3e5;
}

.gallery-card figcaption {
  padding: 0 16px 16px;
  color: var(--green);
  font-weight: 900;
}

.ranch-board {
  min-height: 420px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(31, 91, 37, 0.2);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 253, 244, 0.94), rgba(237, 246, 222, 0.9)),
    linear-gradient(90deg, rgba(31, 91, 37, 0.1), rgba(115, 64, 24, 0.08));
  box-shadow: var(--shadow);
}

.board-header,
.board-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.board-header span,
.board-list span {
  display: grid;
  place-items: center;
  min-height: 50px;
  border: 1px solid rgba(31, 91, 37, 0.16);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 900;
}

.board-center {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 210px;
  border: 1px dashed rgba(31, 91, 37, 0.32);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  background:
    radial-gradient(circle at 22% 30%, rgba(93, 150, 57, 0.2), transparent 22%),
    radial-gradient(circle at 76% 62%, rgba(177, 122, 62, 0.16), transparent 26%),
    rgba(255, 255, 255, 0.56);
}

.board-center strong {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.board-center p {
  margin: 14px 0 0;
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
}

.board-list {
  grid-template-columns: repeat(4, 1fr);
}

.visit-options {
  padding-top: 60px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.amenities {
  padding-top: 60px;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.amenity-grid div {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  color: #263224;
  font-weight: 900;
}

.amenity-grid span {
  width: max-content;
  border-radius: 999px;
  padding: 4px 10px;
  color: #fff;
  background: var(--leaf);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 28px;
  padding: 34px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 30%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #1f5b25, #734018);
  box-shadow: var(--shadow);
}

.booking-band h2,
.booking-band .eyebrow {
  color: #fff;
}

.booking-band .eyebrow {
  opacity: 0.86;
}

.booking-actions {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.24);
}

.location {
  padding-top: 56px;
}

.location-card {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr;
  gap: 14px;
  margin-top: 28px;
}

.location-card > div {
  padding: 24px;
}

.location-card strong {
  display: block;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.map-wrap {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(31, 91, 37, 0.1);
}

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

.map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  color: var(--green);
  background: rgba(255, 253, 244, 0.92);
  text-decoration: none;
  font-weight: 900;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 34px 18px;
  color: #fff;
  background: #172116;
}

footer img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

footer p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

footer a {
  color: #c8f0cc;
  font-weight: 900;
}

.site-credit {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
}

.site-credit a {
  color: #f0c85a;
  font-weight: 900;
  text-decoration: none;
}

.site-credit a:hover {
  color: #fff2b8;
}

.footer-social a {
  border-color: rgba(255, 255, 255, 0.22);
  color: #c8f0cc;
  background: rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
  color: var(--green);
  background: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
  border-radius: 50%;
  padding: 0;
  color: #fff;
  background: linear-gradient(135deg, #1fb858, #0f8f3f);
  box-shadow: 0 18px 34px rgba(16, 83, 38, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(16, 83, 38, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.65;
}

@media (max-width: 920px) {
  .site-header {
    align-items: center;
    border-radius: 24px;
  }

  .site-menu {
    gap: 12px;
  }

  nav {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  nav a {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 13px;
  }

  .hero-shell,
  .intro,
  .showcase,
  .location-card,
  .gallery-hero {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    gap: 22px;
  }

  .hero-logo-panel {
    max-width: 360px;
  }

  .hero-visual {
    max-width: 520px;
  }

  .experience-strip,
  .option-grid,
  .board-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .resort-photo-stack {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .feature-photo.large {
    grid-row: auto;
  }

  .feature-photo img {
    height: auto;
    max-height: 360px;
  }

  .amenity-grid,
  .quick-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-radius: 22px;
    padding: 10px 12px;
  }

  .brand {
    justify-content: flex-start;
    max-width: calc(100% - 58px);
    font-size: 17px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
  }

  .site-menu {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin: 12px 0 0;
    padding: 12px;
    border-top: 1px solid var(--line);
  }

  .site-header.is-open .site-menu {
    display: flex;
  }

  .header-social {
    justify-content: center;
    margin-top: 0;
  }

  nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 0;
  }

  nav a {
    min-height: 44px;
    justify-content: center;
    border: 1px solid rgba(31, 91, 37, 0.12);
    background: rgba(255, 255, 255, 0.66);
  }

  .hero {
    margin-top: 24px;
  }

  .hero-shell {
    padding: 24px;
    text-align: center;
  }

  .hero-visual > img {
    height: 260px;
  }

  .hero-logo-badge {
    width: 112px;
    height: 78px;
    left: 12px;
    bottom: 12px;
  }

  .hero-logo-badge img {
    width: 94px;
    height: 64px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-art {
    padding: 8px;
  }

  .hero-art img {
    max-height: 48svh;
  }

  .quick-info,
  .amenity-grid,
  .board-header {
    grid-template-columns: 1fr;
  }

  .ranch-board {
    min-height: auto;
    padding: 18px;
  }

  .board-center {
    min-height: 190px;
  }

  .section {
    padding: 64px 0;
  }

  .showcase {
    padding-bottom: 58px;
  }

  .gallery-heading {
    display: block;
  }

  .gallery-heading .btn {
    margin-top: 18px;
  }

  .carousel-track {
    grid-auto-columns: 86%;
  }

  .carousel-btn {
    display: none;
  }

  .gallery-hero {
    padding: 24px;
    text-align: center;
  }

  .booking-band {
    display: block;
    text-align: center;
  }

  .booking-band .btn {
    margin-top: 22px;
  }

  .booking-actions {
    justify-items: center;
  }

  .social-links {
    justify-content: center;
  }

  footer {
    flex-wrap: wrap;
    text-align: center;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    height: 56px;
    width: 56px;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }
}
