/* ===== Theme tokens ===== */
:root {
  --saffron: #e8730c;
  --saffron-deep: #c95a04;
  --maroon: #7a1f12;
  --maroon-deep: #5a160c;
  --gold: #d4a017;
  --gold-soft: #f3e2b3;
  --cream: #fdf6ec;
  --cream-2: #f7ead3;
  --ink: #2c1810;
  --ink-soft: #5e4a3c;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(90, 22, 12, 0.12);
  --shadow-lg: 0 18px 50px rgba(90, 22, 12, 0.18);
  --radius: 16px;
  --maxw: 1120px;
  --serif: "Marcellus", "Tiro Devanagari Hindi", "Tiro Kannada", Georgia, serif;
  --sans: "Mukta", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Language-aware heading font */
html[lang="hi"] h1, html[lang="hi"] h2, html[lang="hi"] h3 { font-family: "Tiro Devanagari Hindi", var(--serif); }
html[lang="kn"] h1, html[lang="kn"] h2, html[lang="kn"] h3 { font-family: "Tiro Kannada", var(--serif); }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.2; color: var(--maroon); }

a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .7rem 1.3rem; border-radius: 999px; font-weight: 600; font-size: .98rem;
  cursor: pointer; border: 2px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: .95rem 1.8rem; font-size: 1.05rem; }
.btn-whatsapp { background: #25d366; color: #08381a; box-shadow: 0 6px 18px rgba(37, 211, 102, .35); }
.btn-whatsapp:hover { background: #1ebe5a; }
.btn-outline { border-color: var(--gold-soft); color: var(--cream); background: rgba(255,255,255,.06); }
.btn-outline:hover { background: rgba(255,255,255,.16); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 246, 236, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-2);
}
.nav-inner { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; padding: .7rem 20px; }
.brand { margin-right: auto; }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-mark { font-size: 1.7rem; color: var(--saffron); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--serif); color: var(--maroon); font-size: 1.15rem; }
.brand-text small { color: var(--ink-soft); font-size: .72rem; letter-spacing: .04em; }

.main-nav { display: flex; gap: 1.4rem; margin-left: auto; }
.main-nav a { font-weight: 500; color: var(--ink-soft); position: relative; }
.main-nav a:hover { color: var(--saffron-deep); }

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; justify-content: center;
  width: 42px; height: 42px; margin-left: auto; padding: 0;
  background: transparent; border: 1px solid var(--gold); border-radius: 10px; cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--maroon); margin: 0 auto; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-book-mobile { display: none; }

.nav-actions { display: flex; align-items: center; gap: .8rem; margin-left: 1rem; }
.lang-switch { display: inline-flex; border: 1px solid var(--gold); border-radius: 999px; overflow: hidden; }
.lang-switch button {
  border: 0; background: transparent; padding: .35rem .6rem; cursor: pointer;
  font-family: var(--sans); font-size: .82rem; color: var(--maroon); transition: background .15s;
}
.lang-switch button.active { background: var(--saffron); color: var(--white); }

/* ===== Hero ===== */
.hero {
  position: relative; color: var(--cream); text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(212,160,23,.35), transparent 60%),
    linear-gradient(160deg, var(--maroon) 0%, var(--maroon-deep) 55%, #3d0f08 100%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(212,160,23,.18) 1.5px, transparent 1.5px);
  background-size: 26px 26px; opacity: .5;
}
.hero-inner { position: relative; padding: 5.5rem 20px 5rem; max-width: 820px; }
.hero-eyebrow { letter-spacing: .25em; text-transform: uppercase; font-size: .8rem; color: var(--gold); margin-bottom: 1rem; }
.hero h1 { color: var(--cream); font-size: clamp(2rem, 5vw, 3.3rem); margin-bottom: 1.1rem; }
.hero-lead { font-size: clamp(1.02rem, 2.2vw, 1.2rem); color: var(--gold-soft); margin: 0 auto 2rem; max-width: 640px; }
.hero-credential {
  display: inline-block; margin: 0 auto 1.8rem; padding: .5rem 1.2rem;
  background: rgba(212,160,23,.16); border: 1px solid rgba(212,160,23,.5);
  border-radius: 999px; color: var(--gold-soft); font-weight: 500; font-size: .98rem;
}
.hero-cta { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ===== Sections ===== */
.section { padding: 4.5rem 0; }
.section-alt { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.8rem; }
.eyebrow { letter-spacing: .2em; text-transform: uppercase; font-size: .78rem; color: var(--saffron-deep); font-weight: 600; margin-bottom: .5rem; }
.section h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: .6rem; }
.section-sub { color: var(--ink-soft); }

/* decorative divider under section heads */
.section-head h2::after {
  content: "🪔"; display: block; font-size: 1rem; margin-top: .6rem; opacity: .8;
}

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 280px 1fr; gap: 3rem; align-items: center; }
.about-art {
  font-size: 8rem; text-align: center; line-height: 1;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
  border-radius: 50%; aspect-ratio: 1; display: grid; place-items: center;
}
.about-text .eyebrow { text-align: left; }
.about-text h2 { margin-bottom: 1rem; }
.about-lead { font-size: 1.1rem; font-weight: 500; color: var(--maroon) !important; }
.about-text p { color: var(--ink-soft); margin-bottom: 1rem; }
.about-points { list-style: none; display: grid; gap: .5rem; margin-top: 1.2rem; }
.about-points li { padding-left: 1.8rem; position: relative; font-weight: 500; }
.about-points li::before { content: "🔱"; position: absolute; left: 0; }

/* ===== Service cards ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow); border: 1px solid #f0e3cc;
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-icon { font-size: 2.4rem; margin-bottom: .8rem; }
.card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.card p { color: var(--ink-soft); flex: 1; }
.card-cta { background: linear-gradient(160deg, var(--saffron), var(--saffron-deep)); color: var(--white); border: 0; }
.card-cta h3, .card-cta p { color: var(--white); }
.card-cta .btn { margin-top: 1.1rem; align-self: flex-start; }

/* ===== Features ===== */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.feature {
  text-align: center; padding: 2rem 1.2rem; border-radius: var(--radius);
  background: var(--white); box-shadow: var(--shadow); border: 1px solid #f0e3cc;
}
.feature-icon { font-size: 2.4rem; margin-bottom: .8rem; }
.feature h3 { font-size: 1.18rem; margin-bottom: .4rem; }
.feature p { color: var(--ink-soft); font-size: .95rem; }

/* ===== How it works ===== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; counter-reset: step; }
.step {
  position: relative; text-align: center; padding: 2.4rem 1.4rem 1.8rem;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid #f0e3cc;
}
.step-num {
  width: 52px; height: 52px; margin: 0 auto 1rem; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--serif); font-size: 1.5rem;
  color: var(--white); background: linear-gradient(160deg, var(--saffron), var(--saffron-deep));
  box-shadow: 0 6px 16px rgba(201,90,4,.35);
}
.step h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.step p { color: var(--ink-soft); font-size: .96rem; }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.gallery-item {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  display: grid; place-items: center; margin: 0;
  background: linear-gradient(160deg, var(--cream-2), var(--gold-soft));
  border: 1px solid #ecdcb9; transition: transform .18s ease;
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item span { font-size: 3rem; }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .5rem;
  background: rgba(122,31,18,.78); color: var(--cream); font-size: .85rem; text-align: center;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-note { text-align: center; color: var(--ink-soft); font-style: italic; margin-top: 1.4rem; font-size: .9rem; }

/* ===== FAQ ===== */
.faq-wrap { max-width: 780px; }
.faq-list { display: grid; gap: .8rem; }
.faq-item {
  background: var(--white); border: 1px solid #f0e3cc; border-radius: 12px;
  box-shadow: var(--shadow); overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.1rem 1.3rem; font-weight: 600;
  color: var(--maroon); position: relative; padding-right: 2.6rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--saffron); transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }

/* ===== Contact ===== */
.section-contact { background: linear-gradient(160deg, var(--maroon), var(--maroon-deep)); color: var(--cream); }
.section-contact .eyebrow { color: var(--gold); }
.section-contact h2 { color: var(--cream); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.contact-text p { color: var(--gold-soft); margin-bottom: 1.6rem; }
.contact-methods { display: grid; gap: .9rem; }
.contact-pill {
  display: flex; align-items: center; gap: .9rem; padding: .9rem 1.1rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(212,160,23,.4);
  border-radius: 14px; transition: background .15s, transform .15s;
}
.contact-pill:not(.static):hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.contact-pill.whatsapp { background: rgba(37,211,102,.16); border-color: rgba(37,211,102,.5); }
.pill-icon { font-size: 1.5rem; }
.contact-pill small { display: block; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.contact-pill strong { font-size: 1.1rem; color: var(--cream); }
.contact-map iframe { width: 100%; min-height: 320px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* ===== Footer ===== */
.site-footer { background: #3d0f08; color: var(--gold-soft); padding: 2.4rem 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: .6rem; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: .5rem; font-family: var(--serif); font-size: 1.2rem; color: var(--cream); }
.footer-contact a { color: var(--gold); }
.footer-contact a:hover { color: var(--cream); }
.footer-copy { font-size: .82rem; opacity: .75; }

/* ===== Floating WhatsApp ===== */
.fab-whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.5); animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1);} 50% { transform: scale(1.08);} }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .nav-toggle { display: flex; order: 3; margin-left: .6rem; }
  .nav-actions { order: 2; margin-left: auto; }

  .main-nav {
    order: 4; flex-basis: 100%; flex-direction: column; gap: 0;
    margin-left: 0; max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .main-nav.open { max-height: 420px; }
  .main-nav a {
    padding: .9rem .4rem; border-bottom: 1px solid var(--cream-2);
    font-size: 1.05rem; color: var(--maroon);
  }
  .nav-book-mobile { display: inline-flex; margin: .8rem 0 .4rem; align-self: flex-start; border-bottom: 0; }
  .nav-book-desktop { display: none; }

  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-text .eyebrow, .about-points { text-align: left; }
  .about-art { max-width: 200px; margin: 0 auto; font-size: 6rem; }
  .contact-inner { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .brand-text small { display: none; }
  .lang-switch button { padding: .3rem .45rem; font-size: .76rem; }
  .section { padding: 3.2rem 0; }
}
