:root {
  --ink: #22160e;
  --muted: #735f51;
  --cream: #fff8ee;
  --paper: #fffdf8;
  --maroon: #8f1832;
  --maroon-dark: #631024;
  --gold: #c99636;
  --leaf: #2f5f4a;
  --line: rgba(34, 22, 14, 0.12);
  --shadow: 0 24px 80px rgba(45, 26, 10, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 14px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(58, 32, 10, 0.14);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--maroon);
  border-radius: 8px;
  font-weight: 900;
  font-size: 1.3rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
  color: #4e3a2c;
  font-weight: 700;
  font-size: 0.94rem;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.lang-toggle,
.install-app-btn {
  min-height: 42px;
  padding: 0 14px;
  color: var(--maroon);
  border: 1px solid rgba(143, 24, 50, 0.25);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.install-app-btn {
  color: #fff;
  background: #d9a441;
  border-color: #d9a441;
}

.install-app-btn[hidden] {
  display: none;
}

.header-cta,
.btn-primary {
  color: #fff;
  background: var(--maroon);
  box-shadow: 0 10px 25px rgba(143, 24, 50, 0.25);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
}

.btn-outline {
  color: var(--maroon);
  border-color: rgba(143, 24, 50, 0.25);
  background: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: end;
  gap: 36px;
  padding: 138px max(24px, calc((100vw - 1180px) / 2)) 64px;
  color: #fff;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/hero-cold-pyro.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(22, 8, 4, 0.9), rgba(55, 16, 16, 0.58) 48%, rgba(22, 8, 4, 0.34)),
    linear-gradient(0deg, rgba(22, 8, 4, 0.76), rgba(22, 8, 4, 0.04) 58%);
}

.hero-content,
.booking-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
}

.eyebrow,
.panel-label,
.tag {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 28px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: #fff8dd;
  border: 1px solid rgba(245, 198, 109, 0.55);
  border-radius: 999px;
  background: rgba(99, 16, 36, 0.66);
  font-size: 0.9rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.hero-stats div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.75rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.booking-panel {
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.93);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-panel h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.booking-facts {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.booking-facts p {
  margin: 0;
  color: var(--muted);
}

.booking-facts strong {
  color: var(--ink);
}

.panel-btn {
  width: 100%;
  margin-top: 10px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #4b3728;
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.intro p:last-child {
  color: var(--muted);
  font-size: 1.16rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-note {
  color: var(--muted);
  font-size: 1rem;
}

.step-grid,
.package-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.profile-highlight {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  padding: 24px;
  border: 1px solid rgba(201, 150, 54, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 248, 221, 0.94), rgba(255, 255, 255, 0.96)),
    var(--cream);
  box-shadow: 0 18px 60px rgba(60, 34, 10, 0.1);
}

.profile-highlight h3 {
  margin-bottom: 6px;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.profile-highlight p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.step-grid article,
.package,
blockquote,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(60, 34, 10, 0.08);
}

.step-grid article {
  min-height: 230px;
  padding: 28px;
}

.step-grid span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 44px;
  color: #fff;
  background: var(--leaf);
  border-radius: 8px;
  font-weight: 900;
}

.step-grid p,
.feature-list p,
.package li,
blockquote p,
.faq-list p,
.contact-content p,
.site-footer {
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.feature-media {
  height: min(620px, 72vw);
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-copy {
  padding: 36px 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.feature-list div {
  padding: 20px;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  border-radius: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 260px);
  gap: 18px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.admin-gallery-strip:empty,
.admin-video-reviews:empty {
  display: none;
}

.photo-strip img {
  aspect-ratio: 1 / 0.78;
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(60, 34, 10, 0.1);
}

figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
}

figure.large {
  grid-row: span 2;
}

figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(22, 8, 4, 0.72);
  border-radius: 8px;
  font-weight: 800;
}

.packages {
  width: 100%;
  padding: 92px max(20px, calc((100vw - 1180px) / 2));
  background: var(--cream);
}

.calendar-section {
  border-top: 1px solid var(--line);
}

.calendar-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
}

.calendar-card,
.calendar-side {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(60, 34, 10, 0.08);
}

.calendar-card {
  padding: 24px;
}

.calendar-side {
  align-self: start;
  padding: 26px;
}

.select-date-btn {
  width: 100%;
  margin-top: 18px;
}

.calendar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.calendar-top h3,
.calendar-side h3 {
  margin: 0;
  font-size: 1.45rem;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  font-size: 1.6rem;
  cursor: pointer;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.dot.available {
  background: #2f8f5b;
}

.dot.booked {
  background: #c64242;
}

.dot.hold {
  background: #d6a02b;
}

.dot.selected {
  background: var(--gold);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.weekdays span {
  color: var(--muted);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 900;
}

.dates {
  margin-top: 8px;
}

.date-cell {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.date-cell.empty {
  border-color: transparent;
  background: transparent;
  cursor: default;
}

.date-cell.available {
  background: rgba(47, 143, 91, 0.1);
  border-color: rgba(47, 143, 91, 0.25);
}

.date-cell.booked {
  color: #fff;
  background: #c64242;
  cursor: not-allowed;
}

.date-cell.hold {
  color: var(--ink);
  background: #ffe0a1;
  border-color: #d6a02b;
  cursor: not-allowed;
}

.date-cell.selected {
  color: var(--ink);
  background: #f7ce73;
  border-color: var(--gold);
}

.date-cell.is-loading {
  opacity: 0.65;
}

.package {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.package.highlighted {
  color: #fff;
  background: var(--maroon-dark);
  transform: translateY(-12px);
}

.package.highlighted .tag,
.package.highlighted .price {
  color: #f5c66d;
}

.package.highlighted li {
  color: rgba(255, 255, 255, 0.78);
}

.price {
  color: var(--maroon);
  font-size: 1.7rem;
  font-weight: 900;
}

ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 0;
}

blockquote {
  margin: 0;
  padding: 28px;
}

blockquote p {
  font-size: 1.08rem;
}

cite {
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.video-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.video-review-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(60, 34, 10, 0.08);
}

.video-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(99, 16, 36, 0.94), rgba(47, 95, 74, 0.88)),
    url("assets/grand-hall.jpg") center/cover;
}

.video-placeholder span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
  color: var(--maroon);
  background: #fff;
  border-radius: 999px;
  font-weight: 900;
  font-size: 1.25rem;
}

.video-placeholder p {
  margin: 0;
  color: #fff;
  font-weight: 900;
}

.video-review-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #111;
}

.video-review-card h3,
.video-review-card > p {
  padding: 0 20px;
}

.video-review-card h3 {
  margin-top: 18px;
}

.video-review-card > p {
  color: var(--muted);
  padding-bottom: 20px;
}

.faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
}

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

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.contact {
  width: min(1180px, calc(100% - 40px));
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 38px;
  padding: 52px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(99, 16, 36, 0.96), rgba(47, 95, 74, 0.88)),
    url("assets/building-night.jpg") center/cover;
  border-radius: 8px;
}

.contact h2,
.contact p {
  max-width: 620px;
}

.contact-content p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card,
.contact-form,
.enquiry-form {
  padding: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.contact-card p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.contact-card {
  grid-column: 1;
}

.enquiry-form {
  grid-row: span 2;
}

.contact-card strong {
  color: #fff;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-form label,
.enquiry-form label {
  color: #fff;
}

.float-whatsapp,
.chat-launcher {
  position: fixed;
  z-index: 30;
  right: 22px;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
}

.float-whatsapp {
  bottom: 92px;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  color: #fff;
  background: #25d366;
  font-weight: 900;
}

.chat-launcher {
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: #21c4df;
  cursor: pointer;
}

.chat-launcher span {
  font-size: 1.45rem;
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 40;
  width: min(390px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: #091124;
  color: #eef6ff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: 0.22s ease;
}

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

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #0d2138;
}

.chat-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #21c4df;
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header span {
  color: #37e69b;
  font-size: 0.84rem;
  font-weight: 900;
}

.chat-header button {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #b9c8d8;
  font-size: 1.9rem;
  cursor: pointer;
}

.chat-messages {
  display: grid;
  gap: 10px;
  max-height: 330px;
  overflow-y: auto;
  padding: 16px;
}

.message {
  width: fit-content;
  max-width: 88%;
  padding: 11px 13px;
  border-radius: 12px;
  white-space: pre-line;
  font-size: 0.94rem;
}

.message.bot {
  background: #1b2340;
}

.message.user {
  justify-self: end;
  background: #21c4df;
  color: #04101a;
}

.chat-quick {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 16px 12px;
}

.chat-quick button {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 11px;
  color: #eef6ff;
  background: #121b32;
  cursor: pointer;
}

.chat-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  background: #0d1529;
}

.chat-input input {
  min-height: 42px;
  background: #fff;
}

.chat-input button {
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: #06111e;
  background: #21c4df;
  font-weight: 900;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 4, 0.66);
  backdrop-filter: blur(8px);
}

.booking-modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: calc(100svh - 40px);
  overflow-y: auto;
  padding: 28px;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.booking-modal-card h2 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 1.25rem;
  cursor: pointer;
}

.modal-form {
  display: grid;
  gap: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .brand {
    flex: 1;
  }

  .nav-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .lang-toggle,
  .install-app-btn {
    order: 3;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex: 0 0 100%;
    align-items: stretch;
    gap: 8px;
    padding-top: 10px;
  }

  .site-header.is-open .nav-links {
    display: grid;
  }

  .nav-links a {
    padding: 10px 12px;
    background: var(--cream);
    border-radius: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 128px;
  }

  .booking-panel {
    max-width: 520px;
  }

  .intro,
  .feature-band,
  .faq,
  .contact,
  .calendar-wrap {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .enquiry-form {
    grid-column: auto;
    grid-row: auto;
  }

  .step-grid,
  .package-grid,
  .testimonial-grid,
  .video-review-grid {
    grid-template-columns: 1fr;
  }

  .profile-highlight {
    grid-template-columns: 1fr;
  }

  .package.highlighted {
    transform: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 360px 260px 260px;
  }

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

  figure.large {
    grid-row: auto;
  }

  .contact {
    padding: 34px 24px;
  }
}

@media (max-width: 580px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .section {
    width: calc(100% - 32px);
    padding: 66px 0;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-media {
    min-height: 340px;
  }

  .gallery-grid {
    grid-template-rows: 300px 230px 230px;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .float-whatsapp {
    right: 16px;
    bottom: 86px;
  }

  .chat-launcher,
  .chat-widget {
    right: 16px;
  }
}
