/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: var(--white);
  color: var(--black);
  font-family: 'Noah', sans-serif;
  scroll-behavior: smooth;
}

body{
  margin: 0;
  width: 100%;
  overflow-x: clip;   /* ✅ better than hidden (prevents horizontal scroll without creating scroll container) */
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}


/* =========================
   FONT DECLARATION
========================= */

@font-face {
  font-family: 'Prata';
  src: url('../assets/fonts/Prata-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noah';
  src: url('../assets/fonts/noah-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noah';
  src: url('../assets/fonts/noah-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =========================
   ROOT VARIABLES
========================= */

:root {
  /* Colors */
  --black: #1E1E1E;
  --white: #FEFEFE;
  --primary-green: #2B865F;

  /* Layout */
  --container-desktop: 100px;
  --container-mobile: 24px;

  /* Typography */
  --title-size-desktop: 32px;
  --text-size-desktop: 16px;

  --title-size-mobile: 24px;
  --text-size-mobile: 12px;
}

/* =========================
   CONTAINER
========================= */

.container {
  padding-left: var(--container-desktop);
  padding-right: var(--container-desktop);
}

@media (max-width: 768px) {
  .container {
    padding-left: var(--container-mobile);
    padding-right: var(--container-mobile);
  }
}

/* =========================
   TYPOGRAPHY
========================= */

h1, h2, h3 {
  font-family: 'Prata', serif;
  font-size: var(--title-size-desktop);
  font-weight: 400;
  line-height: 1.3;
}

p {
  font-family: 'Noah', sans-serif;
  font-size: var(--text-size-desktop);
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  h1, h2, h3 {
    font-size: var(--title-size-mobile);
  }

  p {
    font-size: var(--text-size-mobile);
  }
}

/* =========================
   REVEAL ON SCROLL
========================= */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   HOME POPUP
========================= */

.popup-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
  z-index: 120;
}

.popup{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
  z-index: 130;
}

.popup.is-open,
.popup-backdrop.is-open{
  opacity: 1;
  pointer-events: auto;
}

.popup-card{
  width: min(980px, 100%);
  background: #F7F4EE; /* warm off-white like mock */
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
  position: relative;
}

.popup-close{
  position: fixed;
  right: 28px;
  top: 28px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  z-index: 140;
  transition: transform 200ms ease, opacity 200ms ease;
}

.popup-close:hover{
  transform: translateY(-2px);
  opacity: 0.9;
}

.popup-media{
  background: #ddd;
}

.popup-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.popup-body{
  padding: 28px 28px 26px 28px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.popup-title{
  font-family: "Noah", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 14px;
  color: rgba(30,30,30,0.85);
}

.popup-row{
  background: rgba(255,255,255,0.55);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.popup-row-left{
  font-family: "Noah", sans-serif;
  font-weight: 700;
  color: rgba(30,30,30,0.75);
}

.popup-row-right{
  font-family: "Noah", sans-serif;
  font-weight: 800;
  color: rgba(30,30,30,0.8);
  text-align: right;
  line-height: 1.15;
}

.popup-subhead{
  margin-top: 6px;
  font-family: "Noah", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 14px;
  color: rgba(30,30,30,0.85);
}

.popup-price{
  display: grid;
  gap: 12px;
}

.popup-price-item{
  background: rgba(255,255,255,0.55);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.popup-price-item span{
  font-family: "Noah", sans-serif;
  font-weight: 700;
  color: rgba(30,30,30,0.75);
}

.popup-price-item strong{
  font-family: "Noah", sans-serif;
  font-weight: 900;
  color: rgba(30,30,30,0.85);
}

.popup-cta{
  margin-top: 8px;
  height: 56px;
  border-radius: 999px;
  background: #1E1E1E;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Noah", sans-serif;
  font-weight: 800;
  transition: transform 220ms ease, opacity 220ms ease;
}

.popup-cta:hover{
  transform: translateY(-2px);
  opacity: 0.92;
}

.popup-cta-icon{
  font-weight: 900;
}

/* Mobile */
@media (max-width: 768px){
  .popup{
    padding: 16px;
  }

  .popup-card{
    grid-template-columns: 1fr;
  }

  .popup-media{
    height: 260px;
  }

  .popup-body{
    padding: 20px;
  }

  .popup-close{
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1E1E1E;
  color: #fff;
  font-size: 20px;
  display: grid;
  place-items: center;
  z-index: 10;
  cursor: pointer;
  transition: transform 200ms ease, opacity 200ms ease;
}

.popup-close:hover{
  transform: scale(1.05);
  opacity: 0.9;
}

  .popup-cta{
    width: 100%;
  }
}

/* =========================
   NAVBAR
========================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;

  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 16px;

  padding-top: 18px;
  padding-bottom: 18px;

  background: transparent;
  transition: background 260ms ease, box-shadow 260ms ease, padding 260ms ease;
}

.nav.is-scrolled {
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav-burger {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 10px;
}

.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: background 260ms ease;
  margin: 3px 0;
}

.nav.is-scrolled .nav-burger span {
  background: var(--black);
}

.nav-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-cta {
  height: 36px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(254, 254, 254, 0.6);
  color: var(--white);
  font-family: 'Noah', sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.12);
  backdrop-filter: blur(4px);
  transition: color 260ms ease, border-color 260ms ease, background 260ms ease;
}

.nav.is-scrolled .nav-cta {
  border-color: rgba(30,30,30,0.35);
  color: var(--black);
  background: rgba(255,255,255,0.7);
}

/* mobile spacing */
@media (max-width: 768px) {
  .nav {
    top: 18px;
    grid-template-columns: 44px 1fr auto;
  }

  .nav-logo img {
    height: 32px;
  }

  .nav-cta {
    height: 32px;
    padding: 0 3px;
    font-size: 8px;
  }
}

/* =========================
   SLIDE MENU
========================= */

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
  z-index: 50;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(520px, 88vw); /* desktop slide */
  background: var(--white);
  color: var(--black);
  z-index: 60;

  transform: translateX(-102%);
  transition: transform 420ms cubic-bezier(.22,.9,.2,1);
  display: flex;
  flex-direction: column;
  padding: 34px 44px 34px 44px;
}

/* Full screen on mobile */
@media (max-width: 768px) {
  .menu {
    width: 100vw;
    padding: 28px 28px 28px 28px;
  }
}

/* Open State */
.menu.is-open {
  transform: translateX(0);
}

.menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Close button (X) */
.menu-close {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: transparent;
  align-self: flex-start;
  margin-bottom: 40px;
}

.menu-close span {
  position: absolute;
  width: 28px;
  height: 2px;
  background: rgba(30,30,30,0.7);
}

.menu-close span:first-child { transform: rotate(45deg); }
.menu-close span:last-child  { transform: rotate(-45deg); }

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 10px;
}

.menu-links a {
  font-family: 'Prata', serif;
  font-size: 24px;
  line-height: 1.05;
  color: rgba(30,30,30,0.65);
}

@media (max-width: 768px) {
  .menu-links a {
    font-size: 20px; /* like your mobile mock */
  }
}

/* Language section */
.menu-language {
  margin-top: 46px;
}

.menu-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Prata', serif;
  font-size: 20px;
  color: rgba(30,30,30,0.65);
}

.menu-lang-toggle .chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(30,30,30,0.6);
  border-bottom: 2px solid rgba(30,30,30,0.6);
  transform: rotate(45deg);
  transition: transform 260ms ease;
  margin-left: 8px;
}

/* language list */
.menu-lang-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;

  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition: max-height 320ms ease, opacity 260ms ease, transform 260ms ease;
}

.menu-language.is-open .menu-lang-list {
  max-height: 140px;
  opacity: 1;
  transform: translateY(0);
}

.menu-language.is-open .menu-lang-toggle .chev {
  transform: rotate(-135deg);
}

.lang-item {
  font-family: 'Prata', serif;
  font-size: 20px;
  text-align: left;
  color: rgba(30,30,30,0.55);
}

.lang-item.is-active {
  color: rgba(30,30,30,0.75);
}

/* Social (placeholder) */
.menu-social {
  /* margin-top: auto; */
  display: flex;
  gap: 26px;
  align-items: center;
  padding-top: 40px;
}

.menu-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: transform 240ms ease, opacity 240ms ease;
}

.menu-social img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hover effect */
.menu-social a:hover {
  transform: translateY(-4px);
  opacity: 0.75;
}


/* =========================
   HERO SECTION
========================= */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

/* Visible slide */
.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2); /* 10% darkness */
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 2;
}

.hero-subtitle {
  font-family: 'Noah', sans-serif;
  font-size: var(--text-size-desktop);
  margin-bottom: 14px;
}

.hero-title {
  font-family: 'Prata', serif;
  font-size: 40px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 14px;
  }

  .hero-title {
    font-size: 32px;
  }
}

.hero-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.arrow-wrapper {
  animation: arrowFloat 2s ease-in-out infinite;
}

.hero-arrow span {
  display: block;
  width: 24px;
  height: 24px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

@keyframes arrowFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(12px); }
  100% { transform: translateY(0px); }
}

/* HERO CURTAIN (First Load) */

.hero-curtain {
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: 3;              /* above overlay + content */
  transform: translateY(0);
  animation: curtainDown 1.2s ease forwards;
}

/* Curtain slides down and reveals the hero */
@keyframes curtainDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

/* NAV FIRST LOAD (timing)*/

.nav {
  opacity: 0;
  transform: translateY(-10px);
  animation: navIn 600ms ease forwards;
  animation-delay: 1.22s; /* after curtain ends (1.2s) */
}

@keyframes navIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* First Load Animation (after curtain) */
.hero-subtitle,
.hero-title,
.hero-arrow {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s ease forwards;
}

.hero-subtitle { animation-delay: 1.35s; }
.hero-title    { animation-delay: 1.55s; }
.hero-arrow    { animation-delay: 1.85s; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   ABOUT SECTION
========================= */

.about {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}

.about-title {
  margin-bottom: 28px;
}

.about-text {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.about-text p {
  color: rgba(30, 30, 30, 0.75);
}


/* =========================
   OPENING HOURS
========================= */

.opening-hours {
  background: var(--primary-green);
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}

/* Leaf silhouette overlay */
.opening-hours::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/ornament/leaf-silhoutte.png") center / cover no-repeat;
  opacity: 0.18; /* subtle like mock */
  pointer-events: none;
  z-index: 0;
}

.opening-hours .container {
  position: relative;
  z-index: 1;
}

.opening-title {
  color: var(--white);
  margin-bottom: 24px;
  font-size: var(--title-size-desktop);
}

/* White Card */
.opening-card {
  background: var(--white);
  padding: 42px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Left info */
.opening-days {
  font-family: "Noah", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(30, 30, 30, 0.7);
  margin-bottom: 8px;
  font-size: 16px;
  text-transform: uppercase;
}

.opening-time {
  font-family: "Noah", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: rgba(30, 30, 30, 0.7);
  letter-spacing: 0.02em;
}

/* Button */
.opening-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 12px 24px;
  background: var(--black);
  color: var(--white);
  font-family: "Noah", sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: transform 240ms ease, opacity 240ms ease;
}

.opening-btn:hover {
  transform: translateY(-3px);
  opacity: 0.92;
}

/* Mobile layout */
@media (max-width: 768px) {
.opening-title {
    font-size: var(--title-size-mobile);
  }

  .opening-hours {
    padding: 60px 0;
  }

  .opening-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px 28px;
  }

  .opening-time {
    font-size: var(--text-size-mobile);
  }

  .opening-days {
    font-size: var(--title-size-mobile);
  }

  .opening-btn {
    width: 100%;
    min-width: 0;
    margin-top: 10px;
  }
}


/* =========================
   POOL SECTION (INFINITE SLIDER)
========================= */

.pool-section {
  background: #F8F8F8;
  padding: 100px 0;
  overflow-x: clip;
}

.pool-head {
  margin-bottom: 28px;
}

.pool-title {
  margin-bottom: 4px;
  font-size: var(--title-size-desktop);
}

.pool-subtitle {
  color: rgba(30, 30, 30, 0.7);
  max-width: 100%;
  font-size: var(--text-size-desktop);
}

@media (max-width: 768px) {
  .pool-title {
    font-size: var(--title-size-mobile);
  }

  .pool-subtitle {
    font-size: var(--text-size-mobile);
  }
}

/* Bleed outside container to show partial cards */
.pool-bleed {
  margin-left: calc(-1 * var(--container-desktop));
  margin-right: calc(-1 * var(--container-desktop));
}

@media (max-width: 768px) {
  .pool-bleed {
    margin-left: calc(-1 * var(--container-mobile));
    margin-right: calc(-1 * var(--container-mobile));
  }
}

/* Slider viewport (clip area) */
.pool-slider-wrap {
  overflow: hidden;
}

/* Track */
.pool-track {
  display: flex;
  gap: 28px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* Padding to align with container */
.pool-track {
  padding-left: calc(var(--container-desktop) - 120px);
  padding-right: var(--container-desktop);
}

@media (max-width: 768px) {
  .pool-track {
    gap: 18px;
    padding-left: calc(var(--container-mobile) + 60px);
    padding-right: var(--container-mobile);
  }
}

/* You can tweak these to adjust "peek" amount */
:root {
  --pool-card-w: 520px;
  --pool-peek: 140px;
}

@media (max-width: 1200px) {
  :root { --pool-card-w: 460px; --pool-peek: 110px; }
}
@media (max-width: 900px) {
  :root { --pool-card-w: 380px; --pool-peek: 90px; }
}
@media (max-width: 768px) {
  :root { --pool-peek: 0px; }
}

/* Card */
.pool-card {
  flex: 0 0 var(--pool-card-w);
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
}

/* Image */
.pool-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .pool-img img {
    height: 260px;
  }
}

/* Bottom info */
.pool-card-bottom {
  background: var(--white);
  padding: 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pool-card-title {
  font-family: "Prata", serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(30, 30, 30, 0.8);
}

@media (max-width: 768px) {
  .pool-card-title {
    font-size: 16px;
  }
}

/* Explore button */
.pool-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid rgba(30, 30, 30, 0.35);
  color: rgba(30, 30, 30, 0.8);
  font-family: "Noah", sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: transform 240ms ease, opacity 240ms ease;
  white-space: nowrap;
}

.pool-explore:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Footer */
.pool-footer {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pool-nav {
  display: flex;
  gap: 14px;
}

.pool-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(30, 30, 30, 0.35);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: transparent;
  transition: transform 240ms ease, opacity 240ms ease;
}

.pool-arrow:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.pool-arrow img {
  width: 8px;
  height: auto;
}

/* rotate prev arrow */
#poolPrev img {
  transform: rotate(180deg);
}

/* Book button */
.pool-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--black);
  color: var(--white);
  font-family: "Noah", sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: transform 240ms ease, opacity 240ms ease;
}

.pool-book:hover {
  transform: translateY(-3px);
  opacity: 0.92;
}

@media (max-width: 768px) {
  .pool-book {
    min-width: 0;
    font-size: 12px;
  }

  .pool-arrow {
    width: 40px;
    height: 40px;
  }
}

/* =========================
   RESTAURANT SECTION
========================= */

.restaurant-section{
  background: var(--white);
  padding: 100px 0;
}

/* Head */
.restaurant-head{
  text-align: center;
  margin-bottom: 32px;
}

.restaurant-title{
  font-family: "Prata", serif;
  font-size: var(--title-size-desktop);
  margin: 0 0 6px 0;
  color: var(--black);
}

.restaurant-subtitle{
  font-family: "Noah", sans-serif;
  font-size: var(--text-size-desktop);
  color: rgba(30,30,30,.7);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

/* Media wrapper:
   This is the KEY to stop footer "stacking/overlay" */
.restaurant-media{
  width: 100%;
  position: relative;
}

/* Shared image rules */
.restaurant-img{
  border-radius: 0px;
  overflow: hidden;
  background: #eee; /* fallback */
  margin: 0;
}

.restaurant-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* -------- Desktop layout (6/6 grid) -------- */
.restaurant-grid--desktop{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* Left big image takes 6 columns */
.restaurant-grid--desktop .restaurant-img--big{
  grid-column: 1 / span 6;
  aspect-ratio: 6 / 4;
  max-height: 500px;
}

/* Right side (6 columns) becomes 2x2 grid */
.restaurant-grid--desktop .restaurant-smalls{
  grid-column: 7 / span 6;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  max-height: 500px;
}

.restaurant-grid--desktop .restaurant-smalls .restaurant-img{
  aspect-ratio: 3 / 2;
  height: auto;
}

/* Footer (ALWAYS below grid) */
.restaurant-footer{
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  /* extra safety against any global weirdness */
  position: relative;
  z-index: 2;
}

/* View Detail link */
.restaurant-detail{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Noah", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: rgba(30,30,30,.85);
  text-decoration: none;
  transition: transform 240ms ease, opacity 240ms ease;
}

.restaurant-detail img{
  width: 12px;
  height: auto;
}

.restaurant-detail:hover{
  transform: translateY(-2px);
  opacity: .9;
}

/* Our Menu button (never absolute) */
.restaurant-menu{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--black);
  color: var(--white);
  font-family: "Noah", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0;

  position: relative; /* not absolute */
  transition: transform 240ms ease, opacity 240ms ease;
}

.restaurant-menu img{
  width: 16px;
  height: auto;
}

.restaurant-menu:hover{
  transform: translateY(-3px);
  opacity: .92;
}

@media (max-width: 768px){
  .restaurant-menu{
    font-size: 12px;
  }
}

/* -------- Mobile -------- */
.restaurant-grid--mobile{
  display: none;
}

@media (max-width: 768px){
  .restaurant-title{
    font-size: var(--title-size-mobile);
  }

  .restaurant-subtitle{
    font-size: var(--text-size-mobile);
    max-width: 320px;
  }

  /* Hide desktop grid */
  .restaurant-grid--desktop{
    display: none;
  }

  /* Mobile grid:
     Limit overall image block to ~450px "feel" */
  .restaurant-grid--mobile{
    display: grid;
    gap: 20px;
    height: auto;
  }

  .restaurant-grid--mobile .restaurant-img--big{
    height: 260px;
  }

  .restaurant-smalls--mobile{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .restaurant-smalls--mobile .restaurant-img{
    height: 170px;
  }

  /* Reduce footer spacing on mobile so there is no huge gap */
  .restaurant-footer{
    margin-top: 18px;
  }
}

/* Fix ultra-wide screens (>= 1720px) */
@media (min-width: 1720px) {
  .restaurant-grid--desktop,
  .restaurant-footer {
    max-width: 1440px;   /* adjust if you want (1360 / 1400 / 1500) */
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================
   SPA SECTION (NEW CONCEPT)
========================= */

.spa-section{
  background: var(--white);
  padding-bottom: 100px;
}

.spa-head{
  text-align: center;
}

/* Use global sizing system */
.spa-title{
  font-family: "Prata", serif;
  font-size: var(--title-size-desktop);
  margin: 0 0 6px 0;
  color: var(--black);
}

.spa-subtitle{
  font-family: "Noah", sans-serif;
  font-size: var(--text-size-desktop);
  color: rgba(30,30,30,.7);
  line-height: 1.8;
  max-width: 960px;   /* keeps it readable on desktop */
  margin: 0 auto;
}

/* Button (same padding style as other sections) */
.spa-menu{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--black);
  color: var(--white);
  font-family: "Noah", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0;
  margin-top: 22px;
  transition: transform 240ms ease, opacity 240ms ease;
}

.spa-menu img{
  width: 16px;
  height: auto;
}

.spa-menu:hover{
  transform: translateY(-3px);
  opacity: .92;
}

/* Mobile */
@media (max-width: 768px){
  .spa-title{
    font-size: var(--title-size-mobile);
  }

  .spa-subtitle{
    font-size: var(--text-size-mobile);
    max-width: 520px;
  }

  .spa-menu{
    font-size: 12px;
    margin-top: 18px;
  }
}

/* =========================
   EXPERIENCES (AUTO SLIDER)
========================= */

.experience-section{
  background: #F8F8F8;
  padding: 100px 0;
  overflow-x: clip; /* prevent mobile right overflow */
}

.experience-head{
  margin-bottom: 28px;
}

.experience-title{
  margin-bottom: 4px;
  font-size: var(--title-size-desktop);
}

.experience-subtitle{
  color: rgba(30,30,30,0.7);
  font-size: var(--text-size-desktop);
}

@media (max-width: 768px){
  .experience-title{ font-size: var(--title-size-mobile); }
  .experience-subtitle{ font-size: var(--text-size-mobile); }
}

/* bleed outside container (same concept as pool) */
.experience-bleed{
  margin-left: calc(-1 * var(--container-desktop));
  margin-right: calc(-1 * var(--container-desktop));
}

@media (max-width: 768px){
  .experience-bleed{
    margin-left: calc(-1 * var(--container-mobile));
    margin-right: calc(-1 * var(--container-mobile));
  }
}

/* viewport clip */
.experience-slider-wrap{
  overflow: hidden;
}

/* track */
.experience-track{
  display: flex;
  gap: 28px;
  will-change: transform;
  transform: translate3d(0,0,0);
}

/* align with container */
.experience-track{
  padding-left: calc(var(--container-desktop) - 120px);
  padding-right: var(--container-desktop);
}

@media (max-width: 768px){
  .experience-track{
    gap: 18px;
    padding-left: calc(var(--container-mobile) + 60px);
    padding-right: var(--container-mobile);
  }
}

/* slider sizing vars */
:root{
  --exp-card-w: 520px;
  --exp-peek: 140px;
}

@media (max-width: 1200px){
  :root{ --exp-card-w: 460px; --exp-peek: 110px; }
}
@media (max-width: 900px){
  :root{ --exp-card-w: 380px; --exp-peek: 90px; }
}
@media (max-width: 768px){
  :root{ --exp-peek: 0px; }
}

/* card */
.experience-card{
  flex: 0 0 var(--exp-card-w);
  background: #F8F8F8;
  border-radius: 10px;
  overflow: hidden;
}

/* image */
.experience-img img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px){
  .experience-img img{ height: 260px; }
}

/* bottom title */
.experience-card-bottom{
  background: var(--white);
  padding: 22px;
}

.experience-card-title{
  font-family: "Prata", serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(30,30,30,0.8);
}

/* footer button */
.experience-footer{
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.experience-explore{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--black);
  color: var(--white);
  font-family: "Noah", sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: transform 240ms ease, opacity 240ms ease;
}

.experience-explore:hover{
  transform: translateY(-3px);
  opacity: 0.92;
}

@media (max-width: 768px){
  .experience-explore{ font-size: 12px; }
}


/* =========================
   FACILITIES SECTION
========================= */

.facilities-section{
  background: var(--white);
  padding: 100px 0; /* requested */
}

.facilities-head{
  margin-bottom: 28px;
}

.facilities-title{
  margin: 0 0 6px 0;
  font-size: var(--title-size-desktop);
  color: var(--black);
}

.facilities-subtitle{
  font-size: var(--text-size-desktop);
  color: rgba(30,30,30,.7);
  line-height: 1.6;
  max-width: 100%;
}

/* Grid */
.facilities-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 18px;
}

/* Card */
.facility-card{
  margin: 0;
}

.facility-media{
  position: relative;
  overflow: hidden;
  border-radius: 0; /* matches your style direction */
  background: #eee;
}

/* Image */
.facility-media img{
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 420ms ease;
}

/* Bottom label */
.facility-label{
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  margin: 0;
  font-family: "Noah", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  z-index: 3;
  line-height: 1.15;
  text-shadow: 0 8px 18px rgba(0,0,0,0.35);
  transition: transform 260ms ease;
}

/* Hover overlay description */
.facility-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.00) 100%
  );
  opacity: 0;
  transition: opacity 260ms ease;
  z-index: 2;
}

.facility-overlay p{
  margin: 0;
  font-family: "Noah", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  max-width: 92%;
}

/* Hover interactions */
.facility-media:hover img{
  transform: scale(1.04);
}

.facility-media:hover .facility-overlay{
  opacity: 1;
  transform: translateY(0);
}

.facility-media:hover .facility-overlay{
  opacity: 1;
}

.facility-media:hover .facility-label{
  transform: translateY(-100px); /* moves title upward */
}

/* Mobile */
@media (max-width: 768px){
  .facilities-title{
    font-size: var(--title-size-mobile);
  }

  .facilities-subtitle{
    font-size: var(--text-size-mobile);
    max-width: 520px;
  }

  .facilities-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .facility-media img{
    height: 220px;
  }

  .facility-label{
    left: 14px;
    bottom: 12px;
    right: 14px;
    font-size: 14px;
  }

  .facility-overlay{
    padding: 14px;
  }

  .facility-overlay p{
    font-size: 12px;
  }
}


/* =========================
   FOOTER
========================= */

.footer-section{
  background: #1E1E1E;
  color: var(--white);
  padding: 100px 0;
}

/* Top layout */
.footer-top{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* Logo */
.footer-logo{
  width: 180px;
  height: auto;
}

/* Quick links */
.footer-links ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li{
  margin-bottom: 18px;
}

.footer-links a{
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-family: "Noah", sans-serif;
  font-size: 15px;
  transition: opacity 240ms ease;
}

.footer-links a:hover{
  opacity: 0.7;
}

/* Social */
.footer-social h4,
.footer-contact h4{
  font-family: "Noah", sans-serif;
  font-size: 15px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-social-icons{
  display: flex;
  gap: 18px;
}

.footer-social-icons img{
  width: 20px;
  height: 20px;
  opacity: 0.9;
  transition: transform 240ms ease, opacity 240ms ease;
}

.footer-social-icons a:hover img{
  transform: translateY(-3px);
  opacity: 0.7;
}

/* Contact */
.footer-phone{
  display: inline-block;
  margin-bottom: 12px;
  text-decoration: none;
  color: var(--white);
  font-family: "Noah", sans-serif;
  font-weight: 600;
  transition: opacity 240ms ease;
}

.footer-phone:hover{
  opacity: 0.7;
}

.footer-contact p{
  margin: 0 0 10px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* Bottom */
.footer-bottom{
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer-policy a{
  margin-left: 24px;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  transition: opacity 240ms ease;
}

.footer-policy a:hover{
  opacity: 0.7;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px){

  .footer-top{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-logo{
    width: 160px;
  }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 50px;
  }

  .footer-policy a{
    margin-left: 0;
    margin-right: 20px;
  }
}


/* =========================
   MAIN POOL DETAIL CONTENT
========================= */

.pool-detail-section{
  background: var(--white);
  padding: 100px 0; /* requested spacing */
}

.pool-detail-top{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 34px;
}

.pool-detail-title{
  font-family: "Prata", serif;
  font-size: var(--title-size-desktop);
  font-weight: 400;
  color: var(--black);
  margin: 0;
  line-height: 1.2;
}

.pool-detail-desc{
  font-family: "Noah", sans-serif;
  font-size: var(--text-size-desktop);
  color: rgba(30,30,30,.75);
  line-height: 1.9;
  margin: 0;
  max-width: 920px;
}

/* Gallery layout (desktop) */
/* GALLERY GRID (NO EMPTY GAP) */
.pool-detail-gallery{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;  /* big + 2 small columns */
  grid-template-rows: 1fr 1fr;         /* 2 rows */
  gap: 20px;
  align-items: stretch;
}

/* Desktop: limit gallery height */
@media (min-width: 769px){
  .pool-detail-gallery{
    max-height: 500px;     /* your request */
    overflow: hidden;      /* keeps it clean */
  }
}

/* Mobile: DO NOT limit height (so pricing won't overlap) */
@media (max-width: 768px){
  .pool-detail-gallery{
    max-height: none;
    height: auto;
    overflow: visible;     /* important */
    margin-bottom: 40px;   /* creates clear space before pricing */
  }
}

/* Big image spans 2 rows + 1 column */
.pool-detail-img--big{
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

/* Every tile must clip and fill */
.pool-detail-img{
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  background: #eee;
}

/* Force images to fill their tile */
.pool-detail-img img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* MOBILE: stack layout */
@media (max-width: 768px){
  .pool-detail-gallery{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }

  .pool-detail-img--big{
    grid-column: 1 / -1;  /* full width */
    grid-row: auto;
    height: 260px;        /* set a nice height for the big image */
  }

  .pool-detail-img{
    height: 120px;        /* small tiles height */
  }
}

/* Price block */
.pool-detail-price{
  margin-top: 26px;
}

.pool-price-title{
  font-family: "Noah", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 16px;
  color: rgba(30,30,30,.85);
  margin: 0 0 14px 0;
  text-transform: uppercase;
}

.pool-price-list{
  display: grid;
  gap: 18px;
  max-width: 100%;
}

/* Card */
.pool-price-card{
  position: relative;
  background: var(--white);
  border: 1px solid rgba(30,30,30,0.10);
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.pool-price-accent{
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: var(--primary-green);
}

.pool-price-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 34px 28px 42px; /* extra for accent */
}

.pool-price-label{
  font-family: "Noah", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: rgba(30,30,30,.85);
}

.pool-price-value{
  font-family: "Noah", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: rgba(30,30,30,.85);
}

/* Hover animation */
.pool-price-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.10);
}

/* CTA */
.pool-price-cta{
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.pool-ticket-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--black);
  color: var(--white);
  font-family: "Noah", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 240ms ease, opacity 240ms ease;
}

.pool-ticket-btn:hover{
  transform: translateY(-3px);
  opacity: .92;
}

/* -------------------------
   Mobile
------------------------- */
@media (max-width: 768px){
  .pool-detail-top{
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 22px;
  }

  .pool-detail-title{
    font-size: var(--title-size-mobile);
  }

  .pool-detail-desc{
    font-size: var(--text-size-desktop); /* keep readable like your mock */
    line-height: 1.9;
    max-width: 100%;
  }

  .pool-detail-gallery{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pool-detail-img--big{
    max-height: none;
    aspect-ratio: 6 / 4;
  }

  .pool-detail-smalls{
    gap: 16px;
  }

  .pool-price-title{
    font-size: 14px;
  }

  .pool-price-row{
    padding: 22px 22px 22px 36px;
  }

  .pool-price-label{
    font-size: 16px;
  }

  .pool-price-value{
    font-size: 18px;
  }

  .pool-price-cta{
    justify-content: stretch;
  }

  .pool-ticket-btn{
    width: 100%;
    font-size: 14px;
  }
}

/* =========================
   GALLERY SECTION
========================= */

.gallery-section{
  background: var(--white);
  padding: 100px 0;
}

.gallery-head{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  text-align: center;
}

.gallery-title{
  margin: 0;
  font-size: var(--title-size-desktop);
  color: var(--black);
}

.gallery-ig-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--black);
  color: var(--white);
  font-family: "Noah", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 240ms ease, opacity 240ms ease;
}

.gallery-ig-btn img{
  width: 16px;
  height: auto;
}

.gallery-ig-btn:hover{
  transform: translateY(-3px);
  opacity: .92;
}

/* Grid base */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px; /* requested 20px */
}

/* Desktop/Mobile toggles */
.gallery-grid--mobile{ display: none; }
@media (max-width: 768px){
  .gallery-grid--desktop{ display: none; }
  .gallery-grid--mobile{ display: grid; }
}

/* Columns helpers */
.col-3{ grid-column: span 3; }
.col-4{ grid-column: span 4; }
.col-5{ grid-column: span 5; }
.col-6{ grid-column: span 6; }
.col-8{ grid-column: span 8; }

/* Gallery item */
.gallery-item{
  height: 300px;           /* SAME HEIGHT for all */
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
}

/* Image */
.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transform: scale(1);
  transition: transform 700ms cubic-bezier(.22,.61,.36,1);
}

/* Hover zoom */
.gallery-item:hover img{
  transform: scale(1.08);
}

/* subtle overlay */
.gallery-item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 400ms ease;
  pointer-events: none;
}

.gallery-item:hover::after{
  background: rgba(0,0,0,0.12);
}

/* optional lift */
.gallery-item{
  transition: transform 400ms ease;
}
.gallery-item:hover{
  transform: translateY(-4px);
}

/* Mobile typography */
@media (max-width: 768px){
  .gallery-title{ font-size: var(--title-size-mobile); }
  .gallery-ig-btn{ font-size: 12px; }
  .gallery-grid{ gap: 14px; }
  .gallery-item{ height: 220px; }
}

/* =========================
   LIGHTBOX (optional but included)
========================= */
.gallery-lightbox{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,0.78);
  z-index: 9999;
}

.gallery-lightbox.is-open{
  display: flex;
}

.gallery-lightbox-img{
  max-width: min(980px, 92vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}

.gallery-lightbox-close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease;
}

.gallery-lightbox-close:hover{
  transform: scale(1.06);
  background: rgba(255,255,255,0.22);
}


/* =========================
   CONTACT PAGE
========================= */

.contact-page-section{
  background: var(--white);
  padding: 100px 0;
}

.contact-page-card{
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 70px;
  align-items: stretch;
}

/* Left */
.contact-page-left{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.contact-page-copy{
  max-width: 320px;
}

.contact-page-title{
  font-family: "Prata", serif;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 400;
  color: var(--black);
  margin: 0 0 28px 0;
}

.contact-page-desc{
  font-family: "Noah", sans-serif;
  font-size: var(--text-size-desktop);
  line-height: 1.7;
  color: rgba(30,30,30,.85);
  margin: 0;
}

.contact-page-social{
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.contact-page-social a{
  font-family: "Noah", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  transition: opacity 240ms ease, transform 240ms ease;
}

.contact-page-social a:hover{
  opacity: .7;
  transform: translateY(-2px);
}

/* Right */
.contact-page-right{
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.contact-page-info{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px 56px;
}

.contact-page-block{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-page-label{
  font-family: "Noah", sans-serif;
  font-size: var(--text-size-desktop);
  color: rgba(30,30,30,.45);
}

.contact-page-link,
.contact-page-text{
  font-family: "Noah", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  font-weight: 700;
  margin: 0;
  text-decoration: none;
}

.contact-page-link:hover{
  opacity: .75;
}

/* Image */
.contact-page-image{
  margin: 0;
  overflow: hidden;
  background: #eee;
}

.contact-page-image img{
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

/* Map replaces image */
.contact-page-map{
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 6px;
  background: #eee;
}

.contact-page-map iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px){
  .contact-page-section{
    padding: 100px 0;
  }

  .contact-page-card{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-page-left{
    gap: 36px;
  }

  .contact-page-copy{
    max-width: 100%;
  }

  .contact-page-title{
    font-size: 36px;
    margin-bottom: 20px;
  }

  .contact-page-desc{
    font-size: var(--text-size-desktop);
    line-height: 1.8;
  }

  .contact-page-social{
    gap: 22px;
    margin-top: 0;
  }

  .contact-page-info{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contact-page-label{
    font-size: 14px;
  }

  .contact-page-link,
  .contact-page-text{
    font-size: 15px;
    line-height: 1.7;
  }

  .contact-page-image img{
    max-height: none;
    height: 260px;
  }

  .contact-page-map{
    height: 260px;
  }
}

/* =========================
   EXPERIENCE PAGE
========================= */

.experience-page-section{
  background: var(--white);
  padding: 100px 0;
}

/* General row spacing */
.experience-page-row{
  margin-bottom: 46px;
}

.experience-page-row--split{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: center;
}

.experience-page-row--full{
  display: grid;
  gap: 18px;
}

/* Images */
.experience-page-image,
.experience-page-card-image{
  margin: 0;
  overflow: hidden;
  background: #eee;
}

.experience-page-image img,
.experience-page-card-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.experience-page-image{
  height: 420px;
}

.experience-page-image--wide{
  height: 360px;
}

/* Text block */
.experience-page-content{
  max-width: 560px;
}

.experience-page-content--full{
  max-width: 100%;
}

.experience-page-title{
  font-family: "Prata", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  margin: 0 0 12px 0;
  line-height: 1.25;
}

.experience-page-text{
  font-family: "Noah", sans-serif;
  font-size: 14px;
  color: rgba(30,30,30,.78);
  line-height: 1.8;
  margin: 0;
}

/* Middle 2-column cards */
.experience-page-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 46px;
}

.experience-page-card{
  display: grid;
  gap: 14px;
}

.experience-page-card-image{
  height: 330px;
}

.experience-page-card-body{
  display: grid;
  gap: 8px;
}

.experience-page-card-title{
  font-family: "Prata", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  margin: 0;
  line-height: 1.3;
}

.experience-page-card-text{
  font-family: "Noah", sans-serif;
  font-size: 14px;
  color: rgba(30,30,30,.78);
  line-height: 1.8;
  margin: 0;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px){
  .experience-page-section{
    padding: 100px 0;
  }

  .experience-page-row{
    margin-bottom: 34px;
  }

  .experience-page-row--split{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .experience-page-grid{
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 34px;
  }

  .experience-page-image{
    height: 250px;
  }

  .experience-page-image--wide{
    height: 240px;
  }

  .experience-page-card-image{
    height: 240px;
  }

  .experience-page-title{
    font-size: 18px;
  }

  .experience-page-card-title{
    font-size: 18px;
  }

  .experience-page-text,
  .experience-page-card-text{
    font-size: var(--text-size-mobile);
    line-height: 1.9;
  }

  .experience-page-content{
    max-width: 100%;
  }
}

/* =========================
   PRIVACY POLICY
========================= */

.privacy-section{
  background: var(--white);
  padding: 100px 0;
}

.privacy-head{
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.privacy-title{
  font-family: "Prata", serif;
  font-size: var(--title-size-desktop);
  color: var(--black);
  margin: 0 0 12px 0;
}

.privacy-subtitle{
  font-family: "Noah", sans-serif;
  font-size: var(--text-size-desktop);
  color: rgba(30,30,30,.7);
  line-height: 1.8;
  margin: 0;
}

/* Content */
.privacy-content{
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.privacy-block h3{
  font-family: "Noah", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 8px 0;
}

.privacy-block p{
  font-family: "Noah", sans-serif;
  font-size: var(--text-size-desktop);
  color: rgba(30,30,30,.75);
  line-height: 1.8;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px){
  .privacy-title{
    font-size: var(--title-size-mobile);
  }

  .privacy-subtitle,
  .privacy-block p{
    font-size: var(--text-size-mobile);
  }

  .privacy-content{
    gap: 22px;
  }
}