/*
 * jlog-air.css — Scoped styles for the Air Freight Cape Town page.
 *
 * Every selector is prefixed with .jlog-air so nothing here can leak into
 * the live theme header, footer, primary nav or any other page.
 *
 * Source of truth: ~/jlog-tasks/jlog-air-freight-final.html (design file).
 */

/* Design tokens — scoped to the wrapper. */
.jlog-air {
  --green:#1A2E26;
  --green-deep:#13201A;
  --brass:#E8A13F;
  --brass-soft:#F3DCB0;
  --paper:#F7F5F0;
  --paper-card:#FFFFFF;
  --ink:#2D2D2D;
  --ink-soft:#5A6B62;
  --line:#E8E5DD;
  --radius:14px;

  font-family:'DM Sans', sans-serif;
  background:var(--paper);
  color:var(--ink);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}

/* Local reset — only inside the wrapper. */
.jlog-air,
.jlog-air *,
.jlog-air *::before,
.jlog-air *::after { box-sizing:border-box; }
.jlog-air h1,
.jlog-air h2,
.jlog-air h3,
.jlog-air h4,
.jlog-air p,
.jlog-air ul,
.jlog-air ol,
.jlog-air blockquote,
.jlog-air table,
.jlog-air th,
.jlog-air td,
.jlog-air figure { margin:0; padding:0; }

.jlog-air .wrap { max-width:1140px; margin:0 auto; padding:0 28px; }

.jlog-air h1,
.jlog-air h2,
.jlog-air h3 {
  font-family:'DM Serif Display', serif;
  font-weight:400;
  line-height:1.14;
  letter-spacing:-0.005em;
}

.jlog-air .eyebrow {
  font-size:13px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--brass);
  font-weight:600;
}

/* Reveal animation. */
.jlog-air .reveal {
  opacity:0;
  transform:translateY(18px);
  animation: jlog-air-rise .8s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes jlog-air-rise { to { opacity:1; transform:none; } }

/* Hero. */
.jlog-air .hero { padding:76px 0 64px; }
.jlog-air .hero-grid {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}
.jlog-air .hero h1 {
  font-size:clamp(34px, 4.4vw, 56px);
  color:var(--green);
}
.jlog-air .hero .tagline {
  font-family:'DM Serif Display', serif;
  font-size:18px;
  color:var(--brass);
  font-style:italic;
  margin-bottom:6px;
}
.jlog-air .hero p.lead {
  font-size:19px;
  color:var(--ink-soft);
  margin:22px 0 30px;
  max-width:46ch;
}
.jlog-air .btn-row { display:flex; gap:14px; flex-wrap:wrap; }
.jlog-air .btn {
  padding:14px 26px;
  border-radius:10px;
  font-weight:600;
  font-size:15px;
  text-decoration:none;
  display:inline-block;
  transition:transform .15s;
}
.jlog-air .btn:hover { transform:translateY(-2px); }
.jlog-air .btn-primary { background:var(--green); color:#fff; }
.jlog-air .btn-ghost {
  background:transparent;
  color:var(--green);
  border:1.5px solid var(--line);
}
.jlog-air .ph {
  background:linear-gradient(135deg, #1C5636, #1A2E26);
  border-radius:var(--radius);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:var(--brass-soft);
  gap:10px;
  min-height:360px;
  position:relative;
  overflow:hidden;
}
.jlog-air .ph::after {
  content:"";
  position:absolute;
  inset:0;
  background-image:radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size:22px 22px;
}
.jlog-air .ph span { position:relative; z-index:1; }
.jlog-air .ph .mk { font-size:30px; }
.jlog-air .ph .lbl {
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* Credibility strip. */
.jlog-air .strip { background:var(--green-deep); color:#fff; }
.jlog-air .strip .wrap {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  text-align:center;
}
.jlog-air .stat {
  padding:30px 16px;
  border-right:1px solid rgba(255,255,255,.1);
}
.jlog-air .stat:last-child { border-right:none; }
.jlog-air .stat .big {
  font-family:'DM Serif Display', serif;
  font-size:28px;
  font-weight:400;
  color:var(--brass);
}
.jlog-air .stat .sub {
  font-size:13px;
  color:#c7d2c7;
  margin-top:4px;
}

/* Section base. */
.jlog-air section { padding:80px 0; }
.jlog-air .section-head { max-width:64ch; margin-bottom:44px; }
.jlog-air .section-head h2 {
  font-size:clamp(28px, 3.4vw, 40px);
  color:var(--green);
  margin-bottom:14px;
}
.jlog-air .section-head p { color:var(--ink-soft); font-size:17px; }

/* "What we do" service cards. */
.jlog-air .cards {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:22px;
}
.jlog-air .card {
  background:var(--paper-card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:34px 30px;
}
.jlog-air .card .ic {
  width:50px;
  height:50px;
  border-radius:12px;
  background:var(--brass-soft);
  color:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  margin-bottom:18px;
}
.jlog-air .card h3 { font-size:21px; color:var(--green); margin-bottom:9px; }
.jlog-air .card p { color:var(--ink-soft); font-size:15px; }

/* Numbered 4-step process. */
.jlog-air .steps {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
  counter-reset:step;
}
.jlog-air .step {
  background:var(--paper-card);
  border:1px solid var(--line);
  border-radius:12px;
  padding:26px 22px;
  position:relative;
}
.jlog-air .step .n {
  font-family:'DM Serif Display', serif;
  font-size:30px;
  color:var(--brass);
  line-height:1;
}
.jlog-air .step h3 {
  font-size:17px;
  color:var(--green);
  margin:10px 0 6px;
  font-family:'DM Sans', sans-serif;
  font-weight:600;
}
.jlog-air .step p {
  font-size:14px;
  color:var(--ink-soft);
  line-height:1.55;
}

/* Compare section background + table. */
.jlog-air .compare { background:#EDEAE2; }
.jlog-air .cmp {
  width:100%;
  border-collapse:collapse;
  background:var(--paper-card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
}
.jlog-air .cmp th,
.jlog-air .cmp td {
  padding:16px 20px;
  text-align:left;
  font-size:15px;
  border-bottom:1px solid var(--line);
}
.jlog-air .cmp th {
  background:var(--green);
  color:#fff;
  font-family:'DM Sans', sans-serif;
  font-weight:600;
  font-size:14px;
}
.jlog-air .cmp td:first-child { font-weight:600; color:var(--green); }
.jlog-air .cmp tr:last-child td { border-bottom:none; }
.jlog-air .cmp .yes { color:var(--green); font-weight:600; }

/* FAQ. */
.jlog-air .faq { max-width:820px; margin:0 auto; }
.jlog-air .faq-item {
  background:var(--paper-card);
  border:1px solid var(--line);
  border-radius:12px;
  padding:24px 28px;
  margin-bottom:14px;
}
.jlog-air .faq-item h3 {
  font-size:18px;
  color:var(--green);
  margin-bottom:8px;
  font-family:'DM Sans', sans-serif;
  font-weight:600;
}
.jlog-air .faq-item p { color:var(--ink-soft); font-size:15px; }

/* Footer CTA band (page content, not the site footer). */
.jlog-air .foot {
  background:var(--green-deep);
  color:#fff;
  text-align:center;
  padding:88px 0;
}
.jlog-air .foot h2 {
  font-size:clamp(30px, 4vw, 46px);
  color:#fff;
  margin-bottom:14px;
}
.jlog-air .foot .contact {
  color:#c7d2c7;
  font-size:16px;
  margin-bottom:30px;
}
.jlog-air .foot .btn-primary { background:var(--brass); color:var(--green-deep); }

/* Responsive. */
@media (max-width: 860px) {
  .jlog-air .hero-grid { grid-template-columns:1fr; gap:34px; }
  .jlog-air .ph { min-height:230px; }
}
@media (max-width: 760px) {
  .jlog-air .strip .wrap { grid-template-columns:1fr 1fr; }
  .jlog-air .stat {
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.1);
  }
  .jlog-air .steps { grid-template-columns:1fr 1fr; }
  .jlog-air .cmp { font-size:14px; }
  .jlog-air .cmp th,
  .jlog-air .cmp td { padding:12px 12px; }
}
