:root {
  --ink: #171717;
  --steel: #343841;
  --muted: #626873;
  --line: #e4e5e7;
  --paper: #ffffff;
  --soft: #f7f7f8;
  --accent: #d62e2f;
  --accent-dark: #a91f25;
  --max: 1160px;
  --shadow: 0 14px 34px rgba(23, 23, 23, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 270px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  color: var(--steel);
  text-decoration: none;
}

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

.no-wrap {
  white-space: nowrap;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 72px);
}

h2 {
  font-size: clamp(30px, 3.6vw, 46px);
}

h3 {
  font-size: 21px;
}

p {
  margin: 0;
}

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

.lead,
.page-lead {
  max-width: 740px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.hero {
  min-height: 650px;
  display: grid;
  align-items: center;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.35) 78%),
    url("assets/gt-removals-hero-yellow-shirts.png") center / cover no-repeat;
}

.hero-copy {
  width: min(690px, 100%);
  padding: 78px 0;
}

.page-hero {
  padding: 84px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.page-hero-centered {
  text-align: center;
}

.page-hero-centered h1,
.page-hero-centered .page-lead {
  margin-left: auto;
  margin-right: auto;
}

.page-hero-centered .page-lead {
  margin-top: 18px;
}

.breadcrumb {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.cta-support {
  max-width: 560px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary,
.btn-light {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.btn-secondary:hover,
.btn-light:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.section {
  padding: 84px 0;
}

.section.soft {
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
}

.grid-2,
.grid-3,
.feature-grid,
.trust-grid,
.service-area-grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3,
.feature-grid,
.trust-grid {
  grid-template-columns: repeat(3, 1fr);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 52px;
  align-items: start;
}

.content-flow {
  display: grid;
  gap: 24px;
}

.content-flow p {
  color: var(--muted);
}

.card,
.feature-card,
.service-card,
.trust-card,
.area-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.card p,
.feature-card p,
.service-card p,
.trust-card p,
.area-card p,
.area-card li {
  color: var(--muted);
}

.feature-card p,
.service-card p,
.trust-card p,
.area-card p {
  margin-top: 12px;
}

.trust-strip {
  padding: 36px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-card {
  padding: 24px;
}

.service-card {
  min-height: 230px;
}

.service-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.check-list,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.quote-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quote-panel p {
  margin-top: 10px;
  color: var(--muted);
}

.cta-band {
  padding: 64px 0;
  color: #fff;
  background: var(--accent);
}

.cta-band p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.service-area-grid {
  grid-template-columns: repeat(2, 1fr);
}

.area-card h2 {
  font-size: 24px;
}

.area-card ul {
  columns: 2;
  column-gap: 24px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.area-card li {
  break-inside: avoid;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}

.area-note {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.about-text-only {
  max-width: 840px;
}

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

.text-columns p {
  margin-top: 10px;
  color: var(--muted);
}

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

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.contact-list a,
.contact-list span {
  display: block;
  color: var(--steel);
  font-weight: 800;
  text-decoration: none;
}

.quote-help {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.quote-help ul {
  margin-top: 18px;
}

.form-shell {
  max-width: 900px;
}

.quote-form {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  color: var(--steel);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #c7ced6;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(214, 46, 47, 0.16);
  border-color: var(--accent);
}

.form-note {
  display: none;
  padding: 14px 16px;
  border-radius: 6px;
  color: #fff;
  background: #187246;
  font-weight: 700;
}

.site-footer {
  padding: 54px 0 26px;
  color: #d6dde5;
  background: #151515;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 17px;
}

.site-footer p,
.site-footer a {
  color: #c5cbd3;
  text-decoration: none;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  padding-top: 22px;
  color: #9ca6b2;
  font-size: 14px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 86px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
    gap: 12px;
  }

  .hero {
    min-height: 620px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 62%, rgba(255, 255, 255, 0.54) 100%),
      url("assets/gt-removals-hero-yellow-shirts.png") center / cover no-repeat;
  }

  .brand-logo {
    width: 230px;
  }

  .grid-2,
  .grid-3,
  .feature-grid,
  .trust-grid,
  .service-area-grid,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .cta-inner {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .nav-wrap {
    min-height: 76px;
    gap: 12px;
  }

  .brand-logo {
    width: 186px;
    max-height: 52px;
  }

  .site-nav {
    top: 76px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-copy {
    padding: 52px 0;
  }

  h1 {
    font-size: 40px;
  }

  .lead,
  .page-lead {
    font-size: 17px;
  }

  .section,
  .page-hero {
    padding: 58px 0;
  }

  .area-card ul {
    columns: 1;
  }

  .form-row,
  .text-columns {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }
}
