/* ═══════════════════════════════════════════════
   SANDAT BALI — Immersive Entry Redesign
   Warm · Tropical · Parallax · Editorial
   ═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', system-ui, sans-serif; background: #FAF6ED; color: #1C2B20; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --ivory:    #FAF6ED;
  --cream:    #F2EBD9;
  --sand:     #E4D5B7;
  --terra:    #C4694A;
  --terra-lt: #D9876A;
  --forest:   #2A5240;
  --forest-m: #3D7060;
  --forest-l: #5E9A82;
  --gold:     #B5832A;
  --text:     #1C2B20;
  --text-m:   #4A5E50;
  --text-l:   #7A8E80;
  --white:    #FFFFFF;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
  --ease:     cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
}

/* ─── Typography helpers ─────────────────────── */
.label {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: .8rem;
}
.label.on-dark { color: #FFBFA0; }

h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--forest);
  margin-bottom: 1.2rem;
}
h2.on-dark { color: var(--white); }

p {
  font-size: .97rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-m);
}
p.on-dark { color: rgba(255,255,255,.72); }
p + p { margin-top: .8rem; }

.section-inner { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }

/* ═══════════════════════════════════════════════
   IRIS ENTRY ANIMATION
   Camera-aperture circle expanding from centre
   ═══════════════════════════════════════════════ */
.iris {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  /* clip-path starts closed, JS expands it */
  clip-path: circle(0% at 50% 50%);
  animation: irisOpen 1.6s .1s cubic-bezier(.77,0,.18,1) forwards;
  pointer-events: none;
}
/* The iris "closes" outward — so we invert: content starts hidden behind solid circle
   We flip: page is the iris that OPENS */
/* Actually the iris IS the cover that goes away — it starts as a full cover and
   we clip it out: start full (150%), shrink to 0% */
.iris {
  clip-path: circle(150% at 50% 50%);
  animation: irisClose 1.5s .2s cubic-bezier(.77,0,.18,1) forwards;
}
@keyframes irisClose {
  from { clip-path: circle(150% at 50% 50%); }
  to   { clip-path: circle(0%   at 50% 50%); }
}

.iris-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  /* Logo fades as iris closes */
  animation: irisLogoFade .8s .2s var(--ease-out) forwards;
  opacity: 1;
}
@keyframes irisLogoFade {
  to { opacity: 0; transform: scale(1.08); }
}
.il-name {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 300;
  letter-spacing: .3em;
  color: var(--white);
}
.il-sub {
  font-size: .7rem;
  letter-spacing: .35em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 2.5rem;
  transition: background .5s var(--ease), padding .4s var(--ease), box-shadow .4s;
}
.site-nav.solid {
  background: var(--ivory);
  padding: .85rem 2.5rem;
  box-shadow: 0 1px 0 rgba(28,43,32,.08);
}

.site-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  transition: color .5s;
  display: flex;
  align-items: baseline;
  gap: .35rem;
}
.site-logo em {
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.6);
  transition: color .5s;
}
.site-nav.solid .site-logo { color: var(--forest); }
.site-nav.solid .site-logo em { color: var(--terra); }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--terra-lt);
  transition: right .3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { right: 0; }
.site-nav.solid .nav-links a { color: var(--text-m); }
.site-nav.solid .nav-links a:hover { color: var(--forest); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 501;
}
.burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: background .5s, transform .35s var(--ease), opacity .2s;
}
.site-nav.solid .burger span { background: var(--forest); }
.burger.open span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform .55s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.open { transform: translateX(0); }
.mm-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  margin-bottom: 3rem;
}
.mm-link {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 7vw, 3rem);
  font-weight: 300;
  color: rgba(255,255,255,.25);
  transition: color .3s, transform .3s;
  padding: .2rem 1rem;
}
.mm-link:hover { color: var(--white); transform: translateX(8px); }
.mm-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ═══════════════════════════════════════════════
   HERO with parallax
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-parallax {
  position: absolute;
  inset: -10% 0;  /* oversized for parallax travel room */
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  will-change: transform;
}
.hero-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,  rgba(30,74,50,.75) 0%, rgba(30,74,50,.15) 55%, transparent 100%),
    linear-gradient(to right, rgba(20,50,35,.5) 0%, transparent 60%);
}

/* Decorative second image layer — right side, different parallax speed */
.hero-leaf-layer {
  position: absolute;
  right: -4%;
  top: 0; bottom: 0;
  width: 38%;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  animation: heroLeafIn 1.2s 1.8s var(--ease-out) forwards;
}
@keyframes heroLeafIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: .28; transform: translateX(0); }
}
.leaf-img {
  width: 100%; height: 130%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  mix-blend-mode: luminosity;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem;
  max-width: 780px;
  opacity: 0;
  animation: heroContentIn 1s 1.2s var(--ease-out) forwards;
}
@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-place {
  font-size: .67rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.2rem;
  display: block;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 1.3rem;
}
.hero-headline em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: #FFD4B0;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 420px;
  font-weight: 300;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.45);
  padding: .9rem 2rem;
  border-radius: 100px;
  transition: background .3s, border-color .3s, color .3s;
}
.hero-btn::after { content: '↓'; font-size: .85rem; }
.hero-btn:hover {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}

/* Hero bottom bar */
.hero-bottom-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: .9rem 2rem;
  background: rgba(20,45,30,.45);
  backdrop-filter: blur(8px);
  font-size: .67rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
  opacity: 0;
  animation: heroContentIn 1s 1.6s var(--ease-out) forwards;
}
.hb-award { color: rgba(255,255,255,.85); font-weight: 500; }
.hb-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.3); flex-shrink: 0; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 4.5rem; right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: heroContentIn 1s 2s var(--ease-out) forwards;
}
.sh-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.5));
  animation: shDrop 2.4s ease infinite;
}
@keyframes shDrop {
  0%,100% { transform: scaleY(1) translateY(0); opacity: .7; }
  50%      { transform: scaleY(1.2) translateY(4px); opacity: 1; }
}
.scroll-hint span {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  writing-mode: vertical-rl;
}

/* ═══════════════════════════════════════════════
   SECTION: THE PLACE
   ═══════════════════════════════════════════════ */
.section-place { background: var(--ivory); }
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-img { position: relative; }
.img-frame {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(28,43,32,.12);
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.frame-tall { height: 460px; }
.frame-small {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 52%; height: 220px;
  border: 3px solid var(--terra);
  z-index: 2;
}
.split-text h2 { margin-bottom: 1rem; }
.stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--sand);
}
.stat { display: flex; flex-direction: column; }
.sn { font-family: var(--serif); font-size: 2.4rem; color: var(--terra); line-height: 1; margin-bottom: .2rem; }
.sl { font-size: .72rem; color: var(--text-l); letter-spacing: .05em; }

/* Parallax images */
.parallax-img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform .1s linear;
}

/* ═══════════════════════════════════════════════
   SECTION: ROOMS
   ═══════════════════════════════════════════════ */
.section-rooms { background: var(--cream); }
.section-heading { margin-bottom: 3.5rem; }
.section-heading.center { text-align: center; }
.heading-sub { font-size: .95rem; color: var(--text-l); margin-top: .5rem; max-width: 480px; }
.section-heading.center .heading-sub { margin-inline: auto; }

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.room-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(28,43,32,.07);
  transition: box-shadow .4s, transform .4s;
}
.room-card:hover { box-shadow: 0 12px 40px rgba(28,43,32,.14); transform: translateY(-4px); }
.rc-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.rc-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.room-card:hover .rc-img { transform: scale(1.04); }
.rc-badge {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: rgba(20,45,30,.7);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 100px;
}
.rc-body { padding: 1.8rem 2rem 2rem; }
.rc-body h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--forest);
  font-weight: 400;
  margin-bottom: .7rem;
}
.rc-body p { margin-bottom: 1rem; }
.rc-body ul { margin-bottom: 1.5rem; }
.rc-body ul li {
  font-size: .8rem;
  color: var(--text-l);
  padding: .3rem 0;
  padding-left: 1rem;
  border-bottom: 1px solid var(--cream);
  position: relative;
}
.rc-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--terra); font-size: .7rem; }
.room-link {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terra);
  transition: color .3s;
}
.room-link:hover { color: var(--forest); }

/* ═══════════════════════════════════════════════
   SECTION: FOOD (parallax bg)
   ═══════════════════════════════════════════════ */
.section-food {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.food-parallax-wrap {
  position: absolute;
  inset: -15% 0;
  z-index: 0;
}
.food-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.42) saturate(1.3);
  will-change: transform;
}
.food-tint {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,50,35,.85) 40%, rgba(60,40,20,.5) 100%);
}
.food-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.food-left h2 { color: var(--white); }
.food-left p.on-dark + p.on-dark { margin-top: .8rem; }

.food-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-left: 3px solid var(--terra);
  border-radius: 4px;
  padding: 1.4rem 1.5rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(6px);
  transition: background .3s;
}
.food-card:hover { background: rgba(255,255,255,.16); }
.fc-time {
  display: block;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #FFBF8A;
  margin-bottom: .35rem;
}
.food-card h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .4rem;
}
.food-card p { font-size: .84rem; color: rgba(255,255,255,.62); line-height: 1.65; }

/* ═══════════════════════════════════════════════
   SECTION: SEA
   ═══════════════════════════════════════════════ */
.section-sea { background: var(--ivory); }
.sea-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2.5rem;
}
.frame-cinematic { height: 500px; }
.sea-lead {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-m);
  margin-bottom: 1.8rem;
  font-weight: 300;
}
.sea-acts { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.8rem; }
.sa {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.sa-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.sa strong { display: block; font-size: .9rem; color: var(--forest); margin-bottom: .2rem; }
.sa p { font-size: .8rem; color: var(--text-l); line-height: 1.5; }
.sea-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-m);
  border-left: 2px solid var(--terra);
  padding-left: 1.1rem;
  line-height: 1.65;
}
.sea-quote cite { display: block; font-size: .7rem; font-style: normal; color: var(--text-l); margin-top: .4rem; }

/* ═══════════════════════════════════════════════
   SECTION: EXPLORE
   ═══════════════════════════════════════════════ */
.section-explore { background: var(--cream); }
.exp-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: .9rem;
  margin-top: 1.5rem;
}
.em-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.em-item img {
  width: 100%; height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}
.em-item:hover img { transform: scale(1.05); }
.em-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,43,32,.78) 0%, transparent 55%);
}
.em-tall { grid-row: span 2; }
.em-tall img { height: 100%; min-height: 460px; }
.em-wide { grid-column: span 2; }
.em-wide img { height: 240px; }
.em-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.2rem;
  z-index: 1;
}
.em-label h4 { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; color: var(--white); margin-bottom: .2rem; }
.em-label p { font-size: .72rem; color: rgba(255,255,255,.65); }

/* ═══════════════════════════════════════════════
   SECTION: VALUES
   ═══════════════════════════════════════════════ */
.section-values {
  background: var(--forest);
  padding: 5.5rem 0;
}
.values-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.values-text .label { color: #FFBF8A; }
.values-text h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.values-text p { color: rgba(255,255,255,.65); max-width: 420px; }
.values-pills { display: flex; flex-direction: column; gap: .9rem; }
.vp {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 1.2rem 1.3rem;
  transition: background .3s;
}
.vp:hover { background: rgba(255,255,255,.12); }
.vp > span { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.vp strong { display: block; font-size: .87rem; color: var(--white); margin-bottom: .2rem; }
.vp p { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.5; }

/* ═══════════════════════════════════════════════
   SECTION: BOOK
   ═══════════════════════════════════════════════ */
.section-book {
  position: relative;
  overflow: hidden;
}
.book-hero-img {
  position: absolute;
  inset: -15% 0;
  z-index: 0;
}
.book-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(.45) saturate(1.2);
  will-change: transform;
}
.book-img-tint {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20,55,35,.9) 40%, rgba(20,55,35,.65));
}
.book-content {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  padding-bottom: 6rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: start;
}
.book-headline h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
}
.book-headline h2 em {
  font-style: italic;
  color: #FFD4B0;
  display: block;
}
.book-headline p { color: rgba(255,255,255,.65); margin: .8rem 0 1.8rem; max-width: 380px; }
.book-contacts { display: flex; flex-direction: column; gap: .7rem; }
.bc-btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .78rem;
  font-weight: 500;
  padding: .75rem 1.4rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  transition: all .3s;
  width: fit-content;
}
.bc-btn.wa { background: #25D366; color: var(--white); }
.bc-btn.wa:hover { background: #1DAA53; }
.bc-btn.em { border-color: rgba(255,255,255,.35); color: rgba(255,255,255,.75); }
.bc-btn.em:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,.07); }

/* Book form */
.book-form-wrap {
  background: var(--ivory);
  border-radius: 8px;
  padding: 2.2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
#bookForm { display: flex; flex-direction: column; gap: 1rem; }
.ff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ff { display: flex; flex-direction: column; gap: .35rem; }
.ff label { font-size: .63rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-l); font-weight: 500; }
.ff small { font-size: .63rem; text-transform: none; letter-spacing: 0; font-weight: 300; }
.ff input, .ff select, .ff textarea {
  font-family: var(--sans);
  font-size: .9rem;
  background: var(--cream);
  border: 1.5px solid var(--sand);
  border-radius: 4px;
  padding: .72rem .95rem;
  color: var(--text);
  transition: border-color .3s, box-shadow .3s;
  width: 100%;
}
.ff input:focus, .ff select:focus, .ff textarea:focus {
  outline: none;
  border-color: var(--forest-m);
  box-shadow: 0 0 0 3px rgba(61,112,96,.12);
  background: var(--white);
}
.submit-btn {
  background: var(--terra);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: .95rem;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s, transform .2s;
  margin-top: .3rem;
}
.submit-btn:hover { background: var(--terra-lt); transform: translateY(-2px); }
.form-note { font-size: .65rem; color: var(--text-l); text-align: center; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.site-footer { background: #192C22; padding: 3.5rem 0 2rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1.2fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .07em;
  text-transform: uppercase;
  display: block;
  margin-bottom: .6rem;
}
.footer-logo em { font-weight: 300; font-style: italic; color: #FFBF8A; }
.site-footer p { font-size: .77rem; color: rgba(255,255,255,.3); line-height: 1.6; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .4rem 1.8rem; }
.footer-nav a { font-size: .75rem; color: rgba(255,255,255,.35); transition: color .3s; }
.footer-nav a:hover { color: rgba(255,255,255,.75); }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; }
.footer-contact a { font-size: .77rem; color: rgba(255,255,255,.35); transition: color .3s; }
.footer-contact a:hover { color: #FFBF8A; }
.footer-base {
  max-width: 1160px; margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .62rem;
  color: rgba(255,255,255,.2);
  letter-spacing: .05em;
}

/* ═══════════════════════════════════════════════
   FLOATING WA
   ═══════════════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 300;
  width: 50px; height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.38);
  transition: transform .3s, box-shadow .3s;
}
.wa-fab svg { width: 24px; height: 24px; color: var(--white); }
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.5); }

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--forest);
  color: var(--white);
  font-size: .82rem;
  padding: .85rem 1.8rem;
  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
  z-index: 999;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════ */
.sr {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.sr.visible { opacity: 1; transform: translateY(0); }
.sr-l { opacity: 0; transform: translateX(-30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.sr-l.visible { opacity: 1; transform: translateX(0); }
.sr-r { opacity: 0; transform: translateX(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.sr-r.visible { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET ≤900px
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .split-layout { grid-template-columns: 1fr; gap: 5rem; }
  .frame-small { bottom: -1.5rem; right: -1rem; width: 50%; height: 180px; }
  .frame-tall { height: 380px; }

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

  .food-content { grid-template-columns: 1fr; gap: 3rem; }

  .sea-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .frame-cinematic { height: 340px; }

  .exp-mosaic { grid-template-columns: 1fr 1fr; }
  .em-tall { grid-row: span 1; }
  .em-tall img { min-height: 220px; height: 220px; }
  .em-wide { grid-column: span 2; }

  .values-inner { grid-template-columns: 1fr; gap: 3rem; }

  .book-content { grid-template-columns: 1fr; padding-top: 5rem; padding-bottom: 5rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-logo-wrap { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤600px
   ═══════════════════════════════════════════════ */
@media (max-width: 600px) {
  .site-nav { padding: 1.1rem 1.4rem; }
  .section { padding: 4.5rem 0; }
  .section-inner { padding: 0 1.4rem; }

  .hero-content { padding: 0 1.4rem 5rem; }
  .hero-bottom-bar { display: none; }
  .scroll-hint { display: none; }

  .frame-small { display: none; }
  .stats-row { gap: 1.5rem; }

  .ff-row { grid-template-columns: 1fr; }

  .exp-mosaic { grid-template-columns: 1fr; }
  .em-wide { grid-column: span 1; }
  .em-wide img { height: 220px; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-base { flex-direction: column; align-items: center; text-align: center; }

  .section-food { padding: 5rem 0; }
  .section-book .book-content { padding-left: 1.4rem; padding-right: 1.4rem; }
  .section-values { padding: 4.5rem 0; }
}
