/* ==========================================================================
   Amarveer Company — styles.css
   Plain CSS3, no frameworks. Flat design: no shadows, gradients or icons.
   ========================================================================== */

:root {
  --bg: #f4efe3;
  --ink: #17140f;
  --muted: #5c574c;
  --accent: #a9752f;
  --rule: #c9beac;
  --content-width: 1260px;
  --side-pad: 24px;
  --font: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  background: var(--bg);
  padding: 8px 12px;
  z-index: 200;
}

/* ---------- shared layout ---------- */

.section {
  background: var(--bg);
  position: relative;
}

.section__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

.rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 40px 0;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 22px;
}

.section-heading {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.5px;
  margin: 0 0 30px;
}

.section-heading--single {
  margin-bottom: 22px;
}

/* ---------- header (section 01 only) ---------- */

.site-header {
  border-bottom: 1px solid var(--rule);
}

.site-header__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 18px var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand__logo {
  height: 52px;
  width: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--ink);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--ink);
}

/* ---------- masthead (sections 02–08) ---------- */

.masthead {
  border-bottom: 1px solid var(--rule);
}

.masthead__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 18px var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.masthead__tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  white-space: nowrap;
}

/* ---------- section 01 — home ---------- */

.section-home__inner {
  padding-top: 72px;
}

.hero-heading {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0 0 28px;
}

.hero-sub {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 40px;
  max-width: 640px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 130px;
}

.btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  min-height: 44px;
}

.btn:hover {
  background: var(--ink);
  color: var(--bg);
}

.trust-strip {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 0 0 60px;
}

.section-home main .section__inner:last-child {
  padding-bottom: 0;
}

/* ---------- section 02 — our legacy ---------- */

.copy-block {
  max-width: 900px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
}

.copy-block p {
  margin: 0 0 22px;
}

.callout {
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 30px;
}

.leadership {
  font-size: 15px;
  margin: 0 0 6px;
}

/* ---------- legal pages ---------- */

.legal-page {
  padding-top: 56px;
  padding-bottom: 80px;
}

.legal-updated {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 34px;
}

.legal-page .copy-block {
  max-width: 760px;
}

.legal-page .copy-block h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 14px;
}

.legal-page .copy-block p {
  font-size: 16px;
}

.legal-page .copy-block a {
  font-weight: 700;
  text-decoration: underline;
}

/* ---------- section 03 — our services ---------- */

.service-list {
  max-width: 900px;
}

.service-item {
  margin-bottom: 26px;
}

.service-item h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.service-item p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
}

.closing-statement {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 60px;
}

/* ---------- section 04 — areas we serve ---------- */

.locality-list {
  font-size: 17px;
  line-height: 1.7;
  max-width: 760px;
  margin: 36px 0 110px;
}

/* ---------- section 05 — why amarveer ---------- */

.feature-list {
  max-width: 900px;
}

.feature-item {
  margin-bottom: 24px;
}

.feature-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}

.feature-item p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
}

/* ---------- section 06 — our process ---------- */

.process-steps {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  max-width: 900px;
}

.process-steps li {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* ---------- section 07 — recent transaction ---------- */

.transaction-location {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.transaction-copy {
  font-size: 16px;
  line-height: 1.55;
  max-width: 800px;
  margin: 0 0 46px;
}

.lookup-block h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.lookup-block p {
  font-size: 16px;
  line-height: 1.55;
  max-width: 820px;
  margin: 0;
}

.bottom-cta {
  font-size: 16px;
  margin: 0 0 60px;
}

.bottom-cta a:hover {
  color: var(--accent);
}

/* ---------- section 08 — let's connect ---------- */

.section-contact__inner {
  padding-bottom: 110px;
}

.partners-copy {
  font-size: 16px;
  line-height: 1.55;
  max-width: 760px;
  margin: 0 0 30px;
}

.connect-heading {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 8px;
}

.connect-copy {
  font-size: 16px;
  line-height: 1.55;
  max-width: 760px;
  margin: 0 0 26px;
}

.contact-rows {
  margin: 0;
}

.contact-row {
  font-size: 16px;
  margin: 0 0 6px;
}

.contact-label {
  font-weight: 700;
  margin-right: 6px;
}

.contact-row a:hover {
  color: var(--accent);
}

.site-footer {
  background: var(--ink);
  color: var(--bg);
}

.site-footer__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 22px var(--side-pad);
}

.site-footer p {
  font-size: 13px;
  margin: 0 0 6px;
}

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

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

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .section-heading,
  .hero-heading {
    font-size: 42px;
  }

  .section-home__inner {
    padding-top: 56px;
  }
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .site-nav.is-open {
    max-height: 400px;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px var(--side-pad) 16px;
  }

  .site-nav li {
    width: 100%;
  }

  .site-nav a {
    display: block;
    padding: 12px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header__inner {
    position: relative;
  }
}

@media (max-width: 640px) {
  :root {
    --side-pad: 20px;
  }

  .hero-heading,
  .section-heading {
    font-size: 34px;
  }

  .section-heading--single {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  .section-home__inner {
    padding-top: 40px;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 60px;
  }

  .btn {
    justify-content: center;
  }

  .trust-strip {
    line-height: 1.8;
    margin-bottom: 40px;
  }

  .masthead__inner,
  .site-header__inner {
    padding-top: 14px;
    padding-bottom: 14px;
  }

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

  .masthead__tag {
    font-size: 11px;
    white-space: normal;
    text-align: right;
  }

  .rule {
    margin: 30px 0;
  }

  .closing-statement,
  .locality-list {
    margin-bottom: 40px;
  }

  .section-contact__inner {
    padding-bottom: 50px;
  }
}
