:root {
  --ink: #14211e;
  --muted: #66736f;
  --cream: #f7f3eb;
  --paper: #fffdf8;
  --jade: #0f6f62;
  --jade-dark: #093f39;
  --gold: #c99a43;
  --rose: #c86b5d;
  --line: rgba(20, 33, 30, 0.12);
  --shadow: 0 24px 70px rgba(17, 33, 30, 0.14);
}

/* Premium upgrade layer */
:root {
  --shadow-strong: 0 34px 100px rgba(9, 24, 21, 0.24);
}

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(201, 154, 67, 0.12), transparent 28%),
    radial-gradient(circle at 95% 18%, rgba(15, 111, 98, 0.1), transparent 24%),
    var(--paper);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 154, 67, 0.62), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-header.scrolled::after {
  opacity: 1;
}

.brand-mark {
  animation: markBreath 4s ease-in-out infinite;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(5, 21, 18, 0.82), rgba(5, 21, 18, 0.48) 50%, rgba(5, 21, 18, 0.2)),
    linear-gradient(0deg, rgba(5, 21, 18, 0.42), transparent 46%);
}

.hero-content {
  animation: heroLift 0.9s ease both;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: 84px;
}

.hero-layout .hero-content {
  padding-top: 0;
}

.hero-panel {
  align-self: end;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-strong);
  animation: panelFloat 5s ease-in-out infinite;
}

.hero-panel small {
  display: block;
  color: #f4d28c;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin-top: 10px;
  font-size: 2rem;
}

.hero-panel ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.hero-panel li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.84);
}

.hero-panel li:last-child {
  border-bottom: 0;
}

.hero-panel i {
  color: #f4d28c;
}

.booking-strip {
  position: sticky;
  top: 82px;
  z-index: 900;
  padding: 12px 0;
  background: rgba(9, 21, 18, 0.93);
  color: #fff;
  backdrop-filter: blur(16px);
}

.booking-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.booking-strip strong {
  color: #f4d28c;
}

.booking-strip-actions {
  display: flex;
  gap: 10px;
}

.booking-strip .btn {
  min-height: 40px;
  padding: 9px 14px;
}

.premium-bar {
  padding: 22px 0;
  background: #091512;
  color: #fff;
}

.premium-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.premium-bar-item {
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.premium-bar-item strong {
  display: block;
  color: #f4d28c;
  font-size: 1.4rem;
  line-height: 1;
}

.premium-bar-item span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.strip-card::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 21, 18, 0.62), transparent 62%);
  opacity: 0.92;
  pointer-events: none;
}

.strip-card span {
  z-index: 2;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  z-index: 2;
  pointer-events: none;
}

.service-card,
.testimonial,
.why-card {
  position: relative;
}

.service-card::before,
.testimonial::before,
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(201, 154, 67, 0.48), transparent 40%, rgba(15, 111, 98, 0.22));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before,
.testimonial:hover::before,
.why-card:hover::before {
  opacity: 1;
}

.service-card .media {
  position: relative;
}

.service-card .media::after {
  content: "Signature";
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  color: #12211d;
  background: #f4d28c;
  font-size: 0.76rem;
  font-weight: 900;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.gallery-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.gallery-tab:hover {
  transform: translateY(-2px);
}

.gallery-tab.active {
  color: #fff;
  background: var(--jade-dark);
  border-color: var(--jade-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr 1fr 0.9fr;
  grid-auto-flow: dense;
  gap: 18px;
  columns: auto;
}

.gallery-card {
  position: relative;
  min-height: 240px;
  margin: 0;
  break-inside: auto;
}

.gallery-card.tall {
  grid-row: span 2;
  min-height: 500px;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.tall img,
.gallery-card.medium img,
.gallery-card.short img {
  height: 100%;
}

.gallery-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-weight: 900;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-card:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.enquiry-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(circle at 78% 15%, rgba(201, 154, 67, 0.28), transparent 26%);
  transform: translateX(-55%);
  animation: sheen 6s ease-in-out infinite;
  pointer-events: none;
}

.enquiry-box > * {
  position: relative;
  z-index: 1;
}

.contact-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 52px rgba(17, 33, 30, 0.11);
}

.floating-btn::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: inherit;
  border: 1px solid currentColor;
  opacity: 0.28;
  animation: ringPulse 2s ease-out infinite;
}

@keyframes markBreath {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes heroLift {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes sheen {
  0%,
  100% {
    transform: translateX(-55%);
  }
  50% {
    transform: translateX(45%);
  }
}

@keyframes ringPulse {
  to {
    transform: scale(1.28);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .hero-layout,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

@media (max-width: 680px) {
  .booking-strip {
    top: 74px;
  }

  .booking-strip .container {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-strip-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .booking-strip .btn {
    width: 100%;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 96px;
  }

  .hero-panel {
    padding: 20px;
    animation: none;
  }

  .premium-bar-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card.tall,
  .gallery-card.wide {
    min-height: 300px;
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-caption {
    opacity: 1;
    transform: translateY(0);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

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

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

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255, 253, 248, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 14px 44px rgba(12, 28, 24, 0.1);
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0;
  min-width: 210px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jade), var(--gold));
  box-shadow: 0 12px 26px rgba(15, 111, 98, 0.22);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-menu a {
  position: relative;
  padding: 10px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--jade-dark);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(9, 63, 57, 0.22);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--jade-dark);
  color: #fff;
  font-size: 1.1rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #0a1715;
}

.hero.page-hero {
  min-height: 58vh;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 21, 18, 0.78), rgba(5, 21, 18, 0.44) 50%, rgba(5, 21, 18, 0.18));
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(0deg, var(--paper), rgba(255, 253, 248, 0));
  z-index: 1;
  opacity: 0.34;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slowZoom 14s ease-out forwards;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
  padding-top: 84px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #f1d291;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.76rem;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  max-width: 880px;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4.3rem);
}

h3 {
  font-size: clamp(1.22rem, 2vw, 1.7rem);
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  color: #101a17;
  background: linear-gradient(135deg, #f6d58c, var(--gold));
  box-shadow: 0 15px 34px rgba(201, 154, 67, 0.36);
  animation: buttonPulse 2.6s ease-in-out infinite;
}

.btn-dark {
  color: #fff;
  background: var(--jade-dark);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.btn-light {
  color: var(--jade-dark);
  border-color: var(--line);
  background: #fff;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(20, 33, 30, 0.18);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.metric {
  min-width: 126px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 8px;
}

.metric strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
  color: #f4d28c;
}

.metric span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

section {
  padding: clamp(70px, 9vw, 118px) 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 38px;
}

.section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.image-strip {
  padding: 24px 0 0;
  margin-top: -86px;
  position: relative;
  z-index: 4;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.strip-card,
.gallery-card,
.why-image,
.about-image,
.service-card .media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.strip-card {
  position: relative;
  height: clamp(170px, 23vw, 290px);
}

.strip-card img,
.gallery-card img,
.why-image img,
.about-image img,
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.strip-card:hover img,
.gallery-card:hover img,
.why-image:hover img,
.about-image:hover img,
.service-card:hover img {
  transform: scale(1.08);
}

.strip-card span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #fff;
  font-weight: 900;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.about-copy p {
  color: var(--muted);
  margin: 18px 0 0;
}

.about-image {
  position: relative;
  min-height: 560px;
}

.about-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(280px, calc(100% - 48px));
  padding: 20px;
  color: #fff;
  border-radius: 8px;
  background: rgba(9, 63, 57, 0.88);
  backdrop-filter: blur(12px);
}

.about-badge strong {
  display: block;
  font-size: 2rem;
  color: #f4d28c;
  line-height: 1;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.contact-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-list i,
.contact-card i {
  color: var(--gold);
  margin-top: 4px;
}

.soft-band {
  background: var(--cream);
}

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

.service-card,
.testimonial,
.why-card,
.enquiry-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(17, 33, 30, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover,
.testimonial:hover,
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 78px rgba(17, 33, 30, 0.14);
}

.service-card .media {
  height: 240px;
  border-radius: 8px 8px 0 0;
  box-shadow: none;
}

.service-body {
  padding: 24px;
}

.service-body p,
.why-card p,
.testimonial p,
.contact-card p,
.footer p {
  color: var(--muted);
  margin: 10px 0 0;
}

.service-body .btn {
  margin-top: 18px;
  min-height: 44px;
  padding: 11px 16px;
}

.gallery-grid {
  columns: 4 230px;
  column-gap: 18px;
}

.gallery-card {
  break-inside: avoid;
  margin: 0 0 18px;
  box-shadow: 0 18px 52px rgba(17, 33, 30, 0.13);
}

.gallery-card.tall img {
  height: 410px;
}

.gallery-card.medium img {
  height: 310px;
}

.gallery-card.short img {
  height: 230px;
}

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

.testimonial {
  padding: 28px;
}

.stars {
  color: var(--gold);
  letter-spacing: 0;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
}

.avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--jade);
  font-weight: 900;
}

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

.why-card {
  overflow: hidden;
}

.why-image {
  height: 260px;
  border-radius: 8px 8px 0 0;
  box-shadow: none;
}

.why-card .content {
  padding: 24px;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.map-frame {
  height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 0;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.enquiry {
  padding: 0 0 clamp(70px, 9vw, 118px);
}

.enquiry-box {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 70px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--jade-dark), #111b18);
}

.enquiry-box p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
}

.footer {
  background: #091512;
  color: #fff;
  padding: 62px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 1fr;
  gap: 32px;
}

.footer h3 {
  font-size: 1.28rem;
  margin-bottom: 14px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

.floating-btn {
  position: fixed;
  bottom: 22px;
  z-index: 1200;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.45rem;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  animation: floatIcon 2.6s ease-in-out infinite;
}

.float-call {
  left: 22px;
  background: var(--jade);
}

.float-whatsapp {
  right: 22px;
  background: #25d366;
  animation-delay: 0.5s;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

@keyframes slowZoom {
  to {
    transform: scale(1);
  }
}

@keyframes buttonPulse {
  0%,
  100% {
    box-shadow: 0 15px 34px rgba(201, 154, 67, 0.32);
  }
  50% {
    box-shadow: 0 18px 48px rgba(201, 154, 67, 0.54);
  }
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-menu {
    position: fixed;
    top: 82px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 4px;
    padding: 18px;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  .header-call {
    display: none;
  }

  .strip-grid,
  .services-grid,
  .testimonials-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .contact-grid,
  .enquiry-box {
    grid-template-columns: 1fr;
  }

  .about-image,
  .map-frame {
    min-height: auto;
    height: 430px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .nav-wrap {
    height: 74px;
  }

  .brand {
    min-width: 0;
    font-size: 1rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-menu {
    top: 74px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero.page-hero {
    min-height: 48vh;
  }

  .hero-content {
    padding-top: 78px;
  }

  .hero-actions,
  .section-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .image-strip {
    margin-top: -38px;
  }

  .strip-grid,
  .services-grid,
  .testimonials-grid,
  .why-grid,
  .footer-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .strip-card {
    height: 245px;
  }

  .service-card .media,
  .why-image {
    height: 230px;
  }

  .gallery-card.tall img,
  .gallery-card.medium img,
  .gallery-card.short img {
    height: 280px;
  }

  .about-image,
  .map-frame {
    height: 360px;
  }

  .floating-btn {
    width: 56px;
    height: 56px;
    bottom: 16px;
  }

  .float-call {
    left: 14px;
  }

  .float-whatsapp {
    right: 14px;
  }
}

/* Final premium overrides, kept at the end so they win the cascade. */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr 1fr 0.9fr;
  grid-auto-flow: dense;
  gap: 18px;
  columns: auto;
}

.gallery-card {
  position: relative;
  min-height: 240px;
  margin: 0;
  break-inside: auto;
}

.gallery-card.tall {
  grid-row: span 2;
  min-height: 500px;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.tall img,
.gallery-card.medium img,
.gallery-card.short img {
  height: 100%;
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .gallery-grid,
  .premium-bar-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card.tall,
  .gallery-card.wide {
    min-height: 300px;
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-caption {
    opacity: 1;
    transform: translateY(0);
  }
}
