:root {
  --bg: #FAFBF8;
  --bg-mint: #F1F8F3;
  --white: #FFFFFF;
  --ink: #18231D;
  --ink-deep: #102B22;
  --forest: #153D30;
  --green: #276B4D;
  --green-dark: #20513D;
  --mint: #DCEDE2;
  --muted: #526158;
  --line: #DCE4DB;
  --gold: #C7A24A;
  --gold-soft: #EAD9A7;
  --gold-deep: #765516;
  --gold-glyph: #936B1D;

  --serif: 'Cormorant Garamond', 'Tiro Devanagari Hindi', serif;
  --sans: 'Jost', 'Mukta', sans-serif;
  --deva: 'Tiro Devanagari Hindi', serif;

  --gutter: clamp(20px, 5vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); }
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 2px; }
img { display: block; max-width: 100%; }

@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes spin { to { transform: rotate(360deg); } }

.page {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

.container { max-width: 1180px; margin: 0 auto; }
.section { padding: clamp(64px, 9vw, 120px) var(--gutter); }

.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 50;
  padding: 10px 16px; background: var(--green); color: var(--white); border-radius: 2px;
}
.skip-link:focus { left: 8px; color: var(--white); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center;
  padding: 15px 28px;
  font-size: 15px; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 2px;
  transition: background-color .2s, color .2s;
}
.btn-sm { min-height: 44px; padding: 10px 20px; font-size: 14px; }
.btn-primary { background: var(--green); color: var(--white); font-weight: 500; }
.btn-primary:hover { background: var(--green-dark); color: var(--white); }
.btn-outline { padding: 15px 22px; border: 1px solid var(--green); color: var(--green); }
.btn-outline:hover { background: var(--mint); color: var(--green-dark); }
.btn-light { padding: 16px 30px; background: var(--white); color: var(--forest); font-weight: 500; }
.btn-light:hover { background: var(--mint); color: var(--ink-deep); }
.btn-ghost-light { padding: 16px 26px; border: 1px solid var(--gold-soft); color: var(--white); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, .08); color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-row-center { justify-content: center; margin-bottom: 40px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px var(--gutter);
  background: rgba(250, 251, 248, .92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--forest); }
.brand:hover { color: var(--forest); }
.brand-mark { width: 44px; height: 44px; flex: none; }
.brand-ticks { transform-box: fill-box; transform-origin: center; transition: transform .8s ease; }
.brand:hover .brand-ticks { transform: rotate(29.5deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif); font-size: 26px; font-weight: 600;
  letter-spacing: .02em; color: var(--forest);
}
.brand-tag {
  margin-top: 4px;
  font-size: 9.5px; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-deep);
}

.primary-nav {
  display: flex; gap: clamp(4px, 2vw, 16px);
  font-size: 14px; letter-spacing: .08em; text-transform: uppercase;
}
.primary-nav a { color: var(--ink); padding: 12px 8px; white-space: nowrap; }
.btn { white-space: nowrap; }
.primary-nav a:hover { color: var(--green); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.lang-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding: 0 14px;
  border: 1px solid var(--gold); background: var(--white); border-radius: 2px;
  font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--forest);
  cursor: pointer; transition: background-color .2s;
}
.lang-btn:hover { background: #FBF6E8; color: var(--forest); }
.menu-btn {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line); background: var(--white); border-radius: 2px;
  color: var(--forest); font-size: 20px; line-height: 1; cursor: pointer;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(56px, 10vw, 128px) var(--gutter) clamp(56px, 8vw, 104px);
  background:
    radial-gradient(circle at 78% 45%, rgba(199, 162, 74, .22) 0, rgba(199, 162, 74, .08) 16%, transparent 42%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-mint) 100%);
  overflow: hidden;
}
.ring {
  position: absolute; top: 50%; transform: translateY(-50%);
  aspect-ratio: 1; border-radius: 50%; pointer-events: none;
}
.ring-1 { right: -8vw; width: min(60vw, 640px); border: 1px solid var(--gold-soft); }
.ring-2 { right: calc(-8vw + 6%); width: min(48vw, 510px); border: 1px dashed var(--gold-soft); }
.ring-3 { right: calc(-8vw + 15%); width: min(30vw, 320px); border: 1px solid var(--gold); }

.hero-grid {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: clamp(32px, 6vw, 80px); align-items: center;
}
.hero-copy { animation: rise .9s ease both; }
.hero-shloka {
  margin: 0 0 18px;
  font-family: var(--deva); font-size: clamp(18px, 2vw, 22px);
  color: var(--gold-deep); letter-spacing: .02em;
}
.hero h1 {
  margin: 0 0 22px;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(40px, 6.4vw, 84px); line-height: 1.02; letter-spacing: -.01em;
  text-wrap: balance; color: var(--ink-deep);
}
.hero h1 em { font-style: italic; color: var(--green); }
.hero-lede {
  margin: 0 0 34px; max-width: 520px;
  font-size: clamp(16px, 1.4vw, 19px); font-weight: 400; color: var(--muted);
  text-wrap: pretty;
}
.hero-portrait {
  position: relative; justify-self: center;
  width: min(100%, 380px); aspect-ratio: 4 / 5;
  animation: rise 1.1s .15s ease both;
}
.hero-portrait-frame {
  position: absolute; inset: -12px;
  border: 1px solid var(--gold); border-radius: 200px 200px 4px 4px;
  pointer-events: none;
}

/* ---------- photos (with placeholder fallback) ---------- */
.photo {
  position: relative; width: 100%; height: 100%; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(199, 162, 74, .10) 0 10px, transparent 10px 20px),
    #EEF3EC;
}
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo.is-empty::after {
  content: attr(data-placeholder);
  position: absolute; inset: 0;
  display: grid; place-items: center; padding: 24px; text-align: center;
  font-size: 14px; letter-spacing: .04em; color: var(--muted);
}
.photo.is-empty img { display: none; }
.photo-arch { border-radius: 190px 190px 4px 4px; }
.photo-circle { border-radius: 50%; }
/* Keep faces framed inside the arch and circle crops */
.hero-portrait .photo img { object-position: 50% 18%; }
/* 1.6x zoomed crop: pinned to the photo's left edge, which centres the face */
.about-photo .photo img {
  position: absolute; max-width: none;
  width: 160%; height: auto;
  left: 0; top: -28%;
}

/* ---------- strip ---------- */
.strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--white); padding: 16px var(--gutter);
}
.strip-inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 40px;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--green-dark);
}
.star { color: var(--gold); }

/* ---------- section headings ---------- */
.eyebrow {
  margin: 0 0 10px;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep);
}
.eyebrow-light { color: var(--gold-soft); }
.section-title {
  margin: 0;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.05;
  text-wrap: balance; color: var(--ink-deep);
}

/* ---------- services ---------- */
.services { background: var(--bg); color: var(--ink); }
.services-head {
  display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between;
  gap: 16px 40px; margin-bottom: clamp(36px, 5vw, 64px);
}
.services-intro { margin: 0; max-width: 380px; font-size: 16px; color: var(--muted); text-wrap: pretty; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 16px;
}
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 4px;
  padding: 32px 28px 36px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s;
}
.service-card:hover { border-color: var(--gold); }
.service-glyph { font-family: var(--deva); font-size: 28px; line-height: 1; color: var(--gold-glyph); }
.service-card h3 {
  margin: 0; font-family: var(--serif); font-weight: 600;
  font-size: 26px; line-height: 1.15; color: var(--forest);
}
.service-card p { margin: 0; font-size: 15px; color: var(--muted); text-wrap: pretty; }
.service-card .service-note {
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line);
  font-size: 13px; font-style: italic; color: var(--gold-deep);
}

/* ---------- about ---------- */
.about { background: var(--forest); color: var(--white); }
.about-grid {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 88px); align-items: center;
}
.about-photo { position: relative; width: min(100%, 420px); aspect-ratio: 1; }
.about-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px dashed var(--gold);
  animation: spin 90s linear infinite; pointer-events: none;
}
.about-photo-inner { position: absolute; inset: 22px; }
.about .photo { background-color: #1D4A3B; }
.about .photo.is-empty::after { color: var(--mint); }
.about-name { margin-bottom: 8px; color: var(--white); }
.about-name-alt { margin: 0 0 24px; font-family: var(--deva); font-size: 20px; color: var(--gold-soft); }
.about-text { margin: 0 0 16px; font-size: 17px; font-weight: 300; color: var(--mint); text-wrap: pretty; }
.about-text-last { margin-bottom: 32px; }
.about-quote {
  margin: 0; padding: 22px 26px;
  border-left: 2px solid var(--gold); background: rgba(255, 255, 255, .06);
  font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.4; color: var(--white);
}

/* ---------- office gallery ---------- */
.office { background: var(--bg-mint); border-bottom: 1px solid var(--line); }
.office-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 48px); }
.office-intro { margin: 14px 0 0; font-size: 16px; color: var(--muted); text-wrap: pretty; }
.office-grid {
  display: grid; gap: 16px;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  grid-template-areas: "a b" "c b";
}
.office-a { grid-area: a; }
.office-b { grid-area: b; }
.office-c { grid-area: c; }
.office-item { position: relative; margin: 0; overflow: hidden; border-radius: 4px; background: var(--line); }
.office-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.office-a img, .office-c img { aspect-ratio: 4 / 3; }
.office-b img { object-position: 50% 40%; }
.office-item:hover img { transform: scale(1.03); }
.office-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 16px 12px;
  background: linear-gradient(180deg, transparent, rgba(16, 43, 34, .82));
  font-size: 14px; color: var(--white); letter-spacing: .02em;
}
html[lang="hi"] .office-intro { line-height: 1.75; }
html[lang="hi"] .office-item figcaption { font-size: 15px; letter-spacing: 0; }

/* ---------- beyond the chart ---------- */
.moment { background: var(--bg); }
.moment-grid {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(32px, 6vw, 88px); align-items: center;
}
.moment-photo { position: relative; margin: 0; }
.moment-frame {
  position: absolute; inset: 14px -14px -14px 14px;
  border: 1px solid var(--gold); border-radius: 4px; pointer-events: none;
}
.moment-photo img {
  position: relative; width: 100%; height: auto; aspect-ratio: 16 / 10;
  object-fit: cover; object-position: 60% 30%; border-radius: 4px;
}
.moment-title { margin-bottom: 20px; }
.moment-text { margin: 0; font-size: 17px; color: var(--muted); text-wrap: pretty; }
html[lang="hi"] .moment-text { line-height: 1.75; }

/* ---------- process ---------- */
.process {
  padding: clamp(56px, 8vw, 104px) var(--gutter);
  background: var(--bg-mint); border-top: 1px solid var(--line);
}
.process-title {
  margin: 0 0 clamp(32px, 5vw, 56px);
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(30px, 4vw, 48px); text-align: center; color: var(--ink-deep);
}
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(24px, 4vw, 48px);
}
.step { display: flex; flex-direction: column; gap: 12px; text-align: center; align-items: center; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--gold); background: var(--white);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 22px; color: var(--gold-deep);
}
.step h3 { margin: 0; font-family: var(--serif); font-weight: 600; font-size: 24px; color: var(--forest); }
.step p { margin: 0; max-width: 300px; font-size: 15px; color: var(--muted); text-wrap: pretty; }

/* ---------- faq ---------- */
.faq { background: var(--bg); border-top: 1px solid var(--line); }
.faq-inner { max-width: 860px; }
.faq-title { margin-bottom: clamp(28px, 4vw, 44px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 0; cursor: pointer; list-style: none;
  font-family: var(--serif); font-weight: 600; font-size: clamp(20px, 2vw, 23px);
  line-height: 1.3; color: var(--forest);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; flex: none;
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--sans); font-size: 18px; font-weight: 400; color: var(--gold-deep);
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--green); }
.faq-item p { margin: 0 0 22px; max-width: 720px; font-size: 16px; color: var(--muted); text-wrap: pretty; }
html[lang="hi"] .faq-item summary { font-size: clamp(19px, 1.9vw, 21px); line-height: 1.5; }
html[lang="hi"] .faq-item p { line-height: 1.75; }

/* ---------- contact ---------- */
.contact { background: linear-gradient(180deg, var(--forest) 0%, var(--ink-deep) 100%); color: var(--white); }
.contact-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.contact-shloka { margin: 0 0 14px; font-family: var(--deva); font-size: 22px; color: var(--gold-soft); }
.contact-title {
  margin: 0 0 18px;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(34px, 5vw, 64px); line-height: 1.05; text-wrap: balance; color: var(--white);
}
.contact-lede {
  margin: 0 auto 36px; max-width: 520px;
  font-size: 17px; font-weight: 300; color: var(--mint); text-wrap: pretty;
}
.contact-meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 32px;
  font-size: 14px; letter-spacing: .06em; color: var(--mint);
}
.contact-meta a { color: var(--mint); }
.contact-meta a:hover { color: var(--white); }

/* phone numbers under the WhatsApp button */
.contact .btn-row-center:first-of-type { margin-bottom: 22px; }
.phones-label {
  margin: 0 0 12px; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft);
}
.phones { gap: 10px; }
.btn-phone { gap: 8px; padding: 12px 18px; font-size: 16px; letter-spacing: .03em; }
.phone-ico { width: 15px; height: 15px; flex: none; color: var(--gold-soft); }
html[lang="hi"] .phones-label { font-size: 15px; letter-spacing: 0; }

/* address */
.contact-address {
  display: flex; align-items: flex-start; justify-content: center; gap: 10px;
  max-width: 560px; margin: 34px auto 26px; padding: 18px 22px;
  border: 1px solid rgba(234, 217, 167, .35); border-radius: 4px; background: rgba(255, 255, 255, .04);
  font-style: normal; font-size: 16px; line-height: 1.6; color: var(--mint); text-align: left;
}
.contact-address > span { display: flex; flex-direction: column; gap: 2px; }
.address-name { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--white); }
.pin-ico { width: 20px; height: 20px; flex: none; margin-top: 4px; color: var(--gold); }
.map-link { margin-top: 6px; color: var(--gold-soft); text-decoration: underline; text-underline-offset: 3px; }
.map-link:hover { color: var(--white); }
html[lang="hi"] .contact-address { line-height: 1.75; }

/* ---------- footer ---------- */
.site-footer {
  padding: 26px var(--gutter);
  background: var(--ink-deep); border-top: 1px solid rgba(234, 217, 167, .25);
}
.footer-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px;
  font-size: 13px; color: var(--mint); letter-spacing: .04em;
}

/* ---------- responsive ---------- */
@media (max-width: 760px) {
  .hero-grid, .about-grid, .moment-grid { grid-template-columns: minmax(0, 1fr); }
  .office-grid { grid-template-columns: minmax(0, 1fr); grid-template-areas: "a" "b" "c"; }
  .office-b img { aspect-ratio: 4 / 5; }
  .moment-frame { inset: 10px -8px -10px 8px; }
  .menu-btn { display: inline-flex; }
  .primary-nav { display: none; }
  .primary-nav[data-open="true"] {
    display: flex; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0;
    padding: 8px var(--gutter) 16px;
    background: var(--bg); border-bottom: 1px solid var(--line);
  }
  .primary-nav[data-open="true"] a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .cta-long { display: none; }
  .strip-inner { gap: 8px 22px; }
  .strip-inner .star { display: none; }
  .contact-meta { flex-direction: column; align-items: center; gap: 8px; }
  .contact-meta .star { display: none; }
  .ring-outer { display: none; }
}
@media (min-width: 761px) {
  .cta-short { display: none; }
}
/* Mid widths (small laptops, tablets): short header CTA so the nav fits on one line */
@media (min-width: 761px) and (max-width: 1040px) {
  .header-cta .cta-long { display: none; }
  .header-cta .cta-short { display: inline; }
}
/* Very narrow phones: logo + language + menu fill the bar; booking stays in hero and contact */
@media (max-width: 420px) {
  .header-cta { display: none; }
  .brand { gap: 9px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-name { font-size: 22px; }
  .brand-tag { font-size: 8.5px; letter-spacing: .26em; }
}
@media (max-width: 380px) {
  .site-header { gap: 10px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-name { font-size: 20px; }
  .brand-tag { font-size: 8px; letter-spacing: .2em; }
  .lang-btn { padding: 0 10px; font-size: 14px; }
}
.brand-name, .brand-tag { white-space: nowrap; }

/* ---------- Hindi ---------- */
/* Devanagari needs taller lines, no letter-spacing, and a touch more size at small text */
html[lang="hi"] .hero h1 { line-height: 1.3; font-size: clamp(32px, 4.6vw, 58px); }
html[lang="hi"] .hero h1 em { font-style: normal; }
html[lang="hi"] .section-title,
html[lang="hi"] .contact-title,
html[lang="hi"] .process-title { line-height: 1.35; }
html[lang="hi"] .service-card h3 { font-size: 24px; line-height: 1.4; }
html[lang="hi"] .step h3 { font-size: 22px; }
html[lang="hi"] .about-quote { font-style: normal; font-size: 20px; line-height: 1.6; }
html[lang="hi"] .about-name-alt { font-family: var(--serif); font-size: 22px; letter-spacing: .02em; }
html[lang="hi"] .primary-nav,
html[lang="hi"] .btn,
html[lang="hi"] .strip-inner,
html[lang="hi"] .eyebrow,
html[lang="hi"] .contact-meta,
html[lang="hi"] .footer-inner { letter-spacing: 0; }
html[lang="hi"] .primary-nav { font-size: 16px; }
html[lang="hi"] .btn { font-size: 16px; }
html[lang="hi"] .btn-sm { font-size: 15px; }
html[lang="hi"] .strip-inner { font-size: 15px; }
html[lang="hi"] .eyebrow { font-size: 15px; }
html[lang="hi"] .hero-lede,
html[lang="hi"] .about-text,
html[lang="hi"] .contact-lede { line-height: 1.75; }
html[lang="hi"] .service-card p,
html[lang="hi"] .step p { font-size: 16px; line-height: 1.7; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
