@import url("brand.css");

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--lsh-navy);
  background: var(--lsh-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Nav */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled {
  background: rgba(13, 27, 42, 0.94);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: max-content;
  max-width: 100%;
  line-height: 1;
  gap: 0.18rem;
}

.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  font-style: italic;
  color: var(--lsh-white);
  white-space: nowrap;
}

.brand-name .lone {
  color: var(--lsh-white);
}

.brand-name .star {
  color: var(--lsh-red);
}

.brand-sub {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
}

.brand-hauler {
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--lsh-white);
}

.brand-rule {
  display: block;
  flex: 1 1 0;
  width: 0;
  min-width: 0.4rem;
  height: 2px;
  background: var(--lsh-red);
}

.brand-tag {
  display: block;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--lsh-red);
  margin-top: 0.2rem;
  text-align: center;
}

.brand-lockup-lg .brand-name {
  font-size: clamp(2.35rem, 6.5vw, 3.35rem);
}

.brand-lockup-lg .brand-hauler {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
}

.brand-lockup-lg .brand-rule {
  height: 2.5px;
}

.brand-lockup-lg .brand-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  margin-top: 0.35rem;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.nav-links a:hover {
  color: var(--lsh-white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--lsh-red);
  color: var(--lsh-white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.nav-cta:hover {
  background: #961c1c;
  transform: translateY(-1px);
}

.nav-toggle {
  display: grid;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lsh-white);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.nav-mobile a {
  color: var(--lsh-white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--lsh-white);
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.35) 0%, rgba(13, 27, 42, 0.55) 45%, rgba(13, 27, 42, 0.92) 100%),
    url("../img/hero.jpg") center/cover no-repeat;
}

.hero-content {
  padding: 7rem 0 4rem;
  max-width: 720px;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: rise 0.9s ease 0.15s forwards;
}

.hero-brand .brand-mark {
  /* Sized to LONESTAR + HAULER (not the tagline) for a balanced lockup */
  width: clamp(3.1rem, 8.5vw, 4.15rem);
  height: clamp(3.1rem, 8.5vw, 4.15rem);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  opacity: 0;
  animation: rise 0.9s ease 0.35s forwards;
}

.hero p {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: rise 0.9s ease 0.55s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: rise 0.9s ease 0.7s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--lsh-red);
  color: var(--lsh-white);
}

.btn-primary:hover {
  background: #961c1c;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--lsh-white);
}

.btn-ghost:hover {
  border-color: var(--lsh-white);
  background: rgba(255, 255, 255, 0.08);
}

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

.btn-navy:hover {
  background: var(--lsh-navy-soft);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
section {
  padding: var(--space-2xl) 0;
}

.section-label {
  color: var(--lsh-red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.section-lead {
  color: var(--lsh-steel);
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.section-head {
  margin-bottom: 2rem;
}

/* Services */
.services {
  background:
    radial-gradient(ellipse at top right, rgba(178, 34, 34, 0.06), transparent 45%),
    linear-gradient(180deg, #f7f8fa, #ffffff);
}

.service-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.service-item {
  border-left: 3px solid var(--lsh-red);
  padding: 1.1rem 0 1.1rem 1.15rem;
  background: transparent;
  transition: transform var(--transition);
}

.service-item:hover {
  transform: translateX(4px);
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.service-item p {
  color: var(--lsh-steel);
  font-size: 0.95rem;
}

.not-offered {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(13, 27, 42, 0.1);
  color: var(--lsh-steel);
  font-size: 0.92rem;
}

/* Values */
.values {
  background: var(--lsh-navy);
  color: var(--lsh-white);
}

.values .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.value-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.value-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 0.85rem;
}

.value-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.value-item p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

/* About */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  border: 2px solid var(--lsh-red);
  z-index: -1;
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-copy p {
  color: #3a4150;
}

/* Veteran / salute */
.salute {
  background: var(--lsh-navy);
  color: var(--lsh-white);
  padding: var(--space-xl) 0;
}

.salute-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  justify-items: start;
}

.salute-flag {
  width: min(180px, 42vw);
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.salute-copy .section-title {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  margin-bottom: 0.65rem;
}

.salute-copy p:not(.section-label) {
  color: rgba(255, 255, 255, 0.78);
  max-width: 36rem;
  margin: 0;
}

/* Areas */
.areas {
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.04), rgba(178, 34, 34, 0.05)),
    var(--lsh-off-white);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  list-style: none;
}

.area-list li {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.05em;
  color: var(--lsh-navy);
}

.area-list li::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--lsh-red);
  margin-right: 0.55rem;
  vertical-align: middle;
  transform: translateY(-2px);
}

/* Homepage quote CTA (links to quote.html) */
.quote-cta {
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.92), rgba(13, 27, 42, 0.98)),
    url("../img/hero.jpg") center/cover;
  color: var(--lsh-white);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.quote-cta .section-lead {
  color: rgba(255, 255, 255, 0.75);
  margin-inline: auto;
}

.quote-cta .hero-actions {
  justify-content: center;
  margin-top: 1.5rem;
}

/* Standalone quote page */
.page-quote .site-header {
  background: rgba(13, 27, 42, 0.96);
}

.quote-page-hero {
  background: var(--lsh-navy);
  color: var(--lsh-white);
  padding: 5.25rem 0 0.85rem;
}

.quote-page-hero .section-label {
  margin-bottom: 0.4rem;
}

.quote-page-hero .section-title {
  margin-bottom: 0.45rem;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
}

.quote-page-hero .section-lead {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
  max-width: 40rem;
}

.quote-page-body {
  padding-top: 0;
}

.faq-item a {
  color: var(--lsh-red);
  text-decoration: underline;
}

/* Quote form / customer estimator (quote.html) */
.quote-section {
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.92), rgba(13, 27, 42, 0.98)),
    url("../img/hero.jpg") center/cover;
  color: var(--lsh-white);
  padding: 1.25rem 0 2.5rem;
}

.page-quote .quote-section {
  padding: 0.75rem 0 2rem;
}

.quote-section .section-lead {
  color: rgba(255, 255, 255, 0.75);
}

.quote-layout {
  display: grid;
  gap: 2rem;
}

.quote-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.req {
  color: var(--lsh-red);
  font-weight: 700;
}

.opt {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--lsh-white);
  font: inherit;
  font-size: 1rem;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--lsh-red);
  outline-offset: 1px;
}

.form-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.form-note a {
  color: #fff;
  text-decoration: underline;
}

.form-success {
  display: none;
  padding: 1rem;
  border-left: 3px solid #2ecc71;
  background: rgba(46, 204, 113, 0.1);
}

.form-success[hidden] {
  display: none !important;
}

.form-success:not([hidden]) {
  display: block;
}

.quote-aside {
  padding: 1.5rem 0;
}

.quote-aside a {
  color: var(--lsh-white);
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.quote-aside p {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
}

/* Customer quote builder */
.customer-quote {
  margin-top: 0;
}

.cq-grid {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.cq-fields {
  display: grid;
  gap: 1.65rem;
  align-content: start;
  align-self: start;
  height: fit-content;
}

.cq-block {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  /* Override global `section { padding: var(--space-2xl) 0 }` */
  padding: 0;
  margin: 0;
}

.cq-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  margin: 0;
}

.page-quote .form-row {
  gap: 0.75rem;
}

.page-quote .form-note {
  margin: 0.15rem 0 0;
  line-height: 1.4;
  font-size: 0.82rem;
}

.cq-estimate-group {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.45rem;
}

.cq-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.cq-chip {
  appearance: none;
  border: 1px solid rgba(13, 27, 42, 0.18);
  background: #fff;
  color: #0d1b2a;
  font-family: var(--font-body, Montserrat, sans-serif);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  line-height: 1.2;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.cq-chip:hover {
  border-color: #b22222;
}

.cq-chip.is-active {
  background: #0d1b2a;
  border-color: #0d1b2a;
  color: #fff;
}

.cq-inline-num {
  max-width: 11rem;
}

.cq-dims {
  align-items: end;
}

.cq-dims input {
  max-width: 100%;
}

.cq-photos-label input[type="file"] {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.55rem 0.65rem;
  border: 1px dashed rgba(13, 27, 42, 0.25);
  background: rgba(13, 27, 42, 0.03);
  font-size: 0.85rem;
}

.cq-photo-previews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 0.5rem;
}

.cq-photo-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(13, 27, 42, 0.12);
  background: #f3f4f6;
}

.cq-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cq-photo-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 1.5rem;
  height: 1.5rem;
  border: none;
  border-radius: 0;
  background: rgba(13, 27, 42, 0.85);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.cq-photo-remove:hover {
  background: #b22222;
}

.page-quote label {
  gap: 0.4rem;
}

.page-quote input,
.page-quote textarea,
.page-quote select {
  padding: 0.7rem 0.8rem;
}

.cq-mileage {
  margin: 0;
  padding: 0.55rem 0.75rem;
  border-left: 3px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.cq-mileage[data-state="loading"] {
  border-left-color: #f0c14b;
}

.cq-mileage[data-state="ok"] {
  border-left-color: #2ecc71;
}

.cq-mileage[data-state="error"] {
  border-left-color: var(--lsh-red);
  color: #ffb4b4;
}

.lsh-addr-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.lsh-addr-wrap input {
  width: 100%;
}

.lsh-addr-list {
  position: absolute;
  z-index: 40;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  max-height: 240px;
  overflow: auto;
  background: #0f1c2e;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.lsh-addr-list li {
  padding: 0.55rem 0.75rem;
  cursor: pointer;
  display: grid;
  gap: 0.15rem;
}

.lsh-addr-list li strong {
  font-weight: 600;
  color: #fff;
  font-size: 0.92rem;
}

.lsh-addr-list li span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.lsh-addr-list li:hover,
.lsh-addr-list li.is-active {
  background: rgba(178, 34, 34, 0.28);
}

.cq-line-meta {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.customer-quote textarea {
  resize: vertical;
  min-height: 4rem;
}

.cq-catalog {
  display: grid;
  gap: 1.15rem;
}

.cq-catalog-group {
  display: grid;
  gap: 0.45rem;
}

.cq-catalog-list {
  display: grid;
  gap: 0.35rem;
}

.cq-subheading {
  margin: 0;
  font-family: var(--font-display, "Bebas Neue", Impact, sans-serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #fff;
}

.cq-subheading .req {
  color: #ffb4b4;
}

.cq-optional {
  font-family: var(--font-body, Montserrat, sans-serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: none;
}

.cq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color var(--transition), background var(--transition);
}

.cq-item.is-active {
  border-color: rgba(178, 34, 34, 0.7);
  background: rgba(178, 34, 34, 0.12);
}

.cq-item-copy {
  display: grid;
  gap: 0.15rem;
}

.cq-item-copy strong {
  font-size: 1rem;
}

.cq-item-copy span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.cq-item-copy em {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffb4b4;
  letter-spacing: 0.04em;
}

.cq-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.cq-stepper button {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
}

.cq-stepper button:hover {
  background: var(--lsh-red);
  border-color: var(--lsh-red);
}

.cq-stepper span {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.cq-summary {
  padding: 0.9rem 1rem;
  background: rgba(0, 0, 0, 0.28);
  border-top: 3px solid var(--lsh-red);
  align-self: start;
  position: sticky;
  top: 5.5rem;
}

.cq-summary .cq-heading {
  margin-bottom: 0.35rem;
}

.cq-lines {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
  min-height: 2rem;
}

.cq-line {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.cq-empty {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.cq-line-sub {
  margin-top: 0.35rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.cq-line-min {
  color: #ffb4b4;
  font-size: 0.88rem;
}

.cq-min-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 0.5rem;
  line-height: 1.4;
}

.cq-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.cq-total strong {
  font-size: 1.8rem;
  color: #fff;
}

.cq-disclaimer {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 1rem;
}

.cq-discount {
  margin: 0 0 1rem;
}
.cq-discount label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.4rem;
}
.cq-discount-row {
  display: flex;
  gap: 0.5rem;
}
.cq-discount input {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  text-transform: uppercase;
}
.cq-discount input::placeholder {
  color: rgba(255, 255, 255, 0.45);
  text-transform: none;
}
.cq-discount .btn-ghost {
  flex: 0 0 auto;
  width: auto;
  margin: 0;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}
.cq-discount-status {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
}
.cq-discount-status.is-ok { color: #b8e0c4; }
.cq-discount-status.is-err { color: #ffb4b4; }

.cq-summary .btn {
  width: 100%;
  margin-bottom: 0.75rem;
}
.cq-summary .cq-discount .btn {
  width: auto;
  margin-bottom: 0;
}

.cq-call {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cq-call a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: #fff;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-bottom: 1px solid rgba(13, 27, 42, 0.12);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 700;
  font-size: 1.05rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--lsh-red);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 0 1.1rem;
  color: var(--lsh-steel);
}

/* Footer */
.site-footer {
  background: var(--lsh-navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--lsh-white);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-tag {
  color: var(--lsh-red);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-top: 0.4rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--lsh-white);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .salute-inner {
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
  }
}

@media (min-width: 720px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

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

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

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

  .cq-grid {
    grid-template-columns: 1.4fr 0.9fr;
    align-items: start;
    column-gap: 1.25rem;
  }

  .cq-fields {
    align-self: start;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

  .quote-layout {
    grid-template-columns: 1.4fr 0.8fr;
    align-items: start;
  }

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

/* —— Mobile refinements —— */
@media (max-width: 719px) {
  .container {
    width: min(100% - 1.25rem, var(--max-width));
  }

  .nav {
    padding: 0.75rem 0;
    gap: 0.5rem;
  }

  .nav-cta {
    display: none;
  }

  .nav-brand .brand-name {
    font-size: clamp(1.15rem, 5.2vw, 1.45rem);
  }

  .nav-brand .brand-hauler {
    font-size: 0.5rem;
    letter-spacing: 0.2em;
  }

  .brand-mark {
    width: 2.15rem;
    height: 2.15rem;
  }

  .site-header.is-menu-open,
  .site-header.is-scrolled {
    background: rgba(13, 27, 42, 0.97);
    backdrop-filter: blur(10px);
  }

  .nav-mobile {
    padding: 0.35rem 0 1.1rem;
    gap: 0.15rem;
  }

  .nav-mobile a {
    display: flex;
    align-items: center;
    padding: 0.85rem 0.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    min-height: 2.75rem;
  }

  .nav-mobile a:last-child {
    border-bottom: none;
    color: var(--lsh-red);
  }

  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    place-content: center;
  }

  .hero-content {
    padding: 5.5rem 0 2.75rem;
  }

  .hero-brand {
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 3rem;
  }

  .quote-cta .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 22rem;
    margin-inline: auto;
  }

  .area-list li {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .cq-actions,
  .cq-submit-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cq-actions .btn,
  .cq-submit-row .btn {
    width: 100%;
    min-height: 3rem;
  }

  input,
  select,
  textarea {
    font-size: 16px; /* prevents iOS zoom on focus */
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

@media (max-width: 380px) {
  .nav-brand .brand-lockup {
    max-width: 9.5rem;
  }

  .hero-content {
    padding-top: 5rem;
  }
}

@supports (padding: max(0px)) {
  .site-header .container.nav {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }

  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

body.nav-open {
  overflow: hidden;
}
