/* Kashiveli Omadhoo — shared styles */
:root {
  --teal: #0e7c86; --teal-dark: #085e66; --lagoon: #7fd4d4;
  --sand: #f7f2ea; --sand-dark: #efe6d8; --ink: #22333b; --white: #fff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', 'Segoe UI', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--white); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: .75rem; }
h3 { font-size: 1.4rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .25em; font-size: .75rem; color: var(--teal); font-weight: 600; margin-bottom: .5rem; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,.94); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(0,0,0,.06); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: .9rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.brand { font-family: var(--serif); font-size: 1.5rem; letter-spacing: .08em; color: var(--ink); font-weight: 700; }
.brand small { display: block; font-family: var(--sans); font-size: .6rem; letter-spacing: .45em; text-transform: uppercase; color: var(--teal); }
nav ul { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
nav a { color: var(--ink); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; }
nav a:hover, nav a.active { color: var(--teal); }
.btn { display: inline-block; background: var(--teal); color: var(--white) !important; padding: .75rem 1.8rem; border-radius: 999px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; transition: background .2s; border: none; cursor: pointer; }
.btn:hover { background: var(--teal-dark); }
.btn.ghost { background: transparent; border: 1.5px solid var(--white); }
.btn.ghost:hover { background: rgba(255,255,255,.15); }
#menu-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--ink); cursor: pointer; }
.hero { min-height: 92vh; display: flex; align-items: center; justify-content: center; text-align: center; background-size: cover; background-position: center; position: relative; color: var(--white); padding: 7rem 1.5rem 4rem; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,40,50,.35), rgba(10,40,50,.45)); }
.hero > div { position: relative; z-index: 1; max-width: 800px; }
.hero p { font-size: 1.15rem; margin: 1.2rem 0 2rem; }
.hero .eyebrow { color: var(--lagoon); }
.page-hero { min-height: 55vh; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.card { background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: 0 10px 30px rgba(14,124,134,.10); }
.card img { height: 240px; width: 100%; object-fit: cover; }
.card .pad { padding: 1.5rem; }
.card p { font-size: .95rem; color: #4d5b63; }
.alt { background: var(--sand); }
.center { text-align: center; }
section .lead { max-width: 720px; margin: 0 auto 2.5rem; color: #4d5b63; }
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 4rem; }
.feature:last-child { margin-bottom: 0; }
.feature img { border-radius: 14px; height: 380px; width: 100%; object-fit: cover; box-shadow: 0 15px 40px rgba(14,124,134,.15); }
.feature.reverse img { order: 2; }
.feature ul { list-style: none; margin: 1rem 0 1.5rem; }
.feature li { padding: .3rem 0 .3rem 1.6rem; position: relative; font-size: .95rem; }
.feature li::before { content: '\2726'; position: absolute; left: 0; color: var(--teal); }
.price { font-family: var(--serif); font-size: 1.6rem; color: var(--teal); margin-bottom: 1rem; }
.price small { font-family: var(--sans); font-size: .75rem; color: #6b7a82; }
.amenities { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; justify-content: center; margin-top: 2rem; }
.amenities div { text-align: center; font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; font-weight: 600; color: var(--teal-dark); }
.amenities .ico { font-size: 1.8rem; display: block; margin-bottom: .3rem; }
.masonry { columns: 3 300px; column-gap: 1rem; }
.masonry img { border-radius: 10px; margin-bottom: 1rem; width: 100%; transition: transform .25s; }
.masonry img:hover { transform: scale(1.02); }
.cta-band { background: linear-gradient(120deg, var(--teal-dark), var(--teal)); color: var(--white); text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 640px; margin: 0 auto 2rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info p { margin-bottom: 1rem; }
form label { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin: 1rem 0 .3rem; }
form input, form textarea, form select { width: 100%; padding: .8rem 1rem; border: 1px solid #d8d2c6; border-radius: 8px; font-family: var(--sans); font-size: .95rem; background: var(--white); }
form textarea { min-height: 130px; resize: vertical; }
form button { margin-top: 1.5rem; }
footer { background: var(--ink); color: #bfcbd1; padding: 3.5rem 0 2rem; font-size: .9rem; }
footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
footer h3 { color: var(--white); font-size: 1.1rem; margin-bottom: .8rem; font-family: var(--sans); text-transform: uppercase; letter-spacing: .1em; }
footer a { color: #bfcbd1; }
footer a:hover { color: var(--lagoon); }
footer ul { list-style: none; }
footer li { margin-bottom: .4rem; }
.copyright { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem; text-align: center; font-size: .8rem; }
@media (max-width: 860px) {
  .grid-3, .feature, .contact-grid, footer .cols { grid-template-columns: 1fr; }
  .feature.reverse img { order: 0; }
  #menu-toggle { display: block; }
  nav ul { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 1.5rem; gap: 1rem; border-bottom: 1px solid rgba(0,0,0,.08); }
  nav ul.open { display: flex; }
}

/* WhatsApp floating button */
.wa-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.25); transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }

/* Mobile refinements */
@media (max-width: 640px) {
  section { padding: 3rem 0; }
  .hero { min-height: 78vh; padding: 6rem 1.2rem 3rem; }
  .hero p { font-size: 1rem; }
  .hero .btn { display: block; margin: .7rem auto 0 !important; max-width: 260px; }
  .feature img { height: 240px; }
  .card img { height: 200px; }
  .masonry { columns: 2 150px; }
  .amenities { gap: 1rem 1.4rem; }
  .amenities div { font-size: .7rem; }
  .btn { padding: .7rem 1.4rem; }
  .wa-float { width: 52px; height: 52px; right: 1rem; bottom: 1rem; }
  footer { padding: 2.5rem 0 1.5rem; }
}
