/*
Theme Name: Soul Balance
Theme URI: https://soul-balance.sk
Author: Soul Balance
Description: Ajurvédsky rezort Soul Balance, Srí Lanka
Version: 1.0.0
Text Domain: soulbalance
*/
/* ============================================================
   SOUL BALANCE · style.css v3
   Cream #F2EDE4 · Teal #1D6B4E · Gold #B8934A · Text #2A2520
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #F2EDE4;
  --cream-d: #E6DFCF;
  --cream-l: #FAF7F2;
  --teal:    #1D6B4E;
  --teal-l:  #2A8A65;
  --teal-d:  #155238;
  --gold:    #B8934A;
  --gold-l:  #C9A862;
  --text:    #2A2520;
  --text-m:  #6B6259;
  --text-l:  #9B9088;
  --white:   #FFFFFF;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --r:   10px;
  --rl:  20px;
  --rxl: 32px;
  --t:   0.35s cubic-bezier(.4,0,.2,1);
  --sh:  0 4px 32px rgba(42,37,32,.09);
  --shh: 0 16px 60px rgba(42,37,32,.16);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); font-size: 16px; line-height: 1.75; color: var(--text); background: var(--cream-l); overflow-x: hidden; }
img  { display: block; width: 100%; height: 100%; object-fit: cover; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 400; line-height: 1.1; letter-spacing: -.01em; }
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); }
h4 { font-family: var(--sans); font-size: 1rem; font-weight: 600; }
em { font-style: italic; color: var(--teal); }

.eyebrow { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
.eyebrow.light { color: rgba(255,255,255,.6); }
.body-text { font-size: 1rem; color: var(--text-m); line-height: 1.8; margin-bottom: 18px; }
.sub-text  { font-size: .98rem; color: var(--text-m); }
.light     { color: var(--white); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  font-family: var(--sans); font-size: .88rem; font-weight: 700;
  letter-spacing: .04em;
  border-radius: 6px;
  transition: background var(--t), color var(--t), transform var(--t), box-shadow var(--t);
  cursor: pointer; white-space: nowrap;
}
.btn-primary  { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,107,78,.32); }
.btn-outline  { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.btn-light    { background: var(--cream-l); color: var(--teal); }
.btn-light:hover { background: var(--white); transform: translateY(-2px); box-shadow: var(--shh); }
.btn-ghost-w  { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-ghost-w:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.9); }
.btn-ghost-teal { background: transparent; color: rgba(255,255,255,.8); border: 2px solid rgba(255,255,255,.3); font-size: .8rem; padding: 10px 20px; }
.btn-ghost-teal:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); font-size: .8rem; padding: 10px 20px; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-lg { padding: 17px 36px; font-size: .95rem; }

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 20px 0;
  transition: background .4s, padding .4s, box-shadow .4s;
}
.nav.scrolled {
  background: rgba(242,237,228,.97);
  backdrop-filter: blur(20px) saturate(1.6);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(42,37,32,.1);
}
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; gap: 36px; }

.nav-logo { display: flex; flex-direction: column; line-height: 1.15; flex-shrink: 0; }
.logo-main { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--white); transition: color .4s; letter-spacing: -.01em; }
.logo-sub  { font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5); transition: color .4s; }
.nav.scrolled .logo-main { color: var(--text); }
.nav.scrolled .logo-sub  { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav-links a {
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  position: relative; transition: color .3s;
}
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width .3s; }
.nav-links a:hover::after { width: 100%; }
.nav.scrolled .nav-links a { color: var(--text-m); }
.nav.scrolled .nav-links a:hover { color: var(--teal); }

.nav-cta-btn {
  padding: 11px 24px; border-radius: 6px;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  background: var(--teal); color: var(--white);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap; flex-shrink: 0;
}
.nav-cta-btn:hover { background: var(--teal-d); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(29,107,78,.3); }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--t); }
.nav.scrolled .nav-burger span { background: var(--text); }

/* ════════════════════════════════════════
   HERO — split layout
════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 100svh;
}
.hero-left {
  background: var(--cream);
  display: flex; align-items: center;
  padding: 120px 72px 80px;
  position: relative;
}
.hero-content { max-width: 540px; }

.hero-tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: block; opacity: 0;
}
.hero-heading { margin-bottom: 24px; opacity: 0; }
.hero-heading em { font-style: italic; }
.hero-sub { font-size: 1.05rem; color: var(--text-m); margin-bottom: 36px; line-height: 1.7; opacity: 0; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; opacity: 0; }

.hero-stats { display: flex; align-items: center; gap: 0; opacity: 0; }
.hstat { padding: 0 28px; }
.hstat:first-child { padding-left: 0; }
.hstat-n { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 500; color: var(--text); line-height: 1; }
.hstat-l { display: block; font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-l); margin-top: 3px; }
.hstat-div { width: 1px; height: 40px; background: var(--cream-d); flex-shrink: 0; }

.hero-right { position: relative; overflow: hidden; background: var(--cream); }
.hero-img-wrap { position: absolute; inset: 24px 24px 24px 0; border-radius: var(--rxl) 0 0 var(--rxl); overflow: hidden; box-shadow: -8px 0 40px rgba(42,37,32,.12); }
.hero-img { width: 100%; height: 100%; transition: transform .8s ease; }
.hero-right:hover .hero-img { transform: scale(1.03); }

.hero-img-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: rgba(20,15,10,.65); backdrop-filter: blur(12px);
  color: var(--white); border-radius: var(--r);
  padding: 14px 20px;
  display: flex; flex-direction: column; gap: 3px;
}
.hero-img-badge span:first-child { font-family: var(--serif); font-size: 1.1rem; }
.hero-img-badge span:last-child  { font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); }

/* ════════════════════════════════════════
   INTRO
════════════════════════════════════════ */
.intro { background: var(--white); padding: 80px 0; }
.intro-inner { display: flex; align-items: center; gap: 24px; max-width: 800px; margin: 0 auto; }
.intro-ornament { color: var(--gold); font-size: .9rem; flex-shrink: 0; }
.intro-text {
  font-family: var(--serif); font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  font-weight: 300; line-height: 1.5; color: var(--text); text-align: center;
  opacity: 0;
}

/* ════════════════════════════════════════
   O REZORTE
════════════════════════════════════════ */
.resort { background: var(--cream-l); padding: 100px 0; overflow: hidden; }
.resort-inner { max-width: 1240px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.resort-content { }
.resort-content h2 { margin-bottom: 20px; }
.resort-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 28px 0 32px; }
.rfeat { display: flex; align-items: center; gap: 10px; font-size: .85rem; font-weight: 600; color: var(--text-m); }
.rfeat span { font-size: 1.1rem; }

/* gallery */
.resort-gallery-wrap { position: relative; }
.resort-gallery {
  display: flex; gap: 12px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.resort-gallery:active { cursor: grabbing; }
.resort-gallery::-webkit-scrollbar { display: none; }
.rg-item {
  flex: 0 0 100%; height: 420px;
  scroll-snap-align: start;
  border-radius: var(--rl); overflow: hidden;
}
.rg-item img { transition: transform .6s ease; }
.rg-item:hover img { transform: scale(1.04); }
.rg-arrows { display: flex; gap: 8px; margin-top: 16px; }
.rg-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--cream-d);
  font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t), border-color var(--t), transform var(--t);
  color: var(--text);
}
.rg-arrow:hover { background: var(--teal); border-color: var(--teal); color: var(--white); transform: scale(1.08); }
.rg-dots { display: flex; gap: 6px; margin-top: 14px; align-items: center; }
.rg-dot  {
  height: 6px; border-radius: 99px;
  background: var(--cream-d);
  width: 24px;
  border: none; padding: 0; cursor: pointer;
  transition: background .35s, width .35s cubic-bezier(.4,0,.2,1);
}
.rg-dot.active { background: var(--teal); width: 40px; }
.rg-dot:hover:not(.active) { background: var(--text-l); }

/* ════════════════════════════════════════
   PILLARS
════════════════════════════════════════ */
.pillars { position: relative; padding: 100px 0; overflow: hidden; }
.pillars-bg { position: absolute; inset: 0; }
.pillars-bg img { filter: brightness(.3) saturate(.6); }
.pillars-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,35,25,.9), rgba(10,25,18,.8)); }
.pillars-inner { position: relative; z-index: 2; }
.pillars-header { text-align: center; margin-bottom: 56px; }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

.pillar-card {
  background: rgba(255,255,255,.07); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--rl); padding: 44px 32px;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  display: flex; flex-direction: column;
}
.pillar-card:hover { background: rgba(255,255,255,.13); transform: translateY(-6px) !important; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.pillar-num { font-family: var(--serif); font-size: 3.5rem; color: rgba(255,255,255,.1); line-height: 1; margin-bottom: 14px; font-weight: 300; }
.pillar-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.5rem; }
.pillar-card p  { color: rgba(255,255,255,.68); font-size: .86rem; margin-bottom: 20px; line-height: 1.65; }
.pillar-list { margin-bottom: 28px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.pillar-list li { font-size: .79rem; color: rgba(255,255,255,.5); padding-left: 14px; position: relative; }
.pillar-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold-l); }

/* ════════════════════════════════════════
   PHOTO MOSAIC
════════════════════════════════════════ */
.mosaic { background: var(--cream); padding: 0 0 24px; }
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 6px;
  margin-bottom: 24px;
}
.mosaic-item { overflow: hidden; position: relative; }
.mosaic-item img { transition: transform .65s ease; }
.mosaic-item:hover img { transform: scale(1.06); }
.mosaic-item.m-tall { grid-row: span 2; }
.mosaic-item.m-wide { grid-column: span 2; }
.mosaic-cta { text-align: center; padding: 24px; }

/* ════════════════════════════════════════
   DEŇ V SOUL BALANCE
════════════════════════════════════════ */
.day { background: var(--cream-l); padding: 100px 0; }
.day-header { text-align: center; margin-bottom: 64px; }
.day-timeline { position: relative; max-width: 860px; margin: 0 auto; }
.day-timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); width: 1px; background: var(--cream-d); }

.day-item { display: grid; grid-template-columns: 1fr 32px 1fr; align-items: center; gap: 0 24px; margin-bottom: 36px; }
.day-item[data-side="left"]  .day-time  { text-align: right; grid-column: 1; }
.day-item[data-side="left"]  .day-dot   { grid-column: 2; }
.day-item[data-side="left"]  .day-card  { grid-column: 3; }
.day-item[data-side="right"] .day-time  { text-align: left; grid-column: 3; order: 3; }
.day-item[data-side="right"] .day-dot   { grid-column: 2; order: 2; }
.day-item[data-side="right"] .day-card  { grid-column: 1; order: 1; text-align: right; }

.day-time { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); font-weight: 500; }
.day-dot  { width: 12px; height: 12px; border-radius: 50%; background: var(--teal); border: 3px solid var(--cream-l); box-shadow: 0 0 0 1px var(--teal); justify-self: center; z-index: 1; }
.day-card { background: var(--white); border: 1px solid var(--cream-d); border-radius: var(--r); padding: 18px 22px; box-shadow: var(--sh); }
.day-card h4 { margin-bottom: 3px; font-size: .9rem; }
.day-card p  { font-size: .8rem; color: var(--text-m); line-height: 1.5; margin: 0; }

/* ════════════════════════════════════════
   POBYTY
════════════════════════════════════════ */
.stays { background: var(--cream); padding: 100px 0; }
.stays-header { text-align: center; margin-bottom: 56px; }
.stays-header h2 { margin-bottom: 16px; }
.stays-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }

.stay-card {
  background: var(--white); border-radius: var(--rl); overflow: hidden;
  box-shadow: var(--sh);
  transition: box-shadow var(--t), transform var(--t);
}
.stay-card:hover { box-shadow: var(--shh); transform: translateY(-8px) !important; }
.stay-card.featured { outline: 2.5px solid var(--teal); outline-offset: -2px; box-shadow: 0 8px 48px rgba(29,107,78,.18); }

.stay-img { position: relative; height: 230px; overflow: hidden; }
.stay-img img { transition: transform .6s ease; }
.stay-card:hover .stay-img img { transform: scale(1.07); }

.stay-hover-overlay {
  position: absolute; inset: 0;
  background: rgba(20,15,10,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .35s;
}
.stay-card:hover .stay-hover-overlay { opacity: 1; }

.stay-label { position: absolute; top: 14px; left: 14px; background: var(--teal); color: var(--white); font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; }
.stay-body { padding: 26px; }
.stay-dur  { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.stay-body h3 { font-size: 1.35rem; margin-bottom: 10px; }
.stay-desc { font-size: .84rem; color: var(--text-m); line-height: 1.65; margin-bottom: 16px; }
.stay-includes { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.stay-includes li { font-size: .78rem; color: var(--text-m); }
.stay-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 18px; border-top: 1px solid var(--cream-d); }
.stay-price  { display: flex; align-items: baseline; gap: 5px; }
.price-from  { font-size: .7rem; color: var(--text-l); }
.price-val   { font-family: var(--serif); font-size: 1.6rem; font-weight: 500; color: var(--text); }
.stays-note  { text-align: center; margin-top: 36px; font-size: .8rem; color: var(--text-l); }

/* ════════════════════════════════════════
   BENTO BOX — TERAPIE
════════════════════════════════════════ */
.terapie-bento { background: var(--cream-l); padding: 100px 0; }
.bento-header  { text-align: center; margin-bottom: 48px; }
.bento-header h2 { margin-bottom: 0; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 14px;
}

/* base card */
.bento-card {
  background: var(--white); border-radius: var(--rl);
  padding: 32px; overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.bento-card:hover { box-shadow: var(--shh); }

/* intro — 2 cols, 1 row */
.b-intro {
  grid-column: span 2;
  background: var(--teal);
  display: flex; flex-direction: column; gap: 16px;
}
.b-intro .bento-eyebrow { font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.b-intro .bento-big-text { font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--white); line-height: 1.45; flex: 1; }

/* photo — 1 col tall */
.b-photo {
  grid-column: span 1; grid-row: span 2;
  padding: 0; min-height: 320px;
}
.b-photo img { border-radius: var(--rl); }

/* therapy cards */
.b-therapy { display: flex; flex-direction: column; gap: 8px; }
.b-therapy.b-dark { background: var(--teal-d); }
.b-therapy.b-dark h4, .b-therapy.b-dark p { color: rgba(255,255,255,.9); }
.b-therapy.b-dark p { color: rgba(255,255,255,.65); }
.b-therapy.b-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
}
.b-therapy.b-featured h4, .b-therapy.b-featured p { color: rgba(255,255,255,.92); }
.b-therapy.b-featured p { color: rgba(255,255,255,.65); }
.bt-num { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--cream-d); line-height: 1; }
.b-dark .bt-num, .b-featured .bt-num { color: rgba(255,255,255,.15); }
.b-therapy h4 { font-size: .95rem; margin-bottom: 4px; color: var(--text); }
.b-therapy p  { font-size: .8rem; color: var(--text-m); line-height: 1.55; flex: 1; margin: 0; }

/* stats */
.b-stats {
  grid-column: span 1;
  background: var(--gold);
  display: flex; flex-direction: column; justify-content: space-around; gap: 16px;
}
.bento-stat { display: flex; flex-direction: column; gap: 2px; }
.bs-n { font-family: var(--serif); font-size: 1.8rem; font-weight: 500; color: var(--white); line-height: 1; }
.bs-l { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.65); }

/* photo 2 */
.b-photo2 { grid-column: span 2; padding: 0; min-height: 200px; position: relative; }
.b-photo2 img { border-radius: var(--rl); }
.b-photo2-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(20,15,10,.8), transparent);
  padding: 28px 24px 20px;
  border-radius: 0 0 var(--rl) var(--rl);
}
.b-photo2-overlay p { font-family: var(--serif); font-size: 1rem; font-style: italic; color: rgba(255,255,255,.88); line-height: 1.4; }

/* ════════════════════════════════════════
   LOKALITA
════════════════════════════════════════ */
.location { background: var(--cream-l); overflow: hidden; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.location-img { overflow: hidden; }
.location-img img { transition: transform .8s ease; }
.location-img:hover img { transform: scale(1.04); }
.location-content { padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; background: var(--cream); }
.location-content h2 { margin-bottom: 20px; }
.location-facts { display: flex; flex-direction: column; gap: 16px; margin: 22px 0 28px; }
.loc-fact { display: flex; gap: 14px; align-items: flex-start; }
.loc-icon { font-size: 1.15rem; flex-shrink: 0; margin-top: 1px; }
.loc-fact strong { display: block; font-size: .88rem; margin-bottom: 1px; }
.loc-fact p { font-size: .8rem; color: var(--text-m); margin: 0; }

/* MAP */
.location-map {
  background: var(--cream);
  border-top: 1px solid var(--cream-d);
  padding: 0;
}
.map-label {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 32px;
  background: var(--cream-l);
  border-bottom: 1px solid var(--cream-d);
  flex-wrap: wrap;
}
.map-pin { font-size: 1.2rem; }
.map-label > div { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.map-label strong { font-size: .9rem; font-weight: 700; color: var(--text); }
.map-label span   { font-size: .75rem; color: var(--text-m); }
.map-frame { position: relative; height: 360px; }
.map-frame iframe { width: 100%; height: 100%; border: none; display: block; filter: saturate(.85) contrast(.95); }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials { background: var(--teal); padding: 88px 0; }
.testi-header { text-align: center; margin-bottom: 48px; }
.testi-header h2 { color: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--rl); padding: 32px;
  transition: background var(--t);
}
.testi-card:hover { background: rgba(255,255,255,.13); }
.testi-stars { color: var(--gold-l); letter-spacing: 3px; margin-bottom: 18px; }
.testi-card blockquote { font-family: var(--serif); font-size: .98rem; font-style: italic; color: rgba(255,255,255,.84); line-height: 1.6; margin-bottom: 22px; }
.testi-card footer strong { display: block; font-size: .86rem; color: var(--white); margin-bottom: 2px; }
.testi-card footer span  { font-size: .73rem; color: rgba(255,255,255,.48); }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq { background: var(--cream-l); padding: 88px 0; }
.faq-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.faq-col h2 { margin-bottom: 16px; }
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item { background: var(--white); border: 1px solid var(--cream-d); border-radius: var(--r); overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 18px 22px; font-size: .88rem; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background var(--t); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--teal); flex-shrink: 0; transition: transform .3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--cream); }
.faq-item p { padding: 0 22px 18px; font-size: .84rem; color: var(--text-m); line-height: 1.7; }

/* ════════════════════════════════════════
   CTA
════════════════════════════════════════ */
.cta { position: relative; min-height: 620px; display: flex; align-items: center; overflow: hidden; }
.cta-media { position: absolute; inset: 0; }
.cta-img { height: 115%; will-change: transform; }
.cta-vignette { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,25,18,.88), rgba(10,25,18,.6)); }
.cta-body { position: relative; z-index: 2; text-align: center; padding: 80px 32px; }
.cta-heading { color: var(--white); font-size: clamp(2rem, 5vw, 4rem); margin-bottom: 18px; }
.cta-heading em { color: rgba(255,255,255,.82); }
.cta-sub { color: rgba(255,255,255,.7); font-size: 1rem; font-weight: 300; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.cta-email { font-size: .82rem; color: rgba(255,255,255,.42); }
.cta-email a { color: rgba(255,255,255,.62); text-decoration: underline; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer { background: #13190F; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-top: 64px; padding-bottom: 52px; }
.footer-logo    { font-family: var(--serif); font-size: 1.4rem; color: var(--white); margin-bottom: 4px; }
.footer-tagline { font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-l); margin-bottom: 14px; }
.footer-address { font-size: .78rem; color: rgba(255,255,255,.4); line-height: 1.65; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.soc { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); transition: background var(--t), border-color var(--t), color var(--t); }
.soc:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.footer-nav h4, .footer-contact h4 { font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 14px; font-family: var(--sans); }
.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a, .footer-contact a { font-size: .8rem; color: rgba(255,255,255,.52); transition: color .3s; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--teal-l); }
.footer-contact p { margin-bottom: 7px; }
.footer-hours { font-size: .72rem; color: rgba(255,255,255,.28); margin-top: 10px; line-height: 1.55; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 18px 32px; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: .73rem; color: rgba(255,255,255,.28); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: .73rem; color: rgba(255,255,255,.28); transition: color .3s; }
.footer-legal a:hover { color: rgba(255,255,255,.55); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-left { padding: 100px 48px 80px; }
  .bento-grid { grid-template-columns: repeat(2,1fr); }
  .b-intro { grid-column: span 2; }
  .b-photo { grid-column: span 1; grid-row: span 1; min-height: 200px; }
  .b-featured { grid-column: span 2; }
  .b-photo2 { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { min-height: 100svh; background: linear-gradient(160deg, var(--cream) 60%, #e8dfc8); }

  .resort-inner { grid-template-columns: 1fr; }
  .rg-item { height: 300px; }

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

  .mosaic-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3, 220px); }
  .mosaic-item.m-tall { grid-row: span 1; }
  .mosaic-item.m-wide { grid-column: span 2; }

  .stays-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .location-grid { grid-template-columns: 1fr; }
  .location-img  { height: 340px; }
  .location-content { padding: 56px 32px; transform: none; }

  .testi-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .faq-inner  { grid-template-columns: 1fr; gap: 40px; }

  .day-timeline::before { left: 0; }
  .day-item { grid-template-columns: 56px 20px 1fr; }
  .day-item[data-side="right"] .day-time { grid-column: 1; order: 1; text-align: right; }
  .day-item[data-side="right"] .day-dot  { grid-column: 2; order: 2; }
  .day-item[data-side="right"] .day-card { grid-column: 3; order: 3; text-align: left; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: var(--cream-l); flex-direction: column;
    align-items: center; justify-content: center;
    gap: 28px; padding-top: 80px; z-index: 150;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.15rem; font-weight: 700; color: var(--text) !important; }
  .nav-cta-btn { display: none; }
  .nav-burger { display: flex; z-index: 160; }

  .hero-left { padding: 100px 24px 64px; }
  .hero-stats { gap: 0; }
  .hstat { padding: 0 16px; }

  /* BENTO — 1 col na mobile */
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .b-intro, .b-photo, .b-therapy, .b-featured, .b-photo2 { grid-column: span 1; grid-row: span 1; }
  .b-photo { min-height: 240px; }
  .b-photo2 { min-height: 200px; }
  .b-stats { grid-column: span 1; flex-direction: row; justify-content: space-around; }
  .b-stats .bento-stat { flex: 1; text-align: center; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .resort-inner { padding: 0 20px; }

  .resort-inner { gap: 40px; }
  .stays-grid { max-width: 100%; }
  .testi-grid { max-width: 100%; }
  .day-timeline::before { left: 20px; }
  .day-item { grid-template-columns: 56px 16px 1fr; gap: 0 10px; }
  .day-item[data-side="right"] .day-time { grid-column: 1; text-align: right; }
  .day-item[data-side="right"] .day-dot { grid-column: 2; }
  .day-item[data-side="right"] .day-card { grid-column: 3; text-align: left; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hstat-div { display: none; }
  .mosaic-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .mosaic-item.m-wide { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }

  .nav-inner { padding: 0 16px; gap: 16px; }
  .bento-grid { grid-template-columns: 1fr; }
  .b-intro, .b-featured, .b-photo2, .b-stats { grid-column: span 1; }
  .b-photo { grid-row: span 1; min-height: 200px; }
  .b-stats { flex-direction: row; justify-content: space-around; }
  .b-stats .bento-stat { flex: 1; text-align: center; }
  .map-frame { height: 260px; }
  .cta-body { padding: 60px 20px; }
  .location-content { padding: 36px 20px; }
  .day-item { grid-template-columns: 48px 14px 1fr; gap: 0 8px; }
  .day-card { padding: 14px 16px; }
  .testi-card { padding: 24px; }
  .pillar-card { padding: 32px 24px; }
  .hero-left { padding: 90px 20px 60px; }
  .hero-stats { justify-content: flex-start; }
  .hstat { padding: 0 12px; }
  .hstat:first-child { padding-left: 0; }
  .stays-grid { max-width: 100%; }
  .stay-body { padding: 20px; }
  .faq { padding: 64px 0; }
  .testimonials { padding: 64px 0; }
  .pillars { padding: 72px 0; }
  .day { padding: 72px 0; }
  .stays { padding: 72px 0; }
  .terapie-bento { padding: 72px 0; }
  .resort { padding: 72px 0; }
}

/* ════════════════════════════════════════
   SCROLL REVEAL — náhrada za GSAP
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.from-left  { transform: translateX(-32px); }
.reveal.from-right { transform: translateX(32px); }
.reveal.revealed   { opacity: 1; transform: translate(0,0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .hero-img, .cta-img { transform: none !important; }
  [style*="opacity"], .bento-card, .stay-card, .testi-card,
  .pillar-card, .day-card, .faq-item, .resort-content,
  .resort-gallery-wrap, .location-content, .cta-body, .intro-text {
    opacity: 1 !important; transform: none !important;
  }
  .reveal, .reveal.from-left, .reveal.from-right { opacity: 1 !important; transform: none !important; }
}
