:root {
  --color-accent: #968563;
  --color-black: #000;
  --color-white: #fff;
  --color-border: rgba(0, 0, 0, 0.18);
  --color-shadow: rgba(0, 0, 0, 0.14);
  --header-height: 5.25rem;
  --shell-padding: 1.5rem;
  --hero-height: min(70vh, 46rem);
  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}
#overview,
#location,
#highlights,
#gallery,
#download {
  scroll-margin-top: 120px;
}

@font-face {
  font-family: "GiSans";
  src: url("./fonts/GiSansDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "GiSans";
  src: url("./fonts/GiSansDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "GiSans";
  src: url("./fonts/GiSansDisplay-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "GiSans";
  src: url("./fonts/GiSansDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "GiSans", sans-serif;
  color: var(--color-black);
  background:
    radial-gradient(circle at top, rgba(150, 133, 99, 0.08), transparent 36%),
    #f8f5ee;
}

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

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

button {
  font: inherit;
}



.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-height);
  padding: 1rem;
  background: rgba(248, 245, 238, 0.92);
  backdrop-filter: blur(12px);
}

.brand-left img {
  width: clamp(9rem, 14vw, 13rem);
}

.brand-right img {
  width: clamp(3.75rem, 7vw, 5.75rem);
}

.desktop-nav,
.section-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.5vw, 1.75rem);
}

.desktop-nav a,
.section-nav a,
.back-link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.desktop-nav a::after,
.section-nav a::after,
.back-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--easing);
}

.desktop-nav a:hover::after,
.section-nav a:hover::after,
.back-link:hover::after,
.section-nav .is-active::after {
  transform: scaleX(1);
}

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

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

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

.icon-search,
.icon-menu {
  position: relative;
  display: inline-block;
}

.icon-search {
  width: 1rem;
  height: 1rem;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.icon-search::after {
  content: "";
  position: absolute;
  right: -0.3rem;
  bottom: -0.25rem;
  width: 0.5rem;
  height: 1.5px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.icon-menu {
  width: 1rem;
  height: 1px;
  background: currentColor;
  box-shadow:
    0 -0.35rem 0 currentColor,
    0 0.35rem 0 currentColor;
}

.mobile-menu {
  position: fixed;
  inset: calc(var(--header-height) + 0.5rem) var(--shell-padding) auto;
  z-index: 25;
}

.mobile-menu-panel {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(150, 133, 99, 0.22);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
}

.mobile-menu-panel a {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
}

.hero {
  position: relative;
}

.hero-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1em;
  position: absolute;
  z-index: 1;
  right: 1%;
}

.hero-media {
  position: relative;
  min-height: var(--hero-height);
  overflow: hidden;
  background: #d6d4cf;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: var(--hero-height);
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 34%);
}

/*.hero-golf-ball {
  position: absolute;
  top: 40%;
  left: 51%;
  width: clamp(9rem, 19vw, 16rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9) 34%, rgba(217, 217, 217, 0.95) 70%, rgba(172, 172, 172, 0.92) 100%);
  box-shadow:
    inset -1.1rem -1.4rem 2.1rem rgba(0, 0, 0, 0.08),
    inset 1.2rem 1rem 1.75rem rgba(255, 255, 255, 0.9),
    0 1.25rem 2.75rem rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  animation: spinBall 9.5s linear infinite, floatBall 6.8s ease-in-out infinite;
}

.hero-golf-ball::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(215, 215, 215, 0.8) 0 25%, transparent 27%) 0 0 / 1.15rem 1.15rem;
  opacity: 0.5;
  mix-blend-mode: multiply;
  animation: rotateDimples 7.6s linear infinite reverse;
}*/

.hero-golf-ball {
  position: absolute;
  top: 40%;
  left: 51%;
  width: clamp(9rem, 19vw, 16rem);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  z-index: 2;
}

#golfBallCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-copy {
  position: absolute;
  left: clamp(1.5rem, 5vw, 4.6rem);
  bottom: clamp(1.5rem, 7vw, 4rem);
  z-index: 2;
  max-width: min(34rem, 78vw);
  color: var(--color-white);
  text-transform: uppercase;
}

.hero-copy .eyebrow,
.hero-copy .subtitle,
.hero-copy .caption {
  margin: 0;
}

.hero-copy .eyebrow {
  margin-bottom: 0.35rem;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.25rem, 3vw, 4.6rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.hero-copy .subtitle {
  margin-top: 0.7rem;
  font-size: clamp(0.95rem, 1.4vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.36em;
}

.hero-copy .caption {
  margin-top: 1.6rem;
  max-width: 34rem;
  font-size: clamp(0.7rem, 1vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  opacity: 0.92;
}

.image-note {
  position: absolute;
  left: 0.45rem;
  bottom: 0.35rem;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.74rem;
}

.logo-section {
  display: grid;
  place-items: center;
  padding: 1em 0 5em;
}

.logo-lockup {
  width: min(25rem, 86vw);
}

.overview-section {
  border-top: 1px solid rgba(150, 133, 99, 0.75);
}

.overview-copy {
  padding: 4em 0 ;
  text-align: center;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 1.8vw, 1.45rem);
  margin-bottom: 1.75rem;
}

.section-heading h2 {
  margin: 0;
  color: var(--color-accent);
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-heading-line {
  width: clamp(5.5rem, 16vw, 14.5rem);
  height: 1px;
  background: rgba(150, 133, 99, 0.85);
}

.overview-lead,
.overview-body {
  margin: 0;
}

.overview-lead {
  font-size: clamp(1.5rem, 2.7vw, 3rem);
  font-weight: 500;
  line-height: 1.28;
}

.overview-body {
  max-width: 70rem;
  margin: 1rem auto 0;
  font-size: clamp(1rem, 1.35vw, 1.5rem);
  font-weight: 400;
  line-height: 1.55;
}

.overview-visual {
  position: relative;
  overflow: hidden;
  background: #d6d4cf;
}

.overview-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.overview-note {
  position: absolute;
  left: 0.45rem;
  bottom: 0.45rem;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(0.72rem, 0.95vw, 0.92rem);
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.highlights-section {
  padding: clamp(4rem, 7vw, 6rem) 0 0;
}

.highlights-copy {
  padding: 0 1.5rem;
  text-align: center;
}

.highlights-lead,
.highlights-body {
  margin: 0;
}

.highlights-lead {
  font-size: clamp(1.45rem, 2.5vw, 2.7rem);
  font-weight: 500;
  line-height: 1.28;
}

.highlights-body {
  max-width: 62rem;
  margin: 1rem auto 0;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.55;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.highlight-item {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 8.9rem;
  padding: 1.2rem 1.1rem 1.1rem;
  text-align: center;
}

.highlight-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(150, 133, 99, 0.75);
}

.highlight-item:nth-child(4n + 1)::before {
  display: none;
}

.highlight-item:nth-child(n + 5) {
  border-top: 1px solid rgba(150, 133, 99, 0.75);
}

.highlight-item:nth-child(9) {
  grid-column: 2;
}

.highlight-item:nth-child(10) {
  grid-column: 3;
}

.highlight-icon {
  display: grid;
  place-items: center;
  margin-bottom: 0.8rem;
}

.highlight-icon img {
  width:100px;
  height: auto;
  object-fit: contain;
  filter: sepia(1) saturate(0.6) hue-rotate(350deg) brightness(0.78);
}

.highlight-item h3 {
  margin: 0;
  color: var(--color-accent);
  font-size: clamp(1.15rem, 1.55vw, 1.55rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.highlights-dots {
  display: none;
}

[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms var(--easing),
    transform 700ms var(--easing);
}

[data-animate="fade-down"] {
  transform: translateY(-16px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatBall {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@keyframes spinBall {
  from {
    transform: translate(-50%, -50%) rotateZ(-8deg) rotateY(0deg) rotateX(9deg);
  }

  to {
    transform: translate(-50%, -50%) rotateZ(-8deg) rotateY(360deg) rotateX(9deg);
  }
}

@keyframes rotateDimples {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .section-nav {
    gap: 0.95rem;
  }

  .desktop-nav a,
  .section-nav a {
    font-size: 0.84rem;
  }

  .hero-golf-ball {
    left: 56%;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .section-nav {
    display: none;
  }

  .hero-topbar {
    padding-inline: 0.25rem;
  }

  .back-link {
    padding-left: 0.35rem;
  }
}

@media (min-width: 901px) {
  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --shell-padding: 1rem;
    --header-height: 4.75rem;
    --hero-height: 75svh;
  }

  .site-header {
    gap: 0.75rem;
  }

  .brand-left img {
    width: 8.4rem;
  }

  .brand-right img {
    width: 3.9rem;
  }

  .header-actions {
    gap: 0.25rem;
  }

  

  .hero-image {
    min-height: var(--hero-height);
  }

  .hero-golf-ball {
    top: 37%;
    left: 50%;
    width: clamp(7rem, 34vw, 9.5rem);
  }

  .hero-copy {
    left: 1.4rem;
    right: 1.4rem;
    bottom: 2rem;
    max-width: none;
  }

  .hero-copy .eyebrow {
    margin-bottom: 0.2rem;
    letter-spacing: 0.12em;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 10vw, 3rem);
    line-height: 0.98;
  }

  .hero-copy .subtitle {
    font-size: 0.88rem;
    letter-spacing: 0.24em;
  }

  .hero-copy .caption {
    margin-top: 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    line-height: 1.5;
  }

  .logo-section {
    padding-top: 3.4rem;
  }

  .logo-lockup {
    width: min(17rem, 78vw);
  }

  .overview-section {
    padding-top: 3rem;
  }

  .overview-copy {
    padding: 1.9rem 1rem 1.5rem;
  }

  .section-heading {
    gap: 0.75rem;
    margin-bottom: 1.15rem;
  }

  .section-heading-line {
    width: 22vw;
  }

  .overview-lead {
    font-size: clamp(1.3rem, 6vw, 1.9rem);
  }

  .overview-body {
    margin-top: 1rem;
    font-size: 0.96rem;
    line-height: 1.6;
  }

  

  .overview-image {
    min-height: 22rem;
  }

  .overview-note {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    font-size: 0.75rem;
  }

  .highlights-section {
    padding-top: 3rem;
  }

  .highlights-copy {
    padding: 0 1rem;
  }

  .highlights-lead {
    font-size: clamp(1.25rem, 5.8vw, 1.85rem);
  }

  .highlights-body {
    margin-top: 0.9rem;
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .highlights-grid {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    margin-top: 2rem;
    padding: 0 1rem 0.3rem;
    border-top: 0;
    border-bottom: 0;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .highlights-grid::-webkit-scrollbar {
    display: none;
  }

  .highlights-grid::-webkit-scrollbar-thumb {
    background: rgba(150, 133, 99, 0.45);
    border-radius: 999px;
  }

  .highlights-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1rem;
    padding: 0 1rem;
  }

  .highlight-dot {
    width: 0.45rem;
    height: 0.45rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(150, 133, 99, 0.28);
    cursor: pointer;
    transition:
      transform 180ms ease,
      background-color 180ms ease,
      width 180ms ease;
  }

  .highlight-dot.is-active {
    width: 1.2rem;
    background: var(--color-accent);
  }

  .highlight-item {
    flex: 0 0 12.5rem;
 
    padding: 1.15rem 1rem 1rem;
    scroll-snap-align: start;
  }

  .highlight-item::before {
    display: none;
  }

  .highlight-item:nth-child(n + 5) {
    border-top: none;
  }

  .highlight-item:nth-child(9),
  .highlight-item:nth-child(10) {
    grid-column: auto;
  }

  .highlight-icon {
    width: 3.15rem;
    height: 3.15rem;
  }

  .highlight-item h3 {
    font-size: 1.2rem;
  }
}

.location-section {
  padding-top: clamp(4rem, 7vw, 6rem);
}

.location-hero {
  position: relative;
  overflow: hidden;
  background: #d7d0c2;
}

.location-hero-image {
  width: 100%;
  min-height: 32rem;
  object-fit: cover;
  transform: scale(1.03);
  animation: imageDrift 12s ease-in-out infinite alternate;
  filter: saturate(0.95) contrast(1.03);
}

.location-note {
  position: absolute;
  left: 0.45rem;
  bottom: 0.35rem;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(0.72rem, 0.95vw, 0.92rem);
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.location-copy {
  padding: clamp(3rem, 6vw, 5rem) 1.5rem clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.location-lead,
.location-body {
  margin: 0;
}

.location-lead {
  font-size: clamp(1.5rem, 2.6vw, 2.85rem);
  font-weight: 500;
  line-height: 1.28;
}

.location-body {
  max-width: 61rem;
  margin: 1rem auto 0;
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  font-weight: 400;
  line-height: 1.55;
}

.location-metrics {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin: 0 clamp(2rem, 5vw, 4.25rem);
}

.location-metric {
  position: relative;
  grid-column: span 4;
  padding: 1.3rem 1rem 1.15rem;
  text-align: center;
}

.location-metric::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(150, 133, 99, 0.75);
}

.location-metric:nth-child(1)::before,
.location-metric:nth-child(4)::before {
  display: none;
}

.location-metric:nth-child(n + 4) {
  border-top: 1px solid rgba(150, 133, 99, 0.75);
}

.location-metric:nth-child(4) {
  grid-column: 3 / span 4;
}

.location-metric:nth-child(5) {
  grid-column: 7 / span 4;
}

.location-metric h3,
.location-metric p {
  margin: 0;
  color: var(--color-accent);
}

.location-metric h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.6rem);
  font-weight: 500;
  line-height: 1.2;
}

.location-metric p {
  margin-top: 0.45rem;
  font-size: clamp(1.55rem, 2.2vw, 2.45rem);
  font-weight: 600;
  line-height: 1;
}

.location-map-shell {
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem) 0;
}

.location-map-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(150, 133, 99, 0.35);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 18%),
    #e8e0d0;
}

.location-map-image {
  width: 100%;
  min-height: 28rem;
  object-fit: cover;
  filter: saturate(0.9) brightness(1.02);
}

.map-pin {
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow:
    0 0 0 0 rgba(150, 133, 99, 0.35),
    0 0.2rem 0.55rem rgba(0, 0, 0, 0.18);
  animation: pulsePin 2.4s ease-out infinite;
}

.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.map-pin-one {
  top: 32%;
  left: 47%;
}

.map-pin-two {
  top: 58%;
  left: 62%;
  animation-delay: 0.6s;
}

.map-pin-three {
  top: 66%;
  left: 37%;
  animation-delay: 1.1s;
}

@keyframes imageDrift {
  0% {
    transform: scale(1.03) translateX(0);
  }

  100% {
    transform: scale(1.08) translateX(-1.2%);
  }
}

@keyframes pulsePin {
  0% {
    box-shadow:
      0 0 0 0 rgba(150, 133, 99, 0.36),
      0 0.2rem 0.55rem rgba(0, 0, 0, 0.18);
  }

  70% {
    box-shadow:
      0 0 0 0.9rem rgba(150, 133, 99, 0),
      0 0.2rem 0.55rem rgba(0, 0, 0, 0.18);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(150, 133, 99, 0),
      0 0.2rem 0.55rem rgba(0, 0, 0, 0.18);
  }
}

@media (max-width: 767px) {
  .location-section {
    padding-top: 3rem;
  }

  .location-hero-image {
    min-height: 18rem;
  }

  .location-note {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    font-size: 0.75rem;
  }

  .location-copy {
    padding: 2rem 1rem 1.5rem;
  }

  .location-lead {
    font-size: clamp(1.3rem, 5.8vw, 1.95rem);
  }

  .location-body {
    margin-top: 0.9rem;
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .location-metrics {
    grid-template-columns: 1fr;
    margin: 0 1rem;
  }

  .location-metric {
    grid-column: auto;
    padding: 1rem 0.9rem;
  }

  .location-metric::before {
    display: none;
  }

  .location-metric:nth-child(n + 2) {
    border-top: 1px solid rgba(150, 133, 99, 0.75);
  }

  .location-metric:nth-child(4),
  .location-metric:nth-child(5) {
    grid-column: auto;
  }

  .location-metric h3 {
    font-size: 1.06rem;
  }

  .location-metric p {
    font-size: 1.9rem;
  }

  .location-map-shell {
    padding: 1.35rem 1rem 0;
  }

  .location-map-frame {
    border-radius: 1rem;
  }

  .location-map-image {
    min-height: 18rem;
  }

.map-pin {
  width: 0.9rem;
  height: 0.9rem;
  }
}

.zones-section {
  padding-top: clamp(4rem, 7vw, 6rem);
}

.zones-copy {
  padding: 0 1.5rem;
  text-align: center;
}

.zones-lead,
.zones-body {
  margin: 0;
}

.zones-lead {
  font-size: clamp(1.5rem, 2.5vw, 2.7rem);
  font-weight: 500;
  line-height: 1.28;
}

.zones-body {
  max-width: 62rem;
  margin: 1rem auto 0;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.55;
}

.zones-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: start;
  margin-top: clamp(2.4rem, 4vw, 3.2rem);
  padding: 0 clamp(1rem, 4vw, 4rem);
}

.zone-tab {
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  padding: 0.75rem 0.4rem;
  border: 0;
  background: transparent;
  color: var(--color-accent);
  cursor: pointer;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.zone-tab:hover,
.zone-tab.is-active {
  transform: translateY(-4px);
}

.zone-tab-icon {
  display: grid;
  place-items: center;
  margin-bottom: 0.35rem;
  
}

.zone-tab-icon img {
  width: 200px;
  height: auto;
  object-fit: contain;
  
}

.zone-tab-top,
.zone-tab-bottom {
  font-size: clamp(0.9rem, 1.1vw, 1.15rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.zone-tab-title {
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.zone-panel {
  margin-top: clamp(3rem, 6vw, 4.6rem);
}

.zone-panel.is-transitioning {
  animation: panelSwap 520ms var(--easing);
}

.zone-panel-copy {
  padding: 0 1.5rem 2rem;
  text-align: center;
}

.zone-panel-title,
.zone-panel-body {
  margin: 0;
}

.zone-panel-title {
  color: var(--color-accent);
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
}

.zone-panel-body {
  max-width: 68rem;
  margin: 1rem auto 0;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  font-weight: 400;
  line-height: 1.55;
}

.zone-panel-visual {
  position: relative;
  overflow: hidden;
  background: #d8d5c8;
}

.zone-panel-image {
  width: 100%;
  min-height: 32rem;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1.02);
}

.zone-panel-note {
  position: absolute;
  left: 0.45rem;
  bottom: 0.35rem;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(0.72rem, 0.95vw, 0.92rem);
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.zone-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 0;
  border-bottom: 1px solid rgba(150, 133, 99, 0.75);
}

.zone-feature {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  padding: 1.45rem 1.2rem 1.8rem;
  text-align: center;
}

.zone-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(150, 133, 99, 0.75);
}

.zone-feature:first-child::before {
  display: none;
}

.zone-feature-icon {
  display: grid;
  place-items: center;
  w/*idth: 3.4rem;
  height: 3.4rem;*/
 
}

.zone-feature-icon img {
  width: 100px;
    height: auto;
    object-fit: contain;
}

.zone-feature p {
  margin: 0;
  color: var(--color-accent);
  font-size: clamp(1.08rem, 1.4vw, 1.55rem);
  font-weight: 500;
  line-height: 1.18;
}

@keyframes panelSwap {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .zones-section {
    padding-top: 3rem;
  }

  .zones-copy {
    padding: 0 1rem;
  }

  .zones-lead {
    font-size: clamp(1.3rem, 5.8vw, 1.95rem);
  }

  .zones-body {
    margin-top: 0.9rem;
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .zones-tabs {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    padding: 0 1rem 0.25rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .zones-tabs::-webkit-scrollbar {
    display: none;
  }

  .zones-tabs::-webkit-scrollbar-thumb {
    background: rgba(150, 133, 99, 0.4);
    border-radius: 999px;
  }

  .zone-tab {
    flex: 0 0 10.75rem;
    scroll-snap-align: start;
  }

  


  .zone-tab-title {
    font-size: 1.2rem;
  }

  .zone-panel {
    margin-top: 2.25rem;
  }

  .zone-panel-copy {
    padding: 0 1rem 1.5rem;
  }

  .zone-panel-title {
    font-size: 1.35rem;
    line-height: 1.18;
  }

  .zone-panel-body {
    margin-top: 0.85rem;
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .zone-panel-image {
    min-height: 18rem;
  }

  .zone-panel-note {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    font-size: 0.75rem;
  }

  .zone-features {
    grid-template-columns: 1fr;
    margin: 1em;
  }

  .zone-feature {
    padding: 1.1rem 1rem 1.25rem;
  }

  .zone-feature::before {
    display: none;
  }

  .zone-feature + .zone-feature {
    border-top: 1px solid rgba(150, 133, 99, 0.75);
  }

  .zone-feature p {
    font-size: 1.05rem;
    line-height: 1.24;
  }
}

.sanctuary-section {
  padding-top: clamp(4rem, 7vw, 6rem);
  border-bottom: 1px solid rgba(150, 133, 99, 0.75);
}

.sanctuary-copy,
.sanctuary-zone-copy {
  text-align: center;
}

.sanctuary-copy {
  padding: 0 1.5rem 2.25rem;
}

.sanctuary-title,
.sanctuary-body,
.sanctuary-zone-title,
.sanctuary-zone-body {
  margin: 0;
}

.sanctuary-title,
.sanctuary-zone-title {
  color: var(--color-accent);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
}

.sanctuary-body,
.sanctuary-zone-body {
  max-width: 74rem;
  margin: 1rem auto 0;
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  font-weight: 400;
  line-height: 1.55;
}

.sanctuary-hero {
  position: relative;
  overflow: hidden;
  background: #d8d3c6;
}

.sanctuary-hero-image {
  width: 100%;
  min-height: 31rem;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
}

.sanctuary-note {
  position: absolute;
  left: 0.45rem;
  bottom: 0.35rem;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(0.72rem, 0.95vw, 0.92rem);
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.sanctuary-highlights {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem) 0;
}

.sanctuary-highlight {
  position: relative;
  grid-column: span 4;
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  padding: 1.25rem 1rem 1.2rem;
  text-align: center;
}

.sanctuary-highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(150, 133, 99, 0.75);
}

.sanctuary-highlight:nth-child(1)::before,
.sanctuary-highlight:nth-child(4)::before {
  display: none;
}

.sanctuary-highlight:nth-child(n + 4) {
  border-top: 1px solid rgba(150, 133, 99, 0.75);
}

.sanctuary-highlight:nth-child(4) {
  grid-column: 4 / span 3;
}

.sanctuary-highlight:nth-child(5) {
  grid-column: 7 / span 3;
}

.sanctuary-highlight-icon,
.sanctuary-zone-card-icon {
  display: grid;
  place-items: center;
  /*width: 3.3rem;
  height: 3.3rem*/;
  
}

.sanctuary-highlight-icon img,
.sanctuary-zone-card-icon img {
  /*width: 1.45rem;
  height: 1.45rem;
  object-fit: contain;
  filter: sepia(1) saturate(0.6) hue-rotate(350deg) brightness(0.78);*/
  width: 100px;
    height: auto;
    object-fit: contain;
    /*filter: sepia(1) saturate(0.6) hue-rotate(350deg) brightness(0.78);*/
}

.sanctuary-highlight p {
  margin: 0;
  color: var(--color-accent);
  font-size: clamp(1.08rem, 1.35vw, 1.45rem);
  font-weight: 500;
  line-height: 1.18;
}

.sanctuary-zone-copy {
  padding: clamp(3rem, 5vw, 4.4rem) 1.5rem 2rem;
}

.sanctuary-zones-track {
  position: relative;
  display: flex;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 2rem 2.2rem;
  padding: 0 clamp(1rem, 4vw, 4rem) clamp(2rem, 4vw, 3rem);
}

/*.sanctuary-zones-track::before {
  content: "";
  position: absolute;
  left: clamp(1rem, 4vw, 4rem);
  right: clamp(1rem, 4vw, 4rem);
  top: calc(48% - 1rem);
  height: 1px;
  background: rgba(150, 133, 99, 0.75);
}*/

.sanctuary-zone-card {
  position: relative;
  display: grid;
  align-content: start;
  justify-items: center;
  grid-template-rows: auto auto auto auto 1fr;
  height: 100%;
  text-align: center;
}

.sanctuary-zone-card:nth-child(-n + 3) {
  grid-column: span 2;
}

.sanctuary-zone-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.sanctuary-zone-card:nth-child(5) {
  grid-column: 4 / span 2;
}



.sanctuary-zone-card:nth-child(1)::before,
.sanctuary-zone-card:nth-child(4)::before {
  display: none;
}

.sanctuary-zone-label,
.sanctuary-zone-card h4,
.sanctuary-zone-description {
  margin: 0;
}

.sanctuary-zone-label {
  color: var(--color-accent);
  font-size: clamp(1rem, 1.3vw, 1.35rem);
  font-weight: 600;
  text-transform: uppercase;
}

.sanctuary-zone-image {
  width: 100%;
  aspect-ratio: 1.22 / 0.78;
  margin-top: 0.65rem;
  object-fit: cover;
}

.sanctuary-zone-card-icon {
  margin-top: 0.45rem;
}

.sanctuary-zone-card h4 {
  margin-top: 0.7rem;
  color: var(--color-accent);
  font-size: clamp(1.15rem, 1.45vw, 1.45rem);
  font-weight: 500;
  text-transform: uppercase;
}

.sanctuary-zone-description {
  margin-top: 0.45rem;
  max-width: 21rem;
  font-size: clamp(0.95rem, 1vw, 1.02rem);
  font-weight: 400;
  line-height: 1.42;
}

.sanctuary-zone-dots {
  display: none;
}

.highlights-grid,
.zones-tabs,
.sanctuary-zones-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.grove-showcase-section {
  padding-top: clamp(4rem, 7vw, 6rem);
  border-bottom: 1px solid rgba(150, 133, 99, 0.75);
}

.grove-showcase-copy {
  padding: 0 1.5rem 2.25rem;
  text-align: center;
}

.grove-showcase-title,
.grove-showcase-body {
  margin: 0;
}

.grove-showcase-title {
  color: var(--color-accent);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
}

.grove-showcase-body {
  max-width: 74rem;
  margin: 1rem auto 0;
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  font-weight: 400;
  line-height: 1.55;
}

.grove-showcase-visual {
  position: relative;
  overflow: hidden;
  background: #d8d3c6;
}

.grove-showcase-image {
  width: 100%;
  min-height: 31rem;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
}

.grove-showcase-note {
  position: absolute;
  left: 0.45rem;
  bottom: 0.35rem;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(0.72rem, 0.95vw, 0.92rem);
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.grove-showcase-highlights {
  display: grid;
  margin: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem) 0;
  border-top: 1px solid rgba(150, 133, 99, 0.75);
}

.grove-showcase-highlights.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grove-showcase-highlights.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grove-showcase-highlights.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 36rem;
  margin-inline: auto;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.grove-showcase-highlight {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  padding: 1.25rem 1rem 1.2rem;
  text-align: center;
}

.grove-showcase-highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(150, 133, 99, 0.75);
}

.grove-showcase-highlights.four-up .grove-showcase-highlight:first-child::before,
.grove-showcase-highlights.three-up .grove-showcase-highlight:first-child::before,
.grove-showcase-highlights.two-up .grove-showcase-highlight:first-child::before {
  display: none;
}

.grove-showcase-icon {
  display: grid;
  place-items: center;
  /*width: 3.3rem;
  height: 3.3rem;*/
  border: 1px solid rgba(150, 133, 99, 0.85);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.grove-showcase-icon img {
  width: 100px;
  height: auto;
  object-fit: contain;
  /*filter: sepia(1) saturate(0.6) hue-rotate(350deg) brightness(0.78);*/
}

.grove-showcase-highlight p {
  margin: 0;
  color: var(--color-accent);
  font-size: clamp(1.08rem, 1.35vw, 1.45rem);
  font-weight: 500;
  line-height: 1.18;
}

.gallery-section {
  padding: clamp(4rem, 7vw, 6rem) 0 1rem;
}

.gallery-copy {
  padding: 0 1.5rem 2rem;
  text-align: center;
}

.gallery-carousel {
  position: relative;
  overflow: hidden;
}

.gallery-viewport {
  overflow: hidden;
  padding: 0;
}

.gallery-track {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  will-change: transform;
  touch-action: pan-y;
}

.gallery-slide {
  position: relative;
  flex: 0 0 57.5%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 1.1rem 2.8rem rgba(0, 0, 0, 0.1);
  transform: scale(0.93);
  transform-origin: center;
  opacity: 0.56;
  filter: saturate(0.84);
  transition:
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-slide.is-prev {
  transform: scale(0.94) translateX(0.35rem);
}

.gallery-slide.is-next {
  transform: scale(0.94) translateX(-0.35rem);
}

.gallery-slide.is-active {
  transform: scale(1);
  opacity: 1;
  filter: saturate(1);
  box-shadow: 0 1.7rem 4rem rgba(0, 0, 0, 0.14);
}

.gallery-slide-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.34 / 0.82;
  object-fit: cover;
  object-position: var(--gallery-focus-x, 50%) center;
}

.gallery-slide-note {
  position: absolute;
  left: 0.45rem;
  bottom: 0.35rem;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(0.68rem, 0.85vw, 0.84rem);
  line-height: 1.25;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  border: 1px solid rgba(150, 133, 99, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-accent);
  box-shadow:
    0 0.6rem 1.6rem rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.gallery-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow:
    0 0.75rem 1.9rem rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.gallery-arrow-icon {
  display: grid;
  place-items: center;
  width: 1.2rem;
  height: 1.2rem;
}

.gallery-arrow-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-arrow-prev {
  left: calc(21% + 0.35rem);
}

.gallery-arrow-next {
  right: calc(21% + 0.35rem);
}

.disclaimer-section {
  background: #b79049;
  color: #fff;
  margin-top: 1rem;
}

.disclaimer-inner {
  
  margin: 0 auto;
  padding: clamp(2rem, 3.8vw, 2.85rem) clamp(1.5rem, 3vw, 3rem);
}

.disclaimer-title {
  margin: 0 0 0.9rem;
  font-size: clamp(1.5rem, 2vw, 1.95rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.disclaimer-copy {
  margin: 0;
  font-size: clamp(0.74rem, 0.82vw, 0.84rem);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0.005em;
  opacity: 0.98;
}

.disclaimer-copy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.enquiry-section {
  border-top: 2px solid rgba(150, 133, 99, 0.78);
  background: #fff;
}

.enquiry-panel {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: clamp(2.4rem, 4vw, 4rem) clamp(1.5rem, 3vw, 4rem)
    clamp(2.7rem, 4.5vw, 4.35rem);
}

.enquiry-panel-header {
  margin-bottom: 1.6rem;
}

.enquiry-panel-header h2 {
  margin: 0;
  color: #2c2c2c;
  font-size: clamp(2rem, 2.8vw, 2.9rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.enquiry-form .fieldwrapper_row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem 1.15rem;
  align-items: center;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form button {
  font-family: inherit;
}

.enquiry-form .fieldwrapper {
  min-width: 0;
}

.enquiry-form .fieldwrapper-name,
.enquiry-form .fieldwrapper-email,
.enquiry-form .fieldwrapper-phone {
  grid-column: span 4;
}

.enquiry-form .fieldwrapper input:not([type="checkbox"]),
.enquiry-form .fieldwrapper select {
  width: 100%;
  min-height: 3.45rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.34);
  border-radius: 0;
  background: #fff;
  color: #1e1e1e;
  font-size: 1rem;
  font-weight: 400;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.enquiry-form .fieldwrapper input:not([type="checkbox"])::placeholder,
.enquiry-form .fieldwrapper select {
  color: rgba(0, 0, 0, 0.58);
}

.enquiry-form .fieldwrapper input:not([type="checkbox"]):focus,
.enquiry-form .fieldwrapper select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.22rem rgba(150, 133, 99, 0.14);
}

.enquiry-form .field-error {
  display: block;
  min-height: 0.9rem;
  padding-top: 0.35rem;
  color: #b4413c;
  font-size: 0.74rem;
  line-height: 1.2;
}

.enquiry-form .homeally_dwnld_checklist {
  grid-column: 1 / span 9;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 0.2rem;
}

.enquiry-form .homeally_dwnld_checklist input[type="checkbox"] {
  flex: 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  accent-color: var(--color-accent);
}

.enquiry-form .homeally_dwnld_checklist span {
  color: #2f2f2f;
  font-size: 1rem;
  line-height: 1.45;
}

.enquiry-form .form-cta-btn {
  grid-column: 10 / -1;
  display: flex;
  justify-content: flex-end;
  align-self: stretch;
}

.enquiry-form .submit-btn {
  width: min(100%, 13rem);
  min-height: 3.45rem;
  padding: 0.95rem 1.6rem;
  border: 0;
  border-radius: 0;
  background: #b79049;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.enquiry-form .submit-btn:hover {
  background: #ab8441;
  box-shadow: 0 0.9rem 1.8rem rgba(183, 144, 73, 0.22);
  transform: translateY(-1px);
}

.floating-enquiry-button {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 42;
  padding: 1.2rem 0.95rem;
  border: 0;
  border-radius: 1rem 0 0 1rem;
  background: #b79049;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: translateY(-50%);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-enquiry-button:hover {
  background: #ab8441;
  transform: translateY(-50%) translateX(-2px);
}

.enquiry-popup {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.enquiry-popup[hidden] {
  display: none;
}

.enquiry-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 15, 10, 0.58);
  backdrop-filter: blur(7px);
}

.enquiry-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  max-height: min(86vh, 820px);
  overflow: auto;
  padding: clamp(1.25rem, 2vw, 1.8rem);
  background:
    linear-gradient(180deg, rgba(150, 133, 99, 0.08), transparent 22%),
    #fbf8f1;
  box-shadow: 0 1.8rem 4rem rgba(0, 0, 0, 0.24);
}

.enquiry-popup-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  color: #1f1f1f;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.enquiry-popup-header {
  padding-right: 2.5rem;
  margin-bottom: 1.5rem;
}

.enquiry-popup-kicker {
  margin: 0 0 0.4rem;
  color: var(--color-accent);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.enquiry-popup-header h2 {
  margin: 0;
  font-size: clamp(2rem, 2vw, 2.9rem);
  font-weight: 600;
  line-height: 1.06;
}

.enquiry-popup-copy {
  max-width: 42rem;
  margin: 0.75rem 0 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: 1rem;
  line-height: 1.6;
}

.enquiry-popup-dialog .enquiry-form .fieldwrapper_row {
  grid-template-columns: 1fr;
  gap: 0.15rem;
}

.enquiry-popup-dialog .enquiry-form .fieldwrapper-name,
.enquiry-popup-dialog .enquiry-form .fieldwrapper-email,
.enquiry-popup-dialog .enquiry-form .fieldwrapper-phone,
.enquiry-popup-dialog .enquiry-form .homeally_dwnld_checklist,
.enquiry-popup-dialog .enquiry-form .form-cta-btn {
  grid-column: 1 / -1;
}

.enquiry-popup-dialog .enquiry-form .fieldwrapper input:not([type="checkbox"]) {
  min-height: 3.25rem;
}

.enquiry-popup-dialog .enquiry-form .homeally_dwnld_checklist {
  padding-top: 0.65rem;
}

.enquiry-popup-dialog .enquiry-form .form-cta-btn {
  justify-content: stretch;
  margin-top: 0.45rem;
}

.enquiry-popup-dialog .enquiry-form .submit-btn {
  width: 100%;
  min-height: 3.25rem;
  font-size: 1.1rem;
}

.enquiry-form .iti {
  width: 100%;
}

.enquiry-form .iti__country-container {
  z-index: 4;
}

.enquiry-form .iti__selected-flag {
  padding: 0 0.9rem 0 1rem;
  background: transparent;
}

.enquiry-form .iti--allow-dropdown input,
.enquiry-form .iti--separate-dial-code input {
  padding-left: 6.2rem !important;
}

.enquiry-form .iti__arrow {
  border-top-color: rgba(0, 0, 0, 0.58);
}

.enquiry-form .iti__country-list {
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12);
  font-family: inherit;
}

body.enquiry-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .sanctuary-section {
    padding-top: 3rem;
    border-bottom: none
  }

  .sanctuary-copy {
    padding: 0 1rem 1.75rem;
  }

  .sanctuary-title,
  .sanctuary-zone-title {
    font-size: 1.3rem;
    line-height: 1.18;
  }

  .sanctuary-body,
  .sanctuary-zone-body {
    margin-top: 0.85rem;
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .sanctuary-hero-image {
    min-height: 18rem;
  }

  .sanctuary-note {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    font-size: 0.75rem;
  }

  .sanctuary-highlights {
    grid-template-columns: 1fr;
    margin: 1.5rem 1rem 0;
  }

  .sanctuary-highlight {
    grid-column: auto;
    padding: 1rem 0.9rem;
  }

  .sanctuary-highlight::before {
    display: none;
  }

  .sanctuary-highlight:nth-child(n + 2) {
    border-top: 1px solid rgba(150, 133, 99, 0.75);
  }

  .sanctuary-highlight:nth-child(4),
  .sanctuary-highlight:nth-child(5) {
    grid-column: auto;
  }

  .sanctuary-zone-copy {
    padding: 2.25rem 1rem 1.5rem;
  }

  .sanctuary-zones-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 1rem 0.35rem;
    scroll-padding-inline: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .sanctuary-zones-track::before {
    display: none;
  }

  .sanctuary-zones-track::-webkit-scrollbar {
    display: none;
  }

  .sanctuary-zones-track::-webkit-scrollbar-thumb {
    background: rgba(150, 133, 99, 0.4);
    border-radius: 999px;
  }

  .sanctuary-zone-card,
  .sanctuary-zone-card:nth-child(-n + 3),
  .sanctuary-zone-card:nth-child(4),
  .sanctuary-zone-card:nth-child(5) {
    flex: 0 0 100%;
    max-width: 100%;
    grid-column: auto;
    scroll-snap-align: start;
  }

  .sanctuary-zone-card::before {
    display: none;
  }

  .sanctuary-zone-image {
    width: 100%;
    aspect-ratio: 1.08 / 0.82;
  }

  .sanctuary-zone-card h4 {
    font-size: 1.12rem;
  }

  .sanctuary-zone-description {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .sanctuary-zone-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    padding: 1rem 1rem 0;
  }

  .sanctuary-zone-dot {
    width: 0.45rem;
    height: 0.45rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(150, 133, 99, 0.28);
    transition:
      background-color 180ms ease,
      width 180ms ease;
  }

  .sanctuary-zone-dot.is-active {
    width: 1.2rem;
    background: var(--color-accent);
  }

  .grove-showcase-section {
    padding-top: 3rem;
    border-bottom: none;
  }

  .grove-showcase-copy {
    padding: 0 1rem 1.75rem;
  }

  .grove-showcase-title {
    font-size: 1.3rem;
    line-height: 1.18;
  }

  .grove-showcase-body {
    margin-top: 0.85rem;
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .grove-showcase-image {
    min-height: 18rem;
  }

  .grove-showcase-note {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    font-size: 0.75rem;
  }

  .grove-showcase-highlights,
  .grove-showcase-highlights.two-up {
    grid-template-columns: 1fr;
    margin: 1.5rem 1rem 0;
    max-width: none;
    grid-template-columns: 1fr !important;
    border-top: none;
  }

  .grove-showcase-highlight {
    padding: 1rem 0.9rem;
  }

  .grove-showcase-highlight::before {
    display: none;
  }

  .grove-showcase-highlight + .grove-showcase-highlight {
    border-top: 1px solid rgba(150, 133, 99, 0.75);
  }

  .gallery-section {
    padding-top: 3rem;
  }

  .gallery-copy {
    padding: 0 1rem 1.5rem;
  }

  .gallery-track {
    gap: 0.45rem;
  }

  .gallery-slide {
    flex-basis: 85%;
    transform: scale(0.95);
  }

  .gallery-slide-image {
    aspect-ratio: 1.08 / 0.98;
  }

  .gallery-slide-note {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    font-size: 0.74rem;
  }

  .gallery-arrow {
    width: 2.55rem;
    height: 2.55rem;
  }

  .gallery-arrow-icon {
    width: 1rem;
    height: 1rem;
  }

  .gallery-arrow-prev {
    left: calc(6% + 0.15rem);
  }

  .gallery-arrow-next {
    right: calc(6% + 0.15rem);
  }

  .disclaimer-inner {
    padding: 1.75rem 1rem 1.9rem;
  }

  .disclaimer-title {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
  }

  .disclaimer-copy {
    font-size: 0.78rem;
    line-height: 1.55;
  }

  .enquiry-panel {
    padding: 2rem 1rem 2.35rem;
  }

  .enquiry-panel-header {
    margin-bottom: 1.1rem;
  }

  .enquiry-panel-header h2 {
    font-size: 1.7rem;
  }

  .enquiry-form .fieldwrapper_row {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }

  .enquiry-form .fieldwrapper-name,
  .enquiry-form .fieldwrapper-email,
  .enquiry-form .fieldwrapper-phone,
  .enquiry-form .homeally_dwnld_checklist,
  .enquiry-form .form-cta-btn {
    grid-column: 1 / -1;
  }

  .enquiry-form .fieldwrapper input:not([type="checkbox"]),
  .enquiry-form .fieldwrapper select {
    min-height: 3.15rem;
    font-size: 0.96rem;
  }

  .enquiry-form .homeally_dwnld_checklist {
    align-items: flex-start;
    gap: 0.75rem;
    padding-top: 0.6rem;
  }

  .enquiry-form .homeally_dwnld_checklist span {
    font-size: 0.94rem;
  }

  .enquiry-form .form-cta-btn {
    justify-content: stretch;
    margin-top: 0.45rem;
  }

  .enquiry-form .submit-btn {
    width: 100%;
    min-height: 3.15rem;
    font-size: 1.15rem;
    letter-spacing: 0.1em;
  }

  .floating-enquiry-button {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 0.9rem 1.25rem;
    border-radius: 50px 50px 0 0;
    font-size: 0.84rem;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .floating-enquiry-button:hover {
    transform: translateY(-1px);
  }

  .enquiry-popup {
    align-items: end;
    padding: 0;
  }

  .enquiry-popup-dialog {
    width: 100%;
    max-height: 90vh;
    padding: 1.1rem 1rem 1.5rem;
  }

  .enquiry-popup-header {
    padding-right: 2.1rem;
    margin-bottom: 1rem;
  }

  .enquiry-popup-header h2 {
    font-size: 1.8rem;
  }

  .enquiry-popup-copy {
    font-size: 0.95rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
