/* ============================================================
   B2 Beach Sweet Home — Stylesheet
   Coastal Karnataka / Karavali homestay theme
   ============================================================ */

:root {
  /* Brand palette (from logo) */
  --ink:        #211B17;
  --ink-soft:   #3A322C;
  --muted:      #6F655B;
  --brand:      #C13B2E;   /* logo red */
  --brand-dark: #9E2B20;
  --sun:        #EE8C2B;   /* logo orange/sun */
  --sun-2:      #F4A93C;
  --teal:       #E0913A;   /* warm secondary (replaces the old teal) */
  --teal-dark:  #BC641C;
  --sand:       #FBF4E9;   /* page background */
  --sand-2:     #F4E8D5;
  --cream:      #FFFDF8;   /* cards */
  --line:       rgba(33,27,23,.12);
  --shadow-sm:  0 2px 10px rgba(33,27,23,.08);
  --shadow-md:  0 14px 40px rgba(33,27,23,.14);
  --shadow-lg:  0 30px 70px rgba(33,27,23,.22);

  --grad-warm:  linear-gradient(135deg, var(--sun-2), var(--brand));
  --grad-sea:   linear-gradient(135deg, var(--teal), var(--teal-dark));

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --radius:    18px;
  --radius-lg: 28px;
  --header-h:  72px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--ink); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.2rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 4.2vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p  { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(38px, 6vw, 72px) 0; }
.section--tint { background: var(--sand-2); }
.section--ink { background: var(--ink); color: #EFE7DC; }
.section--ink h2, .section--ink h3 { color: #fff; }
.narrow { max-width: 760px; margin-inline: auto; }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; font-size: .72rem; color: var(--brand);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad-warm); border-radius: 2px; }
.section--ink .eyebrow { color: var(--sun-2); }
.lead { font-size: 1.15rem; color: var(--muted); }
.section--ink .lead { color: #d8cdbf; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--primary { background: var(--grad-warm); color: #fff; box-shadow: 0 10px 24px rgba(193,59,46,.32); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(193,59,46,.42); }
.btn--wa { background: var(--grad-warm); color: #fff; box-shadow: 0 10px 24px rgba(193,59,46,.3); }
.btn--wa:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(193,59,46,.42); }
.btn--ghost { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.95); color: var(--ink); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.08rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn-row.center { justify-content: center; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255,253,248,.82); backdrop-filter: blur(12px) saturate(1.4);
  border-bottom: 1px solid transparent; transition: box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.site-header.scrolled { background: rgba(255,253,248,.96); box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.nav > nav { margin-left: auto; margin-right: 1.25rem; }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand img { height: 46px; width: auto; }
.brand .brand-text { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; line-height: 1; color: var(--ink); }
.brand .brand-text small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--sun); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: .35rem; list-style: none; }
.nav-links a {
  color: var(--ink-soft); font-weight: 600; font-size: .96rem; padding: .5rem .8rem; border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand); background: rgba(193,59,46,.08); }
.nav-cta { display: flex; align-items: center; gap: .6rem; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--cream); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile side-drawer nav ---- */
.nav-backdrop { position: fixed; inset: 0; background: rgba(20,14,10,.5); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; z-index: 105; -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.nav-backdrop.show { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }
.nav-drawer-cta { display: none; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; position: relative; z-index: 120; }
  .nav > nav { margin: 0; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; height: 100vh; height: 100dvh;
    width: min(86vw, 340px);
    flex-direction: column; align-items: stretch; gap: 2px; list-style: none;
    background: var(--cream); box-shadow: -24px 0 70px rgba(33,27,23,.32);
    padding: calc(var(--header-h) + 24px) 20px 28px; margin: 0;
    transform: translateX(106%); transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 110; overflow-y: auto; overscroll-behavior: contain;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li:not(.nav-drawer-cta) a { display: block; padding: 1rem .9rem; border-radius: 12px; font-size: 1.12rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
  .nav-links li:not(.nav-drawer-cta):last-child a { border-bottom: 0; }
  .nav-links li:not(.nav-drawer-cta) a.active,
  .nav-links li:not(.nav-drawer-cta) a:hover { background: rgba(193,59,46,.08); color: var(--brand); }
  .nav-drawer-cta { display: block; margin-top: 20px; }
  .nav-drawer-cta .btn { width: 100%; }
  .nav-cta .btn-desktop { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.14) translate(-1.5%, -1.5%); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,14,10,.42) 0%, rgba(20,14,10,.12) 38%, rgba(20,14,10,.78) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-bottom: clamp(48px, 8vw, 96px); padding-top: calc(var(--header-h) + 30px); max-width: 820px; }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero .kicker {
  display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(6px); padding: .45rem 1rem; border-radius: 999px; font-weight: 600; font-size: .85rem; margin-bottom: 1.2rem;
  letter-spacing: .04em;
}
.hero p.lead { color: #f3ece2; max-width: 600px; font-size: 1.2rem; text-shadow: 0 1px 16px rgba(0,0,0,.4); }
.hero__meta { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.6rem; font-size: .92rem; color: #f0e7db; }
.hero__meta span { display: inline-flex; align-items: center; gap: .45rem; }
.scroll-cue { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 3; color: #fff; opacity: .8; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,8px);} }

/* ---------- Page banner (inner pages) ---------- */
.page-hero { position: relative; color: #fff; padding: calc(var(--header-h) + 70px) 0 64px; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,14,10,.55), rgba(20,14,10,.72)); z-index: 1; }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #f0e7db; max-width: 620px; margin: 0; }
.breadcrumb { font-size: .85rem; color: #e6d9c8; margin-bottom: .8rem; letter-spacing: .03em; }
.breadcrumb a { color: #fff; opacity: .85; }

/* ---------- Pillars / feature cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.feature {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; height: 100%;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature .ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--grad-warm); color: #fff; margin-bottom: 16px; }
.feature .ico svg { width: 28px; height: 28px; }
.feature h3 { margin-bottom: .35rem; }
.feature p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; }
.split__media .stamp {
  position: absolute; bottom: -22px; right: -10px; background: var(--cream); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 14px 18px; display: flex; align-items: center; gap: 12px; max-width: 240px;
}
.split__media .stamp .big { font-family: var(--font-display); font-size: 1.6rem; color: var(--brand); line-height: 1; }
.split__media .stamp small { color: var(--muted); font-size: .8rem; }

.check-list { list-style: none; display: grid; gap: .7rem; margin: 1.2rem 0 1.6rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink-soft); }
.check-list li svg { flex: none; width: 22px; height: 22px; color: var(--teal); margin-top: 2px; }

/* ---------- Amenities ---------- */
.amenities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.amenity { background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: 16px; display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: .94rem; }
.amenity svg { width: 24px; height: 24px; color: var(--teal); flex: none; }

/* ---------- Spaces (rooms / areas) ---------- */
.spaces { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.space { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.space:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.space__img { aspect-ratio: 4/3; overflow: hidden; }
.space__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.space:hover .space__img img { transform: scale(1.06); }
.space__body { padding: 16px 20px; }
.space__body h3 { margin-bottom: .25rem; font-size: 1.18rem; display: flex; align-items: center; gap: .5rem; }
.space__body h3 .pill { font-family: var(--font-body); font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: rgba(15,139,141,.14); color: var(--teal-dark); padding: .2rem .55rem; border-radius: 999px; }
.space__body p { margin: 0; color: var(--muted); font-size: .92rem; }
@media (max-width: 980px) { .spaces { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .spaces { grid-template-columns: 1fr; } }

/* ---------- Food / menu ---------- */
.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dish { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dish__img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--sand-2); }
.dish__img::before { content: ""; position: absolute; inset: 0; background-image: var(--img); background-size: cover; background-position: center; filter: blur(18px) saturate(1.2) brightness(.95); transform: scale(1.25); }
.dish__img img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; transition: transform .5s ease; }
.dish:hover .dish__img img { transform: scale(1.07); }
.dish__body { padding: 16px 18px; }
.dish__body h3 { font-size: 1.15rem; margin-bottom: .2rem; }
.dish__body p { color: var(--muted); font-size: .9rem; margin: 0; }
.tag { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .6rem; border-radius: 999px; }
.tag--nonveg { background: rgba(193,59,46,.12); color: var(--brand-dark); }
.tag--veg { background: rgba(15,139,141,.14); color: var(--teal-dark); }
.tag--sea { background: rgba(238,140,43,.16); color: #b5651b; }

/* Menu list (real menu) */
.menu-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 26px 28px; height: 100%; }
.menu-card h3 { display: flex; align-items: center; gap: .6rem; padding-bottom: .6rem; border-bottom: 2px dashed var(--line); margin-bottom: 1rem; }
.menu-card h3 .dot { width: 12px; height: 12px; border-radius: 50%; }
.menu-list { list-style: none; display: grid; gap: .55rem; }
.menu-list li { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.menu-list .name { font-weight: 600; color: var(--ink); }
.menu-list .name small { display: block; font-weight: 500; color: var(--muted); font-size: .8rem; }
.menu-list .price { font-family: var(--font-display); font-weight: 600; color: var(--brand); white-space: nowrap; }
.menu-list .dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.menu-note { font-size: .86rem; color: var(--muted); margin-top: 1rem; padding-top: .8rem; border-top: 1px solid var(--line); }

/* ---------- Gallery ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; margin-bottom: 38px; }
.filter-bar button { font-family: var(--font-body); font-weight: 600; font-size: .9rem; padding: .6rem 1.25rem; border-radius: 999px; border: 1.5px solid var(--line); background: var(--cream); color: var(--ink-soft); cursor: pointer; transition: all .25s; }
.filter-bar button:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }
.filter-bar button.active { background: var(--grad-warm); color: #fff; border-color: transparent; box-shadow: 0 8px 20px rgba(193,59,46,.28); }
.masonry { columns: 3; column-gap: 16px; }
.masonry .tile { break-inside: avoid; margin-bottom: 16px; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; position: relative; background: var(--sand-2); transition: box-shadow .3s, transform .3s; }
.masonry .tile:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.masonry .tile img { width: 100%; display: block; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.masonry .tile:hover img { transform: scale(1.07); }
.masonry .tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,14,10,.5), rgba(20,14,10,0) 55%); opacity: 0; transition: opacity .3s; pointer-events: none; }
.masonry .tile:hover::after { opacity: 1; }
.tile__zoom { position: absolute; right: 12px; bottom: 12px; z-index: 3; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,253,248,.95); color: var(--ink); display: grid; place-items: center; opacity: 0; transform: translateY(8px) scale(.85); transition: opacity .3s, transform .3s; }
.tile__zoom svg { width: 20px; height: 20px; }
.masonry .tile:hover .tile__zoom { opacity: 1; transform: none; }
.masonry .tile.is-video::after { opacity: 1; background: linear-gradient(to top, rgba(20,14,10,.55), rgba(20,14,10,.12) 60%); }
.masonry .tile .play { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; color: #fff; }
.masonry .tile .play svg { width: 60px; height: 60px; filter: drop-shadow(0 4px 12px rgba(0,0,0,.45)); transition: transform .3s; }
.masonry .tile:hover .play svg { transform: scale(1.12); }
.tile.hide { display: none; }
.masonry .tile video { width: 100%; display: block; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(15,10,7,.93); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox__content { max-width: 92vw; max-height: 88vh; }
.lightbox__content img, .lightbox__content video { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 18px; right: 22px; width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255,255,255,.14); color: #fff; font-size: 1.5rem; cursor: pointer; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: 0; background: rgba(255,255,255,.14); color: #fff; cursor: pointer; font-size: 1.5rem; display: grid; place-items: center; }
.lightbox__nav.prev { left: 18px; } .lightbox__nav.next { right: 18px; }

/* ---------- Attractions ---------- */
.place { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.place:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.place__top { padding: 22px 24px; }
.place__dist { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .8rem; color: var(--teal-dark); background: rgba(15,139,141,.12); padding: .3rem .7rem; border-radius: 999px; margin-bottom: .8rem; }
.place h3 { margin-bottom: .3rem; }
.place p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Testimonials ---------- */
.quote { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); height: 100%; }
.quote .stars { color: var(--sun); letter-spacing: 2px; margin-bottom: .6rem; }
.quote p { font-size: 1.02rem; color: var(--ink-soft); font-style: italic; }
.quote .who { display: flex; align-items: center; gap: .7rem; margin-top: 1rem; font-weight: 700; }
.quote .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-sea); color: #fff; display: grid; place-items: center; font-family: var(--font-display); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); color: #fff; background: var(--ink); box-shadow: var(--shadow-md); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(110% 130% at 88% 12%, rgba(238,140,43,.30), transparent 58%); }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 120% at 8% 100%, rgba(193,59,46,.22), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.info-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); margin-bottom: 16px; display: flex; gap: 16px; align-items: flex-start; }
.info-card .ico { width: 48px; height: 48px; border-radius: 14px; background: var(--grad-sea); color: #fff; display: grid; place-items: center; flex: none; }
.info-card .ico svg { width: 22px; height: 22px; }
.info-card h3 { font-size: 1.1rem; margin-bottom: .15rem; }
.info-card p, .info-card a { color: var(--muted); margin: 0; font-size: .98rem; }
.info-card a { color: var(--teal-dark); font-weight: 600; }

.form { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 12px; font-family: inherit; font-size: 1rem; background: var(--sand); color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--sun); border-color: transparent; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq details { background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: 4px 20px; margin-bottom: 12px; }
.faq summary { cursor: pointer; font-weight: 700; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--brand); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 16px; margin: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #cfc3b4; padding: 64px 0 28px; }
.footer a { color: #cfc3b4; }
.footer a:hover { color: var(--sun-2); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer__brand img { height: 54px; background: #fff; padding: 8px 12px; border-radius: 12px; margin-bottom: 14px; }
.footer h4 { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.footer ul { list-style: none; display: grid; gap: .55rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; font-size: .85rem; color: #9b9082; }
.footer__bottom .cf { color: var(--sun-2); font-weight: 600; }
.footer__bottom .cf:hover { color: #fff; text-decoration: underline; }
.footer__credit { text-align: center; margin-top: 14px; font-size: .82rem; color: #9b9082; }
.footer__credit a { color: var(--sun-2); font-weight: 600; }
.footer__credit a:hover { color: #fff; text-decoration: underline; }
.footer .social { display: flex; gap: 10px; margin-top: 8px; }
.footer .social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.footer .social a:hover { background: var(--grad-warm); }
.footer .social svg { width: 20px; height: 20px; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 95; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.fab { width: 62px; height: 62px; border: 0; padding: 0; border-radius: 50%; background: var(--grad-warm); box-shadow: 0 10px 30px rgba(193,59,46,.4); display: grid; place-items: center; color: #fff; cursor: pointer; animation: pulse 2.4s infinite; transition: transform .2s; }
.fab:hover { transform: scale(1.06); }
.fab svg { width: 34px; height: 34px; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(193,59,46,.45);} 70% { box-shadow: 0 0 0 16px rgba(193,59,46,0);} 100% { box-shadow: 0 0 0 0 rgba(193,59,46,0);} }

/* WhatsApp chat popup */
.wa-pop { position: relative; width: 300px; max-width: 78vw; background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(14px) scale(.96); transform-origin: bottom right; transition: opacity .25s ease, transform .25s ease, visibility .25s; }
.wa-pop.open { opacity: 1; visibility: visible; transform: none; }
.wa-pop__top { display: flex; align-items: center; gap: 12px; background: var(--ink); color: #fff; padding: 14px 44px 14px 16px; }
.wa-pop__ava { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-warm); display: grid; place-items: center; flex: none; }
.wa-pop__ava svg { width: 24px; height: 24px; color: #fff; }
.wa-pop__id strong { display: block; font-size: .96rem; line-height: 1.2; }
.wa-pop__id span { font-size: .74rem; opacity: .85; }
.wa-pop__msg { margin: 0; padding: 16px; font-size: .92rem; color: var(--ink-soft); background: var(--sand-2); }
.wa-pop__btn { display: flex; align-items: center; justify-content: center; gap: .5rem; background: var(--grad-warm); color: #fff; font-weight: 700; padding: 14px; text-decoration: none; transition: filter .2s; }
.wa-pop__btn:hover { filter: brightness(1.08); color: #fff; }
.wa-pop__btn svg { width: 20px; height: 20px; }
.wa-pop__x { position: absolute; top: 9px; right: 12px; z-index: 2; background: transparent; border: 0; color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; opacity: .85; }
.wa-pop__x:hover { opacity: 1; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .amenities { grid-template-columns: repeat(3, 1fr); }
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__media .stamp { right: 10px; }
  .amenities { grid-template-columns: repeat(2, 1fr); }
  .dish-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .masonry { columns: 2; column-gap: 12px; }
  .masonry .tile { margin-bottom: 12px; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { min-height: 86vh; }
}
@media (max-width: 460px) {
  .dish-grid { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: 1fr; }
}

/* ============================================================
   v2 — Coastal immersion: fonts, waves, parallax, experiences,
   animated stats, marquee, motifs, richer motion
   ============================================================ */
:root {
  --font-accent: "Caveat", cursive;
  --font-kn: "Noto Serif Kannada", serif;
  --sea: #1AA7A0;
  --gold: #E9A23B;
}

/* ---- Accent + Kannada type ---- */
.kn { font-family: var(--font-kn); font-weight: 600; }
.script-accent {
  display: block; font-family: var(--font-accent); font-weight: 700;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem); color: var(--brand); line-height: .9;
  transform: rotate(-2.5deg); margin-bottom: .25rem;
}
.section--ink .script-accent, .parallax .script-accent { color: var(--sun-2); }
.hero .script-accent { color: #ffe; text-shadow: 0 2px 20px rgba(0,0,0,.4); }

/* ---- Hero entrance animation + waves ---- */
.hero__inner > * { animation: heroIn .9s cubic-bezier(.2,.7,.2,1) both; }
.hero__inner > *:nth-child(1){animation-delay:.05s}
.hero__inner > *:nth-child(2){animation-delay:.15s}
.hero__inner > *:nth-child(3){animation-delay:.25s}
.hero__inner > *:nth-child(4){animation-delay:.35s}
.hero__inner > *:nth-child(5){animation-delay:.45s}
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

.hero-waves { position: absolute; left: 0; right: 0; bottom: -2px; height: 92px; z-index: 3; line-height: 0; pointer-events: none; }
.hero-waves svg { position: absolute; left: 0; bottom: 0; width: 200%; height: 92px; }
.hero-waves .w1 { animation: waveX 16s linear infinite; }
.hero-waves .w2 { animation: waveX 11s linear infinite reverse; }
@keyframes waveX { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 760px) { .hero-waves, .hero-waves svg { height: 52px; } }

/* ---- Wave divider on inner-page heroes (auto) ---- */
.page-hero::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 56px; z-index: 2;
  background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%2060'%20preserveAspectRatio='none'%3E%3Cpath%20fill='%23FBF4E9'%20d='M0,30C150,60,350,0,600,20C850,40,1050,5,1200,30L1200,60L0,60Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
}
.page-hero__inner { z-index: 3; }
/* standalone wave separators */
.wave-sep { line-height: 0; }
.wave-sep svg { display: block; width: 100%; height: 64px; }

/* ---- Parallax band ---- */
.parallax { position: relative; background-size: cover; background-position: center; color: #fff; overflow: hidden; }
@media (min-width: 900px) { .parallax { background-attachment: fixed; } }
.parallax::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,14,10,.55), rgba(20,14,10,.62)); z-index: 0; }
.parallax > .container { position: relative; z-index: 1; }
.parallax h2, .parallax h3 { color: #fff; }
.parallax .lead { color: #f0e7db; }

/* ---- Experiences bento ---- */
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; }
.exp { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; align-items: flex-end; isolation: isolate; }
.exp img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.exp::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15,10,7,.05) 35%, rgba(15,10,7,.82)); }
.exp:hover img { transform: scale(1.09); }
.exp__body { padding: 20px 22px; color: #fff; }
.exp__body h3 { color: #fff; margin-bottom: .2rem; font-size: 1.3rem; text-shadow: 0 1px 14px rgba(0,0,0,.4); }
.exp__body p { color: rgba(255,255,255,.9); font-size: .92rem; margin: 0; }
.exp__tag { display: inline-flex; align-items: center; gap: .4rem; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; background: rgba(255,255,255,.22); backdrop-filter: blur(4px); padding: .25rem .6rem; border-radius: 999px; margin-bottom: .6rem; }
.exp--wide { grid-column: span 2; }
.exp--tall { grid-row: span 2; }
@media (max-width: 900px) { .exp-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; } .exp--tall { grid-row: span 1; } }
@media (max-width: 560px) { .exp-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; } .exp--wide { grid-column: span 1; } }

/* ---- Animated stats ---- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.stat__num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 5.4vw, 3.6rem); color: var(--brand); line-height: 1; }
.parallax .stat__num, .section--ink .stat__num { color: var(--sun-2); }
.stat__label { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .5rem; }
.parallax .stat__label, .section--ink .stat__label { color: #e6dccd; }
@media (max-width: 620px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 28px; } }

/* ---- Marquee ---- */
.marquee { overflow: hidden; background: var(--ink); color: #f3ece2; padding: 16px 0; }
.marquee__track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--font-display); font-size: 1.15rem; padding: 0 1.6rem; display: inline-flex; align-items: center; gap: 1.6rem; white-space: nowrap; }
/* per-item icons are placed inline in the markup */
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- Floating decorative motifs ---- */
.motif { position: absolute; pointer-events: none; z-index: 0; opacity: .1; color: var(--brand); }
.motif svg { width: 100%; height: 100%; }
.motif--float { animation: floaty 8s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-16px) rotate(4deg); } }
.has-motif { position: relative; overflow: hidden; }
.has-motif > .container { position: relative; z-index: 1; }

/* ---- Reveal direction modifiers (JS adds .in) ---- */
.reveal.from-left:not(.in)  { transform: translateX(-46px); }
.reveal.from-right:not(.in) { transform: translateX(46px); }
.reveal.zoom:not(.in)       { transform: scale(.93); }
.reveal.in { opacity: 1 !important; transform: none !important; }

/* ---- Image frame flourish ---- */
.framed { position: relative; }
.framed::before { content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 2px solid var(--sun); border-radius: var(--radius-lg); z-index: -1; opacity: .55; }

/* ---- Hero "polaroid" of the real home ---- */
.hero__card {
  position: absolute; right: clamp(20px, 4vw, 64px); bottom: 124px; z-index: 4;
  width: 330px; background: #fff; padding: 13px 13px 10px; border-radius: 16px;
  box-shadow: var(--shadow-lg); transform: rotate(3deg); animation: heroIn 1s .6s both;
}
.hero__card img { border-radius: 10px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.hero__card span { display: block; font-family: var(--font-accent); font-weight: 700; color: var(--brand); font-size: 1.55rem; text-align: center; line-height: 1.1; margin-top: 6px; }
@media (max-width: 1040px) { .hero__card { display: none; } }

/* ---- "Step inside" real-home collage ---- */
.home-collage { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 168px; gap: 14px; }
.home-collage figure { margin: 0; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.home-collage img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.home-collage figure:hover img { transform: scale(1.07); }
.home-collage .c-cap { position: absolute; left: 12px; bottom: 10px; z-index: 2; color: #fff; font-weight: 600; font-size: .82rem; text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.home-collage figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(15,10,7,.5)); }
.home-collage .big { grid-column: span 2; grid-row: span 2; }
.home-collage .tall { grid-row: span 2; }
@media (max-width: 760px) {
  .home-collage { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .home-collage .big { grid-column: span 2; grid-row: span 2; }
  .home-collage .tall { grid-row: span 1; }
}

/* ---- Cooking reels (Shorts style) ---- */
.reels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.reel { position: relative; aspect-ratio: 9/16; border-radius: 20px; overflow: hidden; background: #000; box-shadow: var(--shadow-md); }
.reel video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 62%, rgba(10,7,5,.72)); pointer-events: none; }
.reel__label { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; text-shadow: 0 1px 10px rgba(0,0,0,.6); pointer-events: none; }
.reel__sound { position: absolute; top: 12px; right: 12px; z-index: 3; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(0,0,0,.5); color: #fff; font-size: 1rem; cursor: pointer; backdrop-filter: blur(4px); transition: background .2s, transform .2s; display: grid; place-items: center; }
.reel__sound:hover { background: var(--brand); transform: scale(1.08); }
.reel__badge { position: absolute; top: 12px; left: 12px; z-index: 2; display: inline-flex; align-items: center; gap: .35rem; font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: rgba(193,59,46,.85); padding: .25rem .55rem; border-radius: 999px; }
.reel__badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: blink 1.4s infinite; }
@keyframes blink { 50% { opacity: .25; } }
@media (max-width: 900px) {
  .reels { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 8px; scrollbar-width: none; }
  .reels::-webkit-scrollbar { display: none; }
  .reel { flex: 0 0 76%; scroll-snap-align: center; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal, .hero__inner > * { opacity: 1 !important; transform: none !important; }
  .parallax { background-attachment: scroll; }
}

/* ---- Testimonials: horizontal slider on mobile ---- */
@media (max-width: 760px) {
  .reviews-grid { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 4px 2px 12px; scrollbar-width: none; }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .reviews-grid .quote { flex: 0 0 86%; scroll-snap-align: center; }
}
