/* India Desk on Demand — single production stylesheet. Mobile-first, no remote imports. */
:root {
  color-scheme: light;
  --navy: #17345a;
  --navy-dark: #102640;
  --ink: #1f3044;
  --muted: #5a6879;
  --gold: #efb04b;
  --gold-dark: #7b4a0b;
  --paper: #ffffff;
  --soft: #f4f7fa;
  --soft-gold: #fff8e8;
  --line: #d8e0e8;
  --serif: Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 6px;
  --shadow: 0 12px 30px rgba(16, 38, 64, .08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 1rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.68;
  overflow-wrap: anywhere;
}

img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
button, input, select, textarea { font: inherit; }
button, summary, select { cursor: pointer; }

a {
  color: var(--navy);
  text-underline-offset: .22em;
  text-decoration-thickness: 1px;
}
a:hover { text-decoration-thickness: 2px; }

:focus-visible {
  outline: 3px solid var(--gold-dark);
  outline-offset: 4px;
}
main:focus { outline: none; }

h1, h2, h3, p { margin: 0 0 1rem; }
h1, h2 { font-family: var(--serif); color: var(--navy); font-weight: 400; text-wrap: balance; }
h1 { font-size: clamp(2.35rem, 9vw, 3.8rem); line-height: 1.08; letter-spacing: -.035em; }
h2 { font-size: clamp(1.8rem, 6vw, 2.55rem); line-height: 1.18; letter-spacing: -.022em; }
h3 { color: var(--navy); font-size: 1.12rem; line-height: 1.4; }
ul, ol { padding-left: 1.25rem; }
li { margin-bottom: .55rem; }
small, .small-text { font-size: .88rem; }
strong { font-weight: 700; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}
.narrow { max-width: 720px; }
.section { padding-block: 3.6rem; }

.eyebrow {
  margin-bottom: .9rem;
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
}
.lead {
  max-width: 63ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

.skip-link {
  position: fixed;
  top: -7rem;
  left: 1rem;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--navy-dark);
  color: #fff;
  font-weight: 700;
}
.skip-link:focus { top: .75rem; }

.utility-bar {
  background: var(--navy-dark);
  color: #fff;
  font-size: .8rem;
}
.utility-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: .25rem 1rem;
  flex-wrap: wrap;
  padding-block: .35rem;
  text-align: center;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
}
.brand { display: block; width: min(210px, 62vw); padding-block: .5rem; }
.brand img { width: 100%; }
.desktop-nav,
.site-header .header-cta { display: none; }

.mobile-menu { position: relative; flex-shrink: 0; }
.mobile-menu > summary {
  white-space: nowrap;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: .55rem;
  padding: .55rem .72rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 700;
  list-style: none;
}
.mobile-menu > summary::-webkit-details-marker { display: none; }
.mobile-menu[open] > summary { background: var(--soft); }
.mobile-menu nav {
  position: absolute;
  right: 0;
  top: calc(100% + .55rem);
  width: min(300px, calc(100vw - 2rem));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: .55rem;
}
.mobile-menu nav a {
  display: flex;
  min-height: 46px;
  align-items: center;
  padding: .65rem .75rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 650;
}
.mobile-menu nav a:hover,
.mobile-menu nav a[aria-current="page"] { background: var(--soft); }
.mobile-menu nav .menu-contact { margin-top: .35rem; background: var(--navy); color: #fff; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8rem 1.1rem;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  font-size: .94rem;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}
.button:hover { background: #244d7b; border-color: #244d7b; text-decoration: none; }
.button-outline { background: #fff; color: var(--navy); border-color: #9dabb9; }
.button-outline:hover { background: var(--soft); color: var(--navy); border-color: #9dabb9; }
.button-gold { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.button-gold:hover { background: #f4c16f; color: var(--navy-dark); border-color: #f4c16f; }
.button-small { min-height: 44px; padding: .62rem .82rem; font-size: .86rem; }
.button-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
}

.hero {
  padding-block: 3.2rem 3.6rem;
  background: linear-gradient(180deg, #fff 0 72%, var(--soft) 72% 100%);
}
.hero-grid { display: grid; gap: 2.4rem; }
.hero h1 { margin-bottom: 1.35rem; }
.hero .lead { max-width: 58ch; }
.quote-callout {
  display: grid;
  gap: .35rem;
  margin-top: 1.35rem;
  padding: 1rem 1.05rem;
  border-left: 4px solid var(--gold);
  background: var(--soft-gold);
}

.hero-portrait {
  width: min(420px, 100%);
  justify-self: center;
  border-bottom: 4px solid var(--gold);
  background: var(--navy);
}
.hero-portrait img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.hero-portrait figcaption { padding: 1rem 1.1rem; color: #fff; }
.hero-portrait figcaption > span {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
}
.hero-portrait small { display: block; margin-top: .2rem; color: #dce5ef; line-height: 1.55; }

.benefits { border-block: 1px solid var(--line); }
.benefits-grid { display: grid; }
.benefit {
  display: flex;
  gap: .85rem;
  padding-block: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.benefit:last-child { border-bottom: 0; }
.benefit > span {
  flex: 0 0 auto;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.4;
}
.benefit h2 {
  margin-bottom: .25rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: 0;
}
.benefit p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.6; }

.section-heading { display: grid; gap: .8rem; margin-bottom: 1.7rem; }
.section-heading h2 { max-width: 24ch; margin-bottom: 0; }
.section-heading > p { color: var(--muted); margin: 0; }

.service-grid { display: grid; gap: 1rem; }
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.service-card.featured { border-top: 4px solid var(--gold); }
.service-card-top { flex: 1; }
.service-card h3 { margin-bottom: .55rem; font-size: 1.15rem; }
.service-card h3 a { text-decoration: none; }
.service-card h3 a:hover { text-decoration: underline; }
.service-card p { color: var(--muted); font-size: .94rem; }
.service-card .text-link { margin-top: .7rem; font-size: .9rem; }

.secondary-service {
  display: grid;
  gap: .6rem 1.4rem;
  margin-top: 1.1rem;
  padding: 1.35rem 1.45rem;
  border: 1px dashed #a8b4c0;
  border-radius: var(--radius);
  background: var(--soft);
}
.secondary-service h3 { margin-bottom: .35rem; }
.secondary-service p:not(.eyebrow) { margin: 0; color: var(--muted); }

.steps-grid {
  display: grid;
  gap: 1.2rem;
  margin: 2rem 0 1rem;
  padding: 0;
  list-style: none;
}
.steps-grid li {
  margin: 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.step-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: .9rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--soft);
  color: var(--navy);
  font-weight: 700;
}
.steps-grid p { color: var(--muted); }

.about-strip { padding-block: 3.2rem; background: var(--soft); border-block: 1px solid var(--line); }
.about-strip-inner { display: grid; gap: 1rem; }
.about-strip h2 { margin: 0; }
.about-strip p:not(.eyebrow) { color: var(--muted); }

.faq-layout { display: grid; gap: 1.5rem; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem .15rem;
  color: var(--navy);
  font-weight: 700;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-mark { flex: 0 0 auto; font-size: 1.35rem; line-height: 1; }
.faq-item[open] .faq-mark { transform: rotate(45deg); }
.faq-answer { padding: 0 1.7rem .8rem 0; color: var(--muted); }

.contact-band {
  padding-block: 3rem;
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid #45607e;
}
.contact-band-inner { display: grid; gap: 1.6rem; }
.contact-band .eyebrow { color: var(--gold); }
.contact-band h2 { color: #fff; }
.contact-band p:not(.eyebrow) { color: #dfe7ef; }
.band-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem 1rem; }
.light-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #fff;
  font-weight: 700;
}

.page-intro {
  padding-block: 1.4rem 3rem;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1.7rem;
  color: var(--muted);
  font-size: .85rem;
}
.breadcrumbs a { display: inline-flex; min-height: 30px; align-items: center; }
.page-intro h1 { max-width: 23ch; margin-bottom: 1.2rem; }

.services-page-grid { margin-bottom: 2rem; }
.scope-note {
  max-width: 760px;
  padding: 1.5rem;
  border-left: 4px solid var(--navy);
  background: var(--soft);
}
.scope-note h2 { font-size: 1.55rem; }
.scope-note p { margin: 0; color: var(--muted); }

.service-detail-grid { display: grid; gap: 2rem; }
.prose { max-width: 760px; }
.prose section + section { margin-top: 2.5rem; }
.prose h2 { margin-bottom: .9rem; font-size: clamp(1.55rem, 5vw, 2rem); }
.prose p, .prose li { color: var(--muted); }
.source-links a { font-weight: 650; }
.service-summary {
  align-self: start;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.service-summary p:not(.eyebrow) { color: var(--muted); }

.about-grid { display: grid; gap: 2rem; }
.about-card {
  align-self: start;
  width: min(100%, 430px);
  justify-self: center;
  border: 1px solid var(--line);
  background: var(--soft);
}
.about-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.about-card > div { padding: 1.25rem; }
.about-card h2 { font-size: 1.7rem; }
.about-card p { color: var(--muted); }

.process-list { display: grid; gap: 1rem; max-width: 860px; }
.process-list section {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}
.process-list h2 { font-size: 1.55rem; }
.process-list p { margin: 0; color: var(--muted); }

.contact-layout { display: grid; gap: 2rem; }
.contact-options,
.form-panel {
  min-width: 0;
}
.contact-options > p:not(.eyebrow) { color: var(--muted); }
.contact-option {
  display: flex;
  min-height: 76px;
  flex-direction: column;
  justify-content: center;
  gap: .2rem;
  margin-top: .7rem;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-decoration: none;
}
.contact-option:hover { background: var(--soft); text-decoration: none; }
.primary-contact { border-color: var(--gold); background: var(--soft-gold); }
.contact-option span { color: var(--muted); font-size: .86rem; }
.contact-option strong { color: var(--navy); font-size: 1.08rem; }

.plain-email {
  display: grid;
  gap: .2rem;
  margin-top: .7rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.plain-email > span { color: var(--muted); font-size: .86rem; }
.plain-email strong { overflow-wrap: anywhere; color: var(--navy); }
.plain-email small { color: var(--muted); }

.contact-facts {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.contact-facts p { margin-bottom: .45rem; color: var(--muted); font-size: .92rem; }

.form-panel {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.form-intro { color: var(--muted); }
.form-grid { display: grid; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  margin-bottom: .4rem;
  color: var(--navy);
  font-size: .91rem;
  font-weight: 700;
}
.field label span { color: var(--muted); font-weight: 500; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: .72rem .78rem;
  border: 1px solid #aeb9c5;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
}
.field textarea { min-height: 130px; resize: vertical; }
.field small { display: block; margin-top: .35rem; color: var(--muted); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.privacy-note {
  margin: .3rem 0 1rem;
  padding: .9rem 1rem;
  border-left: 4px solid var(--gold);
  background: var(--soft-gold);
}
.privacy-note p { margin: .25rem 0 0; color: var(--muted); font-size: .9rem; }
.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .65rem;
  align-items: start;
  margin-bottom: 1rem;
}
.consent-field input { width: 1.15rem; height: 1.15rem; margin-top: .2rem; }
.consent-field label { font-size: .9rem; color: var(--muted); }
.form-fineprint { margin-top: .8rem; color: var(--muted); font-size: .82rem; }

.policy-prose { margin-inline: auto; }
.error-page { min-height: 52vh; display: grid; align-items: center; }

.site-footer {
  padding: 3rem 0 2.1rem;
  background: var(--navy-dark);
  color: #dfe7ef;
}
.footer-grid { display: grid; gap: 2rem; }
.site-footer a { color: #fff; }
.footer-brand img { width: 220px; margin-bottom: 1rem; }
.footer-brand p { max-width: 42ch; font-size: .9rem; }
.footer-languages { color: #f2cb84; }
.site-footer h2 {
  margin-bottom: .8rem;
  color: #fff;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.site-footer nav a,
.footer-contact > a {
  display: flex;
  min-height: 42px;
  align-items: center;
  width: fit-content;
  text-decoration: none;
  font-size: .9rem;
}
.site-footer nav a:hover,
.footer-contact > a:hover { text-decoration: underline; }
.footer-contact strong { font-weight: 650; }
.footer-contact p { margin: .65rem 0; font-size: .9rem; }
.footer-label { color: #b7c4d2; }
.footer-email-note { color: #b7c4d2; font-size: .82rem !important; }
.footer-notice {
  margin: 2rem 0 1rem;
  padding-top: 1.3rem;
  border-top: 1px solid #415874;
  color: #c8d3de;
  font-size: .84rem;
  line-height: 1.75;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: .5rem 1rem;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: .25rem 1rem; }
.footer-bottom nav a { min-height: 36px; font-size: .82rem; }
.back-to-top {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: .45rem;
  margin-top: 1rem;
  color: #fff;
  font-size: .84rem;
}

@media (min-width: 640px) {
  .container { width: min(1120px, calc(100% - 3rem)); }
  .section { padding-block: 4.3rem; }
  .utility-inner { justify-content: space-between; text-align: left; }
  .hero { padding-block: 4rem 4.4rem; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit { border-bottom: 0; border-right: 1px solid var(--line); padding-inline: 1.1rem; }
  .benefit:first-child { padding-left: 0; }
  .benefit:last-child { padding-right: 0; border-right: 0; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .secondary-service { grid-template-columns: 1fr auto; align-items: center; }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 920px) {
  .header-inner { min-height: 88px; }
  .brand { width: 225px; flex: 0 0 225px; }
  .mobile-menu { display: none; }
  .desktop-nav { display: flex; align-items: center; gap: 1.15rem; margin-left: auto; }
  .desktop-nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    border-bottom: 2px solid transparent;
    text-decoration: none;
    font-size: .91rem;
    font-weight: 700;
  }
  .desktop-nav a:hover,
  .desktop-nav a.active { border-color: var(--gold-dark); }
  .site-header .header-cta { display: inline-flex; flex: 0 0 auto; }

  .hero { background: linear-gradient(90deg, #fff 0 72%, var(--soft) 72% 100%); }
  .hero-grid { grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); align-items: center; gap: 4.2rem; }
  .hero-portrait { justify-self: end; }

  .section-heading { grid-template-columns: 1.1fr 1fr; align-items: end; gap: 3rem; }
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .services-page-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .core-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .services-page-grid .service-card { padding: 1.25rem; }

  .about-strip-inner { grid-template-columns: 1fr 1.1fr; align-items: center; gap: 4rem; }
  .faq-layout { grid-template-columns: .8fr 1.2fr; gap: 4rem; }
  .contact-band-inner { grid-template-columns: 1.3fr .7fr; align-items: center; gap: 3rem; }
  .band-actions { justify-content: flex-end; }

  .service-detail-grid { grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 4rem; }
  .service-summary { position: sticky; top: 1.5rem; }

  .about-grid { grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: 4rem; }
  .about-card { justify-self: end; }

  .contact-layout { grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr); gap: 3.5rem; align-items: start; }
  .contact-options { position: sticky; top: 1.5rem; }
  .form-panel { padding: 1.7rem; }

  .footer-grid { grid-template-columns: 1.25fr .65fr 1fr; gap: 4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Expanded document services. Pictures retain their complete source aspect ratio. */
.service-icon { width: 48px; height: 48px; object-fit: contain; margin-bottom: 1rem; }
.desk-label { color: var(--muted); margin: 1rem 0 0; font-size: .85rem; }
.quote-callout { display: block; font-size: .9rem; color: var(--muted); }
.hero-portrait { max-width: 350px; }
.additional-section { background: var(--soft); border-block: 1px solid var(--line); }
.service-link-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.service-link-grid li { margin: 0; }
.service-link-grid a { display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: .75rem; padding: 1rem; min-height: 64px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); font-weight: 650; text-decoration: none; }
.service-link-grid a:hover { text-decoration: underline; border-color: var(--navy); }
.directory-nav { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; padding-block: 1.2rem; }
.directory-nav a { display: inline-flex; align-items: center; min-height: 44px; font-size: .9rem; font-weight: 650; }
.directory-group { padding-top: 2rem; border-bottom: 1px solid var(--line); scroll-margin-top: 1rem; }
.directory-group .section-heading h2 { font-size: 2rem; }
.quote-reminder { padding-block: 1.5rem; color: var(--muted); }
.deliverable-box { padding: 1.4rem; border-left: 4px solid var(--gold); background: var(--soft-gold); }
.deliverable-box p { margin: 0; }
.service-summary h2 { font-size: 1.7rem; }
.service-summary .button { width: 100%; }
.supporting-image { margin-block: 2rem; }
.supporting-image img { width: 100%; height: auto; object-fit: contain; }
.supporting-image figcaption { margin-top: .6rem; color: var(--muted); font-size: .8rem; }
.process-illustration { max-width: 860px; }
.faq-more { padding-bottom: 2.5rem; margin-top: -1.5rem; }
@media(min-width:640px) { .service-link-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
