:root {
  --navy: #043968;
  --navy-deep: #032a4d;
  --blue: #075595;
  --blue-bright: #0d74bc;
  --turquoise: #3bc3d8;
  --yellow: #f5c51b;
  --yellow-soft: #ffdd58;
  --sand: #f7f1e5;
  --cream: #fffaf0;
  --ink: #0e2e4d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(2, 35, 66, 0.18);
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Roboto Condensed", Arial, sans-serif;
  --script: "Pacifico", cursive;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  align-items: center;
  display: flex;
  height: 94px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(24px, 5vw, 80px);
  position: absolute;
  right: 0;
  top: 0;
  transition: background .3s ease, height .3s ease, box-shadow .3s ease;
  z-index: 50;
}

.site-header.scrolled {
  background: rgba(3, 42, 77, .96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .16);
  height: 76px;
  position: fixed;
}

.brand {
  align-items: center;
  display: flex;
  gap: 13px;
  z-index: 60;
}

.brand img {
  border: 3px solid rgba(255, 255, 255, .85);
  border-radius: 22px;
  height: 62px;
  object-fit: cover;
  width: 62px;
}

.brand-copy {
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--script);
  font-size: 1.25rem;
  font-weight: 400;
}

.brand-copy small {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  margin-top: 6px;
  text-transform: uppercase;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.4vw, 40px);
}

.main-nav a {
  color: var(--white);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  position: relative;
  text-transform: uppercase;
}

.main-nav > a:not(.nav-cta)::after {
  background: var(--yellow);
  bottom: -8px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  width: 100%;
}

.main-nav > a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.paint-button {
  background: var(--yellow);
  color: var(--navy-deep) !important;
  display: inline-flex;
  font-weight: 800 !important;
  gap: 20px;
  justify-content: center;
  padding: 15px 26px;
  position: relative;
  transform: rotate(-1deg);
  transition: transform .25s ease, background .25s ease;
}

.nav-cta::before,
.paint-button::before {
  background:
    linear-gradient(90deg, transparent 0 2%, var(--yellow) 2% 98%, transparent 98%),
    linear-gradient(var(--yellow), var(--yellow));
  clip-path: polygon(2% 9%, 10% 3%, 22% 7%, 36% 2%, 51% 7%, 67% 2%, 83% 7%, 98% 2%, 95% 18%, 100% 34%, 96% 50%, 100% 69%, 95% 84%, 98% 98%, 82% 94%, 67% 99%, 52% 94%, 36% 99%, 21% 94%, 5% 99%, 8% 83%, 2% 69%, 6% 50%, 1% 30%);
  content: "";
  inset: -5px;
  position: absolute;
  z-index: -1;
}

.nav-cta:hover,
.paint-button:hover {
  transform: rotate(0) translateY(-3px);
}

.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 44px;
  position: relative;
  width: 44px;
  z-index: 60;
}

.menu-toggle span {
  background: var(--white);
  display: block;
  height: 2px;
  margin: 7px auto;
  transition: transform .25s ease, opacity .25s ease;
  width: 25px;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hero {
  align-items: center;
  display: flex;
  min-height: 820px;
  overflow: hidden;
  padding: 150px clamp(24px, 6vw, 96px) 90px;
  position: relative;
}

.hero-image {
  background-image: url("gallery/andre-beach-15.webp");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
  transform: scale(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 31, 58, .92) 0%, rgba(3, 50, 90, .72) 42%, rgba(3, 43, 77, .16) 75%),
    linear-gradient(0deg, rgba(0, 29, 55, .58), transparent 50%);
  inset: 0;
  position: absolute;
}

.hero::after {
  background: var(--sand);
  bottom: -1px;
  clip-path: polygon(0 72%, 10% 60%, 24% 72%, 40% 58%, 57% 75%, 73% 59%, 89% 73%, 100% 60%, 100% 100%, 0 100%);
  content: "";
  height: 48px;
  left: 0;
  position: absolute;
  width: 100%;
}

.sun-disc {
  border: 2px solid rgba(245, 197, 27, .22);
  border-radius: 50%;
  position: absolute;
}

.sun-disc-one {
  height: 460px;
  left: -250px;
  top: 155px;
  width: 460px;
}

.sun-disc-two {
  height: 270px;
  right: 8%;
  top: 22%;
  width: 270px;
}

.hero-content {
  color: var(--white);
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--yellow);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(4rem, 8.3vw, 8rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .86;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1 .yellow {
  color: var(--yellow);
}

.hero-intro {
  font-size: 1.06rem;
  margin: 34px 0;
  max-width: 590px;
}

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

.paint-button {
  font-size: .82rem;
  letter-spacing: .06em;
  padding: 17px 34px;
  text-transform: uppercase;
  z-index: 1;
}

.text-link {
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.hero-note {
  bottom: 72px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  text-align: right;
  z-index: 2;
}

.hero-note-script,
.script-heading {
  color: var(--yellow);
  font-family: var(--script);
  font-size: 1.7rem;
  font-weight: 400;
}

.hero-note span:last-child {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  margin-top: 6px;
  text-transform: uppercase;
}

.section {
  padding: 120px clamp(24px, 6vw, 96px);
}

.story {
  align-items: center;
  display: grid;
  gap: clamp(50px, 8vw, 130px);
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.story-copy {
  max-width: 620px;
}

.story h2,
.gallery h2,
.visit h2,
.feature-copy h2,
.section-heading h2 {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(3rem, 5.5vw, 6rem);
  letter-spacing: -.04em;
  line-height: .94;
  text-transform: uppercase;
}

.paint-stroke {
  background: var(--yellow);
  clip-path: polygon(0 45%, 15% 31%, 35% 43%, 52% 26%, 73% 39%, 100% 23%, 97% 72%, 70% 61%, 50% 76%, 28% 62%, 3% 78%);
  display: block;
  height: 18px;
  margin: 26px 0 30px;
  width: 125px;
}

.story-copy p:not(.section-kicker) {
  color: #40586c;
  margin-top: 19px;
}

.brush-link {
  border-bottom: 3px solid var(--yellow);
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  margin-top: 34px;
  padding-bottom: 6px;
  text-transform: uppercase;
}

.story-visual {
  min-height: 600px;
  position: relative;
}

.story-photo {
  background:
    linear-gradient(rgba(3, 53, 96, .08), rgba(3, 53, 96, .08)),
    url("gallery/andre-beach-01.webp");
  background-position: 68% center;
  background-size: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 600px;
}

.photo-badge {
  align-items: center;
  background: var(--yellow);
  bottom: -30px;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  height: 145px;
  justify-content: center;
  left: -45px;
  position: absolute;
  transform: rotate(-3deg);
  width: 145px;
}

.photo-badge span {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.photo-badge strong {
  font-family: var(--script);
  font-size: 2rem;
  font-weight: 400;
}

.experience {
  background:
    radial-gradient(circle at 14% 20%, rgba(59, 195, 216, .13), transparent 22%),
    radial-gradient(circle at 88% 74%, rgba(245, 197, 27, .13), transparent 24%),
    var(--navy);
  color: var(--white);
  position: relative;
}

.experience::before {
  background-image:
    linear-gradient(30deg, rgba(255,255,255,.025) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.025) 87.5%, rgba(255,255,255,.025)),
    linear-gradient(150deg, rgba(255,255,255,.025) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.025) 87.5%, rgba(255,255,255,.025));
  background-size: 80px 140px;
  content: "";
  inset: 0;
  position: absolute;
}

.section-heading {
  margin-bottom: 70px;
  position: relative;
  text-align: center;
}

.section-heading h2 {
  color: var(--white);
}

.experience-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.experience-card {
  border-right: 1px solid rgba(245, 197, 27, .45);
  padding: 18px clamp(20px, 3vw, 48px);
  text-align: center;
}

.experience-card:last-child {
  border-right: 0;
}

.experience-card .icon {
  filter: saturate(.8);
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.experience-card h3 {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: .05em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.experience-card p {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}

.feature-strip {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  min-height: 690px;
}

.feature-image {
  background:
    linear-gradient(90deg, transparent 70%, rgba(0,0,0,.1)),
    url("gallery/andre-beach-04.webp");
  background-position: left center;
  background-size: cover;
  min-height: 690px;
  position: relative;
}

.feature-label {
  background: var(--navy);
  color: var(--yellow);
  font-family: var(--script);
  font-size: 1.8rem;
  left: 35px;
  padding: 14px 28px;
  position: absolute;
  top: 35px;
  transform: rotate(-3deg);
}

.yellow-panel {
  align-items: flex-start;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.35), transparent 30%),
    var(--yellow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(55px, 7vw, 110px);
}

.yellow-panel .section-kicker {
  color: var(--navy);
}

.yellow-panel p:not(.section-kicker) {
  margin: 28px 0;
  max-width: 470px;
}

.yellow-panel a {
  border-bottom: 3px solid var(--navy);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding-bottom: 5px;
  text-transform: uppercase;
}

/* Gallery */
.gallery {
  background: var(--cream);
}

.gallery-heading {
  align-items: end;
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  margin-bottom: 64px;
}

.gallery-heading > p {
  color: #557083;
  max-width: 480px;
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-auto-flow: dense;
  grid-auto-rows: 250px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item {
  background: var(--navy);
  display: block;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: filter .4s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
  width: 100%;
}

.gallery-item::after {
  background: linear-gradient(

    0deg,
    rgba(2, 35, 66, .78) 0%,
    rgba(2, 35, 66, .12) 52%,
    transparent 76%
  );
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.gallery-item:hover img {
  filter: saturate(1.08);
  transform: scale(1.06);
}

.gallery-overlay {
  bottom: 22px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  left: 24px;
  position: absolute;
  right: 24px;
  z-index: 2;
}

.gallery-overlay strong {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-overlay small {
  color: var(--yellow);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  margin-top: 8px;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}

.gallery-item:hover .gallery-overlay small {
  opacity: 1;
  transform: translateY(0);
}

/* Landscape tiles */
.gallery-item-1,
.gallery-item-3,
.gallery-item-8,
.gallery-item-13,
.gallery-item-17,
.gallery-item-24,
.gallery-item-31 {
  grid-column: span 2;
}

/* Portrait tiles */
.gallery-item-7,
.gallery-item-9,
.gallery-item-11,
.gallery-item-15,
.gallery-item-16,
.gallery-item-19,
.gallery-item-22,
.gallery-item-28,
.gallery-item-34 {
  grid-row: span 2;
}

/* Large anchor tiles */
.gallery-item-2,
.gallery-item-18,
.gallery-item-27 {
  grid-column: span 2;
  grid-row: span 2;
}

/* Crop tuning */
.gallery-item-1 img { object-position: center 56%; }
.gallery-item-2 img { object-position: center 48%; }
.gallery-item-3 img { object-position: center 58%; }
.gallery-item-6 img { object-position: center 58%; }

.visit {
  display: grid;
  grid-template-columns: 1.2fr .9fr 1.05fr;
}

.visit > * {
  min-width: 0;
}

.visit-cta,
.visit-details {
  padding: clamp(55px, 6vw, 90px);
}

.visit-cta {
  background: var(--yellow);
}

.visit-cta .script-heading {
  color: var(--navy);
}

.visit-cta h2 {
  font-size: clamp(2.7rem, 4.5vw, 5rem);
  margin: 15px 0 25px;
}

.navy-button {
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-top: 32px;
  padding: 17px 24px;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}

.navy-button:hover {
  background: var(--blue);
  transform: translateY(-3px);
}

.visit-details {
  background: var(--blue);
  color: var(--white);
}

.detail {
  align-items: flex-start;
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.detail-icon {
  color: var(--yellow);
  font-size: 1.6rem;
  line-height: 1;
}

.detail div {
  display: flex;
  flex-direction: column;
}

.detail small {
  color: rgba(255,255,255,.65);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .13em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.detail strong {
  font-size: .95rem;
}

.detail span:not(.detail-icon) {
  color: rgba(255,255,255,.68);
  font-size: .8rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 45px;
}

.social-links a {
  border-bottom: 2px solid var(--yellow);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding-bottom: 4px;
  text-transform: uppercase;
}

/* Visit map */
.map-panel {
  background: #e8e1d4;
  min-height: 440px;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.map-panel iframe {
  border: 0;
  display: block;
  height: 100%;
  inset: 0;
  min-height: 440px;
  position: absolute;
  width: 100%;
}

.map-link {
  align-items: center;
  background: var(--navy-deep);
  border-radius: 999px;
  bottom: 20px;
  box-shadow: 0 12px 28px rgba(8, 47, 83, .25);
  color: var(--white);
  display: inline-flex;
  font-size: .8rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: .02em;
  padding: 13px 20px;
  position: absolute;
  right: 20px;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease;
  z-index: 5;
}

.map-link:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  align-items: center;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .75);
  display: grid;
  gap: 30px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 42px clamp(110px, 8vw, 150px) 42px clamp(24px, 5vw, 80px);
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 14px;
  min-width: 0;
}

.footer-brand img {
  border-radius: 14px;
  flex: 0 0 auto;
  height: 58px;
  object-fit: contain;
  width: 58px;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.footer-brand strong {
  color: var(--white);
  font-family: var(--script);
  font-size: 1.2rem;
  font-weight: 400;
}

.footer-brand span {
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer > p {
  color: var(--yellow);
  font-family: var(--script);
  font-size: 1.15rem;
  line-height: 1.45;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer > small {
  font-size: .65rem;
  grid-column: 1 / -1;
  line-height: 1.6;
  opacity: .55;
  text-align: center;
}

.whatsapp-float,
.back-to-top {
  align-items: center;
  border: 0;
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  display: flex;
  height: 58px;
  justify-content: center;
  position: fixed;
  right: 24px;
  width: 58px;
  z-index: 45;
}

.whatsapp-float {
  background: #25d366;
}

.whatsapp-float svg {
  fill: var(--white);
  height: 31px;
  width: 31px;
}

.back-to-top {
  background: var(--yellow);
  bottom: 94px;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.45rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.65,.3,1);
}

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

@media (max-width: 1050px) {
  .main-nav {
    background: var(--navy-deep);
    flex-direction: column;
    inset: 0;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transform: translateY(-20px);
    transition: opacity .25s ease, transform .25s ease;
  }

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

  .main-nav a {
    font-size: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .story {
    gap: 70px;
    grid-template-columns: 1fr;
  }

  .story-copy {
    max-width: 760px;
  }

  .story-visual {
    min-height: 560px;
  }

  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
  }

  .experience-card:nth-child(2) {
    border-right: 0;
  }

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

  .feature-image {
    min-height: 600px;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .visit {
    grid-template-columns: 1fr 1fr;
  }

  .map-panel {
    grid-column: 1 / -1;
    min-height: 480px;
  }

  .map-panel iframe {
    min-height: 480px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 52px 96px 118px 32px;
    text-align: center;
  }

  .footer-brand,
  .footer-links {
    justify-content: center;
  }

  .site-footer > p {
    margin-inline: auto;
    max-width: 280px;
  }
}

@media (max-width: 700px) {
  .site-header {
    height: 76px;
    padding: 0 16px;
  }

  .site-header.scrolled {
    height: 68px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    border-radius: 12px;
    height: 46px;
    width: 46px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: .46rem;
    letter-spacing: .1em;
  }

  .hero {
    align-items: flex-end;
    min-height: 690px;
    padding: 112px 20px 104px;
  }

  .hero-image {
    background-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(2, 31, 58, .97) 0%, rgba(3, 50, 90, .62) 68%, rgba(3, 43, 77, .2)),
      linear-gradient(90deg, rgba(2, 31, 58, .72), transparent);
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-intro {
    font-size: .92rem;
    margin: 24px 0 28px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-note {
    display: none;
  }

  .section {
    padding: 72px 20px;
  }

  .story {
    gap: 46px;
  }

  .story h2,
  .gallery h2,
  .section-heading h2,
  .feature-copy h2,
  .visit h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .story-visual,
  .story-photo {
    min-height: 390px;
  }

  .story-photo {
    background-position: center;
  }

  .photo-badge {
    bottom: -18px;
    height: 112px;
    left: 14px;
    width: 112px;
  }

  .photo-badge strong {
    font-size: 1.55rem;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .experience-card {
    border-bottom: 1px solid rgba(245, 197, 27, .4);
    border-right: 0;
    padding: 30px 8px;
  }

  .experience-card:last-child {
    border-bottom: 0;
  }

  .feature-image {
    min-height: 390px;
  }

  .feature-label {
    font-size: 1.45rem;
    left: 20px;
    padding: 10px 20px;
    top: 20px;
  }

  .yellow-panel {
    padding: 62px 20px;
  }

  .gallery-heading {
    align-items: start;
    gap: 24px;
    grid-template-columns: 1fr;
    margin-bottom: 38px;
  }

  .gallery-grid {
    gap: 8px;
    grid-auto-flow: row;
    grid-auto-rows: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item,
  .gallery-item-1,
  .gallery-item-2,
  .gallery-item-3,
  .gallery-item-7,
  .gallery-item-8,
  .gallery-item-9,
  .gallery-item-11,
  .gallery-item-13,
  .gallery-item-15,
  .gallery-item-16,
  .gallery-item-17,
  .gallery-item-18,
  .gallery-item-19,
  .gallery-item-22,
  .gallery-item-24,
  .gallery-item-27,
  .gallery-item-28,
  .gallery-item-31,
  .gallery-item-34 {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item {
    aspect-ratio: 1 / 1.12;
  }

  .gallery-item-1,
  .gallery-item-2,
  .gallery-item-3,
  .gallery-item-8,
  .gallery-item-13,
  .gallery-item-17,
  .gallery-item-18,
  .gallery-item-24,
  .gallery-item-27,
  .gallery-item-31 {
    aspect-ratio: 16 / 9;
    grid-column: 1 / -1;
  }

  .gallery-item-7,
  .gallery-item-9,
  .gallery-item-11,
  .gallery-item-15,
  .gallery-item-16,
  .gallery-item-19,
  .gallery-item-22,
  .gallery-item-28,
  .gallery-item-34 {
    aspect-ratio: 3 / 4;
  }

  .gallery-overlay {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .gallery-overlay strong {
    font-size: .88rem;
  }

  .gallery-overlay small {
    display: none;
  }

  .visit {
    grid-template-columns: 1fr;
  }

  .visit-cta,
  .visit-details {
    padding: 58px 20px;
  }

  .visit-cta h2 {
    font-size: clamp(2.45rem, 12vw, 3.75rem);
  }

  .social-links {
    margin-top: 36px;
  }

  .map-panel {
    grid-column: auto;
    min-height: 360px;
  }

  .map-panel iframe {
    min-height: 360px;
  }

  .map-link {
    bottom: 12px;
    font-size: .68rem;
    padding: 11px 14px;
    right: 12px;
  }

  .site-footer {
    gap: 24px;
    padding: 48px 72px 112px 20px;
  }

  .footer-brand {
    flex-direction: column;
    gap: 10px;
  }

  .footer-brand img {
    height: 68px;
    width: 68px;
  }

  .footer-brand strong {
    font-size: 1.3rem;
  }

  .site-footer > p {
    font-size: 1.16rem;
  }

  .footer-links {
    gap: 12px 18px;
  }

  .footer-links a {
    font-size: .62rem;
  }

  .site-footer > small {
    font-size: .6rem;
    margin-inline: auto;
    max-width: 260px;
  }

  .whatsapp-float,
  .back-to-top {
    height: 52px;
    right: 14px;
    width: 52px;
  }

  .whatsapp-float {
    bottom: 14px;
  }

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

  .back-to-top {
    bottom: 78px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 650px;
  }

  .gallery-grid {
    gap: 6px;
  }

  .gallery-overlay strong {
    font-size: .8rem;
  }

  .site-footer {
    padding-left: 18px;
    padding-right: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Hide GLightbox captions */
.gslide-description,
.gdesc,
.gdesc-inner {
    display: none !important;
}

/* Let the image use the full available height */
.gslide-media {
    margin-bottom: 0 !important;
}