/* ──────────────────────────────────────────────────────────────
   886JetPet — shared design system for the server-rendered pages
   (/, /quotation, /cargo, /contact-us)
   ────────────────────────────────────────────────────────────── */

:root {
  --navy: #1a3363;
  --navy-dark: #12244a;
  --coral: #e0553f;
  --coral-dark: #d94836;
  --ink: #24303f;
  --muted: #5c6a7a;
  --line: #dfe5ec;
  --bg-soft: #f4f7fb;
  --ok: #05ba00;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(26, 51, 99, .10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--navy); }

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ── Header ─────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; padding-top: 8px; padding-bottom: 8px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex: 1; min-width: 0; }
.brand img { height: 44px; width: auto; flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-name { font-weight: 800; color: var(--navy); font-size: 1.05rem; letter-spacing: .2px; line-height: 1.2; }
.brand-tagline {
  font-size: .78rem; font-weight: 400; color: var(--muted);
  letter-spacing: .02em; line-height: 1.35; word-break: keep-all;
}
.brand-tagline em { font-style: italic; font-weight: 700; color: var(--navy); }

.header-actions { display: flex; align-items: center; gap: 26px; flex: 0 0 auto; }
.header-link { font-size: .9rem; font-weight: 700; color: var(--navy); text-decoration: none; white-space: nowrap; }
.header-link:hover { color: var(--coral); text-decoration: underline; }

/* Mobile-only strip below header (secondary links) */
.mobile-alt-quote {
  display: none; text-align: center; padding: 8px 16px;
  background: var(--bg-soft); border-bottom: 1px solid var(--line);
}
.mobile-alt-quote a { font-size: .85rem; color: var(--navy); font-weight: 600; text-decoration: none; margin: 0 10px; }
.mobile-alt-quote a:hover { text-decoration: underline; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-block; border: 0; cursor: pointer; text-decoration: none;
  font-weight: 700; border-radius: 999px; transition: background .15s ease, transform .15s ease;
  text-align: center; font-family: inherit;
}
.btn-primary {
  background: var(--coral); color: #fff;
  padding: 14px 30px; font-size: 1.05rem;
  box-shadow: 0 6px 18px rgba(224, 85, 63, .35);
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-1px); }
.btn-small { padding: 10px 20px; font-size: .9rem; }
.btn-ghost {
  background: transparent; color: #fff; border: 2px solid rgba(255, 255, 255, .6);
  padding: 12px 26px; font-size: 1rem;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.btn-outline-navy {
  background: transparent; color: var(--navy); border: 2px solid var(--navy);
  padding: 12px 26px; font-size: 1rem;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, #0d1b38 100%);
  color: #fff; padding: 64px 0 56px;
}
.hero .container { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }

/* Home-page hero variant with a full-bleed carousel: the section padding moves
   to the text column, and the container is wider so the media column matches
   the photos' native 4:5 ratio on desktop (no crop). */
.hero--media { padding: 0; }
.hero--media .container { max-width: 1220px; grid-template-columns: 1.1fr .9fr; align-items: stretch; }
.hero-copy {
  padding: 64px 0 56px;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.hero-kicker {
  display: inline-block; background: rgba(224, 85, 63, .18); color: #ffb4a5;
  border: 1px solid rgba(224, 85, 63, .5);
  font-size: .8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); line-height: 1.15; font-weight: 800; margin-bottom: 16px; }
.hero h1 em { font-style: normal; color: #ff8a73; }
.hero p.lead { font-size: 1.15rem; color: #c9d4e8; margin-bottom: 26px; max-width: 34em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: .92rem; color: #aebbd6; }
.hero-trust li::before { content: "✓ "; color: var(--ok); font-weight: 800; }

.hero-panel {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius); padding: 26px;
}
.hero-panel h2 { font-size: 1.05rem; color: #ffb4a5; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.hero-panel ol { list-style: none; counter-reset: step; }
.hero-panel li {
  counter-increment: step; display: flex; gap: 14px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px dashed rgba(255, 255, 255, .12); color: #dde5f2; font-size: .98rem;
}
.hero-panel li:last-child { border-bottom: 0; }
.hero-panel li::before {
  content: counter(step);
  flex: 0 0 28px; height: 28px; border-radius: 50%;
  background: var(--coral); color: #fff; font-weight: 800; font-size: .9rem;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}

/* ── Sections ───────────────────────────────────────── */
section { padding: 60px 0; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--navy); font-weight: 800; text-align: center; margin-bottom: 10px; }
.section-sub { text-align: center; color: var(--muted); max-width: 46em; margin: 0 auto 40px; }
.bg-soft { background: var(--bg-soft); }

/* Card grids (benefits, features, requirements) */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.benefit-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.benefit {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 20px; box-shadow: var(--shadow);
}
.benefit .icon { margin-bottom: 12px; color: var(--coral); }
.benefit .icon svg { width: 32px; height: 32px; display: block; }
.benefit h3 { color: var(--navy); font-size: 1.02rem; margin-bottom: 8px; }
.benefit p { color: var(--muted); font-size: .92rem; }
.benefit .card-kicker { color: var(--coral); font-weight: 700; font-size: 1rem; margin-bottom: 8px; }

/* Concierge service list (home) */
.service-list { list-style: none; max-width: 30em; margin: 0 auto 20px; }
.service-list li {
  display: flex; align-items: center; gap: 12px; padding: 9px 0;
  font-weight: 600; color: var(--ink);
  border-bottom: 1px dashed var(--line);
}
.service-list li:last-child { border-bottom: 0; }
.service-list li svg { width: 22px; height: 22px; flex: 0 0 auto; color: var(--coral); }

/* Cargo cross-sell panel (home) */
.cargo-cta { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); color: #fff; }
.cargo-cta .panel { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.cargo-cta h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 14px; }
.cargo-cta h2 em { font-style: normal; color: #ff8a73; }
.cargo-cta p { color: #c9d4e8; margin-bottom: 14px; }
.cargo-cta ul { list-style: none; margin-bottom: 22px; }
.cargo-cta ul li { padding: 4px 0; color: #dde5f2; }
.cargo-cta ul li::before { content: "→ "; color: var(--coral); font-weight: 800; }

/* Reviews (home) */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow); text-align: center;
}
.review-card img {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 14px; border: 4px solid var(--bg-soft);
}
.review-card blockquote { font-style: italic; color: var(--muted); font-size: .93rem; margin-bottom: 12px; }
.review-card figcaption { font-weight: 700; color: var(--navy); font-size: .95rem; }
/* Pure-CSS "read more": full text stays in the DOM (good for SEO), clamped visually */
.review-card .rev-toggle { display: none; }
.review-card .quote-clamp {
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.review-card .rev-toggle:checked ~ blockquote .quote-clamp { -webkit-line-clamp: unset; display: block; }
.review-card .rev-more { display: inline-block; cursor: pointer; color: #888ddc; font-size: .85rem; font-weight: 600; margin-top: 8px; }
.review-card .rev-more::after { content: "read more"; }
.review-card .rev-toggle:checked ~ .rev-more::after { content: "read less"; }

/* ── Quote form ─────────────────────────────────────── */
.quote-card {
  max-width: 720px; margin: 0 auto; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 34px clamp(18px, 4vw, 40px) 40px;
}
.quote-card .form-note { text-align: center; color: var(--muted); font-size: .9rem; margin-bottom: 26px; }

fieldset { border: 0; margin: 0 0 8px; min-width: 0; }
legend, .field-label { font-weight: 700; color: var(--navy); font-size: .95rem; margin-bottom: 8px; display: block; }

.direction-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.direction-option input { position: absolute; opacity: 0; pointer-events: none; }
.direction-option label {
  display: block; height: 100%; cursor: pointer; text-align: center;
  border: 2px solid var(--line); border-radius: 12px; padding: 14px 10px;
  font-size: .92rem; transition: border-color .15s, background .15s;
}
.direction-option label b { display: block; color: var(--navy); margin-top: 6px; }
.direction-option label small { display: block; color: var(--muted); margin-top: 4px; line-height: 1.4; }
.direction-option .dir-icon { display: flex; justify-content: center; color: var(--navy); }
.direction-option .dir-icon svg { width: 26px; height: 26px; }
.direction-option input:checked + label { border-color: var(--coral); background: #fff4f1; }
.direction-option input:checked + label .dir-icon { color: var(--coral); }
.direction-option input:focus-visible + label { outline: 3px solid rgba(224, 85, 63, .4); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 6px; }
.field .hint { font-size: .8rem; color: var(--muted); margin-top: 4px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font-size: 1rem; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 10px; background: #fff;
  font-family: inherit; transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26, 51, 99, .12);
}
.field textarea { resize: vertical; }
.req::after { content: " *"; color: var(--coral); }

/* Travel option checkboxes (standard form) */
.travel-options { margin-bottom: 18px; }
.travel-options .option { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; }
.travel-options input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 3px; accent-color: var(--coral); flex: 0 0 auto;
}
.travel-options label { font-size: .93rem; color: var(--ink); cursor: pointer; }
.travel-options label b { color: var(--navy); }
.travel-options .options-note { font-size: .82rem; color: var(--muted); margin-top: 8px; }

/* Airport autocomplete / custom dropdowns */
.ac-wrap { position: relative; }
.ac-list {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 20;
  background: #fff; border: 1.5px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow); list-style: none; margin: 0; padding: 6px;
  max-height: 260px; overflow-y: auto;
}
.ac-list li { padding: 9px 10px; border-radius: 8px; cursor: pointer; font-size: .92rem; }
.ac-list li:hover, .ac-list li.active { background: var(--bg-soft); color: var(--navy); }

.field .dd-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235c6a7a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px;
}
.field .dd-input[inputmode="none"] { caret-color: transparent; }
.field .dd-input:disabled { background-color: var(--bg-soft); color: var(--muted); cursor: not-allowed; }

.pet-block {
  border: 1px dashed var(--line); border-radius: 12px;
  padding: 18px 16px 6px; margin-bottom: 16px; background: var(--bg-soft);
}
.pet-block h4 { color: var(--navy); margin-bottom: 12px; font-size: .98rem; }

.form-error {
  display: none; background: #fdecea; color: #b3261e; border: 1px solid #f5c6c0;
  border-radius: 10px; padding: 12px 16px; margin-bottom: 16px; font-size: .92rem;
}
.form-error.visible { display: block; }
.form-success {
  background: #e8f7e8; color: #1d7a1d; border: 1px solid #bfe5bf;
  border-radius: 10px; padding: 12px 16px; margin-bottom: 16px; font-size: .95rem;
}

.submit-btn { width: 100%; padding: 16px; font-size: 1.15rem; margin-top: 6px; }
.submit-btn[disabled] { opacity: .6; cursor: wait; transform: none; }
.privacy-note { text-align: center; font-size: .8rem; color: var(--muted); margin-top: 12px; }

.not-cargo {
  max-width: 720px; margin: 22px auto 0; text-align: center;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px; font-size: .95rem; color: var(--muted);
}
.not-cargo a { font-weight: 700; color: var(--coral); }
.not-cargo .inline-paw { width: 18px; height: 18px; vertical-align: -3px; color: var(--coral); display: inline; }

/* ── Photo gallery ──────────────────────────────────── */
.gallery-wrap { position: relative; }
.gallery-track {
  display: flex; gap: 14px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding: 4px 4px 16px; scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-card {
  flex: 0 0 auto; width: clamp(220px, 23vw, 250px); aspect-ratio: 4 / 5;
  overflow: hidden; scroll-snap-align: center;
  background: var(--line);
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }
.gallery-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--navy);
  font-size: 1.3rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); transition: background .15s, color .15s;
}
.gallery-btn:hover { background: var(--navy); color: #fff; }
.gallery-btn.prev { left: -10px; }
.gallery-btn.next { right: -10px; }

/* Single-card variant (hero / panel side): full-bleed slides that fill
   the column's height — no gaps, no rounding, no next-card peek. */
.gallery--hero { height: 100%; }
.gallery--hero .gallery-track {
  height: 100%; gap: 0; padding: 0;
}
.gallery--hero .gallery-card {
  flex: 0 0 100%; width: 100%; height: 100%; aspect-ratio: auto;
  scroll-snap-align: start; scroll-snap-stop: always;
}
.gallery--hero .gallery-btn { display: none; }

/* Media column that should match its sibling's height */
.hero-media { align-self: stretch; display: flex; flex-direction: column; min-height: 0; }
.hero-media .gallery-wrap { flex: 1; min-height: 0; }

/* ── Media sections: text (with the padding) left, full-bleed carousel right ── */
.media-section { padding: 0; }
.media-section > .container {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: stretch;
}
.media-section .media-text { padding: 60px 0; align-self: center; }
.media-section .media-text .section-title,
.media-section .media-text .section-sub {
  text-align: left; margin-left: 0; margin-right: 0; max-width: none;
}
.media-section .media-text .section-sub { margin-bottom: 26px; }
.media-section .media-text .service-list { margin: 0 0 20px; max-width: none; }
.media-section .media-figure {
  align-self: stretch; display: flex; flex-direction: column;
  min-height: 460px;
}
.media-section .media-figure .gallery-wrap { flex: 1; min-height: 0; }

/* ── Steps ──────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { text-align: center; padding: 10px 14px; }
.step .num {
  width: 46px; height: 46px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .93rem; }

/* ── FAQ ────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-list details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden;
}
.faq-list summary {
  cursor: pointer; list-style: none; padding: 16px 20px; font-weight: 700; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 1.4rem; color: var(--coral); flex: 0 0 auto; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { padding: 0 20px 18px; color: var(--muted); font-size: .95rem; white-space: pre-line; }

/* ── Contact page ───────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 44px; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 20px; box-shadow: var(--shadow); text-align: center; text-decoration: none;
  transition: transform .15s ease;
}
.contact-card:hover { transform: translateY(-2px); }
.contact-card svg { width: 34px; height: 34px; margin: 0 auto 10px; }
.contact-card h3 { color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.contact-card p { color: var(--muted); font-size: .9rem; word-break: break-all; }
.turnstile-slot { display: flex; justify-content: center; margin: 14px 0; min-height: 65px; }

/* ── Bottom CTA / Footer ────────────────────────────── */
.bottom-cta { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); color: #fff; text-align: center; }
.bottom-cta h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.bottom-cta p { color: #c9d4e8; margin-bottom: 24px; }

.site-footer { background: #0d1b38; color: #8fa0bf; padding: 34px 0; font-size: .88rem; }
.site-footer .container { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
.site-footer a { color: #c9d4e8; text-decoration: none; margin-right: 16px; }
.site-footer a:hover { text-decoration: underline; }

/* ── Utility ────────────────────────────────────────── */
.hidden { display: none !important; }
.center { text-align: center; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { padding: 48px 0 44px; }
  .hero .container { grid-template-columns: 1fr; gap: 32px; }
  .hero--media { padding: 0; }
  .hero--media .container { gap: 26px; }
  .hero-copy { padding: 44px 0 8px; }
  .hero-media { margin: 0 -20px; }

  /* Stacked columns: hero/panel carousels size by aspect ratio again */
  .gallery--hero, .gallery--hero .gallery-track { height: auto; }
  .gallery--hero .gallery-card { height: auto; aspect-ratio: 4 / 5; }

  .media-section > .container { grid-template-columns: 1fr; gap: 0; }
  .media-section .media-text { padding: 40px 0 26px; }
  .media-section .media-figure { margin: 0 -20px; min-height: 0; }
  .benefit-grid, .benefit-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 30px; }
  .header-link { display: none; }
  .cargo-cta .panel { grid-template-columns: 1fr; gap: 26px; }
  .review-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto 40px; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  section { padding: 40px 0; }
  .section-sub { margin-bottom: 30px; }

  /* Header: logo + wordmark + tagline only */
  .site-header .container { padding-top: 8px; padding-bottom: 8px; gap: 8px; }
  .header-actions { display: none; }
  .mobile-alt-quote { display: block; }
  .brand { gap: 8px; }
  .brand img { height: 36px; }
  .brand-name { font-size: .95rem; }
  .brand-tagline { font-size: .66rem; line-height: 1.3; }
  .btn-small { padding: 9px 14px; font-size: .82rem; }

  /* Hero: full-width stacked CTAs, tighter panel */
  .hero { padding: 40px 0 38px; }
  .hero--media { padding: 0; }
  .hero-copy { padding: 36px 0 4px; }
  .hero-media { margin: 0 -16px; }
  .media-section .media-figure { margin: 0 -16px; }
  .hero p.lead { font-size: 1.05rem; margin-bottom: 22px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust { gap: 8px 18px; }
  .hero-panel { padding: 20px 16px; }

  .benefit-grid, .benefit-grid.cols-2, .benefit-grid.cols-3 { grid-template-columns: 1fr; }
  .benefit { padding: 20px 18px; }

  /* Form: single column; direction cards become compact rows */
  .quote-card { padding: 26px 16px 30px; }
  .direction-grid { grid-template-columns: 1fr; }
  .direction-option label { display: flex; align-items: center; gap: 12px; text-align: left; padding: 12px 14px; }
  .direction-option label b { margin-top: 0; }
  .direction-option label small { display: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .pet-block { padding: 16px 14px 4px; }
  .not-cargo { padding: 16px 18px; }

  .bottom-cta .btn { width: 100%; max-width: 340px; }

  .gallery-card { width: min(68vw, 280px); }
  .gallery-btn { width: 36px; height: 36px; }
  .gallery-btn.prev { left: -4px; }
  .gallery-btn.next { right: -4px; }

  .site-footer { text-align: center; }
  .site-footer .container { flex-direction: column; gap: 10px; }
  .site-footer a { margin: 0 8px; }
}
