:root {
  --ink: #25221e;
  --cream: #f4f1eb;
  --paper: #fbfaf7;
  --sand: #bea582;
  --sand-deep: #a88b65;
  --line: rgba(37, 34, 30, 0.42);
  --white-line: rgba(255, 255, 255, 0.7);
  --header-h: 96px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --kaiki-duration: 1.25s;
  --kaiki-slow: 2s;
  --kaiki-hover: .3s;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Jost", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { border: 0; cursor: pointer; }

.skip-link {
  position: fixed;
  z-index: 200;
  left: 18px;
  top: -80px;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: fixed;
  z-index: 80;
  inset: 0 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(28px, 5vw, 72px);
  color: #fff;
  transform: translate3d(0, 0, 0);
  transition: background .3s ease, color .3s ease, height .3s ease, box-shadow .3s ease, transform .4s ease;
}
.site-header.scrolled {
  height: 82px;
  color: #fff;
  background: rgba(190, 165, 130, .96);
  box-shadow: 0 8px 35px rgba(50, 41, 31, .08);
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: currentColor; }
.brand-seal {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
}
.brand-seal::before, .brand-seal::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 36px;
  height: 1px;
  background: currentColor;
  transform: translateX(-50%);
}
.brand-seal::before { top: 17px; }
.brand-seal::after { bottom: 17px; }
.brand-seal span { font: italic 500 28px/1 "Cormorant Garamond", serif; }
.brand-copy { display: grid; line-height: 1; letter-spacing: .22em; }
.brand-copy strong { font-family: "Cormorant Garamond", serif; font-size: 23px; font-weight: 500; letter-spacing: .18em; }
.brand-copy small { margin-top: 7px; font-size: 8px; font-weight: 400; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.outline-button, .dark-button, .light-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 25px;
  border: 1px solid currentColor;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .11em;
  transition: color .3s ease-in-out, border-color .3s ease-in-out, transform .3s ease-in-out;
}
.outline-button::before, .dark-button::before, .light-button::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: width .4s ease-in-out, height .4s ease-in-out;
}
.outline-button:hover::before, .dark-button:hover::before, .light-button:hover::before,
.outline-button:focus-visible::before, .dark-button:focus-visible::before, .light-button:focus-visible::before { width: 330%; height: 720%; }
.outline-button > *, .dark-button > *, .light-button > * { position: relative; z-index: 1; }
.outline-button i {
  width: 42px;
  height: 1px;
  position: relative;
  background: currentColor;
}
.outline-button i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.outline-button::before { background: #fff; }
.outline-button:hover, .outline-button:focus-visible { color: var(--ink); }
.outline-button:hover i, .dark-button:hover i, .light-button:hover i { transform: translateX(7px); }
.language-button {
  min-width: 43px;
  height: 43px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 12px;
  letter-spacing: .1em;
  padding-top: 12px;
  padding-left: 12px;
}
.menu-button {
  width: 74px;
  height: 65px;
  background: transparent;
  color: inherit;
  padding: 6px 4px;
  display: grid;
  justify-items: end;
  align-content: center;
  gap: 7px;
}
.menu-button span { font-size: 13px; letter-spacing: .08em; }
.menu-button i { width: 50px; height: 1px; display: block; background: currentColor; transition: width .35s ease-in, transform .35s ease-in; }
.menu-button i:nth-of-type(2) { width: 38px; }
.menu-button:hover i:nth-of-type(2) { width: 50px; }

.menu-panel {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(320px, 42%) 1fr;
  background: var(--paper);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -24px, 0);
  transition: opacity .4s ease-in-out, visibility .4s ease-in-out, transform .6s ease-in-out;
}
.menu-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }
.menu-visual { background: linear-gradient(90deg, rgba(28,28,23,.15), rgba(28,28,23,.04)), url("images/121400.jpg") center/cover; }
.menu-content { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 7vh clamp(45px, 8vw, 140px); }
.menu-close { position: absolute; right: 5vw; top: 32px; background: transparent; font: 300 52px/1 "Cormorant Garamond", serif; }
.eyebrow { margin: 0 0 14px; font-size: 11px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; }
.menu-content nav { display: grid; margin: 3vh 0; }
.menu-content nav a { display: grid; grid-template-columns: 46px 1fr; align-items: baseline; padding: 10px 0; border-bottom: 1px solid rgba(37,34,30,.15); }
.menu-panel .menu-content > * { opacity: 0; transform: translate3d(0, 45px, 0); transition: opacity .6s ease, transform .6s ease; }
.menu-panel.open .menu-content > * { opacity: 1; transform: translate3d(0, 0, 0); }
.menu-panel.open .menu-content > *:nth-child(2) { transition-delay: .12s; }
.menu-panel.open .menu-content > *:nth-child(3) { transition-delay: .22s; }
.menu-panel.open .menu-content > *:nth-child(4) { transition-delay: .32s; }
.menu-content nav span { font-size: 10px; letter-spacing: .15em; color: var(--sand-deep); }
.menu-content nav b { font: 400 clamp(34px, 4vw, 64px)/1.05 "Cormorant Garamond", serif; transition: transform .25s ease, color .25s ease; }
.menu-content nav a:hover b { transform: translateX(12px); color: var(--sand-deep); }
.menu-contact { display: flex; flex-wrap: wrap; gap: 14px 30px; font-size: 13px; letter-spacing: .07em; }

.hero { min-height: 100svh; position: relative; color: #fff; background: #1d2f2b; }
.hero-background {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(19, 28, 26, .28), rgba(14, 20, 19, .48)), url("images/img_1.jpg");
  background-size: cover;
  background-position: center 46%;
  transform: scale(1.015);
}
.home-hero-background {
  background-image: linear-gradient(rgba(19, 28, 26, .32), rgba(14, 20, 19, .56)), url("images/booking-2026/770223041.jpg");
  background-position: center 43%;
}
.hero-copy {
  position: absolute;
  z-index: 2;
  top: clamp(110px, 13vh, 155px);
  left: 50%;
  width: min(980px, 88vw);
  text-align: center;
  transform: translateX(-50%);
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.hero-copy h1 {
  margin: 3px 0 2px;
  font: italic 400 clamp(48px, 6.1vw, 88px)/.95 "Cormorant Garamond", serif;
  letter-spacing: -.035em;
}
.hero-copy > p:last-child { margin: 15px 0 0; font-size: clamp(16px, 1.5vw, 22px); letter-spacing: .03em; }
.hero-grid {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 27vh);
  border-top: 1px solid var(--white-line);
}
.hero-tile {
  overflow: hidden;
  position: relative;
  display: block;
  border-right: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
  isolation: isolate;
}
.hero-tile:nth-child(3n) { border-right: 0; }
.hero-tile-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale3d(0, 0, 1);
  transform-origin: center;
  transition:
    transform .9s cubic-bezier(.16, 1, .3, 1),
    opacity .18s ease;
  will-change: transform, opacity;
}
.hero-tile::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.06) 88%);
  opacity: .9;
  transition: opacity .45s ease;
}
.hero-tile:hover .hero-tile-image, .hero-tile:focus-visible .hero-tile-image {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
.hero-tile:hover::after, .hero-tile:focus-visible::after { opacity: .72; }
.hero-tile .tile-arrow, .hero-tile .tile-label { z-index: 2; }
.tile-arrow {
  position: absolute;
  top: 25px;
  right: 27px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 21px;
  transition: transform .35s ease-in, background .35s ease-in, color .35s ease-in;
}
.hero-tile:hover .tile-arrow, .hero-tile:focus-visible .tile-arrow { transform: rotate(45deg); background: var(--sand); color: #fff; border-color: var(--sand); }
.tile-label { position: absolute; left: 25px; bottom: 24px; display: flex; align-items: center; gap: 16px; }
.tile-label i { width: 35px; height: 1px; background: currentColor; }
.tile-label b { font-size: clamp(16px, 1.6vw, 23px); font-weight: 300; letter-spacing: .12em; }

.intro-section, .gallery-section, .products-section { padding: clamp(90px, 11vw, 170px) clamp(24px, 5vw, 72px); background: var(--cream); }
.section-heading { width: min(920px, 90vw); margin: 0 auto clamp(65px, 7vw, 110px); text-align: center; }
.section-heading h2, .destination-editorial h2, .reservation-content h2, .contact-copy h2, .location-strip h2 {
  margin: 0;
  font: 400 clamp(48px, 5.8vw, 84px)/.95 "Cormorant Garamond", serif;
  letter-spacing: -.035em;
}
.section-heading h2 em, .destination-editorial h2 em, .reservation-content h2 em, .contact-copy h2 em, .location-strip h2 em { color: var(--sand-deep); font-weight: 400; }
.section-heading .lead { max-width: 760px; margin: 26px auto 0; font-size: clamp(16px, 1.6vw, 20px); line-height: 1.75; }
.editorial-grid {
  width: min(1230px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(200px, .95fr) minmax(330px, 1.05fr) minmax(200px, .95fr);
  align-items: center;
  gap: clamp(28px, 4vw, 70px);
}
.editorial-image { margin: 0; overflow: hidden; }
.editorial-image.portrait { height: 600px; }
.editorial-image.landscape { height: 440px; }
.editorial-image img { height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.editorial-image:hover img { transform: scale(1.04); }
.editorial-copy { text-align: left; }
.mountain-mark { height: 75px; width: 84px; margin: 0 auto 8px; position: relative; color: var(--sand-deep); text-align: center; }
.mountain-mark span { font: 400 84px/40px "Cormorant Garamond", serif; }
.mountain-mark i { display: block; width: 54px; height: 1px; margin: 15px auto 0; background: currentColor; }
.editorial-copy h3 { margin: 5px 0 30px; font: 400 clamp(48px, 5vw, 72px)/.95 "Cormorant Garamond", serif; text-align: center; }
.editorial-copy h3 em { color: var(--sand-deep); font-weight: 400; }
.editorial-copy p { margin: 0 0 19px; font-size: 16px; line-height: 1.72; }
.dark-button { margin-top: 14px; color: var(--ink); }
.dark-button::before { background: var(--ink); }
.dark-button:hover, .dark-button:focus-visible { color: #fff; background: transparent; }
.dark-button i, .light-button i { font-style: normal; font-size: 23px; line-height: 1; }

.cinematic-banner {
  min-height: 66vh;
  display: grid;
  place-items: center;
  position: relative;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  isolation: isolate;
  animation: kaikiBackgroundDrift 17s ease-in-out infinite alternate;
}
.cinematic-banner::before { content: ""; position: absolute; z-index: -1; inset: 0; background: rgba(18, 20, 17, .48); }
.stay-banner { background-image: url("images/130644.jpg"); }
.destination-banner { background-image: url("images/destinationB.jpg"); }
.banner-inner { max-width: 840px; padding: 90px 24px; text-align: center; }
.banner-monogram { display: grid; place-items: center; width: 70px; height: 70px; margin: 0 auto 15px; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; font: italic 400 34px/1 "Cormorant Garamond", serif; }
.banner-inner h2 { margin: 0; font: italic 400 clamp(48px, 6vw, 84px)/.95 "Cormorant Garamond", serif; }
.banner-inner p { max-width: 700px; margin: 25px auto; font-size: clamp(16px, 1.6vw, 20px); line-height: 1.6; }
.light-button { color: #fff; }
.light-button::before { background: #fff; }
.light-button:hover, .light-button:focus-visible { color: var(--ink); background: transparent; }

.destination-section { padding: clamp(80px, 9vw, 145px) clamp(24px, 5vw, 72px); background: var(--paper); }
.destination-editorial {
  width: min(1230px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: .82fr 1.14fr .82fr;
  gap: clamp(28px, 4vw, 65px);
  align-items: center;
  text-align: center;
}
.destination-editorial figure { margin: 0; height: 510px; overflow: hidden; }
.destination-editorial figure:first-child { --kaiki-base-y: -48px; transform: translateY(var(--kaiki-base-y)); }
.destination-editorial figure:last-child { --kaiki-base-y: 52px; height: 410px; transform: translateY(var(--kaiki-base-y)); }
.destination-editorial img { width: 100%; height: 100%; object-fit: cover; }
.destination-editorial h2 { margin-bottom: 30px; }
.destination-editorial p:not(.eyebrow) { text-align: left; font-size: 16px; line-height: 1.73; }

@media (min-width: 1051px) {
  .editorial-grid > figure.kaiki-scroll-image,
  .destination-editorial > figure.kaiki-scroll-image {
    transform: translate3d(0, calc(var(--kaiki-base-y, 0px) + var(--kaiki-parallax-y, 0px)), 0);
    will-change: transform;
    backface-visibility: hidden;
  }
}

.gallery-section { background: #efebe4; }
.gallery-grid { width: min(1240px, 100%); margin: auto; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 8px; }
.gallery-card { position: relative; overflow: hidden; background: #d4cec4; }
.gallery-card img { height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .5s ease; }
.gallery-card::after { content: "↗"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 34px; color: #fff; background: rgba(20,22,18,.28); opacity: 0; transition: opacity .35s ease; }
.gallery-card:hover img { transform: scale(1.05); filter: saturate(.85); }
.gallery-card:hover::after { opacity: 1; }
.gallery-card span { position: absolute; z-index: 2; bottom: 12px; left: 15px; color: #fff; font-size: 11px; letter-spacing: .18em; }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.products-section { background: var(--paper); }
.products-layout { width: min(1280px, 100%); margin: auto; display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 45px; align-items: start; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(37,34,30,.18); border: 1px solid rgba(37,34,30,.18); }
.product-card { min-height: 440px; padding: 34px; background: var(--paper); display: flex; flex-direction: column; position: relative; }
.product-card img { width: 130px; height: 150px; object-fit: contain; align-self: center; margin-bottom: 18px; transition: transform .45s var(--ease); }
.product-card:hover img { transform: translateY(-8px) rotate(-2deg); }
.product-card > p { margin: 0 0 9px; color: var(--sand-deep); font-size: 10px; font-weight: 500; letter-spacing: .25em; }
.product-card h3 { margin: 0 0 9px; font: 500 29px/1.05 "Cormorant Garamond", serif; }
.product-card > span { font-size: 14px; line-height: 1.6; }
.product-card footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 24px; }
.product-card footer b { font-size: 14px; font-weight: 400; }
.add-product { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--ink); background: transparent; font-size: 25px; transition: color .25s, background .25s; }
.add-product:hover { color: #fff; background: var(--ink); }
.order-card { position: sticky; top: 110px; padding: 36px; color: #fff; background: var(--sand); }
.cart-list { min-height: 80px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.4); border-bottom: 1px solid rgba(255,255,255,.4); }
.cart-list p { margin: 8px 0; }
.cart-row { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 10px; padding: 7px 0; font-size: 13px; }
.cart-row button { width: 24px; height: 24px; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.65); }
.cart-total { display: flex; justify-content: space-between; padding: 18px 0 8px; }
.cart-total strong { font-weight: 500; }
.order-card .dark-button { width: 100%; color: #fff; }
.order-card .dark-button::before { background: #fff; }
.order-card .dark-button:hover, .order-card .dark-button:focus-visible { color: var(--ink); background: transparent; }
.order-card small { display: block; margin-top: 17px; line-height: 1.55; }

.static-form { display: grid; gap: 18px; }
.static-form label { display: grid; gap: 7px; font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.static-form input, .static-form select, .static-form textarea { width: 100%; border: 0; border-bottom: 1px solid currentColor; outline: 0; border-radius: 0; background: transparent; padding: 9px 0; text-transform: none; letter-spacing: normal; }
.static-form textarea { resize: vertical; }
.static-form input:focus, .static-form select:focus, .static-form textarea:focus { border-bottom-width: 2px; }
.compact-form { margin-top: 18px; }

.reservation-section { min-height: 850px; display: grid; grid-template-columns: 47% 53%; background: #eee7dc; }
.reservation-image { min-height: 100%; background: linear-gradient(rgba(30,28,24,.08), rgba(30,28,24,.18)), url("images/121400.jpg") center/cover; }
.reservation-content { padding: clamp(75px, 8vw, 135px) clamp(34px, 8vw, 130px); }
.reservation-content h2 { margin-bottom: 28px; }
.reservation-content > p:not(.eyebrow) { max-width: 670px; font-size: 17px; line-height: 1.7; }
.booking-form { grid-template-columns: repeat(2, 1fr); margin-top: 42px; gap: 22px 28px; }
.booking-form button { grid-column: 1 / -1; justify-self: start; }

.contact-section { padding: clamp(85px, 10vw, 150px) clamp(24px, 7vw, 105px); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 9vw, 150px); background: var(--paper); }
.contact-copy h2 { margin-bottom: 28px; }
.contact-copy > p:not(.eyebrow) { max-width: 540px; font-size: 17px; line-height: 1.7; }
.contact-facts { display: grid; gap: 8px; margin-top: 35px; font-size: 14px; letter-spacing: .05em; }
.contact-form { grid-template-columns: repeat(2, 1fr); align-content: center; }
.contact-form .full, .contact-form button { grid-column: 1 / -1; }
.contact-form button { justify-self: start; }

.location-strip { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 75px clamp(24px, 7vw, 105px); color: #fff; background: var(--sand); }
.location-strip h2 { font-size: clamp(44px, 5vw, 70px); }
.location-strip h2 em { color: #fff; }
.location-strip .dark-button { margin: 0; color: #fff; }
.location-strip .dark-button::before { background: #fff; }
.location-strip .dark-button:hover, .location-strip .dark-button:focus-visible { color: var(--ink); background: transparent; }

.page-hero {
  min-height: min(82vh, 840px);
  position: relative;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 70px) 24px 100px;
  color: #fff;
  text-align: center;
  background: #19231f;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(13, 21, 19, .34), rgba(13, 18, 17, .56)), var(--page-hero);
  background-position: center;
  background-size: cover;
  animation: kaikiKenBurns 17s ease forwards;
}
.page-hero-copy { width: min(980px, 92vw); text-shadow: 0 3px 25px rgba(0,0,0,.28); }
.page-hero h1 { margin: 0; font: italic 400 clamp(58px, 8vw, 112px)/.88 "Cormorant Garamond", serif; letter-spacing: -.035em; }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 32px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  transform: translateX(-50%);
  transition: background .25s ease, color .25s ease;
}
.scroll-cue:hover { color: var(--ink); background: #fff; }
.page-intro { padding-top: clamp(90px, 10vw, 150px); }
.center-copy { width: min(820px, 100%); margin: -65px auto 75px; text-align: center; font-size: 18px; line-height: 1.75; }
.new-stay-banner { background-image: url("images/booking-2026/770222213.jpg"); }
.new-reservation-image { background-image: linear-gradient(rgba(30,28,24,.08), rgba(30,28,24,.18)), url("images/booking-2026/580944064.jpg"); }

.experiences-section, .explore-grid-section, .award-section, .espa-section {
  padding: clamp(90px, 10vw, 150px) clamp(24px, 5vw, 72px);
  background: var(--cream);
}
.experience-grid {
  width: min(1240px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.experience-grid a {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: end start;
  overflow: hidden;
  padding: 38px;
  color: #fff;
  background: linear-gradient(to top, rgba(14,18,16,.7), rgba(14,18,16,.06)), var(--experience) center/cover;
}
.experience-grid a::before { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.45); opacity: 0; transform: scale(.94); transition: opacity .4s ease, transform .4s ease; }
.experience-grid a:hover::before { opacity: 1; transform: scale(.97); }
.experience-grid span { position: relative; font: 400 clamp(38px, 4vw, 58px)/1 "Cormorant Garamond", serif; }

.explore-grid-section { background: var(--paper); }
.explore-cards { width: min(1240px, 100%); margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 42px); }
.explore-cards article { margin: 0; }
.explore-cards img { height: 410px; object-fit: cover; }
.explore-cards h3 { margin: 25px 0 12px; font: 500 34px/1.05 "Cormorant Garamond", serif; }
.explore-cards p { margin: 0; line-height: 1.7; }

.gallery-grid-large { grid-auto-rows: 250px; }
.contact-photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 470px; }
.contact-photo-strip img { height: 100%; min-height: 470px; object-fit: cover; }

.award-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px, 8vw, 120px); align-items: center; background: var(--paper); }
.award-copy h2 { margin: 0 0 24px; font: 400 clamp(50px, 6vw, 84px)/.95 "Cormorant Garamond", serif; }
.award-copy p:last-child { max-width: 560px; font-size: 17px; line-height: 1.75; }
.award-images { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.award-images img { height: 430px; object-fit: contain; padding: 18px; background: #f1ede6; }

.espa-section { min-height: 70vh; background: var(--paper); }
.espa-content { width: min(920px, 100%); margin: -35px auto 0; display: grid; grid-template-columns: 280px 1fr; gap: 60px; align-items: center; }
.espa-logo-block { min-height: 190px; display: grid; place-items: center; align-content: center; color: #fff; background: var(--sand); font: 500 64px/1 "Cormorant Garamond", serif; }
.espa-logo-block small { margin-top: 16px; font: 400 16px/1 "Jost", sans-serif; letter-spacing: .18em; }
.espa-content p { font-size: 19px; line-height: 1.8; }

.site-footer { display: grid; grid-template-columns: minmax(0, 70%) minmax(300px, 30%); background: #fff; }
.footer-main { padding: 55px clamp(34px, 6vw, 90px) 42px; }
.footer-title-row { display: flex; align-items: center; gap: 45px; margin-bottom: 38px; }
.footer-brand { color: var(--ink); flex: 0 0 auto; }
.footer-title-row h2 { margin: 0; font: italic 400 clamp(34px, 4vw, 57px)/1 "Cormorant Garamond", serif; }
.footer-columns { display: grid; grid-template-columns: .75fr .75fr 1.35fr; }
.footer-columns > * { display: grid; align-content: start; gap: 12px; padding: 7px 30px; border-right: 1px solid var(--line); }
.footer-columns > *:first-child { padding-left: 0; }
.footer-columns > *:last-child { border-right: 0; }
.footer-columns a { width: fit-content; font-size: 14px; }
.footer-columns nav a::after { content: ""; display: block; width: 0; height: 1px; margin-top: 4px; background: currentColor; transition: width .35s ease-in; }
.footer-columns nav a:hover::after { width: 100%; }
.footer-contact p { margin: 0; font-weight: 400; }
.footer-map { margin-top: 10px; padding: 12px 18px; border: 1px solid var(--line); }
.footer-side { display: flex; flex-direction: column; padding: 65px clamp(35px, 5vw, 75px) 42px; color: #fff; background: var(--sand); }
.footer-side h3 { margin: 0 0 22px; font: italic 400 clamp(38px, 4vw, 58px)/1 "Cormorant Garamond", serif; }
.social-links { display: flex; gap: 18px; }
.social-links a { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; font-size: 23px; }
.espa-mark { margin-top: auto; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.45); border-bottom: 1px solid rgba(255,255,255,.45); display: grid; gap: 6px; }
.espa-mark span { font: 500 24px/1 "Cormorant Garamond", serif; }
.espa-mark small { line-height: 1.4; }
.footer-side > p { margin: 27px 0 0; font-size: 12px; line-height: 1.55; letter-spacing: .04em; }

.cookie-banner { position: fixed; z-index: 90; left: 50%; bottom: 22px; width: min(720px, calc(100vw - 32px)); padding: 16px 18px 16px 24px; background: #fff; box-shadow: 0 8px 45px rgba(0,0,0,.18); display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 12px; transition: opacity .3s ease, transform .3s ease; }
.cookie-banner.hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }
.cookie-banner p { margin: 0; font-size: 13px; }
.cookie-banner button { padding: 12px 15px; border: 1px solid rgba(37,34,30,.18); background: transparent; font-size: 11px; letter-spacing: .1em; }
.cookie-banner button:last-child { color: #fff; background: var(--sand-deep); }
.toast { position: fixed; z-index: 150; left: 50%; bottom: 28px; transform: translate(-50%, 20px); padding: 14px 22px; color: #fff; background: var(--ink); opacity: 0; pointer-events: none; transition: opacity .3s ease, transform .3s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.lightbox { position: fixed; z-index: 180; inset: 0; display: grid; place-items: center; padding: 5vw; background: rgba(17,18,16,.92); }
.lightbox img { width: auto; max-width: 92vw; max-height: 88vh; object-fit: contain; }
.lightbox button { position: absolute; right: 25px; top: 18px; color: #fff; background: transparent; font: 300 52px/1 "Cormorant Garamond", serif; }

@keyframes kaikiFadeInUp {
  from { opacity: 0; transform: translate3d(0, 100%, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes kaikiFadeInLeft {
  from { opacity: 0; transform: translate3d(-100%, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes kaikiFadeInRight {
  from { opacity: 0; transform: translate3d(100%, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes kaikiZoomIn {
  from { opacity: 0; transform: scale3d(.3, .3, .3); }
  50% { opacity: 1; }
  to { opacity: 1; transform: scale3d(1, 1, 1); }
}
@keyframes kaikiKenBurns {
  from { transform: scale3d(1, 1, 1); }
  to { transform: scale3d(1.14, 1.14, 1.14); }
}
@keyframes kaikiBackgroundDrift {
  from { background-size: 100%; }
  to { background-size: 114%; }
}

.reveal { opacity: 1; transform: none; transition: none; }
.motion-item { opacity: 0; will-change: opacity, transform; }
.motion-item.is-visible { animation-duration: var(--motion-duration, var(--kaiki-duration)); animation-delay: var(--motion-delay, 0s); animation-timing-function: ease; animation-fill-mode: both; }
.motion-item.motion-done { opacity: 1; transform: none; will-change: auto; }
.motion-up.is-visible { animation-name: kaikiFadeInUp; }
.motion-left.is-visible { animation-name: kaikiFadeInLeft; }
.motion-right.is-visible { animation-name: kaikiFadeInRight; }
.motion-zoom.is-visible { animation-name: kaikiZoomIn; }

.hero-copy .eyebrow, .hero-copy h1, .hero-copy > p:last-child,
.page-hero-copy .eyebrow, .page-hero-copy h1, .scroll-cue { opacity: 0; animation: kaikiFadeInUp 2s ease both; }
.hero-copy h1, .page-hero-copy h1 { animation-duration: var(--kaiki-slow); }
.hero-copy > p:last-child { animation-delay: 1s; }
.page-hero-copy .eyebrow { animation-duration: var(--kaiki-duration); }
.scroll-cue { animation: kaikiZoomIn var(--kaiki-duration) ease .65s both; }
.home-hero-background { animation: kaikiKenBurns 17s ease forwards; }

.gallery-card.motion-item { overflow: hidden; }

@media (max-width: 1050px) {
  :root { --header-h: 84px; }
  .brand-copy { display: none; }
  .brand-seal { width: 56px; height: 56px; }
  .reserve-button { min-height: 48px; padding: 0 18px; }
  .hero-copy { top: 13vh; }
  .editorial-grid, .destination-editorial { grid-template-columns: .8fr 1.2fr; }
  .editorial-image.landscape, .destination-editorial figure:last-child { display: none; }
  .destination-editorial figure:first-child { transform: none; }
  .products-layout { grid-template-columns: 1fr; }
  .order-card { position: relative; top: 0; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-side { min-height: 390px; }
  .explore-cards { grid-template-columns: repeat(2, 1fr); }
  .award-section { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { height: 76px; padding: 8px 16px; }
  .site-header.scrolled { height: 70px; }
  .brand-seal { width: 48px; height: 48px; }
  .brand-seal::before { top: 13px; width: 27px; }
  .brand-seal::after { bottom: 13px; width: 27px; }
  .brand-seal span { font-size: 22px; }
  .header-actions { gap: 7px; }
  .reserve-button { min-height: 42px; padding: 0 12px; font-size: 10px; }
  .reserve-button i { width: 20px; }
  .language-button { width: 38px; min-width: 38px; height: 38px;        padding-top: 10px;
    padding-left: 10px; }
  .menu-button { width: 53px; height: 54px; }
  .menu-button span { font-size: 9px; }
  .menu-button i { width: 36px; }
  .menu-button i:nth-of-type(2) { width: 27px; }

  .menu-panel { grid-template-columns: 1fr; }
  .menu-visual { display: none; }
  .menu-content { padding: 75px 28px 35px; }
  .menu-content nav a { padding: 7px 0; }
  .menu-content nav b { font-size: 36px; }

  .hero { min-height: auto; padding-top: 50vh; }
  .hero-background { position: absolute; height: 50vh; bottom: auto; }
  .hero-copy { top: 15vh; }
  .hero-copy .eyebrow { font-size: 9px; }
  .hero-copy h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero-copy > p:last-child { font-size: 14px; }
  .hero-grid { position: relative; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 180px); }
  .hero-tile:nth-child(3n) { border-right: 1px solid var(--white-line); }
  .hero-tile:nth-child(2n) { border-right: 0; }
  .hero-tile-image { opacity: 1; transform: scale3d(1, 1, 1); }
  .tile-arrow { width: 38px; height: 38px; top: 17px; right: 17px; font-size: 17px; }
  .tile-label { left: 15px; bottom: 17px; gap: 9px; }
  .tile-label i { width: 20px; }
  .tile-label b { font-size: 13px; letter-spacing: .08em; }

  .page-hero { min-height: 70svh; padding-top: 120px; }
  .page-hero h1 { font-size: clamp(53px, 16vw, 78px); }
  .center-copy { margin-top: -35px; margin-bottom: 55px; font-size: 16px; }

  .intro-section, .gallery-section, .products-section { padding: 80px 18px; }
  .section-heading { width: 100%; margin-bottom: 55px; }
  .section-heading h2, .destination-editorial h2, .reservation-content h2, .contact-copy h2, .location-strip h2 { font-size: 47px; }
  .editorial-grid, .destination-editorial { grid-template-columns: 1fr; gap: 40px; }
  .editorial-image.portrait, .destination-editorial figure { height: 480px; }
  .editorial-copy { text-align: center; }
  .editorial-copy p, .destination-editorial p:not(.eyebrow) { text-align: left; }
  .editorial-image.landscape, .destination-editorial figure:last-child { display: block; height: 320px; transform: none; }
  .cinematic-banner { min-height: 580px; background-attachment: scroll; }
  .banner-inner h2 { font-size: 52px; }
  .destination-section { padding: 80px 18px; }
  .destination-editorial figure:first-child { height: 390px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-wide { grid-column: span 2; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 420px; }
  .order-card { padding: 28px 22px; }

  .experiences-section, .explore-grid-section, .award-section, .espa-section { padding: 80px 18px; }
  .experience-grid, .explore-cards { grid-template-columns: 1fr; }
  .experience-grid a { min-height: 430px; padding: 25px; }
  .explore-cards img { height: 390px; }
  .gallery-grid-large { grid-auto-rows: 185px; }
  .contact-photo-strip { grid-template-columns: 1fr; min-height: 0; }
  .contact-photo-strip img { min-height: 0; height: 360px; }
  .award-images { gap: 10px; }
  .award-images img { height: 300px; padding: 8px; }
  .espa-content { margin-top: 0; grid-template-columns: 1fr; gap: 35px; }

  .reservation-section { grid-template-columns: 1fr; }
  .reservation-image { min-height: 70vh; }
  .reservation-content { padding: 75px 20px; }
  .booking-form { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; padding: 80px 20px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .full, .contact-form button { grid-column: auto; }
  .location-strip { align-items: flex-start; flex-direction: column; padding: 55px 20px; }

  .footer-main { padding: 45px 22px; }
  .footer-title-row { align-items: flex-start; flex-direction: column; gap: 25px; }
  .footer-title-row h2 { font-size: 38px; }
  .footer-columns { grid-template-columns: 1fr 1fr; gap: 25px 0; }
  .footer-columns > * { padding: 0 18px; }
  .footer-columns > *:nth-child(2) { border-right: 0; }
  .footer-contact { grid-column: 1 / -1; padding: 25px 0 0 !important; border-top: 1px solid var(--line); }
  .footer-side { min-height: 360px; padding: 52px 30px 35px; }
  .cookie-banner { grid-template-columns: 1fr 1fr; padding: 15px; } 
  .cookie-banner p { grid-column: 1 / -1; }
  .cookie-banner { left: 4%!important;bottom: 10vh!important; }

  .motion-left.is-visible, .motion-right.is-visible { animation-name: kaikiFadeInUp; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .cinematic-banner { background-attachment: scroll; }
  .reveal, .motion-item, .hero-copy .eyebrow, .hero-copy h1, .hero-copy > p:last-child,
  .page-hero-copy .eyebrow, .page-hero-copy h1, .scroll-cue { opacity: 1; transform: none; animation: none !important; }
}
