:root {
  --bg: #050505;
  --bg-soft: #101010;
  --bg-panel: rgba(18, 18, 18, 0.92);
  --card: #141414;
  --card-alt: #1b1b1b;
  --text: #f6f4f1;
  --muted: #b5b0aa;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --accent: #ea2f2f;
  --accent-2: #ff5d48;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(234, 47, 47, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 26%),
    linear-gradient(180deg, #0a0a0a 0%, #040404 100%);
  color: var(--text);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(7, 7, 7, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.7rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: white;
  margin: 0.28rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

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

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: nowrap;
}

.nav a,
.nav-dropdown-trigger {
  color: var(--muted);
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  transition: 180ms ease;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active,
.nav-group.active .nav-dropdown-trigger {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-group {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  min-width: 220px;
  padding: 0.55rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.97);
  box-shadow: var(--shadow);
  display: none;
  z-index: 40;
}

.nav-group.open .nav-dropdown-menu,
.nav-group:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  display: grid;
  gap: 0.35rem;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.8rem 0.95rem;
  border-radius: 14px;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.header-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.header-icon-link {
  width: auto;
  height: auto;
  display: inline-grid;
  place-items: center;
  color: white;
  background: transparent;
  border: 0;
  padding: 0.25rem;
}

.header-icon-link svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-mobile-cta,
.nav-mobile-booking {
  display: none;
}

.nav-mobile-facebook {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: 180ms ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 30px rgba(234, 47, 47, 0.25);
}

.btn-secondary {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  text-align: center;
}

.btn-dark {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.section,
.page-hero,
.hero {
  position: relative;
}

.hero,
.page-hero {
  padding: 0 0 2.25rem;
}

.hero {
  padding-bottom: 0;
}

.page-hero {
  padding-bottom: 0;
}

.hero + .section {
  padding-top: 0;
}

.page-hero + .section {
  padding-top: 0;
}

.hero + .section > .container,
.page-hero + .section > .container {
  padding-top: 1.6rem;
}

.hero .container,
.page-hero .container,
.section .container {
  position: relative;
  z-index: 1;
}

.hero-panel,
.page-hero-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: stretch;
}

.hero-bleed,
.page-hero-bleed {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: end;
  padding: 2.5rem 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.78) 30%, rgba(0, 0, 0, 0.28) 60%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35)),
    #090909;
}

.hero-bleed::before,
.page-hero-bleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-position: center center;
  background-size: cover;
  opacity: 0.94;
  z-index: 0;
}

.hero-bleed .container,
.page-hero-bleed .container {
  position: relative;
  z-index: 1;
}

.hero-bleed::after,
.page-hero-bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.82) 22%, rgba(0, 0, 0, 0.42) 52%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.32));
  z-index: 0;
}

.hero-copy,
.page-hero-copy {
  padding: 2rem 0;
}

.hero-copy-wide,
.page-hero-copy-wide {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 0;
}

.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero h1,
.page-hero h1,
.section h2 {
  margin: 0.65rem 0 1rem;
  line-height: 0.95;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
}

.hero-home h1 {
  font-size: clamp(2.5rem, 6.2vw, 5.15rem);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.script-accent {
  color: var(--accent-2);
  font-style: italic;
}

.lede,
.intro,
.copy-muted {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 64ch;
}

.hero-actions,
.hero-meta,
.stack-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.info-card,
.service-card,
.package-card,
.quick-card,
.promo-card,
.contact-card,
.metric-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1.65rem;
}

.hero-feature-row-home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 0.35rem;
}

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

.hero-feature-item strong {
  font-size: 0.98rem;
  color: var(--text);
}

.hero-feature-item span {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.hero-feature-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(234, 47, 47, 0.12);
  border: 1px solid rgba(234, 47, 47, 0.22);
  flex: 0 0 auto;
}

.hero-feature-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke: var(--accent-2);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: 2rem 0 4rem;
}

.section-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 238, 234, 0.98));
  color: #111;
}

.section-light .section-header h2,
.section-light .section-header .intro {
  color: #111;
}

.section-light .info-card {
  background: white;
  border-color: rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 50px rgba(14, 14, 14, 0.08);
}

.section-light .info-card h3 {
  color: #111;
}

.section-light .info-card .copy-muted {
  color: #444;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 1.15rem;
}

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

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

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

.info-card,
.service-card,
.package-card,
.quick-card,
.promo-card,
.contact-card,
.metric-card {
  padding: 1.35rem;
}

.icon-pill {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(234, 47, 47, 0.14);
  color: var(--accent-2);
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card img,
.package-card img,
.gallery-card img,
.before-after-stage img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.service-card img,
.package-card img {
  aspect-ratio: 1 / 1;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #090909;
}

.package-card img,
.gallery-card img {
  cursor: pointer;
}

.service-card h3,
.package-card h3,
.contact-card h3,
.metric-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.28rem;
}

.package-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}

.package-price {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent-2);
}

.package-list,
.plain-list,
.comparison-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.package-list li,
.plain-list li,
.comparison-list li {
  color: var(--muted);
  position: relative;
  padding-left: 1.1rem;
}

.package-list li::before,
.plain-list li::before,
.comparison-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-2);
}

.package-actions {
  margin-top: auto;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.3rem;
}

.filter-chip {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  padding: 0.7rem 1rem;
  cursor: pointer;
}

.filter-chip.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border-color: transparent;
}

.packages-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 360px;
  gap: 1.2rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.packages-grid-full {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-panel {
  position: sticky;
  top: 104px;
  align-self: start;
  background: rgba(17, 17, 17, 0.98);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.detail-panel hr,
.modal-card hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1rem 0;
}

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

.gallery-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0.9rem;
}

.gallery-card img {
  aspect-ratio: 5 / 4;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-card strong {
  display: block;
  margin: 0.8rem 0 0.25rem;
}

.before-after-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.3rem;
  align-items: center;
}

.before-after-stage {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: #0e0e0e;
  min-height: 560px;
}

.compare-pane {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.compare-before {
  z-index: 1;
}

.compare-after {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 0 0 50%);
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(-50%);
  z-index: 3;
}

.compare-divider-after {
  background: rgba(255, 255, 255, 0.9);
  z-index: 4;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.compare-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(8, 8, 8, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  pointer-events: auto;
  touch-action: none;
}

.compare-hint {
  position: absolute;
  bottom: 1.2rem;
  z-index: 5;
  padding: 0.85rem 1.2rem;
  border-radius: 1rem;
  background: rgba(5, 5, 5, 0.78);
  border: 1px solid var(--line);
  font-size: 1.8rem;
  font-weight: 800;
}

.compare-hint-before {
  left: 1rem;
}

.compare-hint-after {
  right: 1rem;
}

.compare-handle span::before,
.compare-handle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid white;
  border-right: 3px solid white;
}

.compare-handle span::before {
  left: 19px;
  transform: translateY(-50%) rotate(-135deg);
}

.compare-handle span::after {
  right: 19px;
  transform: translateY(-50%) rotate(45deg);
}

.contact-layout,
.feature-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
}

.map-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius-lg);
  background: #151515;
}

.footer-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
}

.footer-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: grid;
  gap: 0.7rem;
}

.footer-card strong {
  font-size: 1.1rem;
}

.footer-card a {
  color: var(--muted);
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-contact-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-grid;
  place-items: center;
  color: var(--accent-2);
  flex: 0 0 auto;
}

.footer-contact-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-rating {
  display: grid;
  gap: 0.22rem;
}

.footer-rating-stars {
  display: flex;
  gap: 0.18rem;
  align-items: center;
  font-size: 1rem;
  line-height: 1;
}

.footer-rating-stars .star {
  color: rgba(255, 255, 255, 0.18);
}

.footer-rating-stars .star.full,
.footer-rating-stars .star.half {
  color: #ffb347;
}

.footer-rating-score {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.9rem 0 1.2rem;
}

.footer-bottom-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.booking-modal,
.detail-modal,
.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  display: grid;
  place-items: center;
  padding: 1rem;
  z-index: 100;
}

.booking-modal[hidden],
.detail-modal[hidden],
.gallery-modal[hidden] {
  display: none;
}

.modal-card {
  width: min(900px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #121212;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.modal-card iframe {
  width: 100%;
  min-height: 65vh;
  border: 0;
  border-radius: var(--radius-lg);
  background: white;
}

.package-modal-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1rem;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.close-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  cursor: pointer;
}

.gallery-modal-card {
  width: min(1080px, 100%);
}

.gallery-lightbox-stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #090909;
  border: 1px solid var(--line);
  margin-bottom: 0.85rem;
}

.gallery-lightbox-stage img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: #090909;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 8, 8, 0.78);
  color: white;
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}

.gallery-nav-prev {
  left: 1rem;
}

.gallery-nav-next {
  right: 1rem;
}

.gallery-lightbox-meta {
  display: flex;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1100px) {
  .hero-panel,
  .page-hero-panel,
  .packages-layout,
  .before-after-wrap,
  .contact-layout,
  .feature-split,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .detail-panel {
    position: static;
  }

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

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

  .hero-feature-row,
  .hero-feature-row-home {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header .btn {
    width: auto;
    min-width: 0;
    padding: 0.9rem 1.3rem;
    align-self: flex-start;
    white-space: nowrap;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    padding-top: 0.75rem;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav a,
  .nav-dropdown-trigger,
  .nav-mobile-cta {
    width: 100%;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 0.9rem 1rem;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin-top: 0.45rem;
  }

  .nav-group.open .nav-dropdown-menu {
    display: grid;
  }

  .header-actions {
    display: none;
  }

  .nav-mobile-cta,
  .nav-mobile-booking {
    display: inline-flex;
  }

  .nav-mobile-cta {
    display: inline-flex;
  }

  .nav-mobile-facebook {
    display: inline-grid;
    justify-self: center;
    align-self: center;
    margin-top: 0.35rem;
  }

  .packages-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .gallery-grid,
  .packages-grid-full {
    grid-template-columns: 1fr;
  }

  .hero-bleed,
  .page-hero-bleed {
    min-height: 560px;
    padding: 1.3rem 0;
    background-position: right center;
  }

  .hero-bleed::before,
  .page-hero-bleed::before {
    background-position: right center;
  }

  .hero h1,
  .page-hero h1 {
    line-height: 1.02;
  }

  .hero-feature-item {
    padding: 0.55rem 0;
  }

  .compare-hint {
    font-size: 1.2rem;
    padding: 0.7rem 0.9rem;
  }

  .compare-handle span {
    width: 58px;
    height: 58px;
  }

  .before-after-stage {
    min-height: 420px;
  }

  .gallery-nav {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.65rem;
  }

  .gallery-nav-prev {
    left: 0.7rem;
  }

  .gallery-nav-next {
    right: 0.7rem;
  }
}

@media (min-width: 821px) {
  .nav-mobile-cta,
  .nav-mobile-booking,
  .nav-mobile-facebook {
    display: none !important;
  }
}
