/* ==========================================================================
   Airport Towing — 2026 redesign (v2)
   Editorial, photo-driven single-column layout. Navy + red from the logo.
   Design direction reference: dallastowingandrecovery.com
   ========================================================================== */

:root {
  --navy: #16294F;
  --navy-dark: #0B1730;
  --red: #C0332C;
  --red-dark: #8F2621;
  --ink: #20242C;
  --muted: #666f7d;
  --white: #FFFFFF;
  --cream: #F7F6F3;
  --border: #E7E5DF;
  --content-width: 720px;
  --wide-width: 1100px;
  --edge-pad: clamp(22px, 5vw, 48px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3 { font-family: 'Lora', Georgia, serif; color: var(--navy); font-weight: 700; line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.2rem; font-family: 'Inter', Arial, sans-serif; font-weight: 700; }

p { margin: 0 0 1.2em; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.wrap { width: 100%; max-width: var(--wide-width); margin: 0 auto; padding: 0 var(--edge-pad); }
.col { width: 100%; max-width: var(--content-width); margin: 0 auto; }

section { padding: 72px 0; }
section.dark { background: var(--navy-dark); color: #cdd6ea; }
section.dark h2 { color: #fff; }
section.cream { background: var(--cream); }

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
section.dark .eyebrow { color: #e08a83; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.rule {
  width: 64px;
  height: 2px;
  background: var(--red);
  margin: 18px auto 0;
  border: 0;
}

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.header-brand { display: flex; align-items: center; gap: 12px; }
.header-brand img { height: 56px; width: auto; }
.header-brand .brand-name { font-family: 'Lora', serif; font-weight: 700; color: var(--navy); font-size: 1.25rem; line-height: 1.15; }
.header-brand .brand-name small { display: block; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-top: 2px; }

.header-actions { display: flex; align-items: center; gap: 22px; }
.header-phone { color: var(--navy); font-weight: 700; font-size: 0.98rem; }
.header-phone i { color: var(--red); margin-right: 6px; }

.menu-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--navy);
  padding: 6px 0;
}
.menu-btn .bars { display: flex; flex-direction: column; gap: 4px; }
.menu-btn .bars span { width: 22px; height: 2px; background: var(--navy); display: block; }

/* ---------- Full-screen nav overlay ---------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 23, 48, 0.97);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
}
.nav-overlay.open { opacity: 1; visibility: visible; }
.nav-overlay-close {
  position: absolute;
  top: var(--edge-pad);
  right: var(--edge-pad);
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.nav-list li { margin: 0 0 30px; }
.nav-list a {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  color: #fff;
  padding-bottom: 8px;
  border-bottom: 1px solid transparent;
}
.nav-list a:hover, .nav-list a.active {
  color: #fff;
  border-bottom-color: var(--red);
  text-decoration: none;
}
.nav-overlay-phone { position: absolute; bottom: 40px; left: 0; right: 0; text-align: center; color: #cdd6ea; font-size: 0.95rem; }
.nav-overlay-phone a { color: #fff; font-weight: 700; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
  padding-bottom: 60px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(11,23,48,0.92) 10%, rgba(11,23,48,0.55) 55%, rgba(11,23,48,0.75) 100%);
}
.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; padding: 0 var(--edge-pad); }
.hero .eyebrow { color: #f0a49d; text-align: center; }
.hero h1 { color: #fff; margin-bottom: 0; }
.hero hr.rule { background: var(--red); margin: 26px auto; }
.hero p.lede { color: #dbe1ee; font-size: 1.08rem; max-width: 560px; margin: 0 auto 30px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid #fff;
  color: #fff;
}
.btn:hover { background: #fff; color: var(--navy); text-decoration: none; }
.btn-solid { background: var(--red); border-color: var(--red); }
.btn-solid:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }

/* ---------- Strip stats (replaces card sidebar) ---------- */
.strip { border-bottom: 1px solid var(--border); }
.strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.strip-item {
  text-align: center;
  padding: 30px 16px;
  border-left: 1px solid var(--border);
}
.strip-item:first-child { border-left: 0; }
.strip-item i { color: var(--red); font-size: 1.3rem; margin-bottom: 10px; display: block; }
.strip-item h3 { font-size: 0.92rem; margin-bottom: 4px; }
.strip-item p, .strip-item address { font-size: 0.88rem; color: var(--muted); margin: 0; font-style: normal; }
.strip-item a { color: var(--navy); font-weight: 700; }
.pay-icons { display: flex; gap: 6px; justify-content: center; margin-top: 8px; }
.pay-icons img { height: 18px; width: auto; }

/* ---------- Content ---------- */
.article { max-width: var(--content-width); margin: 0 auto 50px; }
.article:last-child { margin-bottom: 0; }
.article img.side {
  width: 100%;
  border-radius: 2px;
  margin-bottom: 26px;
}
.article img.float-right {
  float: right;
  max-width: 200px;
  margin: 0 0 20px 30px;
  border-radius: 2px;
}
.article img.float-right.lg { max-width: 380px; }
.article .clear { clear: both; }
@media (max-width: 560px) {
  .article img.float-right { float: none; max-width: 220px; margin: 0 auto 24px; }
  .article img.float-right.lg { max-width: 100%; }
}
.article-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  max-width: var(--wide-width);
  margin: 0 auto 50px;
}
.article-media.reverse .article-media-text { order: 2; }
.article-media img { border-radius: 2px; }
.article-media-text h2 { margin-bottom: .4em; }

.plain-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  columns: 2;
  column-gap: 40px;
}
.plain-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.98rem;
  break-inside: avoid;
}
section:not(.dark) .plain-list li { border-bottom-color: var(--border); }

.photo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: var(--wide-width);
  margin: 0 auto 50px;
}
.photo-row img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 2px; }
@media (max-width: 640px) {
  .photo-row { grid-template-columns: repeat(2, 1fr); }
}

.quote-block {
  text-align: center;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--navy);
  max-width: 640px;
  margin: 0 auto;
}

.map-frame { border-radius: 2px; overflow: hidden; border: 1px solid var(--border); }
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; }

.cta-band {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 50px 0;
}
.cta-band h2 { color: #fff; }
.cta-band .btn { border-color: rgba(255,255,255,0.6); }

.trust-strip {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  max-width: var(--wide-width);
  margin: 0 auto;
  align-items: center;
}
.bbb-block { display: flex; flex-direction: column; align-items: center; text-align: center; }
.bbb-block img { max-width: 150px; margin: 0; }
.bbb-block a:first-child { margin-bottom: 14px; }
.bbb-block a { display: block; font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--navy); }
.bbb-block a:last-child { border-bottom: 1px solid var(--red); padding-bottom: 3px; }
.map-block h3 { font-size: 0.95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; text-align: center; }
.map-frame-lg iframe { height: 400px; }
@media (max-width: 700px) {
  .trust-strip { grid-template-columns: 1fr; }
}

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: var(--wide-width); margin: 0 auto; }
.review-card { text-align: center; padding: 26px 16px; border: 1px solid var(--border); }
.review-card img { height: 40px; width: auto; margin: 0 auto 16px; }
.review-card .logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 4px;
  margin: 0 auto 16px;
}
.review-card .logo-chip img { margin: 0; }
.logo-chip.facebook { background: #1877F2; }
.logo-chip.google { background: #4285F4; }
.review-card .btn { border-color: var(--navy); color: var(--navy); font-size: 0.78rem; padding: 10px 18px; }
.review-card .btn:hover { background: var(--navy); color: #fff; }

table.contact-table { width: 100%; max-width: var(--content-width); margin: 0 auto; border-collapse: collapse; }
table.contact-table td, table.contact-table th { padding: 18px 4px; border-bottom: 1px solid var(--border); text-align: left; }
table.contact-table td { color: var(--muted); width: 45%; }
table.contact-table th { color: var(--navy); font-size: 1.15rem; font-family: 'Lora', serif; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 32px;
  max-width: var(--wide-width);
  margin: 0 auto;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
}
.service-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.service-card-body { padding: 22px 24px 26px; }
.service-card h3 { color: #fff; font-family: 'Lora', serif; font-size: 1.25rem; margin: 0 0 8px; }
.service-card p { color: #b7c1da; margin: 0 0 16px; }
.service-card a { color: #fff; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; border-bottom: 1px solid var(--red); padding-bottom: 3px; }
.service-card a:hover { text-decoration: none; color: var(--red); }
@media (max-width: 700px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy-dark); color: #9fabc7; margin-top: auto; padding: 50px 0 0; }
.footer-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-info i { color: var(--red); font-size: 1.1rem; margin-bottom: 8px; display: block; }
.footer-info h3 { color: #fff; font-size: 0.85rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 6px; }
.footer-info p, .footer-info address { font-size: 0.88rem; color: #9fabc7; margin: 0; font-style: normal; }
.footer-info a { color: #cdd6ea; font-weight: 700; }
.footer-info .pay-icons { justify-content: center; margin-top: 8px; }
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-nav-list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 20px; padding: 0; margin: 0; }
.footer-nav-list a { color: #cdd6ea; font-size: 0.74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.footer-nav-list a:hover { color: var(--red); text-decoration: none; }
.footer-bottom { text-align: center; font-size: 0.82rem; padding: 22px 0 30px; color: #76829f; }
.footer-bottom a { color: #9fabc7; }

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(2n+1) { border-left: 0; }
  .strip-item { border-top: 1px solid var(--border); }
  .strip-item:nth-child(-n+2) { border-top: 0; }
  .footer-info { grid-template-columns: repeat(2, 1fr); }
  .article-media { grid-template-columns: 1fr; }
  .article-media.reverse .article-media-text { order: 0; }
  .plain-list { columns: 1; }
}

@media (max-width: 640px) {
  .header-phone span { display: none; }
  .hero { min-height: 86vh; clip-path: polygon(0 0, 100% 0, 100% 94%, 50% 100%, 0 94%); }
  .strip .wrap { grid-template-columns: 1fr; }
  .strip-item { border-left: 0 !important; border-top: 1px solid var(--border) !important; }
  .strip-item:first-child { border-top: 0 !important; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; text-align: center; }
  .footer-nav-list { justify-content: center; }
  .footer-info { grid-template-columns: 1fr; }
}
