:root {
  --ink: #241019;
  --cream: #FBF3E8;
  --cream-dim: #F2E6D6;
  --wine: #33081F;
  --wine-2: #4A0E2E;
  --magenta: #71045D;
  --magenta-2: #93157A;
  --magenta-glow: rgba(147, 21, 122, 0.35);
  --gold: #C9A227;
  --gold-hi: #EAD48A;
  --gold-deep: #8B6914;
  --line: rgba(201, 162, 39, 0.35);
  --shadow: 0 20px 50px rgba(51, 8, 31, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.lang-mr {
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

.disp {
  font-family: 'Marcellus', serif;
  letter-spacing: 0.02em;
}

body.lang-mr .disp {
  font-family: 'Rozha One', serif;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

[data-mr] {
  display: none;
}

body.lang-mr [data-mr] {
  display: inline;
}

body.lang-mr [data-mr].block {
  display: block;
}

body.lang-mr [data-en] {
  display: none !important;
}

body.lang-en [data-en] {
  display: inline;
}

body.lang-en [data-en].block {
  display: block;
}

body.lang-en [data-mr] {
  display: none !important;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- ornamental divider ---------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  width: fit-content;
}

.ornament svg {
  display: block;
}

.ornament .rule {
  height: 1px;
  width: 70px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- nav ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(251, 243, 232, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}

header.scrolled {
  box-shadow: 0 6px 24px rgba(51, 8, 31, 0.10);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(113, 4, 93, 0.35);
}

.brand-name {
  line-height: 1.15;
}

.brand-name .top {
  font-family: 'Marcellus', serif;
  font-size: 15px;
  color: var(--wine);
  font-weight: 600;
  letter-spacing: 0.03em;
}

body.lang-mr .brand-name .top {
  font-family: 'Rozha One', serif;
}

.brand-name .sub {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--wine);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--gold-deep);
}

.nav-links a.active::after {
  width: 100%;
}

.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--wine);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
  border: 1px solid var(--gold-deep);
}

.lang-toggle button {
  border: none;
  background: transparent;
  color: var(--cream-dim);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s ease;
  font-family: inherit;
}

.lang-toggle button.active {
  background: linear-gradient(135deg, var(--gold-hi), var(--gold));
  color: var(--wine);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--wine);
  border-radius: 2px;
}

/* ---------- hero (height reduced so it fits without scrolling) ---------- */
/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 118px 8% 56px;
  background: url("hero.png") center center / cover no-repeat;
  overflow: hidden;
  text-align: left;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(201, 162, 39, 0.10) 0, transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(201, 162, 39, 0.09) 0, transparent 40%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 650px;
  margin: 0;
}

/* ===== LOGO / CREST ===== */
.hero-crest {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 14px;
}

.hero-crest svg {
  width: 170px;
  opacity: 0.9;
}

.hero-logo {
  width: 108px;
  height: 108px;
  margin: 0px 0 18px 30px;
  border-radius: 50%;
  box-shadow:
    0 0 0 3px var(--gold),
    0 0 32px 6px rgba(201, 162, 39, 0.35),
    var(--shadow);
  animation: floatLogo 6s ease-in-out infinite;
}

@media (max-width: 760px) {
  /* ...existing rules... */

  /* nav-wrap la squeeze hoण्यापासून वाचवा */
  .nav-wrap {
    padding: 10px 16px;
    gap: 8px;
  }

  .brand {
    gap: 8px;
    min-width: 0;
    /* text overflow साठी आवश्यक */
    flex-shrink: 1;
  }

  .brand img {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }

  .brand-name {
    min-width: 0;
  }

  .brand-name .top {
    font-size: 12.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-name .sub {
    font-size: 8.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* lang-toggle compact kara, jyामule "English" asताना overlap नाही होणार */
  .nav-cta {
    gap: 8px;
    flex-shrink: 0;
  }

  .lang-toggle {
    padding: 3px;
  }

  .lang-toggle button {
    font-size: 11px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  .hamburger {
    padding: 4px;
  }
}

@keyframes floatLogo {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ===== TEXT CONTENT ===== */
.hero .eyebrow {
  margin-bottom: 10px;
  margin-left: 25px;
  color: var(--gold-hi);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.15;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.hero .tagline {
  margin-bottom: 22px;
  color: var(--gold-hi);
  font-size: clamp(15px, 2.1vw, 19px);
  font-family: 'Marcellus', serif;
  font-style: italic;
}

body.lang-mr .hero .tagline {
  font-family: 'Rozha One', serif;
  font-style: normal;
}

/* ===== BADGES ===== */
.hero-badges {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid rgba(234, 212, 138, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-hi);
  font-size: 12.5px;
  letter-spacing: 0.05em;
}

/* ===== CTA BUTTONS ===== */
.hero-ctas,
.hero-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-hi), var(--gold));
  color: var(--wine);
  box-shadow: 0 10px 25px rgba(201, 162, 39, 0.35);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(201, 162, 39, 0.45);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold-hi);
  color: var(--gold-hi);
}

.btn-outline:hover {
  background: rgba(234, 212, 138, 0.1);
  transform: translateY(-3px);
}

/* ===== RESPONSIVE (MOBILE) ===== */
@media (max-width: 768px) {
  .hero {
    justify-content: center;
    padding: 100px 20px 50px;
    text-align: center;
  }

  .hero-inner {
    margin: auto;
  }

  .hero-crest {
    justify-content: center;
  }

  .hero-logo {
    margin: 0 auto 18px;
  }

  .hero-badges,
  .hero-ctas,
  .hero-actions,
  .cta-group {
    justify-content: center;
  }
}

/* ---------- sections ---------- */
section {
  padding: 100px 0;
  position: relative;
}

.eyebrow-sm {
  text-align: center;
  color: var(--gold-deep);
  font-size: 12.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.sec-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--wine);
  margin-bottom: 20px;
}

.sec-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
  color: #5a3b4c;
  font-size: 16px;
  line-height: 1.8;
}

/* about */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 60px;
}

/* logo circle size reduced (was filling the whole grid column) */
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--magenta-2), var(--wine) 70%);
  box-shadow: var(--shadow);
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1.5px dashed rgba(234, 212, 138, 0.55);
  animation: ringRotate 22s linear infinite;
}

.about-visual::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  border: 1px solid rgba(234, 212, 138, 0.25);
  animation: ringRotate 30s linear infinite reverse;
}

@keyframes ringRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.about-visual img {
  width: 54%;
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--gold-hi);
  animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {

  0%,
  100% {
    box-shadow: 0 0 0 4px var(--gold-hi), 0 0 0 0 rgba(234, 212, 138, 0.0);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 4px var(--gold-hi), 0 0 34px 10px rgba(234, 212, 138, 0.45);
    transform: scale(1.03);
  }
}

.about-text h3 {
  font-size: 26px;
  color: var(--wine);
  margin-bottom: 18px;
}

.about-text p {
  color: #4a3140;
  line-height: 1.9;
  font-size: 15.5px;
  margin-bottom: 16px;
}

.mission-quote {
  margin-top: 28px;
  padding: 22px 26px;
  border-left: 3px solid var(--gold);
  background: var(--cream-dim);
  border-radius: 0 14px 14px 0;
  font-family: 'Marcellus', serif;
  font-style: italic;
  color: var(--wine-2);
  font-size: 17px;
  line-height: 1.7;
}

body.lang-mr .mission-quote {
  font-family: 'Rozha One', serif;
  font-style: normal;
}

/* vision */
.vision {
  background: linear-gradient(180deg, var(--cream-dim), var(--cream));
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}

.vcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 26px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(51, 8, 31, 0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.vcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(113, 4, 93, 0.15);
}

.vcard .icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 35% 30%, var(--magenta-2), var(--wine));
  transition: transform .45s cubic-bezier(.34, 1.56, .64, 1);
}

.vcard:hover .icon {
  transform: rotate(8deg) scale(1.1);
}

.vcard .icon svg {
  width: 30px;
  height: 30px;
}

.vcard h4 {
  font-size: 17px;
  color: var(--wine);
  margin-bottom: 10px;
  font-weight: 600;
}

.vcard p {
  font-size: 14px;
  color: #6b5461;
  line-height: 1.7;
}

/* stats strip */
.strip {
  background: var(--wine);
  padding: 46px 0;
  position: relative;
  overflow: hidden;
}

.strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(147, 21, 122, 0.5), transparent 60%);
}

.strip-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 20px;
}

.strip-grid .num {
  font-family: 'Marcellus', serif;
  font-size: 34px;
  color: var(--gold-hi);
}

body.lang-mr .strip-grid .num {
  font-family: 'Rozha One', serif;
}

.strip-grid .lbl {
  font-size: 13px;
  color: #e9d9de;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* ================= CONTACT ================= */
.contact {
  background: var(--cream);
}

/* Row 1: contact-info list (left, dark wine) + form (right, white) side by side */
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: start;
  margin-top: 56px;
}

/* contact-info list — restored to dark wine card so gold-hi/white text is visible
   (this was the piece left incomplete: background had been set to white, which
   hid the white text) */
.contact-grid {
  background: var(--wine);
  border-radius: 20px;
  padding: 36px 34px 20px;
  height: 100%;
  box-shadow: 0 14px 40px rgba(51, 8, 31, 0.10);
}

.ccard {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(234, 212, 138, 0.18);
}

.ccard:first-child {
  padding-top: 0;
}

.ccard:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ccard .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
  background: none;
  border-radius: 0;
}

.ccard .icon svg {
  width: 100%;
  height: 100%;
}

.ccard .icon svg path,
.ccard .icon svg circle {
  stroke: var(--gold-hi);
}

.ccard h5 {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-hi);
  font-weight: 600;
  margin-bottom: 8px;
  opacity: 0.85;
}

.ccard p,
.ccard a {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
}

/* ============ MAP CARD (existing design todhu na deta) ============ */

/* map wali card la flex-wrap dyaycha, jyamule map/button navin line var jaईल */
.ccard-map {
  flex-wrap: wrap;

}

/* map + niche cha button-row la full width karून naveen line var takaycha */
.ccard-map .map-embed,
.ccard-map .map-card-foot {
  flex: 1 1 100%;
  width: 100%;
  /* icon + gap (24px + 18px) evढा margin dila jyamule text sobat align hoईl */
  margin-left: 0px;
}

.ccard-map .map-embed {
  margin-top: 12px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.ccard-map .map-embed iframe {
  width: 100%;
  height: 300px;
  display: block;
  border: 0;
}

.ccard-map .map-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.ccard-map .map-card-foot h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
}

.ccard-map .map-card-foot p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  line-height: 1.5;
}

/* ============ RESPONSIVE (mobile) ============ */
@media (max-width: 640px) {

  .ccard-map .map-embed,
  .ccard-map .map-card-foot {
    margin-left: 0;
  }

  .ccard-map .map-embed iframe {
    height: 240px;
  }

  .ccard-map .map-card-foot {
    flex-direction: column;
    text-align: center;
  }
}

/* contact form (right column of the row) */
.form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 44px 40px;
  box-shadow: 0 14px 40px rgba(51, 8, 31, 0.08);
  height: 100%;
}

.form-head {
  text-align: center;
  margin-bottom: 30px;
}

.form-head h3 {
  color: var(--wine);
  font-size: 24px;
  margin: 6px 0 10px;
}

.form-sub {
  color: #7a5d69;
  font-size: 14px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  margin-bottom: 20px;
  text-align: left;
}

.field label {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid var(--line);
  background: transparent;
  padding: 10px 2px;
  font-size: 15px;
  color: var(--ink);
  font-family: inherit;
  transition: border-color .25s ease;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--magenta-2);
  font-weight: 600;
  min-height: 20px;
}

/* Row 2: map — centered, smaller height and width than before */
.map-card {
  margin: 40px auto 0;
  max-width: 860px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(51, 8, 31, 0.06);
}

.map-embed {
  width: 100%;
  aspect-ratio: 16 / 7;
  background: var(--cream-dim);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-card-foot {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, var(--wine), var(--magenta));
  color: #fff;
}

.map-card-foot h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.map-card-foot p {
  color: #e9d9de;
  font-size: 13.5px;
}

@media (max-width: 980px) {
  .contact-row {
    grid-template-columns: 1fr;
  }

  .map-card {
    max-width: 100%;
  }

  .map-embed {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 600px) {
  .contact-grid {
    padding: 28px 22px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .form-wrap {
    padding: 32px 22px;
  }

  .map-card-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* footer */
footer {
  background: var(--wine);
  color: #e9d9de;
  padding: 64px 0 26px;
  position: relative;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.foot-brand {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.foot-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--gold);
}

.foot-brand .fname {
  font-family: 'Marcellus', serif;
  font-size: 18px;
  color: #fff;
}

body.lang-mr .foot-brand .fname {
  font-family: 'Rozha One', serif;
}

footer h6 {
  color: var(--gold-hi);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

footer .fdesc {
  font-size: 14px;
  line-height: 1.8;
  color: #cdb5c0;
  max-width: 340px;
}

footer ul li {
  margin-bottom: 10px;
  font-size: 14.5px;
}

footer ul li a:hover {
  color: var(--gold-hi);
}

.foot-bottom {
  border-top: 1px solid rgba(234, 212, 138, 0.2);
  padding-top: 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #b995a3;
}

/* whatsapp float 
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 95;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  animation: pulse 2.6s infinite;
}*/

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* back to top — moved to sit directly above the WhatsApp button (same side, stacked) */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 90;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold));
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* footer icons */
.foot-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(234, 212, 138, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-hi);
  transition: background .25s ease, transform .25s ease, color .25s ease;
}

.foot-social a svg {
  width: 17px;
  height: 17px;
}

.foot-social a:hover {
  background: var(--gold);
  color: var(--wine);
  transform: translateY(-3px);
}

.foot-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.foot-list li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--gold-hi);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- responsive ---------- */
@media (max-width:980px) {
  .hero {
    min-height: auto;
    padding: 110px 24px 60px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 240px;
  }

  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:760px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }

  .hero-crest svg {
    width: 130px;
  }

  .hero-logo {
    width: 88px;
    height: 88px;
  }

  .strip-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 220px;
  }

  .foot-grid {
    grid-template-columns: 1fr;
  }

  .wa-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    width: 44px;
    height: 44px;
    bottom: 82px;
    right: 20px;
  }
}

/* Strip numbers साठी language toggle guaranteed karayla */
body.lang-mr .strip-grid [data-mr] {
  display: inline !important;
}

body.lang-mr .strip-grid [data-en] {
  display: none !important;
}

body.lang-en .strip-grid [data-en] {
  display: inline !important;
}

body.lang-en .strip-grid [data-mr] {
  display: none !important;
}

/* strip cha numbers sathi Devanagari-digit-supporting font force kara */
body.lang-mr .strip-grid .num {
  font-family: 'Noto Sans Devanagari', serif;
  font-weight: 700;
}