/* Navchetan Transport Inc. — Navchetan Classic Freight
   Flat design: no depth, no shadows, no decorative gradients on elements.
   Hierarchy comes from scale, solid colour blocks, and typography. */

:root {
  /* Brand palette */
  --navy: #0b1f3a;
  --navy-deep: #071628;
  --navy-soft: #16304f;
  --offwhite: #f7f5f1;
  --sand: #edeae3;
  --sand-strong: #e3dfd5;
  --charcoal: #111827;
  --steel: #4a5d73;
  --steel-line: #d8dae0;
  --gold: #b8892b;
  --gold-strong: #a2761f;
  --white: #ffffff;

  --font-head: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --radius: 6px;
  --radius-lg: 8px;
  --maxw: 1200px;
  --nav-h: 78px;
  --speed: 200ms;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.3rem, 5.6vw, 3.9rem);
}

h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

p {
  margin: 0 0 1.1em;
}

a {
  color: var(--navy);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--gold-strong);
}

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

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  /* Use padding-inline so section classes can set padding-block
     without wiping the side gutters. */
  padding-inline: 24px;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 56px 0;
}

/* Solid colour blocks replace rules and shadows as section structure. */
.section--sand {
  background: var(--offwhite);
}

.eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-strong);
  font-weight: 700;
  margin: 0 0 14px;
}

.lede {
  font-size: 1.12rem;
  color: var(--steel);
  max-width: 60ch;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  z-index: 200;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 0;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--speed) ease, color var(--speed) ease,
    transform var(--speed) ease;
}

.btn:hover {
  background: var(--navy-soft);
  color: var(--white);
  transform: scale(1.04);
}

.btn--accent {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn--accent:hover {
  background: var(--gold-strong);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 3px var(--navy);
}

.btn--ghost:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--on-dark {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.75);
}

.btn--on-dark:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.textlink {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--navy);
  border-bottom: 3px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--speed) ease, border-color var(--speed) ease;
}

.textlink:hover {
  color: var(--gold-strong);
  border-color: var(--navy);
}

/* ---------- Icon badges ---------- */

.iconcircle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform var(--speed) ease, background var(--speed) ease;
}

.iconcircle svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.iconcircle--gold {
  background: var(--gold);
  color: var(--navy-deep);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
}

.site-header__inner {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand__mark {
  width: 36px;
  height: 36px;
}

.brand__text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.1;
}

.brand__text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--steel);
  font-weight: 500;
}

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

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--charcoal);
  padding: 6px 0;
  border-bottom: 3px solid transparent;
  transition: color var(--speed) ease, border-color var(--speed) ease;
}

.nav__links a:hover {
  color: var(--navy);
  border-bottom-color: var(--sand-strong);
}

.nav__links a[aria-current="page"] {
  color: var(--navy);
  font-weight: 700;
  border-bottom-color: var(--gold);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__phone {
  font-weight: 700;
  font-size: 0.93rem;
  text-decoration: none;
  color: var(--navy);
  white-space: nowrap;
}

.nav__toggle {
  display: none;
  background: var(--offwhite);
  border: 0;
  border-radius: var(--radius);
  padding: 11px 13px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  margin: 4px 0;
}

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

.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(7, 22, 40, 0.93) 0%,
    rgba(11, 31, 58, 0.74) 46%,
    rgba(11, 31, 58, 0.34) 100%
  );
}

/* Flat geometric decoration - poster treatment, never depth. */
.hero__deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero__deco--circle {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -140px;
  right: -80px;
}

.hero__deco--square {
  width: 300px;
  height: 300px;
  background: rgba(184, 137, 43, 0.1);
  bottom: -110px;
  right: 220px;
  transform: rotate(24deg);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: 124px 132px;
  max-width: 730px;
}

.hero h1 {
  color: var(--white);
}

.hero__sub {
  font-size: 1.16rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 54ch;
  margin-bottom: 34px;
}

.hero__rule {
  width: 72px;
  height: 6px;
  background: var(--gold);
  margin-bottom: 28px;
}

/* ---------- Page header band ---------- */

.pagehead {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 78px 0 70px;
  overflow: hidden;
}

.pagehead::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  top: -120px;
  right: -60px;
}

.pagehead > .wrap {
  position: relative;
  z-index: 1;
}

.pagehead h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.pagehead p {
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
  font-size: 1.08rem;
}

/* ---------- Trust blocks ---------- */

.trust {
  background: var(--white);
  padding: 20px 0 0;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust__item {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: background var(--speed) ease;
}

.trust__item:hover {
  background: var(--sand);
}

.trust__item h3 {
  margin-bottom: 6px;
}

.trust__item p {
  margin: 0;
  color: var(--steel);
  font-size: 0.97rem;
}

/* ---------- Service cards ---------- */

.cardgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  display: block;
  background: var(--offwhite);
  border: 0;
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  text-decoration: none;
  transition: background var(--speed) ease, transform var(--speed) ease;
}

.card:hover {
  background: var(--sand);
  transform: scale(1.02);
}

.card:hover .iconcircle {
  transform: scale(1.1);
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  color: var(--steel);
  font-size: 0.96rem;
  margin-bottom: 14px;
}

.card__more {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.card:hover .card__more {
  color: var(--gold-strong);
}

/* ---------- Split rows ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split--rev .split__media {
  order: 2;
}

.split__media img,
.split__media svg {
  width: 100%;
  border: 0;
  border-radius: var(--radius-lg);
}

.servicerow {
  padding: 64px 0;
}

.servicerow--alt {
  background: var(--offwhite);
}

.ticklist {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.ticklist li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 9px;
  color: var(--steel);
  font-size: 0.96rem;
}

.ticklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--gold);
}

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  transition: transform var(--speed) ease;
}

.step:hover {
  transform: scale(1.02);
}

.step__num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 14px;
}

.step p {
  color: var(--steel);
  font-size: 0.97rem;
  margin: 0;
}

/* ---------- Bands ---------- */

.band--pad {
  /* Vertical pad for band sections that aren't using band__inner */
  padding-block: 56px;
}

.band--pad-sm {
  padding-block: 48px;
}

.stack-title {
  margin-bottom: 28px;
}

.stack-title-sm {
  margin-bottom: 14px;
}

.stack-gap {
  margin-bottom: 22px;
}

.tight {
  margin-bottom: 6px;
}

.muted {
  color: var(--steel);
}

.muted.end {
  margin: 0;
}

.muted.small {
  font-size: 0.96rem;
}

.split--top {
  align-items: start;
}

.split--mid {
  align-items: center;
}

.band--navy {
  background: var(--navy);
  color: var(--white);
}

.band--navy h2 {
  color: var(--white);
}

.band--navy p {
  color: rgba(255, 255, 255, 0.84);
}

.band__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
  padding-block: 66px;
}

.band__inner > div {
  max-width: 60ch;
}

.band__inner p:last-child {
  margin-bottom: 0;
}

/* ---------- Director / values ---------- */

.director {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 52px;
  align-items: center;
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 42px;
}

/* Circular portrait. The supplied PNG carries its own dark-green ring at
   the outer edge; the image is scaled up inside the clip so that ring is
   cropped away and replaced with the brand gold one below. */
.director__avatar {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  border: 9px solid var(--gold);
  overflow: hidden;
}

.director__avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 1.12 is the minimum zoom that clears the green ring (inner edge at
     ~93% of the radius) while keeping headroom above the hair. */
  transform: scale(1.12);
}

.director__portrait {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--navy);
}

.director__role {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-strong);
  font-weight: 700;
  margin-bottom: 12px;
}

.valuerow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.valuerow > div {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform var(--speed) ease;
}

.valuerow > div:hover {
  transform: scale(1.02);
}

.valuerow p {
  color: var(--steel);
  font-size: 0.96rem;
  margin: 0;
}

/* ---------- Coverage lists ---------- */

.regions > div {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  margin-bottom: 16px;
}

.regions h3 {
  margin-bottom: 10px;
}

.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.taglist li {
  border-radius: 999px;
  background: var(--white);
  padding: 6px 14px;
  font-size: 0.88rem;
  color: var(--steel);
  font-weight: 500;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.detail-list {
  margin: 0;
}

.detail-list > div {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-bottom: 14px;
}

.detail-list dt {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-strong);
  font-weight: 700;
  margin-bottom: 6px;
}

.detail-list dd {
  margin: 0;
  font-size: 1.02rem;
}

.detail-list .big {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--navy);
}

.detail-list .note {
  display: block;
  font-size: 0.88rem;
  color: var(--steel);
  margin-top: 4px;
}

.formpanel {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 38px;
}

.formpanel h2 {
  font-size: 1.6rem;
}

.formgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}

.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--charcoal);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 13px 14px;
  width: 100%;
  transition: border-color var(--speed) ease;
}

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

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.formnote {
  font-size: 0.86rem;
  color: var(--steel);
  margin: 16px 0 0;
}

.formstatus {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font-size: 0.93rem;
}

.formstatus[hidden] {
  display: none;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
  background: var(--offwhite);
}

.map-frame iframe {
  width: 100%;
  height: 440px;
  border: 0;
}

.map-frame--side iframe {
  height: 100%;
  min-height: 470px;
}

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

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 68px 0 30px;
  font-size: 0.94rem;
}

.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color var(--speed) ease;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  margin-bottom: 9px;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 2px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .wrap {
    padding-inline: 20px;
  }

  .nav__toggle {
    display: block;
  }

  .brand {
    gap: 10px;
    min-width: 0;
    flex-shrink: 1;
  }

  .brand__text {
    font-size: 0.92rem;
  }

  .nav {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 24px;
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav__links a {
    display: block;
    padding: 14px 0;
    border-bottom: 2px solid var(--offwhite);
  }

  .nav__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 18px;
  }

  .nav__phone {
    text-align: center;
  }

  .nav__actions .btn {
    width: 100%;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split--rev .split__media {
    order: 0;
  }

  .trust__grid,
  .steps,
  .valuerow,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .director {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
  }

  .director__avatar,
  .director__portrait {
    max-width: 200px;
    margin-inline: auto;
  }

  .band__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    padding-block: 48px;
  }

  .band__inner .btn-row {
    width: 100%;
  }

  .band__inner .btn,
  .hero .btn {
    width: 100%;
  }

  .pagehead {
    padding: 56px 0 48px;
  }

  .servicerow {
    padding: 48px 0;
  }

  .hero__deco--square,
  .hero__deco--circle {
    display: none;
  }
}

@media (max-width: 620px) {
  .wrap {
    padding-inline: 16px;
  }

  :root {
    --nav-h: 68px;
  }

  .site-header__inner {
    gap: 12px;
  }

  .brand__mark {
    width: 32px;
    height: 32px;
  }

  .brand__text {
    font-size: 0.84rem;
    letter-spacing: 0.04em;
  }

  .brand__text span {
    font-size: 0.56rem;
    letter-spacing: 0.16em;
  }

  .cardgrid,
  .formgrid {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    padding-block: 72px 76px;
  }

  .hero__sub {
    font-size: 1.02rem;
    margin-bottom: 26px;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding: 14px 20px;
  }

  .btn-row {
    flex-direction: column;
    gap: 10px;
  }

  .section {
    padding: 48px 0;
  }

  .section--tight {
    padding: 36px 0;
  }

  .trust {
    padding-top: 12px;
  }

  .trust__item,
  .card,
  .step,
  .valuerow > div,
  .regions > div {
    padding: 24px 20px;
  }

  .formpanel {
    padding: 22px 18px;
  }

  .detail-list > div {
    padding: 18px 18px;
  }

  .detail-list .big {
    font-size: 1.45rem;
    word-break: break-word;
  }

  .director {
    padding: 20px;
  }

  .map-frame iframe {
    height: 280px;
  }

  .map-frame--side iframe {
    min-height: 280px;
  }

  .site-footer {
    padding: 48px 0 24px;
  }

  .footer-grid {
    gap: 28px;
  }

  .band--pad {
    padding-block: 40px;
  }

  .band--pad-sm {
    padding-block: 36px;
  }
}
