/* Lightweight marketing site — Dukaan Mitraa */
:root {
  --bg: #f7f4ec;
  --card: #fffdf7;
  --border: #e8e2d0;
  --ink: #0d1120;
  --ink2: #4a5060;
  --ink3: #8b8f9e;
  --gold: #c9a84c;
  --gold2: #e6c56d;
  --green: #5e7b66;
  --green-bg: #d8e1d9;
  --red: #b5352f;
  --shadow: 0 16px 48px rgba(13, 17, 32, 0.08);
  --r: 16px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: Inter, "Noto Sans Devanagari", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 244, 236, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

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

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: var(--ink);
  background: linear-gradient(135deg, #d4b055, #c9a84c 60%, #b8901e);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__hi {
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.brand__en {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #a68b3a;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav__links {
  display: flex;
  gap: 22px;
}

.site-nav__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink2);
}

.site-nav__link:hover { color: var(--ink); }

.site-nav__phone {
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 12px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.28);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--ink);
}

.btn--outline {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink);
}

.btn--full { width: 100%; }

.btn--sm {
  padding: 10px 16px;
  font-size: 13px;
}

/* Hero */
.hero-lite {
  padding: 56px 0 48px;
}

.hero-lite__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-lite__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-bg);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero-lite__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.hero-lite__title .accent {
  background: linear-gradient(135deg, #b8901e, #c9a84c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lite__lead {
  font-size: 1.125rem;
  color: var(--ink2);
  max-width: 34rem;
  margin-bottom: 28px;
}

.hero-lite__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-lite__note {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink3);
}

.phone-frame {
  max-width: 280px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(13, 17, 32, 0.06);
  background: var(--ink);
}

.phone-frame img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
}

/* Sections */
.section-lite {
  padding: 56px 0;
}

.section-lite--alt {
  background: rgba(255, 253, 247, 0.7);
  border-block: 1px solid var(--border);
}

.section-lite__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 36px;
}

.section-lite__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 8px;
}

.section-lite__sub {
  color: var(--ink2);
  font-size: 1rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 20px;
  box-shadow: 0 4px 16px rgba(13, 17, 32, 0.04);
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 18px;
  margin-bottom: 14px;
  background: var(--green-bg);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.45;
}

/* App screenshots strip */
.screens-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.screen-shot {
  flex: 0 0 auto;
  width: min(168px, 42vw);
  scroll-snap-align: start;
  text-align: center;
}

.screen-shot__frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(13, 17, 32, 0.06);
  background: var(--ink);
  margin-bottom: 10px;
}

.screen-shot__frame img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
}

.screen-shot figcaption {
  font-size: 12px;
  font-weight: 800;
  color: var(--ink2);
  letter-spacing: 0.02em;
}

/* Contact */
.contact-lite {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-lite__info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.contact-lite__info p {
  color: var(--ink2);
  margin-bottom: 20px;
}

.contact-chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.contact-chip--wa { color: #128c7e; }

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--ink2);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form .field {
  margin-bottom: 14px;
}

.contact-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font: inherit;
  background: #fff;
}

.contact-form input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.contact-form__hint {
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink3);
  text-align: center;
}

/* Footer */
.site-footer {
  padding: 32px 0 40px;
  border-top: 1px solid var(--border);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.site-footer__legal a {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink2);
}

.site-footer__legal a:hover { color: var(--ink); }

.site-footer__meta {
  font-size: 13px;
  color: var(--ink3);
  max-width: 280px;
}

.site-footer__meta strong {
  display: block;
  color: var(--ink2);
  font-size: 12px;
  margin-bottom: 4px;
}

/* Legal pages */
.legal-page main {
  padding: 40px 0 56px;
}

.legal-page h1 {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.legal-page .muted {
  color: var(--ink3);
  font-size: 14px;
  margin-bottom: 24px;
}

.legal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 22px;
  margin-bottom: 14px;
}

.legal-card h2 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.legal-card p,
.legal-card li {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.55;
}

.legal-card ul {
  padding-left: 1.2rem;
  margin-top: 8px;
}

.legal-card li + li { margin-top: 6px; }

.legal-card a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 22px;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.card p,
.card li {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.55;
}

.card ul {
  padding-left: 1.2rem;
  margin-top: 8px;
}

.card a {
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 768px) {
  .site-nav__links { display: none; }
  .hero-lite__grid,
  .contact-lite {
    grid-template-columns: 1fr;
  }
  .hero-lite { padding-top: 32px; }
  .phone-frame { max-width: 240px; }
}
