﻿:root {
  --ink: #14110c;
  --ink-soft: #1c1812;
  --cream: #f4efe4;
  --cream-muted: #e8e0d0;
  --gold: #c4a35a;
  --gold-bright: #d4b56a;
  --paper: #f7f3ea;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Outfit, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
/* `height: auto` is what makes the intrinsic width/height attributes safe: without it
   a CSS rule that sets only width (e.g. .prose img.team) leaves the height attribute
   in charge and the picture is stretched. Rules that genuinely need a fixed height
   (.ken img, .card .media img) are more specific and still win. */
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: "Cormorant Garamond", "Times New Roman", serif; font-weight: 500; margin: 0; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
.wrap { max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px) { .wrap { padding: 0 2.5rem; } }
@media (min-width: 1024px) { .wrap { padding: 0 3rem; } }

/* Header */
.site-header { position: absolute; inset: 0 0 auto; z-index: 30; }
.site-header.solid { position: sticky; top: 0; background: var(--ink); border-bottom: 1px solid rgb(255 255 255 / 0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 0.75rem; padding-bottom: 0.75rem; }
.brand { display: flex; flex-direction: column; align-items: center; line-height: 1; filter: drop-shadow(0 2px 10px rgb(0 0 0 / 0.55)); }
.logo-mark { position: relative; display: inline-block; }
/* The full logo carries the BHAVANI PROJECTS wordmark inside the artwork, so it needs
   more height than the old monogram did to stay legible - 2.75rem rendered the words
   too small to read. The brightness/contrast boost is gone too: it was tuned for the
   gold monogram and blows out the logo's flat yellow. */
.logo-mark img { height: 3.5rem; width: auto; border-radius: 3px; }
@media (min-width: 640px) { .logo-mark img { height: 4rem; } }
.brand-name { margin-top: 0.25rem; font-family: "Cormorant Garamond", serif; font-weight: 600; letter-spacing: 0.22em; color: var(--cream); font-size: 1.05rem; }
.brand-sub { margin-top: 0.15rem; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.42em; color: var(--gold-bright); }
.nav-desk { display: none; gap: 1.75rem; }
@media (min-width: 1024px) { .nav-desk { display: flex; } }
.nav-desk a { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgb(244 239 228 / 0.75); }
.nav-desk a:hover { color: var(--gold); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; min-height: 2.75rem; padding: 0 1.25rem; border-radius: 999px; border: 0; font-size: 0.9rem; font-weight: 500; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-bright); }
.btn-outline { background: transparent; border: 1px solid rgb(244 239 228 / 0.35); color: var(--cream); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ink { background: var(--ink); color: var(--cream); }
.phone-desk { display: none; }
@media (min-width: 640px) { .phone-desk { display: inline-flex; } }
.menu-btn { width: 2.75rem; height: 2.75rem; border-radius: 999px; border: 1px solid rgb(244 239 228 / 0.25); background: transparent; color: var(--cream); }
@media (min-width: 1024px) { .menu-btn { display: none; } }
.nav-mobile { display: none; margin: 0 1rem 1rem; padding: 1rem; border: 1px solid rgb(244 239 228 / 0.1); border-radius: 12px; background: rgb(20 17 12 / 0.95); }
.nav-mobile.open { display: flex; flex-direction: column; gap: 0.25rem; }
.nav-mobile a { padding: 0.75rem; color: var(--cream); }

/* Logo sheen */
.logo-sheen { position: absolute; inset: 0; pointer-events: none;
  -webkit-mask-image: url("../brand/logo-mark.webp"); mask-image: url("../brand/logo-mark.webp");
  -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center; }
.logo-sheen::before {
  content: ""; position: absolute; top: -30%; bottom: -30%; left: 0; width: 42%;
  background: linear-gradient(100deg, transparent 0%, rgb(255 250 232 / 0) 35%, rgb(255 250 232 / 0.7) 50%, rgb(212 181 106 / 0.25) 62%, transparent 100%);
  mix-blend-mode: soft-light; animation: logo-sheen-sweep 14s ease-in-out infinite;
}
@keyframes logo-sheen-sweep {
  0%, 22% { transform: translateX(-160%); opacity: 0; }
  38% { opacity: 0.45; }
  58%, 100% { transform: translateX(220%); opacity: 0; }
}

/* Hero */
.hero { position: relative; min-height: 100svh; overflow: hidden; background: var(--ink); }
.ken { position: absolute; inset: 0; }
.ken img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.1s var(--ease); animation: ken 18s var(--ease) both; }
.ken img.on { opacity: 1; }
@keyframes ken { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero-grad-x { position: absolute; inset: 0; background: linear-gradient(to right, #14110c, rgb(20 17 12 / 0.72), rgb(20 17 12 / 0.15)); pointer-events: none; }
.hero-grad-y { position: absolute; inset: 0; background: linear-gradient(to top, #14110c, transparent, rgb(20 17 12 / 0.4)); pointer-events: none; }
.hero-path-sheen { position: absolute; inset: -35%; pointer-events: none;
  background: linear-gradient(102deg, transparent 42%, rgb(255 224 150 / 0) 47%, rgb(255 228 160 / 0.32) 50%, rgb(196 163 90 / 0.16) 53%, transparent 58%);
  mix-blend-mode: soft-light; animation: path-sheen 8s ease-in-out infinite; }
@keyframes path-sheen {
  0% { transform: translate3d(-35%, 10%, 0) rotate(18deg); opacity: 0.03; }
  40% { opacity: 0.11; }
  100% { transform: translate3d(40%, -12%, 0) rotate(18deg); opacity: 0.04; }
}
.hero-path-pulse { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 65% 38% at 46% 58%, rgb(196 163 90 / 0.18), transparent 62%);
  mix-blend-mode: soft-light; animation: path-pulse 6s ease-in-out infinite; }
@keyframes path-pulse { 0%, 100% { opacity: 0.04; } 50% { opacity: 0.09; } }
.dots { position: absolute; top: 6rem; right: 0.75rem; z-index: 20; display: flex; flex-direction: column; gap: 0.5rem; }
@media (min-width: 640px) { .dots { top: auto; bottom: 2rem; right: 1.5rem; } }
.dots button { width: 6px; height: 24px; border: 0; border-radius: 999px; background: rgb(244 239 228 / 0.35); padding: 0; }
.dots button.on { height: 32px; background: var(--gold); }
.hero-copy { position: relative; z-index: 10; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; padding-top: 8rem; padding-bottom: 2rem; }
.kicker { display: flex; align-items: center; gap: 0.75rem; font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.kicker i { display: inline-block; width: 2rem; height: 1px; background: var(--gold); }
.hero h1 { margin-top: 1.25rem; font-size: clamp(2.4rem, 6.2vw, 5.4rem); line-height: 0.95; max-width: 18ch; color: var(--cream); }
.lede { margin-top: 1.25rem; max-width: 32rem; color: rgb(244 239 228 / 0.75); font-size: 1.05rem; line-height: 1.6; }
.cta-row { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .cta-row { flex-direction: row; align-items: center; } }
.stats { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; overflow: hidden; border-radius: 12px; border: 1px solid rgb(244 239 228 / 0.1); background: rgb(244 239 228 / 0.1); }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats li { list-style: none; background: rgb(20 17 12 / 0.7); padding: 1rem 1.25rem; backdrop-filter: blur(6px); }
.stats strong { display: block; font-family: "Cormorant Garamond", serif; font-size: 1.75rem; color: var(--gold); font-weight: 500; }
.stats span { font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgb(244 239 228 / 0.6); }

/* Sections */
.section { padding: 4rem 0; }
@media (min-width: 1024px) { .section { padding: 6rem 0; } }
.bg-paper { background: var(--paper); color: var(--ink); }
.bg-cream { background: var(--cream); color: var(--ink); }
.bg-ink { background: var(--ink); color: var(--cream); }
.bg-gold { background: var(--gold); color: var(--ink); }
.section-kicker { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.section h2 { margin-top: 0.75rem; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.05; max-width: 22ch; }
.section .sub { margin-top: 0.75rem; max-width: 36rem; color: rgb(20 17 12 / 0.65); line-height: 1.6; }
.grid-3 { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-2 { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

/* Cards */
.card { overflow: hidden; border-radius: 12px; background: var(--ink); color: var(--cream); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -24px rgb(20 17 12 / 0.55); }
.card .media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card .media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: 0; transition: opacity 1s var(--ease), transform 0.6s var(--ease); }
.card .media img.on { opacity: 1; }
.card:hover .media img { transform: scale(1.06); }
.badge { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2; background: var(--gold); color: var(--ink); border-radius: 999px; padding: 0.25rem 0.75rem; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; }
.card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.card-body .type { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.card-body h3 { font-size: 1.5rem; }
.muted { color: rgb(244 239 228 / 0.6); font-size: 0.9rem; }
.card.light { background: #fff; color: var(--ink); border: 1px solid rgb(20 17 12 / 0.1); }
.card.light .muted { color: rgb(20 17 12 / 0.55); }
.card.light p { color: rgb(20 17 12 / 0.7); font-size: 0.9rem; line-height: 1.55; }

.amenity-grid { margin-top: 3rem; display: grid; gap: 1px; overflow: hidden; border-radius: 12px; border: 1px solid rgb(20 17 12 / 0.1); background: rgb(20 17 12 / 0.1); }
@media (min-width: 640px) { .amenity-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .amenity-grid { grid-template-columns: repeat(3, 1fr); } }
.amenity-grid li { list-style: none; background: var(--paper); padding: 1.75rem; }
.amenity-grid h3 { margin-top: 1rem; font-size: 1.25rem; }
.amenity-grid p { margin-top: 0.5rem; font-size: 0.9rem; color: rgb(20 17 12 / 0.65); line-height: 1.55; }

.faq details { border-bottom: 1px solid rgb(20 17 12 / 0.1); padding: 1rem 0; }
.faq summary { cursor: pointer; font-weight: 500; color: var(--ink); }
.faq p { margin-top: 0.5rem; color: rgb(20 17 12 / 0.65); font-size: 0.95rem; line-height: 1.6; }
.quotes { display: grid; gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 768px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quotes blockquote { margin: 0; padding: 1.5rem; background: #fff; border-radius: 12px; border: 1px solid rgb(20 17 12 / 0.08); color: rgb(20 17 12 / 0.75); line-height: 1.55; }
.quotes cite { display: block; margin-top: 1rem; font-style: normal; color: var(--gold); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }

.visit { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 3rem; padding-bottom: 3rem; }
@media (min-width: 1024px) { .visit { flex-direction: row; align-items: center; justify-content: space-between; } }
.visit h2 { font-size: 2.25rem; }
.visit p { margin-top: 0.5rem; color: rgb(20 17 12 / 0.7); }
.visit-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn-ghost { background: transparent; color: var(--ink); }

footer.site-footer { background: var(--ink); color: var(--cream); padding: 3.5rem 0 0; }
.foot-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .foot-grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.foot-copy { font-size: 0.9rem; color: rgb(244 239 228 / 0.65); line-height: 1.6; margin-top: 1rem; max-width: 24rem; }
.legal { margin-top: 2.5rem; border-top: 1px solid rgb(244 239 228 / 0.1); padding: 1rem 0; text-align: center; font-size: 0.7rem; color: rgb(244 239 228 / 0.4); }

.page-hero { background: var(--ink); color: var(--cream); padding: 2.5rem 0 3.5rem; }
.page-hero h1 { margin-top: 1rem; font-size: clamp(2.1rem, 5vw, 4.2rem); line-height: 0.98; max-width: 18ch; }
.page-hero p.body { margin-top: 1.25rem; max-width: 32rem; color: rgb(244 239 228 / 0.7); }

.prose { max-width: 48rem; margin: 0 auto; padding: 3.5rem 1.25rem; color: var(--ink); }
.prose p { margin-top: 1.1rem; line-height: 1.65; color: rgb(20 17 12 / 0.72); }
.prose h2 { margin-top: 2.5rem; font-size: 1.9rem; }
.prose img.team { width: 100%; border-radius: 12px; margin-top: 2.5rem; }
.prose img.credai { height: 3.5rem; width: auto; margin-top: 2rem; }

.form { display: flex; flex-direction: column; gap: 1rem; }
.form label { font-size: 0.9rem; color: rgb(20 17 12 / 0.8); }
.form input, .form select, .form textarea {
  margin-top: 0.4rem; width: 100%; min-height: 3rem; border-radius: 8px; border: 1px solid rgb(20 17 12 / 0.15);
  background: #fff; padding: 0 0.75rem; font: inherit; color: var(--ink);
}
.form textarea { min-height: 5rem; padding: 0.6rem 0.75rem; }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 80; display: none; align-items: flex-end; justify-content: center; }
.modal.open { display: flex; }
.modal-bg { position: absolute; inset: 0; background: rgb(20 17 12 / 0.7); border: 0; }
.modal-card { position: relative; z-index: 1; width: 100%; max-width: 28rem; background: var(--paper); color: var(--ink); border-radius: 16px 16px 0 0; padding: 1.5rem; }
@media (min-width: 640px) { .modal { align-items: center; padding: 1.5rem; } .modal-card { border-radius: 16px; } }
.modal-head { display: flex; justify-content: space-between; gap: 1rem; }
.x { width: 2.75rem; height: 2.75rem; border-radius: 999px; border: 1px solid rgb(20 17 12 / 0.1); background: #fff; }

@media (prefers-reduced-motion: reduce) {
  .ken img, .hero-path-sheen, .hero-path-pulse, .logo-sheen::before { animation: none !important; }
}



/* --- Lead form additions (2026-09-04): optional email, WhatsApp consent, honeypot --- */
.form .opt { color: rgb(20 17 12 / 0.45); font-weight: 400; font-size: 0.85em; }
.form .consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; line-height: 1.45; cursor: pointer; }
.form .consent input { width: 1.05rem; height: 1.05rem; margin-top: 0.15rem; flex: 0 0 auto; accent-color: var(--gold); }
/* Honeypot: hidden from people, still filled in by naive bots. Not display:none,
   because some bots skip display:none fields on purpose. */
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.quote-done { margin-top: 0.9rem; padding: 0.75rem 1rem; border-radius: 10px; background: rgb(37 211 102 / 0.12); border: 1px solid rgb(37 211 102 / 0.35); font-size: 0.88rem; }

/* Footer logo (2026-09-04): same full logo, sized for the footer. Replaced the
   monogram-plus-text lockup, which would otherwise repeat the wordmark. */
.foot-logo { height: 3.25rem; width: auto; border-radius: 3px; }
