/* ==========================================================================
   Bharat Link Asset Infra — bharat-link.com
   Art direction: the village map.
   Indigo is revenue-record ink. Mustard is the one colour of land that has
   been assembled — it appears on the map and on the primary action, nowhere else.
   ========================================================================== */

/* Self-hosted, Latin subset. Variable axes: Archivo wdth 90–112 / wght 400–750,
   Newsreader wght 380–600. Files come from Google Fonts (SIL Open Font License). */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 750;
  font-stretch: 90% 112%;
  font-display: swap;
  src: url("/fonts/archivo-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 380 600;
  font-display: swap;
  src: url("/fonts/newsreader-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Mukta";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/mukta-devanagari-400.woff2") format("woff2");
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF;
}
@font-face {
  font-family: "Mukta";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/mukta-devanagari-600.woff2") format("woff2");
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF;
}

:root {
  --paper:   #EEEFEA;
  --sheet:   #F7F7F3;
  --ink:     #1D2350;   /* revenue-record indigo: text and linework */
  --ink-2:   #434A70;
  --muted:   #5F6584;
  --rule:    #C9CCD8;
  --mustard: #D9A514;   /* assembled land */
  --on-mustard: #1D2350;

  /* Method band: indigo ground in light mode, a lifted indigo in dark */
  --band:       #1D2350;
  --band-ink:   #EEEFEA;
  --band-muted: #A7ACC8;
  --band-rule:  #363D6E;

  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body:    "Newsreader", "Iowan Old Style", Georgia, serif;

  --edge: clamp(1rem, 4.5vw, 3.5rem);
  --max: 84rem;
  --header-h: 4.25rem;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper:   #0F1230;
    --sheet:   #151940;
    --ink:     #E7E8F0;
    --ink-2:   #BCC0D6;
    --muted:   #9195B4;
    --rule:    #2B305B;
    --mustard: #E2B43A;
    --on-mustard: #141733;

    --band:       #191E4A;
    --band-ink:   #E7E8F0;
    --band-muted: #A2A7C6;
    --band-rule:  #333A70;
  }
}

:root[data-theme="dark"] {
  --paper:   #0F1230;
  --sheet:   #151940;
  --ink:     #E7E8F0;
  --ink-2:   #BCC0D6;
  --muted:   #9195B4;
  --rule:    #2B305B;
  --mustard: #E2B43A;
  --on-mustard: #141733;

  --band:       #191E4A;
  --band-ink:   #E7E8F0;
  --band-muted: #A2A7C6;
  --band-rule:  #333A70;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-padding-top: calc(var(--header-h) + 1rem); }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }

:where(a, button, input, textarea, select):focus-visible {
  outline: 2px solid var(--mustard);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--edge);
}

.skip {
  position: absolute;
  left: var(--edge);
  top: -3rem;
  z-index: 50;
  padding: .5rem .8rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-size: .875rem;
}
.skip:focus { top: .75rem; }

/* Display type: Archivo, sentence case, set tight. */
h1, h2 {
  font-family: var(--display);
  font-variation-settings: "wdth" 104, "wght" 660;
  letter-spacing: -.032em;
  line-height: 1;
  text-wrap: balance;
}

/* ---------------- Header ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: var(--header-h);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-right: auto;
  text-decoration: none;
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 680;
  font-size: 1.0625rem;
  letter-spacing: -.015em;
  white-space: nowrap;
}
.wordmark svg { width: 1.5rem; height: 1.5rem; flex: none; }
.wordmark polygon { fill: var(--mustard); stroke: var(--ink); stroke-width: 1.6; stroke-linejoin: round; }
.wordmark em {
  font-style: normal;
  font-variation-settings: "wdth" 100, "wght" 440;
  color: var(--muted);
}

.header-nav { display: flex; gap: 1.75rem; }
.header-nav a,
.header-cta {
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 520;
  font-size: .9375rem;
  text-decoration: none;
}
.header-nav a { color: var(--ink-2); }
.header-nav a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: .3em; text-decoration-thickness: 1px; }

.header-cta {
  padding: .5rem .95rem;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  white-space: nowrap;
}
.header-cta:hover { background: var(--ink); color: var(--paper); }

/* Language toggle: EN | हिंदी, current language filled. */
.lang-toggle {
  display: inline-flex;
  flex: none;
  padding: 3px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
}
.lang-toggle a {
  padding: .3rem .75rem;
  border-radius: 999px;
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 600;
  font-size: .875rem;
  line-height: 1.2;
  text-decoration: none;
  color: var(--ink);
}
.lang-toggle a[lang="hi"] { font-family: "Mukta", var(--display); font-weight: 600; font-size: .9375rem; }
.lang-toggle a:hover { background: color-mix(in srgb, var(--ink) 10%, transparent); }
.lang-toggle a[aria-current="page"] { background: var(--ink); color: var(--paper); }

/* In the header from 561px up; above the headline on small phones,
   where the header only has room for Call and WhatsApp. */
.lang-toggle.in-hero { display: none; margin-bottom: 1.5rem; }
@media (max-width: 560px) {
  .lang-toggle.in-header { display: none; }
  .lang-toggle.in-hero { display: inline-flex; }
}

/* Phone call is a mobile action; on desktop the number is in Contact. */
.header-call { display: none; }

@media (max-width: 760px) {
  .header-nav { display: none; }
  .wordmark em { display: none; }
  .header-row { gap: .5rem; }
  .header-call { display: inline-block; }
  .header-cta { padding: .45rem .8rem; font-size: .875rem; }
}
@media (max-width: 380px) {
  .header-cta-long { display: none; }
}

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 600;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  padding: .9rem 1.4rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease;
}
.btn-primary { background: var(--mustard); color: var(--on-mustard); }
.btn-primary:hover { background: var(--ink); color: var(--paper); }
.btn-quiet {
  padding-inline: .2rem;
  border-radius: 0;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: .35em;
  text-decoration-thickness: 1px;
}
.btn-quiet:hover { text-decoration-thickness: 2px; }

/* ---------------- Hero ---------------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: min(calc(100svh - var(--header-h)), 56rem);
  padding-block: clamp(2rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
}

.hero h1 {
  font-size: clamp(2.75rem, 6.2vw, 5.75rem);
  font-variation-settings: "wdth" 104, "wght" 700;
  max-width: 9ch;
}

.hero-lede {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  font-size: clamp(1.125rem, 1.55vw, 1.3125rem);
  line-height: 1.55;
  max-width: 40ch;
  color: var(--ink-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  margin: 2.5rem 0 0;
}
.hero-facts dt {
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 560;
  font-size: .8125rem;
  color: var(--muted);
}
.hero-facts dd { margin: .1rem 0 0; font-size: 1rem; }

.plate { margin: 0; }
.plate svg { display: block; width: 100%; height: auto; overflow: visible; }
.plate figcaption {
  margin-top: 1rem;
  max-width: 38ch;
  font-size: .9375rem;
  line-height: 1.5;
  color: var(--muted);
}
.plate figcaption strong { font-weight: 600; color: var(--ink); }

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero h1 { max-width: 11ch; }
}

/* ---------------- The cadastral map ---------------- */
/* Context colours; the method band overrides them. */
.cadastre {
  --map-line: var(--rule);
  --map-text: var(--muted);
  --map-edge: var(--ink);
  --map-ground: var(--sheet);
}

.cadastre .site { fill: var(--map-ground); stroke: none; transition: fill .6s ease; }
.cadastre .parcel {
  fill: transparent;
  stroke: var(--map-line);
  stroke-width: 1;
  stroke-linejoin: round;
  transition: fill .5s ease, stroke .5s ease, stroke-width .5s ease;
}
.cadastre .boundary {
  fill: none;
  stroke: var(--map-edge);
  stroke-width: 2.75;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.2s cubic-bezier(.65, 0, .35, 1);
}
.cadastre .khasra {
  font-family: var(--display);
  font-variation-settings: "wdth" 96, "wght" 520;
  font-size: 9.5px;
  font-variant-numeric: tabular-nums;
  fill: var(--map-text);
  text-anchor: middle;
  transition: fill .5s ease;
}
.cadastre .north polygon { fill: var(--map-edge); }
.cadastre .north text {
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 600;
  font-size: 8px;
  fill: var(--map-text);
}

.hatch-line { stroke: var(--mustard); stroke-width: 1.5; }

/* The hero plate is the finished state: the assembled parcel. */
.cadastre.is-done .site { fill: var(--mustard); }
.cadastre.is-done .parcel { stroke: color-mix(in srgb, var(--on-mustard) 28%, transparent); }
.cadastre.is-done .khasra { fill: color-mix(in srgb, var(--on-mustard) 72%, transparent); }
.cadastre.is-done .boundary { stroke-dashoffset: 0; }

@media (prefers-reduced-motion: no-preference) {
  .plate .cadastre.is-done .boundary { animation: draw 1.4s cubic-bezier(.65, 0, .35, 1) .3s backwards; }
  .plate .cadastre.is-done .site { animation: settle .8s ease 1.3s backwards; }
  @keyframes draw { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
  @keyframes settle { from { fill: var(--sheet); } to { fill: var(--mustard); } }
}

/* ---------------- Sections ---------------- */

.section { padding-block: clamp(4.5rem, 10vw, 8.5rem); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.section-head h2 { font-size: clamp(2.125rem, 4.6vw, 3.75rem); max-width: 14ch; }
.section-intro { max-width: 46ch; color: var(--ink-2); }

@media (max-width: 820px) { .section-head { grid-template-columns: 1fr; } }

/* ---------------- Services ---------------- */

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem clamp(1.5rem, 3.5vw, 3rem);
}
@media (max-width: 900px) { .services { grid-template-columns: 1fr; } }

.service { border-top: 2px solid var(--ink); padding-top: 1.25rem; }
.service h3 {
  font-family: var(--display);
  font-variation-settings: "wdth" 102, "wght" 640;
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: .9rem;
}
.service p { color: var(--ink-2); font-size: 1.0625rem; max-width: 44ch; }
.service ul {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.service li {
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 500;
  font-size: .8125rem;
  color: var(--ink-2);
  padding: .3rem .7rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
}

/* ---------------- Real ground: satellite images ---------------- */

.ground {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem clamp(1.5rem, 3.5vw, 3rem);
  margin-bottom: clamp(3rem, 7vw, 5rem);
}
@media (max-width: 860px) { .ground { grid-template-columns: 1fr; } }

.ground-fig { margin: 0; }
.ground-fig img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: .5rem;
  background: var(--sheet);
}
.ground-fig figcaption {
  margin-top: .8rem;
  font-size: .9375rem;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 52ch;
}
.ground-fig figcaption strong { color: var(--ink); font-weight: 600; }
.ground-credit {
  grid-column: 1 / -1;
  font-size: .8125rem;
  line-height: 1.5;
  color: var(--muted);
}
.ground-credit a { text-underline-offset: .2em; }

/* ---------------- Method: map follows the stages ---------------- */

.method { background: var(--band); color: var(--band-ink); }
.method .section-intro { color: var(--band-muted); }

.method .cadastre {
  --map-line: var(--band-muted);
  --map-text: var(--band-muted);
  --map-edge: var(--band-ink);
  --map-ground: color-mix(in srgb, var(--band-ink) 5%, transparent);
}

.method-body {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.method-map {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}
.method-map svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100svh - var(--header-h) - 7rem);
  overflow: visible;
}

.map-key {
  margin-top: 1rem;
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 540;
  font-size: .9375rem;
  color: var(--band-muted);
}

.steps { list-style: none; margin: 0; padding: 0; }
.step {
  min-height: 62svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 2rem;
}
.step:first-child { min-height: 40svh; justify-content: flex-start; padding-top: 0; }
.step:last-child { min-height: 50svh; }
.method:not(.is-live) .step { min-height: 0; }

/* The active stage is marked by colour, not by fading the others:
   every description stays readable against the band. */
.method.is-live .step .step-num,
.method.is-live .step h3 { color: var(--band-muted); transition: color .35s ease; }
.method.is-live .step.is-active .step-num { color: var(--mustard); }
.method.is-live .step.is-active h3 { color: var(--band-ink); }

.step-num {
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 600;
  font-size: .875rem;
  color: var(--mustard);
  margin-bottom: .5rem;
}
.step h3 {
  font-family: var(--display);
  font-variation-settings: "wdth" 102, "wght" 640;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: .8rem;
}
.step p:last-child { color: var(--band-muted); max-width: 40ch; }

/* Stage 1 — holdings mapped: every owner's line drawn clearly. */
#method-map[data-stage="1"] .parcel { stroke: var(--band-ink); stroke-width: 1.25; }

/* Stage 2 — diligence: two titles need work. */
#method-map[data-stage="2"] .parcel { stroke: var(--band-muted); }
#method-map[data-stage="2"] .flag { fill: url(#hatch); stroke: var(--mustard); stroke-width: 1.5; }

/* Stage 3 — acquired one by one; the holdout is still open. */
#method-map[data-stage="3"] .parcel { fill: var(--mustard); stroke: color-mix(in srgb, var(--band) 45%, transparent); }
#method-map[data-stage="3"] .holdout { fill: url(#hatch); stroke: var(--mustard); stroke-width: 1.5; }
#method-map[data-stage="3"] .khasra { fill: var(--on-mustard); }
#method-map[data-stage="3"] .k-holdout { fill: var(--band-ink); }
#method-map[data-stage="3"] .p1 { transition-delay: 0s; }
#method-map[data-stage="3"] .p4 { transition-delay: .08s; }
#method-map[data-stage="3"] .p2 { transition-delay: .16s; }
#method-map[data-stage="3"] .p5 { transition-delay: .24s; }
#method-map[data-stage="3"] .p7 { transition-delay: .32s; }
#method-map[data-stage="3"] .p3 { transition-delay: .40s; }
#method-map[data-stage="3"] .p6 { transition-delay: .48s; }
#method-map[data-stage="3"] .p9 { transition-delay: .56s; }

/* Stage 4 — one parcel, one title. Also the no-JS default. */
#method-map[data-stage="4"] .site { fill: var(--mustard); }
#method-map[data-stage="4"] .parcel { fill: var(--mustard); stroke: color-mix(in srgb, var(--band) 25%, transparent); }
#method-map[data-stage="4"] .khasra { fill: color-mix(in srgb, var(--on-mustard) 70%, transparent); }
#method-map[data-stage="4"] .boundary { stroke-dashoffset: 0; }

@media (max-width: 900px) {
  .method-body { grid-template-columns: 1fr; gap: 0; }
  .method-map {
    top: var(--header-h);
    z-index: 2;
    margin-inline: calc(var(--edge) * -1);
    padding: 1rem var(--edge) .75rem;
    background: var(--band);
    border-bottom: 1px solid var(--band-rule);
  }
  .method-map svg { max-height: 30svh; width: auto; margin-inline: auto; }
  .map-key { text-align: center; margin-top: .5rem; }
  .step, .step:first-child, .step:last-child { min-height: 55svh; justify-content: flex-end; padding-block: 2rem 3rem; }
}

/* ---------------- Landowners (English + Hindi) ---------------- */

.owners {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem clamp(2rem, 6vw, 5.5rem);
  align-items: start;
}
@media (max-width: 860px) { .owners { grid-template-columns: 1fr; } }

.owners-col { display: flex; flex-direction: column; align-items: flex-start; }

.owner-steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  counter-reset: owner-step;
  width: 100%;
}
.owner-steps li {
  counter-increment: owner-step;
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  column-gap: .75rem;
  padding-block: 1rem;
  border-top: 1px solid var(--rule);
}
.owner-steps li:first-child { border-top: 2px solid var(--ink); }
.owner-steps li::before {
  content: counter(owner-step);
  grid-row: span 2;
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 650;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--ink);
}
.owner-steps h3 {
  font-family: var(--display);
  font-variation-settings: "wdth" 102, "wght" 620;
  font-size: 1.125rem;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.owner-steps p { color: var(--ink-2); font-size: 1.0625rem; margin-top: .2rem; max-width: 44ch; }

.owners-hindi {
  align-self: end;
  font-family: "Mukta", var(--body);
  font-size: 1.125rem;
  color: var(--ink-2);
}
.owners-hindi a {
  font-weight: 600;
  text-underline-offset: .3em;
}

/* ---------------- Contact ---------------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.lines { margin: 0; }
.line {
  display: grid;
  grid-template-columns: 6rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: .85rem;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.line:first-child { border-top: 2px solid var(--ink); }
.line dt,
.field label {
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 560;
  font-size: .875rem;
  color: var(--muted);
}
.line dd { margin: 0; font-size: 1.0625rem; }
.line a { text-decoration-color: var(--rule); text-underline-offset: .25em; }
.line a:hover { text-decoration-color: currentColor; }
.line-link {
  display: inline-block;
  margin-top: .35rem;
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 540;
  font-size: .9375rem;
}

.enquiry {
  background: var(--sheet);
  border-radius: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}
.field { display: grid; gap: .35rem; margin-bottom: 1.1rem; }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 1.0625rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: .6rem;
  padding: .75rem .9rem;
  width: 100%;
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--mustard);
  outline-offset: 0;
  border-color: transparent;
}
.field textarea { resize: vertical; min-height: 6rem; line-height: 1.5; }
.field textarea::placeholder { color: var(--muted); }

.enquiry-foot { display: flex; flex-wrap: wrap; gap: 1rem 1.25rem; align-items: center; padding-top: .4rem; }
.nowrap { white-space: nowrap; }
.form-privacy {
  flex-basis: 100%;
  margin-top: .25rem;
  padding-top: .9rem;
  border-top: 1px solid var(--rule);
  font-size: .875rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 52ch;
}
.form-note { font-size: .9375rem; line-height: 1.45; color: var(--muted); max-width: 32ch; }

/* ---------------- 404 ---------------- */

.not-found { padding-block: clamp(4rem, 14vw, 10rem); }
.not-found h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); max-width: 12ch; }
.not-found p { margin-top: 1.5rem; color: var(--ink-2); max-width: 40ch; }
.not-found p:last-child { margin-top: 2.25rem; }

/* Holds the hatch pattern; takes no space. */
.defs { position: absolute; }

/* ---------------- Hindi page ---------------- */
/* Devanagari in Mukta. Latin (brand name, digits, email) still falls through to
   Archivo / Newsreader. Negative tracking and tight leading break Devanagari, so reset them. */
html:lang(hi) body { font-family: "Mukta", var(--body); line-height: 1.75; }
html:lang(hi) :is(h1, h2, h3, .btn, .header-nav a, .header-cta, .hero-facts dt,
  .line dt, .field label, .step-num, .map-key, .service li, .owner-steps li::before) {
  font-family: "Mukta", var(--display);
  font-variation-settings: "wdth" 100, "wght" 620;
  font-weight: 600;
  letter-spacing: 0;
}
html:lang(hi) h1 { line-height: 1.2; font-size: clamp(2.5rem, 5.6vw, 5rem); max-width: 10ch; }
html:lang(hi) h2 { line-height: 1.25; }
html:lang(hi) h3 { line-height: 1.4; }
html:lang(hi) .hero-lede,
html:lang(hi) .section-intro,
html:lang(hi) .service p,
html:lang(hi) .step p:last-child,
html:lang(hi) .owner-steps p { line-height: 1.75; }
html:lang(hi) .wordmark,
html:lang(hi) .lang-toggle a[lang="en"] { font-family: var(--display); }

/* ---------------- Footer ---------------- */

.site-footer { border-top: 1px solid var(--rule); padding-block: 1.75rem 2.5rem; }
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: .5rem 2rem;
  flex-wrap: wrap;
  font-size: .9375rem;
  color: var(--muted);
}
.footer-row a { text-underline-offset: .25em; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
}
