/* Penanshin Air Express — site styles */
:root {
  --navy: #0B2545;
  --navy-deep: #081A33;
  --navy-mid: #16345C;
  --navy-line: #28507F;
  --blue: #0552A4;
  --red: #D8232B;
  --red-dark: #B51C23;
  --red-text: #C41E26;
  --ink: #0E1B2C;
  --body: #26344A;
  --muted: #56627A;
  --line: #E1E6ED;
  --field: #C5CEDA;
  --bg: #F3F5F8;
  --pale: #E8EEF6;
  --sky: #8FB8F0;
  --on-dark: #C9D4E3;
  --on-dark-2: #B9C6D8;
  --radius: 12px;
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --gutter: 80px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); }
a:hover { color: var(--blue); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; color: var(--navy); margin: 0; line-height: 1.1; }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; }

.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); }
.skip-link { position: absolute; left: -999px; top: 0; background: #fff; padding: 12px 16px; z-index: 100; }
.skip-link:focus { left: 16px; top: 16px; }

.eyebrow { display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red-text); }
.on-dark .eyebrow, .eyebrow.light { color: var(--sky); }
.section { padding: 112px 0; }
.section-head { display: flex; flex-direction: column; gap: 16px; margin-bottom: 56px; max-width: 760px; }
.section-head h2 { font-size: 46px; }
.lead { font-size: 17px; color: var(--muted); }
.muted { color: var(--muted); }
.bg-white { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--font-body); font-weight: 600; font-size: 16px; line-height: 1.2; padding: 17px 26px; border-radius: 6px; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: background .15s, color .15s, border-color .15s; min-height: 48px; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); color: #fff; }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost-light { border: 1px solid #4A6A93; color: #fff; font-weight: 500; }
.btn-ghost-light:hover { background: rgba(255,255,255,.08); color: #fff; }

/* Top bar + header */
.topbar { background: var(--navy-deep); color: var(--on-dark-2); font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.topbar a { color: var(--on-dark-2); text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar-right { display: flex; gap: 28px; }

.site-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 96px; }
.brand img { height: 72px; width: auto; }
.nav { display: flex; align-items: center; gap: 36px; font-size: 15px; font-weight: 500; }
.nav a { color: var(--navy); text-decoration: none; padding: 6px 0; }
.nav a:hover { color: var(--blue); }
.nav a[aria-current="page"] { font-weight: 700; border-bottom: 2px solid var(--red); }
.nav .btn { padding: 13px 22px; min-height: 44px; }
.nav .btn:hover { color: #fff; }
.header-actions { display: none; gap: 8px; }
.icon-btn { width: 44px; height: 44px; border-radius: 8px; border: 1px solid var(--field); background: transparent; color: var(--navy); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; }

/* Hero */
.hero { background: var(--navy); color: #fff; }
.hero .container { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; padding-top: 88px; padding-bottom: 96px; align-items: center; }
.hero-copy { display: flex; flex-direction: column; gap: 28px; }
.hero h1 { color: #fff; font-size: 64px; line-height: 1.04; letter-spacing: -0.01em; }
.hero p { font-size: 19px; color: var(--on-dark); max-width: 560px; }
.hero .note { font-size: 14px; color: #9FB0C7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-art { border-radius: var(--radius); overflow: hidden; aspect-ratio: 6 / 5; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; }

/* Page band (inner pages) */
.band { position: relative; overflow: hidden; background: var(--navy); color: #fff; isolation: isolate; }
.band .container { padding-top: 72px; padding-bottom: 96px; display: flex; flex-direction: column; gap: 16px; }
.band h1 { color: #fff; font-size: 56px; line-height: 1.06; max-width: 760px; }
.band p { font-size: 18px; color: var(--on-dark); max-width: 680px; }
.band-art { position: absolute; right: 0; top: 0; width: 45%; height: 100%; object-fit: cover; opacity: .5; z-index: -1; }

/* Trust strip */
.trust { background: #fff; border-bottom: 1px solid var(--line); }
.trust .container { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trust-item { padding: 36px 24px; display: flex; flex-direction: column; gap: 6px; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: 0; padding-left: 0; }
.trust-item strong { font-family: var(--font-display); font-size: 30px; color: var(--navy); line-height: 1.2; }
.trust-item span { font-size: 15px; color: var(--muted); }

/* Cards */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.card-body { padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.card h3 { font-size: 24px; }
.card p { color: var(--muted); }
.service-card img { width: 100%; height: 180px; object-fit: cover; }
.service-card ul { list-style: none; margin: 4px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; font-size: 15px; color: var(--body); }
.service-card a.more { font-weight: 600; margin-top: auto; }
.service-card .card-body { height: calc(100% - 180px); }

/* Why list */
.why .container { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 80px; }
.why-copy { display: flex; flex-direction: column; gap: 24px; }
.why-copy h2 { font-size: 46px; }
.why-copy img { border-radius: var(--radius); width: 100%; height: 280px; object-fit: cover; margin-top: 8px; }
.num-list { list-style: none; margin: 0; padding: 0; }
.num-list li { display: flex; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.num-list li:last-child { border-bottom: 0; }
.num-list .n { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--red-text); width: 40px; flex-shrink: 0; }
.num-list h3 { font-size: 22px; margin-bottom: 8px; }
.num-list p { color: var(--muted); }

/* Steps */
.step { border-top: 3px solid var(--navy); padding-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.step:last-child { border-top-color: var(--red); }
.step .k { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--red-text); }
.step h3 { font-size: 22px; }
.step p { color: var(--muted); }

/* Tools */
.tools { background: var(--navy); color: #fff; padding: 72px 0; }
.tools h2 { color: #fff; font-size: 34px; margin: 12px 0 32px; }
.tool { background: var(--navy-mid); border: 1px solid var(--navy-line); border-radius: 10px; padding: 24px; color: #fff; text-decoration: none; display: flex; flex-direction: column; gap: 8px; transition: background .15s; }
.tool:hover { background: #1D4270; color: #fff; }
.tool strong { font-size: 18px; }
.tool span { font-size: 14px; color: var(--on-dark-2); }

/* Offices */
.office .map { position: relative; height: 240px; background: var(--pale); }
.office .map iframe { width: 100%; height: 100%; border: 0; display: block; }
.office address { font-style: normal; color: var(--body); }
.office .contacts { display: flex; flex-wrap: wrap; gap: 8px 28px; font-size: 15px; font-weight: 600; }

/* CTA */
.cta { background: var(--red); border-radius: var(--radius); padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; color: #fff; }
.cta h2, .cta h3 { color: #fff; font-weight: 800; font-size: 38px; }
.cta p { font-size: 17px; margin-top: 12px; }
.careers-row { display: grid; grid-template-columns: 1fr 2fr; gap: 24px; }

/* Footer */
.site-footer { background: var(--navy-deep); color: var(--on-dark-2); padding: 72px 0 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 48px; }
.footer-logo { display: inline-flex; background: #fff; border-radius: 10px; padding: 12px 18px; }
.footer-logo img { height: 72px; width: auto; }
.site-footer h2 { font-family: var(--font-body); font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.site-footer a { color: var(--on-dark-2); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid #1C3A63; margin-top: 48px; padding-top: 24px; font-size: 14px; color: #8C9DB5; }

/* Services page */
.jump { display: flex; flex-wrap: wrap; gap: 12px; margin-top: -32px; position: relative; }
.jump a { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 12px 20px; font-size: 15px; font-weight: 600; text-decoration: none; }
.svc { padding: 96px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 96px; }
.svc:nth-of-type(odd) { background: #fff; }
.svc .container { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 80px; align-items: center; }
.svc.flip .svc-art { order: 2; }
.svc-art img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); }
.svc-copy { display: flex; flex-direction: column; gap: 20px; }
.svc-copy h2 { font-size: 44px; }
.ticks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; color: var(--body); }
.ticks li::before { content: ''; flex-shrink: 0; width: 20px; height: 20px; margin-top: 3px; background: no-repeat center / 20px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C41E26' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }
.good-for { background: var(--pale); border-radius: 8px; padding: 14px 18px; font-size: 15px; color: var(--body); }
.spec { background: var(--navy); padding: 88px 0; }
.spec h2 { color: #fff; font-size: 40px; margin: 12px 0 32px; }
.spec-item { background: var(--navy-mid); border: 1px solid var(--navy-line); border-radius: 10px; padding: 28px; }
.spec-item h3 { color: #fff; font-size: 20px; margin-bottom: 10px; }
.spec-item p { color: var(--on-dark-2); font-size: 15px; }

/* About */
.story .container { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 80px; align-items: center; }
.story img { border-radius: var(--radius); width: 100%; height: 320px; object-fit: cover; }
.value .k { font-family: var(--font-display); font-weight: 700; color: var(--red-text); font-size: 18px; }

/* Careers */
.job { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; margin-bottom: 24px; }
.job h3 { font-size: 26px; line-height: 1.2; }
.job .meta { font-size: 14px; font-weight: 600; color: var(--red-text); }
.job .col { display: flex; flex-direction: column; gap: 12px; }
.col-label { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.apply-box { background: var(--navy); border-radius: var(--radius); padding: 48px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; }
.apply-box h2 { color: #fff; font-size: 30px; margin-bottom: 14px; }
.apply-box p { color: var(--on-dark); }
.apply-box a { color: var(--sky); font-weight: 600; }

/* Quote form */
.quote-wrap { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; margin-top: -72px; position: relative; padding-bottom: 112px; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 48px; }
.form-card form { display: flex; flex-direction: column; gap: 40px; }
fieldset { border: 0; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 20px; min-width: 0; }
legend { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy); padding: 0; margin-bottom: 20px; }
.row { display: grid; gap: 20px; }
.row-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.row-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.row-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.field { display: flex; flex-direction: column; gap: 8px; font-size: 14px; font-weight: 600; color: var(--body); }
.field input, .field select, .field textarea { width: 100%; height: 48px; border: 1px solid var(--field); border-radius: 6px; padding: 0 14px; font: inherit; font-size: 16px; font-weight: 400; color: var(--ink); background: #fff; }
.field textarea { height: auto; padding: 12px 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); outline: 2px solid rgba(5,82,164,.2); }
.req { color: var(--red-text); }
.modes { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.mode { position: relative; }
.mode input { position: absolute; opacity: 0; inset: 0; }
.mode span { display: flex; align-items: center; gap: 10px; border: 1px solid var(--field); border-radius: 8px; padding: 16px; font-size: 16px; font-weight: 500; color: var(--body); cursor: pointer; min-height: 56px; }
.mode span::before { content: ''; width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--field); flex-shrink: 0; }
.mode input:checked + span { border: 2px solid var(--navy); background: var(--pale); color: var(--navy); font-weight: 600; padding: 15px; }
.mode input:checked + span::before { border: 5px solid var(--navy); }
.mode input:focus-visible + span { outline: 3px solid var(--sky); outline-offset: 2px; }
.check { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--body); cursor: pointer; }
.check input { width: 20px; height: 20px; margin: 2px 0 0; flex-shrink: 0; accent-color: var(--navy); }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); padding-top: 32px; }
.form-foot p { font-size: 14px; color: var(--muted); max-width: 460px; }
.hp { position: absolute; left: -9999px; }
.aside { display: flex; flex-direction: column; gap: 24px; }
.aside .box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.aside .box.dark { background: var(--navy); border-color: var(--navy); color: #fff; }
.aside .box.dark h2 { color: #fff; }
.aside .box.dark p, .aside .box.dark span { color: var(--on-dark); }
.aside .box.dark a { color: #fff; }
.aside .box.dark a.mail { color: var(--sky); }
.aside h2 { font-size: 22px; }
.steps-mini { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; counter-reset: s; }
.steps-mini li { display: flex; gap: 14px; font-size: 15px; color: var(--body); counter-increment: s; }
.steps-mini li::before { content: counter(s); width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 600; font-size: 14px; display: flex; align-items: center; justify-content: center; }

/* Thank you / 404 / privacy */
.center-card { max-width: 880px; margin: 96px auto 112px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 64px; display: flex; flex-direction: column; gap: 32px; text-align: center; align-items: center; }
.center-card h1 { font-size: 44px; }
.tick-circle { width: 80px; height: 80px; border-radius: 50%; background: #E6F4EA; color: #1E7B3A; display: flex; align-items: center; justify-content: center; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.nf { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 80px; align-items: center; padding: 112px 0; }
.nf .big { font-family: var(--font-display); font-weight: 700; font-size: 120px; line-height: 1; color: var(--red); }
.nf img { border-radius: var(--radius); height: 420px; width: 100%; object-fit: cover; }
.pill-links { display: flex; flex-wrap: wrap; gap: 12px; }
.pill-links a { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 16px 22px; font-weight: 600; text-decoration: none; }
.legal { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; padding: 88px 0 112px; align-items: start; }
.toc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 12px; position: sticky; top: 120px; }
.toc a { text-decoration: none; font-size: 15px; color: var(--body); }
.legal-body { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 56px; display: flex; flex-direction: column; gap: 36px; }
.legal-body section { display: flex; flex-direction: column; gap: 14px; padding-bottom: 36px; border-bottom: 1px solid var(--line); scroll-margin-top: 120px; }
.legal-body h2 { font-size: 26px; }
.legal-body p, .legal-body li { font-size: 17px; line-height: 1.75; color: var(--body); }
.legal-body ul { margin: 0; padding-left: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  :root { --gutter: 48px; }
  .hero h1 { font-size: 52px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav { gap: 22px; }
}
@media (max-width: 960px) {
  :root { --gutter: 24px; }
  .topbar { display: none; }
  .site-header .container { height: 76px; }
  .brand img { height: 56px; }
  .header-actions { display: flex; }
  .nav { display: none; position: absolute; top: 76px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 24px; box-shadow: 0 12px 24px rgba(11,37,69,.08); }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav a[aria-current="page"] { border-bottom: 1px solid var(--line); color: var(--red-text); }
  .nav .btn { margin-top: 16px; border-bottom: 0; }
  .section { padding: 72px 0; }
  .section-head h2, .why-copy h2, .svc-copy h2 { font-size: 34px; }
  .hero .container, .why .container, .svc .container, .story .container, .nf, .legal, .careers-row, .apply-box { grid-template-columns: 1fr; gap: 40px; }
  .hero .container { padding-top: 48px; padding-bottom: 56px; }
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 17px; }
  .band h1 { font-size: 40px; }
  .band-art { width: 100%; opacity: .2; }
  .trust .container { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-item { border-left: 0; padding: 24px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .svc.flip .svc-art { order: 0; }
  .svc-art img { height: 280px; }
  .job { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .cta { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
  .cta h2, .cta h3 { font-size: 28px; }
  .quote-wrap { grid-template-columns: 1fr; margin-top: -40px; }
  .form-card { padding: 28px 20px; }
  .row-2, .row-3 { grid-template-columns: 1fr; }
  .row-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .row-4 .field:last-child { grid-column: 1 / -1; }
  .modes { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .mode span { padding: 14px 12px; font-size: 15px; }
  .mode input:checked + span { padding: 13px 11px; }
  .form-foot { flex-direction: column; align-items: stretch; }
  .form-foot .btn { width: 100%; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .center-card { padding: 36px 24px; margin: 48px auto; }
  .center-card h1 { font-size: 32px; }
  .toc { position: static; }
  .legal-body { padding: 28px 20px; }
  .nf { padding: 64px 0; }
  .nf .big { font-size: 88px; }
  .nf img { height: 240px; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .tools h2 { font-size: 28px; }
}

/* FAQ */
.faq-wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.faq-item summary { cursor: pointer; list-style: none; padding: 20px 56px 20px 24px; font-weight: 600; font-size: 17px; color: var(--navy); position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 400; color: var(--red-text); }
.faq-item[open] summary::after { content: '–'; }
.faq-item p { padding: 0 24px 22px; color: var(--body); }
#faq { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 960px) { .faq-wrap { grid-template-columns: 1fr; gap: 32px; } .faq-item summary { font-size: 16px; } }

section[id] { scroll-margin-top: 100px; }
@media (max-width: 960px) { section[id] { scroll-margin-top: 80px; } }

.modes.modes-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 960px) { .modes.modes-3 { grid-template-columns: 1fr; } }

/* Dangerous goods pop-out on quote form */
.dg-extra { background: #FFF4F4; border: 1px solid #F2C4C6; border-left: 4px solid var(--red); border-radius: 8px; padding: 20px 24px; display: flex; flex-direction: column; gap: 12px; animation: dgIn .2s ease-out; }
.dg-extra[hidden] { display: none; }
.dg-extra p { font-size: 13px; color: var(--muted); }
.dg-extra a { font-weight: 600; }
@keyframes dgIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .dg-extra { animation: none; } }

/* Fumigation yes/no */
.field-group { display: flex; flex-direction: column; gap: 10px; }
.group-label { font-size: 14px; font-weight: 600; color: var(--body); }
.hint { font-size: 13px; color: var(--muted); }
.modes.modes-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 360px; }
@media (max-width: 960px) { .modes.modes-2 { max-width: none; } }

/* After-hours / emergency line */
.topbar .emergency { color: #fff; font-weight: 600; }
.after-hours { border-top: 1px solid var(--navy-line); padding-top: 14px; display: flex; flex-direction: column; gap: 4px; }
.after-hours span { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--sky) !important; }
.after-hours a { color: #fff; font-weight: 600; font-size: 18px; }
@media (max-width: 1180px) { .topbar-right { gap: 18px; } }
.nav a.btn, .nav a.btn:hover { color: #fff; }
.topbar span, .topbar a { white-space: nowrap; }
@media (max-width: 1280px) { .topbar .container > span:first-child { display: none; } .topbar .container { justify-content: flex-end; } }
@media (max-width: 1080px) { .topbar-right > span { display: none; } }

.faq-item p a { font-weight: 600; white-space: nowrap; }

/* Google reviews */
.reviews-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; margin-bottom: 48px; }
.reviews-summary { display: flex; flex-direction: column; gap: 16px; }
.reviews-summary h2 { font-size: 46px; }
.rating { display: flex; align-items: center; gap: 16px; }
.rating-num { font-family: var(--font-display); font-weight: 800; font-size: 52px; line-height: 1; color: var(--navy); }
.rating-count { display: block; margin-top: 6px; font-size: 15px; color: var(--muted); }
.stars { display: flex; gap: 4px; }
.stars svg { width: 20px; height: 20px; fill: #F2A541; display: block; }
.reviews-controls { display: flex; align-items: center; gap: 12px; }
.reviews-controls .btn { margin-right: 16px; }
.rv-nav { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--navy); background: #fff; color: var(--navy); display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; }
.rv-nav svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.rv-nav:hover { background: var(--navy); color: #fff; }
.rv-nav:disabled { opacity: .35; cursor: default; background: #fff; color: var(--navy); }
.reviews-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 48px) / 3); gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 8px; scrollbar-width: none; align-items: stretch; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card { scroll-snap-align: start; margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.review-text { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.review-text p { margin: 0; font-size: 16px; line-height: 1.6; color: #26344A; }
.review-text.clamp { max-height: calc(1.6em * 8); overflow: hidden; position: relative; }
.review-text.clamp::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.6em; background: linear-gradient(rgba(255,255,255,0), #fff); }
.review-more { align-self: flex-start; background: none; border: 0; padding: 0; font: inherit; font-size: 15px; font-weight: 600; color: var(--navy); text-decoration: underline; cursor: pointer; }
.review-card figcaption { margin-top: auto; display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 16px; }
.review-card figcaption > span:last-child { display: flex; flex-direction: column; gap: 2px; font-size: 14px; color: var(--muted); }
.review-card strong { font-size: 16px; color: var(--navy); }
.avatar { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: var(--navy); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; }
@media (max-width: 1180px) { .reviews-track { grid-auto-columns: calc((100% - 24px) / 2); } }
@media (max-width: 960px) {
  .reviews-summary h2 { font-size: 32px; }
  .rating-num { font-size: 40px; }
  .reviews-head { margin-bottom: 28px; align-items: stretch; flex-direction: column; }
  .reviews-controls { flex-wrap: wrap; justify-content: flex-end; }
  .reviews-controls .btn { order: 2; flex-basis: 100%; margin: 4px 0 0; }
  .reviews-track { grid-auto-columns: 86%; gap: 16px; }
  .review-card { padding: 24px; }
  .review-text p { font-size: 15px; }
}
