:root {
  color-scheme: light;
  --green-950: #031a16;
  --green-900: #062d25;
  --green-800: #0b4034;
  --green-700: #135946;
  --ink: #15130d;
  --ink-soft: #514936;
  --muted: #7d7057;
  --line: #e6d8b4;
  --paper: #fffaf0;
  --ivory: #fffdf7;
  --gold: #c9972e;
  --gold-bright: #f1c45b;
  --silver: #d9ded8;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(2, 20, 16, 0.2);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  word-wrap: break-word;
}

img,
iframe {
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(241, 196, 91, 0.7);
  outline-offset: 4px;
}

.skip-link {
  background: var(--green-950);
  color: var(--white);
  left: 16px;
  padding: 10px 14px;
  position: absolute;
  top: -48px;
  z-index: 100;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  background: rgba(3, 26, 22, 0.86);
  border-bottom: 1px solid rgba(241, 196, 91, 0.22);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
}

.nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  min-height: 76px;
  width: var(--container);
}

.brand {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  color: var(--green-950);
  display: inline-flex;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.05;
}

.brand-place {
  color: #d9c893;
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.nav-links a {
  color: #e7dcc0;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-bright);
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.language-link {
  border: 1px solid rgba(241, 196, 91, 0.35);
  color: #f5e8c5;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  padding: 10px 11px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(3, 26, 22, 0.22);
}

.button.primary:hover {
  background: var(--green-800);
}

.button.gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--green-950);
  box-shadow: 0 18px 42px rgba(241, 196, 91, 0.26);
}

.button.glass {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.hero {
  background: var(--green-950);
  min-height: calc(100vh - 76px);
  overflow: hidden;
  position: relative;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(3, 26, 22, 0.98) 0%, rgba(3, 26, 22, 0.74) 42%, rgba(3, 26, 22, 0.1) 78%),
    url("assets/maruthi-cinematic-hero.png");
  background-position: center;
  background-size: cover;
  filter: saturate(1.08) contrast(1.03);
  inset: 0;
  position: absolute;
  transform: scale(1.02);
}

.hero::before {
  background:
    radial-gradient(circle at 68% 30%, rgba(241, 196, 91, 0.24), transparent 23%),
    radial-gradient(circle at 16% 82%, rgba(19, 89, 70, 0.54), transparent 28%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero::after {
  background-image:
    linear-gradient(rgba(241, 196, 91, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 196, 91, 0.1) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-inner {
  align-items: end;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.58fr);
  margin: 0 auto;
  min-height: calc(100vh - 76px);
  padding: 88px 0 54px;
  position: relative;
  width: var(--container);
  z-index: 2;
}

.hero-copy {
  align-self: center;
  max-width: 720px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.serif {
  font-family: var(--serif);
}

h1 {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 6.4rem);
  letter-spacing: 0;
  line-height: 0.9;
  margin-bottom: 26px;
  max-width: 760px;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
}

h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.5rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-kicker,
.section-label {
  color: var(--gold-bright);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.lead {
  color: #eadfbe;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 620px;
}

.hero-actions,
.section-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mini-rate-widget {
  align-self: end;
  background: rgba(3, 26, 22, 0.78);
  border: 1px solid rgba(241, 196, 91, 0.36);
  box-shadow: var(--shadow);
  color: var(--white);
  padding: 22px;
  transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
  width: 100%;
}

.mini-rate-widget * {
  min-width: 0;
}

.widget-topline,
.rates-status {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 900;
  gap: 10px;
  justify-content: space-between;
  text-transform: uppercase;
}

.widget-topline span:first-child,
.rates-status span:first-child {
  color: var(--gold-bright);
}

.widget-topline [data-tone="success"],
.rates-status [data-tone="success"] {
  color: #a8ebc9;
}

.widget-topline [data-tone="warning"],
.rates-status [data-tone="warning"] {
  color: #ffd993;
}

.mini-rate-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px 0;
}

.mini-rate-grid div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 14px 12px;
}

.mini-rate-grid span,
.rate-card span,
.collection-card span {
  color: #d8ca9d;
  display: block;
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-rate-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  line-height: 1;
  margin-top: 8px;
}

[data-rate][data-empty="true"] {
  font-family: var(--sans);
  font-size: 1rem;
}

.mini-rate-widget p {
  color: #e9ddbd;
  font-size: 0.84rem;
  line-height: 1.55;
  margin: 0;
}

.trust-strip {
  background: var(--green-900);
  border-bottom: 1px solid rgba(241, 196, 91, 0.18);
  border-top: 1px solid rgba(241, 196, 91, 0.2);
  color: var(--white);
}

.trust-strip-inner {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-strip-inner div {
  border-left: 1px solid rgba(241, 196, 91, 0.16);
  padding: 22px;
}

.trust-strip-inner div:last-child {
  border-right: 1px solid rgba(241, 196, 91, 0.16);
}

.trust-strip strong {
  color: var(--gold-bright);
  display: block;
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1;
}

.trust-strip span {
  color: #e8ddbd;
  display: block;
  font-size: 0.86rem;
  margin-top: 8px;
}

.section {
  padding: 96px 0;
}

.section.compact {
  padding: 72px 0 96px;
}

.section.dark {
  background:
    radial-gradient(circle at 84% 8%, rgba(241, 196, 91, 0.14), transparent 24%),
    var(--green-950);
  color: var(--white);
}

.container {
  margin: 0 auto;
  width: var(--container);
}

.section-head {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  margin-bottom: 38px;
}

.section-head p,
.rates-layout > div > p {
  color: var(--muted);
  margin-bottom: 0;
}

.collection-showcase {
  background: linear-gradient(180deg, var(--paper), #f5ead0);
}

.collection-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.18fr repeat(3, minmax(0, 0.82fr));
}

.collection-card {
  background: var(--ivory);
  border: 1px solid rgba(201, 151, 46, 0.28);
  box-shadow: 0 18px 52px rgba(72, 50, 8, 0.08);
  min-height: 310px;
  overflow: hidden;
}

.collection-card.feature-card {
  background: var(--green-900);
  color: var(--white);
}

.collection-image {
  background-color: #efe0bd;
  background-position: center;
  background-size: cover;
  height: 172px;
}

.feature-card .collection-image {
  height: 220px;
}

.image-gold {
  background-image: url("https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?auto=format&fit=crop&w=760&q=80");
}

.image-bridal {
  background-image: url("https://images.unsplash.com/photo-1605100804763-247f67b3557e?auto=format&fit=crop&w=980&q=82");
}

.image-silver {
  background-image: url("https://images.unsplash.com/photo-1611652022419-a9419f74343d?auto=format&fit=crop&w=760&q=80");
}

.image-gift {
  background-image: url("https://images.unsplash.com/photo-1506630448388-4e683c67ddb0?auto=format&fit=crop&w=760&q=80");
}

.collection-card div:last-child {
  padding: 20px;
}

.collection-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.feature-card p {
  color: #e7d8b1;
}

.rates-section {
  background:
    linear-gradient(120deg, rgba(3, 26, 22, 0.95), rgba(6, 45, 37, 0.9)),
    var(--green-900);
  color: var(--white);
}

.rates-layout,
.trust-layout,
.visit-layout,
.silversage-layout {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
}

.rates-layout > div > p,
.dark .muted {
  color: #d8caa4;
  margin-bottom: 24px;
}

.rates-panel {
  background: rgba(255, 253, 247, 0.96);
  border: 1px solid rgba(241, 196, 91, 0.35);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  color: var(--ink);
  padding: 26px;
}

.rates-status {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  padding-bottom: 16px;
}

.rate-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.rate-card {
  background: #fff7e5;
  border: 1px solid #e8d4a5;
  min-height: 168px;
  padding: 22px;
}

.rate-card strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  line-height: 1;
  margin-top: 16px;
  word-break: break-word;
}

.rate-card small {
  color: var(--muted);
  display: block;
  margin-top: 14px;
}

.notice {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 16px 0 0;
}

.coins-section {
  background:
    linear-gradient(180deg, #fffdf7, #f4e7c7);
  color: var(--ink);
}

.coins-head {
  margin-bottom: 26px;
}

.coin-formula {
  background: var(--green-950);
  border: 1px solid rgba(241, 196, 91, 0.34);
  color: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
  overflow: hidden;
}

.coin-formula div {
  background: rgba(255, 255, 255, 0.05);
  min-width: 0;
  padding: 18px;
}

.coin-formula span,
.coin-card-head span,
.coin-total span {
  color: #d8ca9d;
  display: block;
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.coin-formula strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.36rem);
  line-height: 1.12;
  margin-top: 7px;
  overflow-wrap: anywhere;
}

.coin-formula [data-tone="success"] {
  color: #a8ebc9;
}

.coin-formula [data-tone="warning"] {
  color: #ffd993;
}

.coin-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.coin-card {
  background: var(--ivory);
  border: 1px solid rgba(201, 151, 46, 0.32);
  box-shadow: 0 18px 52px rgba(72, 50, 8, 0.08);
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 22px;
}

.coin-medal {
  align-items: center;
  align-self: flex-start;
  background:
    radial-gradient(circle at 34% 28%, #fff0a8 0 12%, transparent 13%),
    radial-gradient(circle at 50% 50%, var(--gold-bright), var(--gold) 66%, #8d6319 100%);
  border: 4px solid #f8df88;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 2px rgba(106, 70, 10, 0.24),
    0 16px 28px rgba(108, 76, 13, 0.2);
  color: var(--green-950);
  display: inline-flex;
  font-family: var(--serif);
  height: 82px;
  justify-content: center;
  margin-bottom: 18px;
  width: 82px;
}

.coin-medal span {
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.coin-card h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.05;
}

.coin-breakdown {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  margin: 12px 0 18px;
  padding: 8px 0;
}

.coin-breakdown div {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  min-width: 0;
  padding: 8px 0;
}

.coin-breakdown dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.coin-breakdown dd {
  color: var(--ink);
  font-weight: 900;
  margin: 0;
  overflow-wrap: anywhere;
  text-align: right;
}

.coin-total {
  margin-bottom: 18px;
}

.coin-total strong {
  color: var(--green-900);
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.18rem);
  line-height: 1;
  margin-top: 8px;
  overflow-wrap: anywhere;
}

.coin-card .button {
  margin-top: auto;
  width: 100%;
}

.coin-notice {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 18px 0 0;
  max-width: 780px;
}

.trust-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(241, 196, 91, 0.32);
  display: grid;
  gap: 16px;
  padding: 28px;
}

.trust-metric {
  border-bottom: 1px solid rgba(241, 196, 91, 0.18);
  padding-bottom: 16px;
}

.trust-metric:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.trust-metric strong {
  color: var(--gold-bright);
  display: block;
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: 1;
}

.trust-metric span {
  color: #e2d0a6;
  display: block;
  margin-top: 8px;
}

.silversage-section {
  background: linear-gradient(180deg, #f8efd9, var(--paper));
}

.silversage {
  background:
    linear-gradient(120deg, rgba(3, 26, 22, 0.72), rgba(3, 26, 22, 0.16)),
    url("https://images.unsplash.com/photo-1531995811006-35cb42e1a022?auto=format&fit=crop&w=1200&q=82");
  background-position: center;
  background-size: cover;
  min-height: 440px;
  box-shadow: var(--shadow);
}

.silversage-copy {
  align-self: center;
  background: var(--green-900);
  border: 1px solid rgba(241, 196, 91, 0.36);
  color: var(--white);
  padding: 38px;
}

.silversage-copy p {
  color: #dfd1ad;
}

.local-section {
  background: var(--paper);
}

.local-copy {
  columns: 2 320px;
  column-gap: 46px;
  color: var(--ink-soft);
}

.local-copy [lang="ta"] {
  font-family: "Noto Sans Tamil", "Latha", "Vijaya", var(--sans);
  line-height: 1.85;
}

.local-copy p {
  break-inside: avoid;
}

.local-guides-section {
  background: linear-gradient(180deg, #fffdf7, #f6ebcf);
}

.local-guide-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.local-guide-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(72, 50, 8, 0.07);
  display: block;
  min-height: 168px;
  padding: 22px;
}

.local-guide-card span {
  color: var(--gold);
  display: block;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.local-guide-card strong {
  color: var(--green-900);
  display: block;
  font-family: var(--serif);
  font-size: 1.38rem;
  line-height: 1.08;
  margin-top: 10px;
}

.local-guide-card small {
  color: var(--muted);
  display: block;
  line-height: 1.55;
  margin-top: 12px;
}

.visit-section {
  background: linear-gradient(180deg, #fffdf7, #f2e5c7);
}

.map-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(46, 32, 7, 0.08);
  overflow: hidden;
}

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

.contact-card {
  background: var(--green-950);
  color: var(--white);
  margin-top: 28px;
  padding: 28px;
}

.contact-card address {
  color: #e5d1a3;
  font-style: normal;
  margin-bottom: 22px;
}

.contact-facts {
  border-bottom: 1px solid rgba(241, 196, 91, 0.2);
  border-top: 1px solid rgba(241, 196, 91, 0.2);
  color: #e5d1a3;
  list-style: none;
  margin: 0 0 22px;
  padding: 14px 0;
}

.contact-facts li + li {
  margin-top: 8px;
}

.contact-facts strong {
  color: var(--gold-bright);
}

.nearby-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.nearby-actions a {
  border: 1px solid rgba(241, 196, 91, 0.35);
  color: #f5e8c5;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 8px 10px;
}

.nearby-actions a:hover,
.nearby-actions a:focus-visible {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.intent-hero {
  background:
    linear-gradient(90deg, rgba(3, 26, 22, 0.98), rgba(6, 45, 37, 0.88)),
    var(--green-950);
  color: var(--white);
  padding: 84px 0 62px;
}

.intent-hero .container {
  max-width: 940px;
}

.breadcrumb {
  color: #d8ca9d;
  font-size: 0.84rem;
  font-weight: 800;
  margin-bottom: 22px;
}

.breadcrumb a {
  color: var(--gold-bright);
}

.intent-hero h1 {
  font-size: clamp(2.55rem, 5vw, 5rem);
  max-width: 860px;
}

.intent-hero .lead {
  max-width: 760px;
}

.answer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.answer-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 22px;
}

.answer-card strong {
  color: var(--green-900);
  display: block;
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.15;
  margin-bottom: 10px;
}

.answer-card p {
  color: var(--muted);
  margin: 0;
}

.intent-copy {
  color: var(--ink-soft);
  max-width: 860px;
}

.intent-copy h2 {
  color: var(--ink);
}

.intent-copy ul {
  padding-left: 20px;
}

.intent-copy li + li {
  margin-top: 8px;
}

.page-cta {
  background: var(--green-950);
  color: var(--white);
}

.page-cta p {
  color: #dfd1ad;
  max-width: 720px;
}

.page-cta .button.glass {
  border-color: rgba(241, 196, 91, 0.35);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  color: var(--muted);
  margin: 12px 0 0;
}

.footer {
  background: var(--green-950);
  color: var(--white);
  padding: 46px 0;
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
}

.footer p {
  color: #cfbd94;
  margin-bottom: 8px;
}

.footer small {
  color: #9c8b68;
}

.floating-whatsapp {
  align-items: center;
  background: #159654;
  border: 2px solid var(--white);
  bottom: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  color: var(--white);
  display: inline-flex;
  font-weight: 900;
  gap: 8px;
  min-height: 50px;
  padding: 12px 16px;
  position: fixed;
  right: 18px;
  z-index: 60;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #0f7a43;
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 16px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 8px;
  }

  .hero-inner,
  .section-head,
  .rates-layout,
  .trust-layout,
  .visit-layout,
  .silversage-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 76px;
  }

  .mini-rate-widget {
    transform: none;
  }

  .trust-strip-inner,
  .collection-grid,
  .coin-grid,
  .coin-formula,
  .local-guide-grid,
  .answer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card .collection-image {
    height: 172px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 24px);
  }

  .nav-actions {
    width: 100%;
  }

  .nav-actions .button {
    flex: 1;
  }

  .language-link {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(3, 26, 22, 0.96) 0%, rgba(3, 26, 22, 0.78) 48%, rgba(3, 26, 22, 0.52) 100%),
      url("assets/maruthi-cinematic-hero.png");
    background-position: center right;
    background-size: cover;
  }

  .hero-inner {
    gap: 34px;
    min-height: auto;
    padding: 58px 0 48px;
  }

  h1 {
    font-size: 2.22rem;
    line-height: 1;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 2.28rem;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.75;
    max-width: 34ch;
  }

  .hero-actions,
  .section-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .mini-rate-grid,
  .rate-grid,
  .trust-strip-inner,
  .collection-grid,
  .coin-grid,
  .coin-formula,
  .local-guide-grid,
  .answer-grid {
    grid-template-columns: 1fr;
  }

  .mini-rate-widget {
    max-width: var(--container);
    overflow: hidden;
  }

  .widget-topline,
  .rates-status {
    align-items: flex-start;
    flex-direction: column;
  }

  .widget-topline [data-rate-status],
  .rates-status [data-rate-status] {
    line-height: 1.55;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    text-transform: none;
    white-space: normal;
    word-break: break-word;
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .rates-panel,
  .silversage-copy,
  .contact-card {
    padding: 22px;
  }

  .footer {
    padding-bottom: 90px;
  }

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

  .floating-whatsapp {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
