:root {
  --ink: #13201d;
  --muted: #61716c;
  --paper: #f4f7f0;
  --mist: #dfece7;
  --foam: #eef8f6;
  --water: #2f8b8a;
  --deep: #123c3c;
  --leaf: #88a95e;
  --wood: #8a6746;
  --cream: #fbf4e6;
  --sun: #e5bd70;
  --white: #ffffff;
  --line: rgba(19, 32, 29, 0.12);
  --glass: rgba(255, 255, 255, 0.58);
  --glass-strong: rgba(255, 255, 255, 0.76);
  --shadow: 0 24px 70px rgba(19, 32, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(136, 169, 94, 0.18), transparent 32rem),
    radial-gradient(circle at 86% 18%, rgba(47, 139, 138, 0.18), transparent 34rem),
    linear-gradient(180deg, var(--paper), var(--foam));
  letter-spacing: 0;
}

body.is-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 44% 38%, rgba(255, 255, 255, 0.82), transparent 18rem),
    linear-gradient(135deg, rgba(236, 244, 238, 0.96), rgba(214, 232, 223, 0.96));
  opacity: 1;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.site-loader.hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader-mark {
  position: relative;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.24)),
    rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 28px 72px rgba(19, 32, 29, 0.16);
  backdrop-filter: blur(26px) saturate(1.24);
}

.loader-mark::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 40px;
  border: 2px solid rgba(47, 139, 138, 0.22);
  border-top-color: rgba(47, 139, 138, 0.78);
  animation: loader-spin 1100ms linear infinite;
}

.loader-mark img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 10px 16px auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 16px;
  color: #fff;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.glass-nav,
.glass-panel,
.glass-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.12) 48%, rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -18px 42px rgba(255, 255, 255, 0.08),
    0 18px 54px rgba(19, 32, 29, 0.13);
  backdrop-filter: blur(34px) saturate(1.35);
  -webkit-backdrop-filter: blur(34px) saturate(1.35);
}

.site-header.scrolled,
body:not([data-page="home"]) .site-header {
  color: var(--ink);
  background: rgba(244, 247, 240, 0.78);
  border-color: rgba(19, 32, 29, 0.1);
  box-shadow: 0 14px 44px rgba(19, 32, 29, 0.12);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.logo-plate,
.hero-mark {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 28px rgba(19, 32, 29, 0.12);
  backdrop-filter: blur(16px);
}

.logo-plate {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  flex: 0 0 auto;
}

.logo-plate img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.hero-mark {
  width: clamp(72px, 6vw, 92px);
  height: clamp(72px, 6vw, 92px);
  margin: 0 auto 16px;
  border-radius: 22px;
}

.hero-mark.compact {
  width: 104px;
  height: 104px;
  margin: 0 0 22px;
}

.hero-mark img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(8px, 1.35vw, 18px);
  font-size: 0.82rem;
  font-weight: 750;
}

.main-nav a {
  position: relative;
  opacity: 0.84;
  padding: 6px 0;
  white-space: nowrap;
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
  transform: translateY(-1px);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 76px;
  padding: 2px;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 14px;
}

.site-header.scrolled .language-switch,
body:not([data-page="home"]) .language-switch {
  background: rgba(19, 32, 29, 0.06);
  border-color: rgba(19, 32, 29, 0.1);
}

.language-switch button {
  min-height: 28px;
  border: 0;
  border-radius: 11px;
  color: inherit;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switch button.active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 6px 14px rgba(19, 32, 29, 0.1);
}

.phone-link {
  padding: 8px 11px;
  color: var(--ink);
  background: #fff;
  border-radius: 14px;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(19, 32, 29, 0.1);
}

.hero,
.page-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.home-hero {
  background: #122424;
}

.hero-video,
.page-hero::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::before {
  content: "";
  background: var(--hero-image) center / cover no-repeat;
}

.page-hero-about { --hero-image: url("assets/gallery/sunset-lounge.png"); }
.page-hero-services { --hero-image: url("assets/gallery/boat-water.png"); }
.page-hero-location { --hero-image: url("assets/gallery/retreat-water.png"); }
.page-hero-activities { --hero-image: url("assets/gallery/boat-water.png"); }
.page-hero-reservations { --hero-image: url("assets/gallery/sunset-lounge.png"); }
.page-hero-gallery { --hero-image: url("assets/gallery/retreat-water.png"); }
.page-hero-contact { --hero-image: url("assets/gallery/retreat-water.png"); }

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 24, 24, 0.08), rgba(7, 24, 24, 0.52)),
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 34%);
}

.hero-scrim.soft {
  background:
    linear-gradient(180deg, rgba(6, 24, 22, 0.24), rgba(6, 24, 22, 0.64)),
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.14), transparent 34%);
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 26px;
  text-align: center;
}

.home-hero .hero-content {
  width: min(820px, calc(100% - 36px));
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 28px;
}

.page-hero-content {
  margin-top: 76px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--water);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.sea-band .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(3rem, 6.9vw, 6.7rem);
  line-height: 0.92;
  font-weight: 800;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 5.8vw, 5.7rem);
}

.hero-copy,
.page-hero-content p:last-child {
  width: min(720px, 100%);
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.home-hero .hero-copy {
  max-width: 790px;
  text-shadow: 0 3px 26px rgba(0, 0, 0, 0.44);
}

.hero-actions,
.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.media-card:hover,
.glass-card:hover {
  transform: translateY(-3px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--water), #769f69);
  box-shadow: 0 14px 26px rgba(47, 139, 138, 0.24);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button.ghost.dark {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.button .icon {
  display: none;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: middle;
}

.icon.large {
  width: 34px;
  height: 34px;
  color: var(--water);
}

.section {
  position: relative;
  overflow: hidden;
}

.calm-band {
  background:
    linear-gradient(180deg, rgba(238, 248, 246, 0.8), rgba(244, 247, 240, 0.92)),
    var(--foam);
}

.sea-band {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 60, 60, 0.94), rgba(82, 93, 66, 0.92)),
    var(--deep);
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 126px) 0;
}

.narrative {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(28px, 4.8vw, 64px);
  align-items: center;
}

.right-text .copy-block {
  order: 2;
}

.right-text .media-card {
  order: 1;
}

.right-text .image-carousel {
  order: 1;
}

.vinyl-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(28px, 4.8vw, 64px);
  align-items: center;
}

.vinyl-layout .media-card,
.vinyl-layout .image-carousel {
  width: min(100%, 560px);
  min-height: 0;
  aspect-ratio: 1.28;
  align-self: center;
  justify-self: end;
  border-radius: 30px;
}

.vinyl-layout .media-card img,
.vinyl-layout .image-carousel img {
  min-height: 0;
}

.media-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
}

.vinyl-layout .copy-block {
  display: flex;
  max-height: none;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  overflow: hidden;
}

.vinyl-layout .copy-block h2 {
  font-size: clamp(2.2rem, 3.35vw, 4rem);
  line-height: 1.14;
}

.vinyl-layout .copy-block p {
  margin-top: clamp(18px, 2vw, 24px);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.5;
}

.vinyl-layout .copy-block .button {
  margin-top: clamp(18px, 2.4vw, 28px);
}

.image-carousel {
  position: relative;
  min-height: clamp(320px, 27vw, 430px);
  width: min(100%, 560px);
  aspect-ratio: 1.28;
  justify-self: end;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 26px 68px rgba(9, 31, 28, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  isolation: isolate;
}

.carousel-track {
  display: flex;
  height: 100%;
  min-height: inherit;
  transition: transform 620ms cubic-bezier(0.18, 0.82, 0.22, 1);
}

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: inherit;
  padding: 0;
  overflow: hidden;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 18, 16, 0.02) 42%, rgba(6, 18, 16, 0.62) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(12, 38, 38, 0.12));
  pointer-events: none;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 900ms cubic-bezier(0.18, 0.82, 0.22, 1), filter 420ms ease;
}

.image-carousel:hover .carousel-slide.is-active img,
.image-carousel:focus-within .carousel-slide.is-active img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.07);
}

.carousel-caption {
  display: none;
}

.carousel-caption strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  line-height: 1.1;
}

.carousel-caption span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.carousel-open {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(7, 20, 18, 0.22);
}

.carousel-open::before {
  content: "\2197";
  font-size: 1.4rem;
  line-height: 1;
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(7, 20, 18, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 220ms ease, background 220ms ease;
}

.carousel-control:hover {
  background: #fff;
}

.carousel-control.prev {
  left: 18px;
}

.carousel-control.next {
  right: 18px;
}

.carousel-control.prev::before {
  content: "\2039";
  font-size: 2rem;
  line-height: 1;
}

.carousel-control.next::before {
  content: "\203A";
  font-size: 2rem;
  line-height: 1;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 4;
  display: flex;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(8, 29, 28, 0.34);
  backdrop-filter: blur(14px) saturate(1.15);
  transform: translateX(-50%);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.carousel-dot.is-active {
  width: 26px;
  background: #fff;
}

.about-change-layout {
  align-items: stretch;
}

.location-garden-layout {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 82px);
}

.location-garden-layout .photo-cluster {
  min-height: clamp(520px, 48vw, 640px);
}

.location-garden-layout .copy-block {
  justify-self: end;
  width: min(560px, 100%);
}

.location-garden-layout .copy-block h2 {
  font-size: clamp(2.45rem, 4.6vw, 5.05rem);
}

.location-garden-layout .copy-block p {
  width: min(560px, 100%);
}

.photo-cluster {
  position: relative;
  min-height: clamp(540px, 66vw, 690px);
  height: 100%;
  align-self: stretch;
  isolation: isolate;
}

.lake-photo-cluster {
  min-height: clamp(520px, 48vw, 640px);
  width: min(680px, 100%);
  justify-self: center;
}

.cluster-photo {
  position: absolute;
  display: block;
  width: 64%;
  min-height: 330px;
  padding: 0;
  overflow: hidden;
  color: inherit;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.12)),
    rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  box-shadow:
    0 26px 70px rgba(19, 32, 29, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  cursor: pointer;
  backdrop-filter: blur(26px) saturate(1.25);
  transition: transform 280ms ease, box-shadow 280ms ease, filter 280ms ease, z-index 0ms linear;
}

.cluster-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 44%),
    linear-gradient(180deg, transparent 58%, rgba(6, 20, 18, 0.2));
  pointer-events: none;
}

.cluster-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 520ms ease, filter 280ms ease;
}

.cluster-photo:nth-child(1) {
  top: 1%;
  right: 2%;
  z-index: 3;
  aspect-ratio: 1.22;
  transform: rotate(1.5deg);
}

.cluster-photo:nth-child(2) {
  top: 29%;
  left: 0;
  z-index: 2;
  width: 58%;
  aspect-ratio: 0.86;
  transform: rotate(-4deg);
}

.cluster-photo:nth-child(3) {
  right: 7%;
  bottom: 0;
  z-index: 1;
  width: 56%;
  aspect-ratio: 1.06;
  transform: rotate(5deg);
}

.cluster-photo:hover,
.cluster-photo:focus-visible,
.cluster-photo.is-active {
  z-index: 8;
  filter: saturate(1.05) contrast(1.03);
  transform: translateY(-8px) rotate(0deg) scale(1.06);
  box-shadow:
    0 34px 88px rgba(19, 32, 29, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.cluster-photo:hover img,
.cluster-photo:focus-visible img,
.cluster-photo.is-active img {
  transform: scale(1.075);
}

.cluster-photo:focus-visible {
  outline: 3px solid rgba(47, 139, 138, 0.42);
  outline-offset: 5px;
}

.copy-block h2,
.center-text h2,
.service-wide h2 {
  font-size: clamp(2.3rem, 5vw, 5.1rem);
  line-height: 1;
  font-weight: 800;
}

.copy-block p,
.center-text p,
.service-wide p,
.glass-card p,
.contact-panel p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.62;
}

.sea-band .copy-block p,
.sea-band .center-text p {
  color: rgba(255, 255, 255, 0.78);
}

.center-text {
  width: min(860px, calc(100% - 36px));
  text-align: center;
}

.center-text p {
  margin: 22px auto 0;
  width: min(720px, 100%);
}

.home-birds-band {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.home-birds-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: clamp(380px, 46vw, 640px);
  background: url("assets/gallery/birds-line-background.png") center center / 100% auto no-repeat;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.home-birds-band .section-inner {
  position: relative;
  z-index: 1;
}

.home-birds-band .center-text {
  width: min(980px, calc(100% - 36px));
  padding: clamp(72px, 8vw, 118px) 0 clamp(28px, 5vw, 54px);
}

.home-birds-image {
  display: none;
  width: 100%;
  background: #fff;
}

.home-birds-image img {
  width: 100%;
  height: auto;
}

.home-birds-band .center-text .eyebrow,
.home-birds-band .center-text h2 {
  color: var(--ink);
}

.home-birds-band .center-text p {
  color: var(--muted);
}

.home-birds-band .experience-banners {
  padding-top: 0;
}

.about-identity-band {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.about-identity-band::before {
  content: "";
  position: absolute;
  left: clamp(90px, 8vw, 170px);
  top: 50%;
  width: clamp(310px, 32vw, 470px);
  height: min(78%, 560px);
  background: url("assets/gallery/tree-line-background.png") left center / auto 100% no-repeat;
  opacity: 0.9;
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 0;
}

.about-identity-band .section-inner {
  position: relative;
  z-index: 1;
}

.about-identity-band .center-text {
  width: min(980px, calc(100% - 36px));
}

.feature-row,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 0;
}

.feature-row.four {
  grid-template-columns: repeat(4, 1fr);
}

.experience-banners {
  align-items: stretch;
  grid-template-columns: 0.92fr 1.62fr 0.92fr 0.92fr;
  gap: 18px;
}

.experience-banner {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background: #dce9e2;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 18px;
  box-shadow:
    0 24px 62px rgba(19, 32, 29, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
  isolation: isolate;
  transition:
    flex-grow 760ms cubic-bezier(0.18, 0.82, 0.22, 1),
    opacity 420ms ease,
    transform 360ms cubic-bezier(0.18, 0.82, 0.22, 1),
    box-shadow 360ms ease,
    border-color 360ms ease;
  will-change: flex-grow, transform;
}

.experience-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 18, 16, 0.04) 20%, rgba(6, 18, 16, 0.78) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04) 45%, rgba(12, 38, 38, 0.2));
  pointer-events: none;
  transition: opacity 420ms ease;
}

.experience-banner img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.01);
  transition:
    transform 900ms cubic-bezier(0.18, 0.82, 0.22, 1),
    filter 420ms ease;
}

.experience-banner:hover,
.experience-banner:focus-within {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 34px 82px rgba(19, 32, 29, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.experience-banner:hover img,
.experience-banner:focus-within img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.11);
}

.banner-glass {
  position: absolute;
  inset: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 0 0;
}

.banner-glass::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    rgba(8, 29, 28, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 18px 42px rgba(7, 20, 18, 0.18);
  backdrop-filter: blur(18px) saturate(1.25);
  mask-image: linear-gradient(180deg, transparent, #000 26%);
  pointer-events: none;
  transition: height 520ms cubic-bezier(0.18, 0.82, 0.22, 1), opacity 420ms ease;
}

.banner-arrow {
  position: relative;
  z-index: 3;
  align-self: flex-end;
  width: 64px;
  height: 64px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.64)),
    rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(7, 20, 18, 0.18);
  backdrop-filter: blur(20px) saturate(1.35);
  transition: transform 420ms cubic-bezier(0.18, 0.82, 0.22, 1), background 320ms ease;
}

.banner-arrow::before {
  content: "\2197";
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.experience-banner:hover .banner-arrow,
.experience-banner:focus-within .banner-arrow {
  background: rgba(255, 255, 255, 0.92);
  transform: translate(4px, -4px);
}

.banner-glass > div {
  position: relative;
  z-index: 3;
  padding: 0 14px 18px;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.42);
  transition: transform 520ms cubic-bezier(0.18, 0.82, 0.22, 1);
}

.banner-glass h3 {
  max-width: 12ch;
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.55rem, 2.6vw, 3.65rem);
  line-height: 1.22;
  text-transform: uppercase;
}

.experience-banner:not(.is-wide) .banner-glass h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.75rem);
}

.experience-banner:hover .banner-glass > div,
.experience-banner:focus-within .banner-glass > div {
  transform: translateY(-3px);
}

.banner-glass p {
  width: min(430px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.92rem, 1.08vw, 1.05rem);
  font-weight: 700;
  line-height: 1.45;
}

.experience-banners:hover .experience-banner {
  opacity: 0.9;
}

.experience-banners .experience-banner:hover {
  opacity: 1;
}

@media (min-width: 901px) {
  .experience-banners {
    display: flex;
  }

  .experience-banner {
    flex: 1 1 0;
  }

  .experience-banner.is-wide {
    flex-grow: 2.15;
  }

  .experience-banner:hover,
  .experience-banner:focus-within {
    flex-grow: 1.55;
  }

  .experience-banner.is-wide:hover,
  .experience-banner.is-wide:focus-within {
    flex-grow: 2.45;
  }
}

.glass-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 24px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.feature-illustration {
  display: block;
  width: 96px;
  height: 64px;
  margin: 0 auto;
  color: #c9a260;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.78;
}

.feature-illustration.wide {
  width: 124px;
}

.glass-card h3 {
  margin-top: 22px;
  font-size: 1.45rem;
}

.media-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 420px;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #dce9e2;
  border: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: transform 200ms ease;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 500ms ease;
}

.media-card:hover img {
  transform: scale(1.035);
}

.media-card span {
  position: absolute;
  left: auto;
  right: 16px;
  bottom: 16px;
  width: auto;
  min-width: 168px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.12)),
    rgba(12, 38, 38, 0.34);
  backdrop-filter: blur(22px) saturate(1.28);
  font-weight: 800;
  text-align: center;
}

.logo-card img {
  object-fit: contain;
  padding: 44px;
  background: #f7fbf8;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--water);
  font-weight: 800;
}

.sea-band .text-link {
  color: #fff;
}

.service-list {
  display: grid;
  gap: 18px;
}

.activity-series {
  display: grid;
  gap: 0;
}

.activity-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.16)),
    rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 22px 58px rgba(19, 32, 29, 0.12);
  backdrop-filter: blur(28px) saturate(1.2);
}

.activity-panel + .activity-panel {
  border-top: 0;
}

.activity-panel:first-child {
  border-radius: 26px 26px 0 0;
}

.activity-panel:last-child {
  border-radius: 0 0 26px 26px;
}

.activity-image {
  position: relative;
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #dce9e2;
  cursor: zoom-in;
}

.activity-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 36%),
    linear-gradient(180deg, transparent 58%, rgba(7, 24, 24, 0.24));
  pointer-events: none;
}

.activity-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 620ms ease, filter 240ms ease;
}

.activity-image:hover img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.055);
}

.activity-copy {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px);
  text-align: center;
}

.activity-copy h2 {
  width: min(420px, 100%);
  font-size: clamp(2rem, 3.3vw, 3.4rem);
  line-height: 1.04;
}

.activity-copy p:not(.eyebrow) {
  width: min(430px, 100%);
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.58;
}

.activity-copy .button {
  margin-top: 26px;
  min-width: 136px;
  justify-content: center;
}

.service-wide {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.gallery-masonry .tall {
  grid-row: span 2;
  min-height: 680px;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 40px rgba(19, 32, 29, 0.07);
  backdrop-filter: blur(18px);
}

summary {
  cursor: pointer;
  padding: 22px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.58;
}

.stat {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat strong {
  color: var(--water);
  font-size: 2.4rem;
}

.stat span {
  font-size: 1.2rem;
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 16px;
  align-items: stretch;
}

.contact-panel,
.map-wrap {
  min-height: 520px;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card {
  gap: 20px;
}

.contact-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 4.6vw, 4.55rem);
  line-height: 1;
  letter-spacing: 0;
}

.contact-card h2 span:last-child {
  color: rgba(18, 37, 33, 0.42);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 30px;
  margin-top: 4px;
}

.contact-grid .eyebrow {
  margin-bottom: 8px;
  color: rgba(18, 37, 33, 0.5);
}

.contact-wide {
  grid-column: 1 / -1;
}

.contact-link {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
  transition: color 180ms ease, opacity 180ms ease;
}

.contact-link:hover {
  color: var(--water);
}

.contact-actions {
  justify-content: flex-start;
}

.big-phone {
  display: inline-flex;
  margin: 4px 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1;
  font-weight: 800;
}

.map-wrap {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(145deg, #28d36f 0%, #16a75a 72%, #0d8d48 100%);
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow:
    0 18px 36px rgba(6, 47, 35, 0.26),
    0 8px 18px rgba(37, 211, 102, 0.34),
    inset 0 -5px 12px rgba(4, 83, 44, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.whatsapp-float .icon {
  display: none;
}

.whatsapp-float::before {
  content: "";
  width: 34px;
  height: 34px;
  display: block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='100' height='100' viewBox='0 0 48 48'%3E%3Cpath fill='%23fff' d='M4.868,43.303l2.694-9.835C5.9,30.59,5.026,27.324,5.027,23.979C5.032,13.514,13.548,5,24.014,5c5.079,0.002,9.845,1.979,13.43,5.566c3.584,3.588,5.558,8.356,5.556,13.428c-0.004,10.465-8.522,18.98-18.986,18.98c-0.001,0,0,0,0,0h-0.008c-3.177-0.001-6.3-0.798-9.073-2.311L4.868,43.303z'%3E%3C/path%3E%3Cpath fill='%23fff' d='M4.868,43.803c-0.132,0-0.26-0.052-0.355-0.148c-0.125-0.127-0.174-0.312-0.127-0.483l2.639-9.636c-1.636-2.906-2.499-6.206-2.497-9.556C4.532,13.238,13.273,4.5,24.014,4.5c5.21,0.002,10.105,2.031,13.784,5.713c3.679,3.683,5.704,8.577,5.702,13.781c-0.004,10.741-8.746,19.48-19.486,19.48c-3.189-0.001-6.344-0.788-9.144-2.277l-9.875,2.589C4.953,43.798,4.911,43.803,4.868,43.803z'%3E%3C/path%3E%3Cpath fill='%23cfd8dc' d='M24.014,5c5.079,0.002,9.845,1.979,13.43,5.566c3.584,3.588,5.558,8.356,5.556,13.428c-0.004,10.465-8.522,18.98-18.986,18.98h-0.008c-3.177-0.001-6.3-0.798-9.073-2.311L4.868,43.303l2.694-9.835C5.9,30.59,5.026,27.324,5.027,23.979C5.032,13.514,13.548,5,24.014,5 M24.014,42.974C24.014,42.974,24.014,42.974,24.014,42.974C24.014,42.974,24.014,42.974,24.014,42.974 M24.014,42.974C24.014,42.974,24.014,42.974,24.014,42.974C24.014,42.974,24.014,42.974,24.014,42.974 M24.014,4C24.014,4,24.014,4,24.014,4C12.998,4,4.032,12.962,4.027,23.979c-0.001,3.367,0.849,6.685,2.461,9.622l-2.585,9.439c-0.094,0.345,0.002,0.713,0.254,0.967c0.19,0.192,0.447,0.297,0.711,0.297c0.085,0,0.17-0.011,0.254-0.033l9.687-2.54c2.828,1.468,5.998,2.243,9.197,2.244c11.024,0,19.99-8.963,19.995-19.98c0.002-5.339-2.075-10.359-5.848-14.135C34.378,6.083,29.357,4.002,24.014,4L24.014,4z'%3E%3C/path%3E%3Cpath fill='%2340c351' d='M35.176,12.832c-2.98-2.982-6.941-4.625-11.157-4.626c-8.704,0-15.783,7.076-15.787,15.774c-0.001,2.981,0.833,5.883,2.413,8.396l0.376,0.597l-1.595,5.821l5.973-1.566l0.577,0.342c2.422,1.438,5.2,2.198,8.032,2.199h0.006c8.698,0,15.777-7.077,15.78-15.776C39.795,19.778,38.156,15.814,35.176,12.832z'%3E%3C/path%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M19.268,16.045c-0.355-0.79-0.729-0.806-1.068-0.82c-0.277-0.012-0.593-0.011-0.909-0.011c-0.316,0-0.83,0.119-1.265,0.594c-0.435,0.475-1.661,1.622-1.661,3.956c0,2.334,1.7,4.59,1.937,4.906c0.237,0.316,3.282,5.259,8.104,7.161c4.007,1.58,4.823,1.266,5.693,1.187c0.87-0.079,2.807-1.147,3.202-2.255c0.395-1.108,0.395-2.057,0.277-2.255c-0.119-0.198-0.435-0.316-0.909-0.554s-2.807-1.385-3.242-1.543c-0.435-0.158-0.751-0.237-1.068,0.238c-0.316,0.474-1.225,1.543-1.502,1.859c-0.277,0.317-0.554,0.357-1.028,0.119c-0.474-0.238-2.002-0.738-3.815-2.354c-1.41-1.257-2.362-2.81-2.639-3.285c-0.277-0.474-0.03-0.731,0.208-0.968c0.213-0.213,0.474-0.554,0.712-0.831c0.237-0.277,0.316-0.475,0.474-0.791c0.158-0.317,0.079-0.594-0.04-0.831C20.612,19.329,19.69,16.983,19.268,16.045z' clip-rule='evenodd'%3E%3C/path%3E%3C/svg%3E") center / contain no-repeat;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  filter: saturate(1.06);
  box-shadow:
    0 22px 42px rgba(6, 47, 35, 0.3),
    0 10px 22px rgba(37, 211, 102, 0.42),
    inset 0 -5px 12px rgba(4, 83, 44, 0.16);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.92);
  outline-offset: 4px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #102c2c;
}

.footer-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.footer-brand {
  color: #fff;
}

.footer-inner p {
  margin: 16px 0 0;
  max-width: 520px;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
}

.footer-column h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-nav a,
.footer-meta span {
  color: rgba(255, 255, 255, 0.78);
}

.footer-meta {
  display: grid;
  gap: 10px;
}

.footer-meta span,
.footer-meta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-links .icon,
.footer-meta .icon {
  width: 18px;
  height: 18px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 20, 20, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 78vh;
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.lightbox p {
  max-width: min(760px, 92vw);
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  line-height: 1.5;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.experience-banner.reveal {
  transition:
    flex-grow 760ms cubic-bezier(0.18, 0.82, 0.22, 1),
    opacity 700ms ease,
    transform 360ms cubic-bezier(0.18, 0.82, 0.22, 1),
    box-shadow 360ms ease,
    border-color 360ms ease;
}

.experience-banner.reveal.visible:hover,
.experience-banner.reveal.visible:focus-within {
  transform: translateY(-6px);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    inset: 8px 8px auto;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
  }

  .phone-link {
    display: none;
  }

  .narrative,
  .activity-panel,
  .feature-row,
  .feature-row.four,
  .vinyl-layout,
  .location-garden-layout,
  .stats-grid,
  .gallery-masonry,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .right-text .copy-block,
  .right-text .media-card,
  .right-text .image-carousel {
    order: initial;
  }

  .activity-panel {
    min-height: 0;
  }

  .activity-panel:nth-child(even) .activity-copy {
    order: 2;
  }

  .activity-panel:nth-child(even) .activity-image {
    order: 1;
  }

  .activity-image,
  .activity-copy {
    min-height: 420px;
  }

  .vinyl-layout .media-card,
  .vinyl-layout .image-carousel {
    width: min(620px, 100%);
    justify-self: center;
  }

  .about-change-layout {
    align-items: start;
  }

  .location-garden-layout {
    align-items: start;
  }

  .location-garden-layout .copy-block {
    justify-self: stretch;
    width: 100%;
  }

  .location-garden-layout .photo-cluster {
    min-height: 620px;
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .photo-cluster {
    min-height: 620px;
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .cluster-photo {
    min-height: 300px;
  }

  .gallery-masonry .tall {
    grid-row: auto;
    min-height: 430px;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: absolute;
  }

  .brand > span:last-child {
    display: none;
  }

  .site-header {
    border-radius: 16px;
  }

  .hero,
  .page-hero {
    min-height: 92svh;
  }

  .hero-content,
  .page-hero-content {
    width: min(100% - 24px, 920px);
    margin-top: 130px;
    padding: 22px;
    border-radius: 24px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .home-hero .hero-content {
    width: min(100% - 28px, 920px);
  }

  .section-inner {
    width: min(100% - 24px, 1160px);
    padding: 66px 0;
  }

  .home-birds-band {
    background: #fff;
  }

  .about-identity-band::before {
    left: -48px;
    width: 280px;
    opacity: 0.28;
  }

  .home-birds-band .section-inner:first-child {
    padding-top: 74px;
    padding-bottom: 28px;
  }

  .home-birds-band .center-text {
    width: min(100% - 18px, 520px);
    padding: 58px 0 28px;
  }

  .home-birds-band .center-text h2 {
    font-size: clamp(2.25rem, 11.5vw, 3.4rem);
  }

  .copy-block h2,
  .center-text h2,
  .service-wide h2 {
    font-size: 2.35rem;
  }

  .media-card,
  .image-carousel,
  .activity-image,
  .contact-panel,
  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
  }

  .carousel-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .carousel-caption strong {
    font-size: 1rem;
  }

  .carousel-caption span {
    font-size: 0.84rem;
  }

  .carousel-open {
    width: 38px;
    height: 38px;
  }

  .carousel-control {
    width: 38px;
    height: 38px;
  }

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

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

  .activity-copy {
    min-height: auto;
    padding: 38px 24px 44px;
  }

  .activity-copy h2 {
    font-size: 2.2rem;
  }

  .contact-card {
    gap: 18px;
  }

  .contact-card h2 {
    font-size: clamp(2.35rem, 13vw, 3.6rem);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .photo-cluster {
    min-height: 560px;
  }

  .cluster-photo {
    border-radius: 22px;
    min-height: 245px;
  }

  .cluster-photo:nth-child(1) {
    width: 76%;
    right: 0;
  }

  .cluster-photo:nth-child(2) {
    top: 32%;
    width: 68%;
  }

  .cluster-photo:nth-child(3) {
    width: 66%;
    right: 4%;
  }

  .location-garden-layout > .copy-block {
    order: 1;
    grid-row: 1;
  }

  .location-garden-layout > .photo-cluster {
    order: 2;
    grid-row: 2;
  }


  .service-wide {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

}
