/* =========================================================
   Ibiza Homestay Guwahati — "Coastal Luxury"
   Palette: Navy #123B5D · Ocean #2E7FA3 · Beige #EADBC8
            Ivory #FFFDF8 · Gold #C6A15B · Charcoal #333
   Fonts:  Fraunces (display) · Manrope (body)
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --navy:      #123B5D;
  --navy-900:  #0d2b44;
  --navy-700:  #1a4d75;
  --ocean:     #2E7FA3;
  --ocean-600: #276f8f;
  --beige:     #EADBC8;
  --beige-200: #f3e9dc;
  --ivory:     #FFFDF8;
  --gold:      #C6A15B;
  --gold-600:  #b48f45;
  --charcoal:  #333333;
  --muted:     #5d6b74;
  --wa:        #25D366;
  --wa-600:    #1da851;

  --line:      rgba(18, 59, 93, 0.12);
  --shadow-sm: 0 4px 14px rgba(18, 59, 93, 0.08);
  --shadow-md: 0 14px 40px rgba(18, 59, 93, 0.12);
  --shadow-lg: 0 30px 70px rgba(18, 59, 93, 0.18);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --nav-h: 84px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  font-size: clamp(15px, 1vw + 0.7rem, 17px);
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--ocean); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.12; font-weight: 600; }

.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section--tint { background: var(--beige-200); }
.section--beige { background: var(--beige); }

/* ---------- Shared bits ---------- */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 0.9rem;
}
.eyebrow--light { color: var(--gold); }

.section__head { max-width: 640px; margin-bottom: 2.8rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title { font-size: clamp(1.8rem, 3.4vw, 2.8rem); letter-spacing: -0.01em; }
.section__title em { font-style: italic; color: var(--ocean); }

.lead { font-size: 1.06rem; color: var(--muted); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.02em;
  padding: 0.85rem 1.6rem; border-radius: 999px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s;
  white-space: nowrap; line-height: 1;
}
.btn i, .btn svg { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--book { background: var(--gold); color: #fff; box-shadow: 0 10px 26px rgba(198, 161, 91, 0.4); }
.btn--book:hover { background: var(--gold-600); box-shadow: 0 14px 32px rgba(198, 161, 91, 0.5); }

.btn--ocean { background: var(--ocean); color: #fff; box-shadow: 0 10px 26px rgba(46, 127, 163, 0.35); }
.btn--ocean:hover { background: var(--ocean-600); }

.btn--whatsapp { background: var(--wa); color: #fff; box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35); }
.btn--whatsapp:hover { background: var(--wa-600); }

.btn--ghost { background: rgba(255, 255, 255, 0.1); color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.5); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn--outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }

.btn--lg { padding: 1rem 2rem; font-size: 0.95rem; }

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255, 253, 248, 0.9);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s var(--ease), background 0.35s, border-color 0.35s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); background: rgba(255, 253, 248, 0.96); }

.nav__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }

.nav__logo { display: flex; align-items: center; gap: 0.6rem; }
.nav__logo-img { width: auto; height: 52px; display: block; }
.nav__logo-palm { color: var(--gold); flex: none; }
.nav__logo-palm svg { width: 34px; height: 34px; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-mark {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  letter-spacing: 0.14em; color: var(--navy);
}
.nav__logo-sub {
  font-size: 0.6rem; letter-spacing: 0.42em; font-weight: 700;
  color: var(--ocean); text-transform: uppercase; margin-top: 3px; margin-left: 2px;
}

.nav__menu { display: flex; align-items: center; gap: 0.4rem; }
.nav__link {
  position: relative; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--navy); padding: 0.5rem 0.75rem; transition: color 0.25s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0.75rem; right: 0.75rem; bottom: -0.15rem;
  height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover { color: var(--ocean); }
.nav__link.is-active { color: var(--ocean); }
.nav__link.is-active::after, .nav__link:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 0.7rem; }
.nav__call {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--navy); color: #fff; padding: 0.7rem 1.2rem; border-radius: 999px;
  font-weight: 700; font-size: 0.85rem; transition: background 0.3s, transform 0.3s var(--ease);
}
.nav__call:hover { background: var(--navy-700); transform: translateY(-2px); }
.nav__call .ico {
  width: 26px; height: 26px; border-radius: 50%; background: var(--wa);
  display: grid; place-items: center; flex: none;
}
.nav__call .ico svg { width: 15px; height: 15px; }

.nav__cta { padding: 0.72rem 1.35rem; }

.nav__toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; padding: 0 10px; }
.nav__toggle span { height: 2.5px; background: var(--navy); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================================
   PAGE LOADER
   ========================================================= */
.page-loader {
  position: fixed; inset: 0; z-index: 2000; background: var(--navy);
  display: grid; place-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.is-done { opacity: 0; visibility: hidden; }
.page-loader__mark { text-align: center; animation: loaderPulse 1.6s ease-in-out infinite; }
.page-loader__word { display: block; font-family: var(--font-display); font-size: 2.4rem; letter-spacing: 0.16em; color: #fff; font-weight: 700; }
.page-loader__sub { display: block; font-size: 0.7rem; letter-spacing: 0.44em; color: var(--gold); text-transform: uppercase; margin-top: 0.5rem; }
@keyframes loaderPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--ocean), var(--gold)); z-index: 200; transition: width 0.1s linear; }

/* =========================================================
   HERO — split layout (text panel + framed image)
   ========================================================= */
.hero {
  position: relative; min-height: calc(100vh - var(--nav-h)); margin-top: var(--nav-h);
  display: flex; align-items: stretch; overflow: hidden; isolation: isolate;
  background: var(--navy-900);
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr; width: 100%; align-items: stretch;
}
.hero__panel {
  position: relative; display: flex; align-items: center; justify-content: flex-end;
  padding: 4rem clamp(2rem, 4vw, 4rem) 4rem clamp(1.4rem, 6vw, 6rem);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(46, 127, 163, 0.22) 0%, rgba(18, 59, 93, 0) 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-900) 100%);
}
.hero__panel::after {
  content: ""; position: absolute; top: 0; right: -1px; bottom: 0; width: 2px;
  background: linear-gradient(180deg, transparent, rgba(198, 161, 91, 0.5), transparent);
}
.hero__content { position: relative; width: 100%; max-width: 560px; }
.hero__eyebrow {
  display: inline-flex; align-items: center;
  color: var(--gold); font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.76rem;
  margin-bottom: 1.3rem; padding: 0.45rem 1rem; border: 1px solid rgba(198, 161, 91, 0.4); border-radius: 999px;
  background: rgba(198, 161, 91, 0.1);
}
.hero__title {
  color: #fff; font-size: clamp(2.4rem, 4.6vw, 4.1rem); line-height: 1.04; letter-spacing: -0.015em; font-weight: 600;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; transform: translateY(105%); animation: heroLine 0.95s var(--ease) forwards; }
.hero__title .line:nth-child(1) > span { animation-delay: 0.15s; }
.hero__title .line:nth-child(2) > span { animation-delay: 0.30s; }
@keyframes heroLine { to { transform: translateY(0); } }

.hero__accent { display: block; font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--gold); font-size: clamp(1.2rem, 2.2vw, 1.7rem); margin-top: 1.1rem; }
.hero__sub { color: rgba(255, 255, 255, 0.82); font-size: 1.04rem; line-height: 1.65; margin-top: 1.4rem; max-width: 32rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero__phone { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 1.8rem; color: rgba(255, 255, 255, 0.9); font-weight: 600; font-size: 0.95rem; }
.hero__phone .ico { width: 30px; height: 30px; border-radius: 50%; background: var(--wa); display: grid; place-items: center; flex: none; }
.hero__phone .ico svg { width: 16px; height: 16px; color: #fff; }
.hero__phone a { color: #fff; transition: color 0.25s; }
.hero__phone a:hover { color: var(--gold); }

.hero__visual { position: relative; overflow: hidden; }
.hero__visual-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.06); will-change: transform; animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__visual::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, var(--navy-900) 0%, rgba(13, 43, 68, 0.25) 14%, rgba(13, 43, 68, 0) 34%);
}
.hero__badge {
  position: absolute; z-index: 3; right: clamp(1.5rem, 3vw, 2.5rem); bottom: clamp(1.5rem, 4vw, 2.5rem);
  display: flex; align-items: center; gap: 0.7rem; padding: 0.9rem 1.3rem;
  background: var(--gold); color: var(--navy-900); border-radius: 16px; box-shadow: var(--shadow-lg);
}
.hero__badge-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; line-height: 1; }
.hero__badge-txt { font-weight: 800; font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.2; }

.reveal-up, .reveal-left, .reveal-right { will-change: transform, opacity; }
.reveals-ready .reveal-up { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveals-ready .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveals-ready .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveals-ready .reveal-up.in, .reveals-ready .reveal-left.in, .reveals-ready .reveal-right.in { opacity: 1; transform: none; }

.hero__scroll { position: absolute; bottom: 1.6rem; left: clamp(1.4rem, 6vw, 6rem); z-index: 3; display: flex; flex-direction: row; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.65); }
.hero__scroll-dot { width: 20px; height: 32px; border: 2px solid rgba(255,255,255,0.5); border-radius: 12px; position: relative; flex: none; }
.hero__scroll-dot::after { content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 6px; background: var(--gold); border-radius: 2px; animation: scrollDot 1.5s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }
.hero__scroll-text { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; }

/* =========================================================
   FEATURE STRIP (circular icons)
   ========================================================= */
.features { background: var(--ivory); padding: clamp(2.2rem, 4vw, 3.2rem) 0; border-bottom: 1px solid var(--line); }
.features__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.feature { text-align: center; padding: 0.6rem 0.4rem; position: relative; }
.feature:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: var(--line); }
.feature__icon {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 0.85rem;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(145deg, var(--ocean), var(--navy));
  box-shadow: 0 10px 22px rgba(18, 59, 93, 0.22);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.feature:hover .feature__icon { transform: translateY(-5px) scale(1.05); box-shadow: 0 16px 30px rgba(18, 59, 93, 0.3); }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; color: var(--navy); line-height: 1.35; }

/* =========================================================
   ROOMS SHOWCASE (card row)
   ========================================================= */
.rooms-show__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.4rem; flex-wrap: wrap; }
.rooms-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.rooms-row--all { grid-template-columns: repeat(5, 1fr); }
.room-card {
  background: #fff; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); border: 1px solid var(--line);
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.room-card__media { aspect-ratio: 4 / 3.4; overflow: hidden; }
.room-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.room-card:hover .room-card__media img { transform: scale(1.07); }
.room-card__body { padding: 1rem 1.1rem 1.2rem; }
.room-card__body h3 { font-size: 1.12rem; margin-bottom: 0.15rem; }
.room-card__body p { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.7rem; }
.room-card__link { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--gold-600); font-weight: 700; font-size: 0.82rem; transition: gap 0.3s, color 0.3s; background: none; border: none; padding: 0; cursor: pointer; font-family: inherit; }
.room-card__link:hover { gap: 0.6rem; color: var(--ocean); }
.room-card__link svg { width: 15px; height: 15px; }

/* =========================================================
   WELCOME / ABOUT split
   ========================================================= */
.welcome__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.welcome__body p { color: var(--muted); margin-bottom: 1.4rem; }
.welcome__points { display: grid; gap: 1rem; margin: 1.6rem 0 2rem; }
.welcome__point { display: flex; align-items: center; gap: 0.85rem; font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.welcome__point .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--beige); color: var(--ocean); display: grid; place-items: center; flex: none; }
.welcome__point .ico svg { width: 20px; height: 20px; }
.location-note { display: flex; align-items: center; gap: 0.6rem; margin: 0.4rem 0 1.6rem; font-weight: 600; color: var(--ocean); font-size: 0.95rem; }
.location-note svg { width: 18px; height: 18px; flex: none; }
.welcome__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.welcome__media img { width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover; }
.welcome__badge {
  position: absolute; bottom: 1.2rem; left: 1.2rem; background: rgba(18, 59, 93, 0.92);
  color: #fff; padding: 0.9rem 1.3rem; border-radius: 14px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: flex; align-items: center; gap: 0.85rem; box-shadow: var(--shadow-md);
}
.welcome__badge-num { font-family: var(--font-display); font-size: 2rem; color: var(--gold); font-weight: 700; line-height: 1; }
.welcome__badge-label { font-size: 0.78rem; line-height: 1.3; font-weight: 600; }

/* =========================================================
   PAGE HERO (interior pages)
   ========================================================= */
.pagehero { position: relative; padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem; overflow: hidden; isolation: isolate; }
.pagehero__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.pagehero__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(13,43,68,0.95), rgba(18,59,93,0.78)); }
.pagehero__content { max-width: 720px; }
.pagehero .eyebrow { color: var(--gold); }
.pagehero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.pagehero p { color: rgba(255,255,255,0.85); margin-top: 1rem; font-size: 1.05rem; max-width: 40rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.7); font-size: 0.82rem; margin-top: 1.6rem; }
.breadcrumb a { color: rgba(255,255,255,0.9); transition: color 0.25s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }

/* =========================================================
   WHY / FEATURE CARDS grid
   ========================================================= */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 2rem 1.6rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.why-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--ocean), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.why-card:hover::before { transform: scaleX(1); }
.why-card__num { font-family: var(--font-display); font-size: 2.4rem; color: var(--beige); font-weight: 700; line-height: 1; margin-bottom: 0.6rem; }
.why-card__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--beige); color: var(--ocean); display: grid; place-items: center; margin-bottom: 1rem; }
.why-card__icon svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.9rem; color: var(--muted); }

/* =========================================================
   AMENITIES grid (rooms page)
   ========================================================= */
.amenities__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.amenity {
  display: flex; gap: 0.9rem; align-items: flex-start; padding: 1.2rem 1.1rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.amenity:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.amenity__icon { width: 40px; height: 40px; border-radius: 10px; background: var(--navy); color: var(--gold); display: grid; place-items: center; flex: none; }
.amenity__icon svg { width: 20px; height: 20px; }
.amenity h3 { font-family: var(--font-body); font-size: 0.92rem; font-weight: 700; color: var(--navy); }
.amenity p { font-size: 0.8rem; color: var(--muted); margin-top: 0.15rem; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery__item { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,59,93,0.55), transparent 55%); opacity: 0; transition: opacity 0.4s; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }
.gallery__zoom { position: absolute; bottom: 0.9rem; right: 0.9rem; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.9); color: var(--navy); display: grid; place-items: center; opacity: 0; transform: translateY(8px); transition: opacity 0.4s, transform 0.4s; z-index: 2; }
.gallery__item:hover .gallery__zoom { opacity: 1; transform: translateY(0); }
.gallery__zoom svg { width: 18px; height: 18px; }

.lightbox { position: fixed; inset: 0; z-index: 1500; background: rgba(9, 24, 38, 0.94); display: none; place-items: center; padding: 1.5rem; }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(92vw, 1000px); max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__btn { position: absolute; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.14); color: #fff; display: grid; place-items: center; transition: background 0.25s; }
.lightbox__btn:hover { background: var(--ocean); }
.lightbox__btn svg { width: 24px; height: 24px; }
.lightbox__close { top: 1.4rem; right: 1.4rem; }
.lightbox__prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.4rem; top: 50%; transform: translateY(-50%); }

/* =========================================================
   VIDEO TOUR
   ========================================================= */
.videotour__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.videotour__text p { color: var(--muted); margin-bottom: 1.4rem; }
.videotour__list { display: grid; gap: 0.8rem; margin-bottom: 1.8rem; }
.videotour__list li { display: flex; align-items: center; gap: 0.7rem; font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.videotour__list svg { width: 20px; height: 20px; color: var(--ocean); flex: none; }
.videotour__player { display: flex; justify-content: center; }
.videotour__frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 9/16; width: 100%; max-width: 340px; background: var(--navy); }
.videotour__video { width: 100%; height: 100%; object-fit: cover; }
.videotour__play { position: absolute; inset: 0; margin: auto; width: 82px; height: 82px; border-radius: 50%; background: rgba(255,255,255,0.92); color: var(--navy); display: grid; place-items: center; transition: transform 0.4s var(--ease), background 0.3s; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.videotour__play::before { content: ""; position: absolute; inset: -12px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.6); animation: pulseRing 2s ease-out infinite; }
@keyframes pulseRing { 0% { transform: scale(0.9); opacity: 0.8; } 100% { transform: scale(1.4); opacity: 0; } }
.videotour__play svg { width: 30px; height: 30px; margin-left: 4px; }
.videotour__play:hover { transform: scale(1.08); background: #fff; }
.videotour__frame.is-playing .videotour__play { opacity: 0; pointer-events: none; }
.videotour__sound { position: absolute; bottom: 1rem; right: 1rem; width: 48px; height: 48px; border-radius: 50%; background: rgba(18,59,93,0.85); color: #fff; display: grid; place-items: center; z-index: 3; }
.videotour__sound svg { width: 22px; height: 22px; }

/* =========================================================
   LOCATION
   ========================================================= */
.location__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: stretch; }
.location__info { background: var(--navy); color: #fff; border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 2.8rem); }
.location__info h2 { color: #fff; }
.location__info .eyebrow { color: var(--gold); }
.location__list { display: grid; gap: 1.1rem; margin: 1.6rem 0 2rem; }
.location__list li { display: flex; gap: 0.85rem; align-items: center; }
.location__list .ico { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.1); color: var(--gold); display: grid; place-items: center; flex: none; }
.location__list .ico svg { width: 20px; height: 20px; }
.location__list strong { display: block; font-size: 0.95rem; }
.location__list span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.location__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); min-height: 380px; }
.location__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

.medical__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.medical-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.3rem; display: flex; gap: 0.9rem; align-items: flex-start; transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.medical-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.medical-card .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--beige); color: var(--ocean); display: grid; place-items: center; flex: none; }
.medical-card .ico svg { width: 22px; height: 22px; }
.medical-card strong { display: block; color: var(--navy); font-size: 0.95rem; }
.medical-card span { font-size: 0.8rem; color: var(--muted); }

.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.chip { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--beige); color: var(--navy); padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.82rem; font-weight: 600; }
.chip svg { width: 15px; height: 15px; color: var(--ocean); }

/* =========================================================
   HOUSE RULES
   ========================================================= */
.rules__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.rule-card { display: flex; gap: 1.2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.5rem; transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.rule-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.rule-card__num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: #fff; background: linear-gradient(145deg, var(--ocean), var(--navy)); width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.rule-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.rule-card p { font-size: 0.88rem; color: var(--muted); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact__info { display: grid; gap: 1rem; }
.contact-item { display: flex; gap: 1rem; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.2rem 1.3rem; transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.contact-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.contact-item .ico { width: 48px; height: 48px; border-radius: 12px; background: var(--navy); color: var(--gold); display: grid; place-items: center; flex: none; }
.contact-item .ico svg { width: 22px; height: 22px; }
.contact-item strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ocean); }
.contact-item span, .contact-item a { font-size: 0.95rem; color: var(--charcoal); font-weight: 600; }
.contact-item a:hover { color: var(--ocean); }
.contact__actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 0.4rem; }

.booking-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--shadow-md); }
.booking-card h2 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.booking-card > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 0.92rem; color: var(--charcoal); background: var(--ivory);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(46,127,163,0.14); }
.field textarea { resize: vertical; min-height: 90px; }
.field input.invalid, .field select.invalid { border-color: #d9534f; }
.field .err { display: block; color: #d9534f; font-size: 0.76rem; margin-top: 0.3rem; min-height: 1em; }
.booking-card .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.booking-note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 0.9rem; }

/* =========================================================
   CTA band
   ========================================================= */
.cta { position: relative; padding: clamp(4rem, 8vw, 6.5rem) 0; overflow: hidden; isolation: isolate; text-align: center; }
.cta__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.cta__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(13,43,68,0.95), rgba(18,59,93,0.82)); }
.cta__content { max-width: 680px; margin-inline: auto; }
.cta__title { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 0.8rem; }
.cta__sub { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.05rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }
.cta__phone { margin-top: 1.8rem; color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.cta__phone a { color: var(--gold); font-weight: 700; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--navy-900); color: rgba(255,255,255,0.8); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.3fr; gap: 2.2rem; padding-bottom: 3rem; }
.footer__logo { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 1.2rem; }
.footer__logo-img { width: auto; height: 62px; display: block; filter: brightness(0) invert(1); opacity: 0.95; }
.footer__logo-palm { color: var(--gold); }
.footer__logo-palm svg { width: 30px; height: 30px; }
.footer__logo-text { display: flex; flex-direction: column; line-height: 1; }
.footer__logo-mark { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; letter-spacing: 0.14em; color: #fff; }
.footer__logo-sub { font-size: 0.56rem; letter-spacing: 0.4em; font-weight: 700; color: var(--gold); text-transform: uppercase; margin-top: 3px; }
.footer__brand p { font-size: 0.88rem; margin-bottom: 1.2rem; max-width: 25rem; color: rgba(255,255,255,0.62); }
.footer__social { display: flex; gap: 0.6rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #fff; transition: background 0.3s, transform 0.3s var(--ease); }
.footer__social a:hover { background: var(--gold); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }

.footer__col h4 { color: #fff; font-family: var(--font-body); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 1.1rem; }
.footer__col a { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: rgba(255,255,255,0.68); padding: 0.28rem 0; transition: color 0.25s, padding-left 0.25s; }
.footer__col a:hover { color: var(--gold); padding-left: 0.3rem; }
.footer__contact p { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.86rem; margin-bottom: 0.9rem; color: rgba(255,255,255,0.68); }
.footer__contact svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 3px; }
.footer__contact a { color: rgba(255,255,255,0.68); }
.footer__contact a:hover { color: var(--gold); }
.footer__why li { display: flex; align-items: center; gap: 0.55rem; font-size: 0.86rem; padding: 0.28rem 0; color: rgba(255,255,255,0.68); }
.footer__why svg { width: 16px; height: 16px; color: var(--gold); flex: none; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.4rem 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.footer__bottom-inner .heart { color: #e26d6d; }

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */
.floaters { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 120; display: flex; flex-direction: column; gap: 0.7rem; }
.floater { position: relative; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-md); transition: transform 0.35s var(--ease); }
.floater:hover { transform: scale(1.08) translateY(-2px); }
.floater svg { width: 26px; height: 26px; }
.floater--wa { background: var(--wa); }
.floater--wa::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: pulseRing 2s ease-out infinite; }
.floater--call { background: var(--ocean); }
.floater--top { background: var(--navy); opacity: 0; pointer-events: none; transform: translateY(12px); }
.floater--top.show { opacity: 1; pointer-events: auto; transform: none; }

/* =========================================================
   BOOK & CONNECT
   ========================================================= */
.connect { background: var(--ivory); }
.connect__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; align-items: stretch; }
.connect__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.connect__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.connect__card-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.5rem; }
.connect__card-icon {
  width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; color: #fff;
  background: linear-gradient(145deg, var(--ocean), var(--navy)); box-shadow: 0 8px 18px rgba(18, 59, 93, 0.22);
}
.connect__card-icon svg { width: 22px; height: 22px; }
.connect__card-head h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--navy); }
.connect__card-sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.3rem; }
.connect__links { display: grid; gap: 0.7rem; margin-top: auto; }
.connect-btn {
  display: flex; align-items: center; gap: 0.85rem; padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--ivory);
  color: var(--navy); transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.connect-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: transparent; }
.connect-btn__mark {
  width: 40px; height: 40px; border-radius: 10px; flex: none; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); overflow: hidden;
}
.connect-btn__mark svg,
.connect-btn__mark img { width: 24px; height: 24px; object-fit: contain; }
.connect-btn__mark--mmt img, .connect-btn__mark--airbnb img,
.connect-btn__mark--booking img, .connect-btn__mark--google img,
.connect-btn__mark--ig img, .connect-btn__mark--fb img { width: 26px; height: 26px; }
.connect-btn__txt { display: flex; flex-direction: column; line-height: 1.25; flex: 1; }
.connect-btn__txt strong { font-size: 0.98rem; font-weight: 700; }
.connect-btn__txt span { font-size: 0.78rem; color: var(--muted); }
.connect-btn > svg { width: 18px; height: 18px; color: var(--muted); flex: none; transition: color 0.2s, transform 0.2s var(--ease); }
.connect-btn:hover > svg { transform: translate(2px, -2px); }
/* brand hover tints */
.connect-btn--mmt:hover     { background: #fdeef0; }
.connect-btn--booking:hover { background: #eaf0fb; }
.connect-btn--airbnb:hover  { background: #fdeef1; }
.connect-btn--fb:hover      { background: #eaf1fb; }
.connect-btn--ig:hover      { background: #fdeef4; }
.connect-btn--google:hover  { background: #f1f4f9; }
.connect-btn--maps:hover    { background: #eaf3ee; } .connect-btn--maps .connect-btn__mark { color: #34a853; }

/* =========================================================
   BOOKING MODAL
   ========================================================= */
.modal { position: fixed; inset: 0; z-index: 1200; display: none; }
.modal.is-open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(13, 43, 68, 0.6); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); animation: modalFade 0.25s ease; }
.modal__dialog {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(560px, calc(100vw - 2rem)); max-height: calc(100vh - 2rem); overflow-y: auto;
  background: var(--ivory); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem); animation: modalPop 0.3s var(--ease);
}
.modal__close {
  position: absolute; top: 0.9rem; right: 0.9rem; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--navy); display: grid; place-items: center;
  cursor: pointer; transition: background 0.2s, color 0.2s;
}
.modal__close:hover { background: var(--navy); color: #fff; }
.modal__close svg { width: 18px; height: 18px; }
.modal__head { margin-bottom: 1.4rem; padding-right: 2.5rem; }
.modal__head h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--navy); margin: 0.2rem 0 0.5rem; }
.modal__sub { color: var(--muted); font-size: 0.9rem; }
.modal__form .btn--whatsapp { width: 100%; justify-content: center; margin-top: 0.4rem; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalPop { from { opacity: 0; transform: translate(-50%, -46%) scale(0.98); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .features__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem 1rem; }
  .feature:nth-child(3)::after { display: none; }
  .rooms-row:not(.rooms-row--all) { grid-template-columns: repeat(3, 1fr); }
  .rooms-row:not(.rooms-row--all) .room-card:nth-child(n+4) { display: none; }
  .rooms-row--all { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .amenities__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .connect__grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .hero__panel { padding: 3rem clamp(1.4rem, 3vw, 2.4rem); }
  .hero__badge { left: 1.4rem; }
}

@media (max-width: 900px) {
  :root { --nav-h: 72px; }
  .nav__menu {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--ivory); padding: 1rem 1.2rem 1.6rem; gap: 0; box-shadow: var(--shadow-md);
    transform: translateY(-120%); transition: transform 0.4s var(--ease); border-bottom: 1px solid var(--line);
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav__menu.open { transform: translateY(0); }
  .nav__link { padding: 0.9rem 0.5rem; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
  .nav__link::after { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }
  .nav__call span.num { display: none; }
  .nav__call { padding: 0.6rem; }

  .welcome__grid, .videotour__grid, .location__grid, .contact__grid { grid-template-columns: 1fr; }
  .welcome__media { order: -1; }
  .location__info { order: 2; }
  /* Use vertical reveals on mobile so horizontal transforms never push content off-screen */
  .reveals-ready .reveal-left, .reveals-ready .reveal-right { transform: translateY(28px); }
  .medical__grid { grid-template-columns: repeat(2, 1fr); }
  .rules__grid { grid-template-columns: 1fr; }
  .rooms-row--all { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item { aspect-ratio: 4/3; }

  /* Hero: stack text panel over image on mobile */
  .hero { min-height: 0; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__panel { justify-content: flex-start; padding: 2.6rem 1.4rem 3rem; }
  .hero__panel::after { display: none; }
  .hero__content { max-width: 100%; }
  .hero__sub { max-width: 100%; }
  .hero__visual { min-height: 46vh; order: 2; }
  .hero__visual::before { background: linear-gradient(0deg, var(--navy-900) 0%, rgba(13, 43, 68, 0) 30%); }
  .hero__badge { left: auto; right: 1.2rem; bottom: 1.2rem; padding: 0.8rem 1.1rem; }
  .hero__badge-num { font-size: 2rem; }
  .hero__scroll { display: none; }
}

@media (max-width: 620px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature::after { display: none; }
  .rooms-row:not(.rooms-row--all) { grid-template-columns: 1fr 1fr; }
  .rooms-row:not(.rooms-row--all) .room-card:nth-child(n+3) { display: none; }
  .rooms-row--all { grid-template-columns: 1fr; }
  .why__grid, .amenities__grid { grid-template-columns: 1fr; }
  .medical__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn, .cta__actions .btn { flex: 1 1 auto; justify-content: center; }
  .rooms-show__head { align-items: flex-start; }
  .rooms-show__head .btn { display: none; }
  .hero__title { font-size: clamp(2.1rem, 9vw, 3rem); }
  .hero__eyebrow { font-size: 0.68rem; letter-spacing: 0.18em; }
  .hero__sub { font-size: 0.98rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .hero__title .line > span { transform: none; }
}
