@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,400;1,700&family=Raleway:wght@400..800&display=swap");

/* ===== tokens/colors.css ===== */
:root{
  --red-50:#fdecec;--red-100:#f8d1d2;--red-300:#e88a8e;--red-500:#cf353d;
  --red-600:#da1a20;--red-700:#bd0d15;--red-800:#ae090f;--red-900:#91080d;
  --ink-900:#0d0001;--ink-800:#1a1414;--ink-700:#2f2828;--ink-600:#4e4e4e;
  --ink-500:#6b6b6b;--ink-400:#8d8d8d;--ink-300:#b0b0b0;--ink-200:#d9d9d9;
  --ink-100:#e6e6e6;--ink-50:#f5f6f7;--white:#ffffff;
  --gold-500:#f5a623;--green-600:#1f9d55;--green-50:#e8f6ee;
  --brand:var(--red-600);--brand-hover:var(--red-700);--brand-tint:var(--red-50);
  --text-heading:var(--ink-900);--text-body:var(--ink-600);--text-muted:var(--ink-400);
  --text-inverse:var(--white);--text-link:var(--red-600);--text-link-hover:var(--red-700);
  --surface-page:var(--white);--surface-alt:var(--ink-50);--surface-card:var(--white);
  --surface-dark:var(--ink-900);--surface-dark-2:var(--ink-800);
  --border-subtle:var(--ink-100);--border-strong:var(--ink-200);
  --border-input:var(--ink-200);--border-focus:var(--red-600);--star:var(--gold-500);
  --overlay-image:linear-gradient(180deg,rgba(20,24,31,0) 35%,rgba(20,24,31,.72) 100%);
  --overlay-hero:linear-gradient(89deg,#0d0001 19%,#0d00013b 100%);
  --gradient-active:linear-gradient(90deg,var(--red-600) 0%,var(--red-900) 100%);
}
/* ===== tokens/typography.css ===== */
:root{
  --font-sans:"Red Hat Display",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
  --font-display:"Lato",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
  --font-alt:"Raleway",var(--font-sans);
  --fw-light:300;--fw-regular:400;--fw-medium:500;--fw-semibold:600;--fw-bold:700;--fw-black:800;
  --fs-3xs:12px;--fs-2xs:13px;--fs-xs:14px;--fs-sm:15px;--fs-base:16px;--fs-md:18px;
  --fs-lg:20px;--fs-xl:24px;--fs-2xl:28px;--fs-3xl:34px;--fs-4xl:42px;--fs-5xl:52px;
  --lh-tight:1.12;--lh-snug:1.25;--lh-normal:1.45;--lh-relaxed:1.65;
  --ls-tight:-0.02em;--ls-snug:-0.01em;--ls-normal:0;--ls-wide:0.06em;--ls-caps:0.1em;
  --type-h1-size:47px;--type-h1-weight:var(--fw-bold);
  --type-h2-size:36px;--type-h2-weight:var(--fw-bold);
  --type-h3-size:23px;--type-h3-weight:var(--fw-semibold);
  --type-h4-size:var(--fs-md);--type-h4-weight:var(--fw-semibold);
  --type-body-size:var(--fs-base);--type-eyebrow-size:var(--fs-2xs);
  --type-button-size:var(--fs-sm);--type-button-weight:var(--fw-semibold);
}
/* ===== tokens/spacing.css ===== */
:root{
  --space-0:0;--space-1:4px;--space-2:8px;--space-3:12px;--space-4:16px;--space-5:20px;
  --space-6:24px;--space-8:32px;--space-10:40px;--space-12:48px;--space-16:64px;
  --space-20:80px;--space-24:96px;
  --container-max:1200px;--container-narrow:760px;--gutter:24px;
  --section-y:72px;--section-y-tight:48px;--grid-gap:24px;
}
/* ===== tokens/radii.css ===== */
:root{
  --radius-xs:4px;--radius-sm:6px;--radius-md:8px;--radius-lg:12px;--radius-xl:16px;
  --radius-pill:999px;--radius-20:20px;--radius-card:var(--radius-lg);
  --radius-input:5px;--radius-button:var(--radius-pill);--radius-image:var(--radius-20);
  --radius-accordion:var(--radius-xs);--radius-form-panel:15px;
}
/* ===== tokens/elevation.css ===== */
:root{
  --shadow-xs:0 1px 2px rgba(20,24,31,.06);
  --shadow-sm:0 1px 2px rgba(20,24,31,.06),0 2px 6px rgba(20,24,31,.05);
  --shadow-md:0 2px 4px rgba(20,24,31,.05),0 8px 24px rgba(20,24,31,.09);
  --shadow-lg:0 8px 16px rgba(20,24,31,.06),0 24px 48px rgba(20,24,31,.12);
  --shadow-focus:0 0 0 3px rgba(214,38,44,.25);
  --shadow-card:var(--shadow-sm);--shadow-card-hover:var(--shadow-md);--shadow-form:var(--shadow-lg);
}
/* ===== tokens/motion.css ===== */
:root{
  --ease-standard:cubic-bezier(.4,0,.2,1);--ease-out:cubic-bezier(.16,1,.3,1);--ease-in:cubic-bezier(.4,0,1,1);
  --dur-fast:120ms;--dur-base:180ms;--dur-slow:280ms;--dur-image:400ms;
  --transition-button:background-color var(--dur-base) var(--ease-standard),color var(--dur-base) var(--ease-standard),box-shadow var(--dur-base) var(--ease-standard);
  --transition-card:box-shadow var(--dur-slow) var(--ease-standard),transform var(--dur-slow) var(--ease-standard);
}
/* ===== tokens/base.css ===== */
*,*::before,*::after{box-sizing:border-box}
body{margin:0;font-family:var(--font-sans);font-size:var(--type-body-size);line-height:var(--lh-relaxed);color:var(--text-body);background:var(--surface-page);-webkit-font-smoothing:antialiased}
h1,h2,h3,h4,h5,h6{margin:0 0 var(--space-4);font-family:var(--font-display);color:var(--text-heading);font-weight:var(--fw-bold);line-height:var(--lh-snug);text-wrap:pretty}
h1{font-size:var(--type-h1-size);line-height:var(--lh-tight);letter-spacing:var(--ls-tight)}
h2{font-size:var(--type-h2-size);letter-spacing:var(--ls-snug)}
h3{font-size:var(--type-h3-size);font-weight:var(--type-h3-weight)}
h4{font-size:var(--type-h4-size);font-weight:var(--type-h4-weight)}
p{margin:0 0 var(--space-4)}
a{color:var(--text-link);text-decoration:none}
a:hover{color:var(--text-link-hover);text-decoration:underline}
img{max-width:100%;display:block}
:focus-visible{outline:2px solid var(--border-focus);outline-offset:2px}

/* ===== pages/page.css — measured from the site's Elementor stylesheets ===== */
.wrap{max-width:var(--container-max);margin:0 auto;padding:0 20px}
.i{width:1em;height:1em;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;display:block;flex:none}
.accent{color:var(--brand)}
h1{font-size:47px}
h2{font-size:36px;line-height:1.2}
h3{font-size:23px;line-height:1.2}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:16px 26px;border:1px solid transparent;border-radius:100px;font-family:var(--font-sans);font-size:18px;font-weight:var(--fw-bold);line-height:1.2;text-decoration:none;cursor:pointer;transition:var(--transition-button)}
.btn:hover{text-decoration:none}
.btn:active{transform:translateY(1px)}
.btn--sm{padding:11px 20px;font-size:15px}
.btn--red{background:var(--brand);border-color:var(--brand);color:var(--white)}
.btn--red:hover{background:var(--white);border-color:var(--brand);color:var(--ink-900)}
.btn--white{background:var(--white);border-color:var(--white);color:var(--ink-900)}
.btn--white:hover{background:var(--brand);border-color:var(--brand);color:var(--white)}
.btn--ghost-inverse{background:transparent;border-color:rgba(255,255,255,.55);color:var(--white)}
.btn--ghost-inverse:hover{background:rgba(255,255,255,.14);border-color:var(--white);color:var(--white)}
.btn--outline{background:transparent;border-color:var(--ink-900);color:var(--ink-900)}
.btn--outline:hover{background:var(--ink-900);border-color:var(--ink-900);color:var(--white)}
.btn--block{width:100%;border-radius:5px}
.btn .i{font-size:18px}
.hdr{background:var(--surface-dark);position:relative;z-index:30}
.hdr__in{display:flex;align-items:center;gap:20px;padding:12px 0}
.logo{display:inline-flex;flex:none;text-decoration:none}
.logo img{height:52px;width:auto}
.nav{display:flex;flex-wrap:wrap;gap:2px;margin-left:auto}
.nav__item{position:relative}
.nav__link{display:flex;align-items:center;gap:4px;padding:8px 9px;border-radius:4px;font-size:13px;font-weight:var(--fw-semibold);color:rgba(255,255,255,.88);text-decoration:none;white-space:nowrap;transition:var(--transition-button)}
.nav__item:hover .nav__link{background:rgba(255,255,255,.08);color:var(--white);text-decoration:none}
.nav__link .i{font-size:13px}
.nav__menu{position:absolute;top:100%;left:0;min-width:240px;padding:8px;background:var(--white);border-top:3px solid var(--brand);border-radius:0 0 5px 5px;box-shadow:var(--shadow-lg);display:none}
.nav__item:hover .nav__menu{display:grid}
.nav__menu a{padding:8px 12px;font-size:14px;color:var(--ink-900);text-decoration:none}
.nav__menu a:hover{background:var(--ink-50);color:var(--brand);text-decoration:none}
.hdr__cta{display:flex;align-items:center;gap:12px;flex:none}
.tel{display:inline-flex;align-items:center;gap:6px;font-size:14px;font-weight:var(--fw-bold);color:var(--white);text-decoration:none;white-space:nowrap}
.tel:hover{color:var(--white);text-decoration:underline}
.tel .i{font-size:16px}
.mnav{display:none;margin-left:auto}
.mnav>summary{display:flex;align-items:center;gap:8px;padding:10px 16px;border:1px solid rgba(255,255,255,.3);border-radius:100px;font-size:14px;font-weight:var(--fw-bold);color:var(--white);cursor:pointer;list-style:none}
.mnav>summary::-webkit-details-marker{display:none}
.mnav>summary .i{font-size:18px}
.mnav[open]>summary{background:rgba(255,255,255,.1)}
.mnav__panel{position:absolute;left:0;right:0;top:100%;max-height:70vh;overflow-y:auto;padding:16px 20px 24px;background:var(--ink-800);border-top:3px solid var(--brand);box-shadow:var(--shadow-lg);display:grid;gap:2px}
.mnav__group>summary{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 4px;border-bottom:1px solid rgba(255,255,255,.1);font-family:var(--font-display);font-size:15px;font-weight:var(--fw-bold);color:var(--white);cursor:pointer;list-style:none}
.mnav__group>summary::-webkit-details-marker{display:none}
.mnav__group>summary .i{font-size:16px;color:var(--brand)}
.mnav__group[open]>summary .i{transform:rotate(180deg)}
.mnav__links{display:grid;gap:2px;padding:12px 0 16px}
.mnav__links a{padding:8px 4px;font-size:14px;color:rgba(255,255,255,.8);text-decoration:none}
.mnav__links a:hover{color:var(--white);text-decoration:underline}
.hero{position:relative;min-height:88vh;display:flex;align-items:center;background:var(--surface-dark) url("https://buscharter.com.au/wp-content/uploads/2025/05/ENexxzwq3YoXeSsFtllbYFff8do.webp") center center/cover no-repeat;color:var(--white)}
.hero::before{content:"";position:absolute;inset:0;background:var(--overlay-hero)}
.hero__in{position:relative;width:100%;display:grid;grid-template-columns:minmax(0,1fr) minmax(330px,470px);gap:40px;align-items:center;padding:100px 20px 150px}
.crumbs{display:flex;flex-wrap:wrap;align-items:center;gap:8px;font-size:13px;margin-bottom:16px}
.crumbs a{color:rgba(255,255,255,.72);text-decoration:none}
.crumbs a:hover{color:var(--white);text-decoration:underline}
.crumbs span{color:rgba(255,255,255,.45)}
.crumbs strong{color:var(--white);font-weight:var(--fw-bold)}
.hero h1{color:var(--white);margin:0;font-size:47px;line-height:1.2}
.hero__sub{margin:12px 0 0;font-family:var(--font-display);font-size:20px;font-weight:500;line-height:1.2;color:var(--white)}
.trust{display:flex;align-items:center;gap:8px;margin:4px 0}
.trust__label{margin:0;font-family:var(--font-display);font-size:16px;font-weight:500;line-height:1.2;color:var(--white)}
.stars-img{width:96px;height:15px;flex:none}
.hero__body{margin:0 0 8px;max-width:60ch;font-size:16px;font-weight:400;color:var(--white)}
.hero__actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:5px}
.accred{display:flex;flex-wrap:wrap;align-items:center;gap:20px;margin-top:20px}
.accred img{max-width:123px;height:165px;object-fit:contain}
.accred a:nth-child(2) img{max-width:135px;height:169px}
.sec{padding:80px 0}
.sec--50{padding:50px 0}
.sec--alt{background:var(--ink-50)}
.sec--dark{background:var(--ink-900);padding:70px 0 50px}
.sec--dark h2{color:var(--white)}
.sec__head{max-width:900px;margin:0 auto 40px;text-align:center}
.sec__head h2{margin:0}
.sec__head p{margin:12px 0 0;font-size:16px}
.sec__head--left{max-width:none;margin:0 0 20px;text-align:left}
.sec__head--h3{max-width:900px;margin:0 auto 20px;text-align:center;font-size:36px;font-family:var(--font-display);font-weight:var(--fw-bold);line-height:1.2}
.sec__actions{display:flex;justify-content:center;margin-top:30px;gap:13px;flex-wrap:wrap}
.grid3{display:grid;grid-template-columns:repeat(auto-fit,minmax(270px,1fr));gap:20px}
.logos{display:grid;grid-template-columns:repeat(auto-fit,minmax(130px,1fr));gap:0;align-items:center;border:1px solid #B4B4B480;border-radius:20px;padding:10px}
.logos__cell{display:flex;align-items:center;justify-content:center;height:100px;padding:12px}
.logos__cell img{max-height:56px;max-width:100%;width:auto;object-fit:contain}
.split{display:grid;grid-template-columns:minmax(0,0.85fr) minmax(0,1.15fr);gap:0}
.split__media{display:flex;align-items:center;justify-content:center}
.split__media img{width:100%;height:auto}
.split__copy{display:flex;flex-direction:column;justify-content:center;gap:15px;padding-left:40px}
.split__copy h2{margin:0}
.split__copy p{margin:0}
.kicker{margin:0;font-family:var(--font-display);font-size:23px;font-weight:var(--fw-bold);line-height:1.2;color:var(--brand)}
.checks{display:grid;gap:20px}
.checks--3{grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:30px}
.check{display:grid;grid-template-columns:20px 1fr;gap:15px;align-items:start}
.check__ico img{width:20px;height:auto;margin-top:4px}
.check__title{margin:0 0 5px;font-family:var(--font-sans);font-size:18px;font-weight:var(--fw-bold);color:var(--ink-900)}
.check__body ul{margin:0;padding-left:1.15em;display:grid;gap:4px}
.check__body li,.check__desc{font-size:16px;margin:0}
.amenities{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:30px;text-align:center}
.amenity img{width:auto;max-height:110px;margin:0 auto 16px}
.amenity p{margin:0;font-family:var(--font-display);font-size:20px;font-weight:var(--fw-bold);color:var(--white)}
.reviews{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px;align-items:stretch}
.review{display:flex;flex-direction:column;gap:30px;margin:0;padding:40px;background:var(--white);border:1px solid var(--brand);border-radius:10px}
.review__src{height:26px;width:auto}
.review__head{display:grid;justify-items:start;gap:12px}
.review__title{margin:0;font-family:var(--font-display);font-size:24px;font-weight:var(--fw-bold);line-height:1.2}
.review blockquote{margin:0;font-size:16px}
.review figcaption{margin-top:auto;font-family:var(--font-display);font-size:16px;font-weight:var(--fw-bold);line-height:19.2px;color:var(--brand)}
.vcard{text-align:center;padding:20px}
.vcard__img{display:flex;align-items:center;justify-content:center;min-height:150px;margin-bottom:16px}
.vcard__img img{max-width:100%;height:auto}
.vcard h4{margin:0 0 12px;font-family:var(--font-display);font-size:23px;font-weight:var(--fw-bold)}
.vcard p{margin:0;font-size:16px}
.suburbs{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:8px 20px;margin:0 auto;padding:0;list-style:none;text-align:center;max-width:900px}
.suburbs li{font-size:14px;font-weight:400;line-height:21px}
.card{background:var(--white);border:1px solid var(--border-subtle);border-radius:10px;overflow:hidden;box-shadow:var(--shadow-card);transition:var(--transition-card)}
.card:hover{box-shadow:var(--shadow-card-hover)}
.card__img{aspect-ratio:3/2;background:var(--ink-50);overflow:hidden}
.card__img img{width:100%;height:100%;object-fit:cover;transition:transform var(--dur-image) var(--ease-standard)}
.card:hover .card__img img{transform:scale(1.04)}
.card__body{padding:20px}
.card__body h4{margin:0 0 8px;font-family:var(--font-display);font-size:23px;font-weight:var(--fw-bold)}
.card__body p{margin:0;font-size:16px}
.tiles{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:20px}
.tile{display:block;text-decoration:none}
.tile:hover{text-decoration:none}
.tile img{width:100%;height:250px;object-fit:cover;border:5px solid var(--brand);border-radius:20px;box-sizing:border-box}
.tile__name{margin:12px 0 0;font-family:var(--font-display);font-size:23px;font-weight:var(--fw-bold);color:var(--ink-900);text-align:center}
.tile:hover .tile__name{color:var(--brand)}
.band{display:flex;flex-direction:column;justify-content:center;align-items:center;min-height:591px;padding:60px 20px;background:var(--ink-900) url("https://buscharter.com.au/wp-content/uploads/2025/05/fllet-bg.jpg") center center/cover no-repeat;text-align:center}
.band h2{margin:0;color:var(--white);font-size:36px;line-height:1.2}
.band__actions{display:flex;flex-wrap:wrap;gap:13px;justify-content:center;margin-top:30px}
.tablewrap{overflow-x:auto;background:var(--white);border:1px solid var(--ink-200);border-radius:10px}
.ptable{width:100%;border-collapse:collapse;min-width:680px}
.ptable th,.ptable td{padding:14px 18px;text-align:left;font-size:15px;border-bottom:1px solid var(--ink-100)}
.ptable thead th{font-family:var(--font-display);font-weight:var(--fw-bold);font-size:14px;color:var(--white);background:var(--ink-900);border-bottom:0}
.ptable tbody th{font-family:var(--font-display);font-weight:var(--fw-bold);color:var(--ink-900)}
.ptable tbody tr:last-child th,.ptable tbody tr:last-child td{border-bottom:0}
.ptable tbody tr:nth-child(even){background:var(--ink-50)}
.services{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:30px}
.svc{display:flex;flex-direction:column;gap:16px;padding:24px;background:var(--white);border:1px solid var(--ink-200);border-radius:10px}
.svc__body{display:flex;flex-direction:column;gap:12px;flex:1}
.svc h4{margin:0;font-family:var(--font-display);font-size:23px;font-weight:var(--fw-bold);line-height:1.2}
.svc p{margin:0;font-size:16px}
.svc ul{margin:0;padding-left:1.15em;display:grid;gap:6px}
.svc li{font-size:15px}
.svc__cta{display:inline-flex;align-items:center;gap:8px;margin-top:auto;font-family:var(--font-display);font-size:16px;font-weight:var(--fw-bold);color:var(--brand);text-decoration:none}
.svc__cta:hover{text-decoration:underline}
.svc__cta .i{font-size:18px}
.amlist{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:8px 20px;margin:0;padding:0;list-style:none}
.amlist li{display:flex;align-items:center;gap:8px;font-size:15px}
.amlist img{width:18px;height:18px;flex:none}
.cols3{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:30px}
.cols4{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:30px}
.col h4{margin:0 0 14px;font-family:var(--font-display);font-size:20px;font-weight:var(--fw-bold);line-height:1.2}
.col ul{margin:0;padding:0;list-style:none;display:grid;gap:8px}
.col li{font-size:15px;line-height:21px}
.col a{color:var(--brand);text-decoration:none}
.col a:hover{text-decoration:underline}
.bcards{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px}
.bcard{display:flex;flex-direction:column;gap:14px;padding:32px 24px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.16);border-radius:10px;text-align:center;align-items:center}
.bcard__ico{display:inline-flex;align-items:center;justify-content:center;width:56px;height:56px;border-radius:100px;background:var(--brand);color:var(--white)}
.bcard__ico .i{font-size:26px}
.bcard h3{margin:0;color:var(--white);font-family:var(--font-display);font-size:20px;font-weight:var(--fw-bold);line-height:1.2}
.bcard p{margin:0;font-size:15px;color:rgba(255,255,255,.8)}
.bcard .btn{margin-top:auto}
.sec--dark .sec__head p{color:rgba(255,255,255,.8)}
.articles{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:20px}
.acard{display:flex;flex-direction:column;background:var(--white);border:1px solid var(--ink-200);border-radius:10px;overflow:hidden}
.acard__body{display:flex;flex-direction:column;gap:10px;padding:20px;flex:1}
.acard h3{margin:0;font-family:var(--font-display);font-size:20px;font-weight:var(--fw-bold);line-height:1.25}
.acard h3 a{color:var(--ink-900);text-decoration:none}
.acard h3 a:hover{color:var(--brand)}
.acard p{margin:0;font-size:15px}
.acard__cats{display:flex;flex-wrap:wrap;gap:8px;margin-top:auto}
.acard__cats a{padding:5px 12px;background:var(--ink-50);border-radius:100px;font-size:12px;font-weight:var(--fw-bold);color:var(--ink-600);text-decoration:none}
.acard__cats a:hover{background:var(--brand);color:var(--white)}

/* Real imagery replacing the design system's .imgslot placeholders.
   Service blocks use the site's own service icons (that is how the live page
   treats them); fleet and article cards use real photography. */
.svc__ico{display:flex;align-items:center;justify-content:center;min-height:150px;background:var(--ink-50);border-radius:10px}
.svc__ico img{max-height:96px;width:auto}
.acard__img{aspect-ratio:16/10;overflow:hidden;background:var(--ink-50)}
.acard__img img{width:100%;height:100%;object-fit:cover}

@media (max-width:1024px){
  h1,.hero h1{font-size:38px}
  h2,.band h2,.sec__head--h3{font-size:36px}
  h3{font-size:20px}
  .btn{font-size:16px}
  .hero{min-height:0}
  .hero__in{grid-template-columns:minmax(0,1fr);gap:50px;padding:70px 20px 120px}
  .nav{display:none}
  .mnav{display:block}
  .split{grid-template-columns:minmax(0,1fr)}
  .split__copy{padding-left:0;margin-top:24px}
  .sec{padding:50px 0}
  .accred img,.accred a:nth-child(2) img{max-width:143px;height:120px}
}
@media (max-width:900px){
  .fcard{grid-template-columns:minmax(0,1fr);gap:20px}
}
@media (max-width:767px){
  h1,.hero h1{font-size:29px}
  h2,.band h2,.sec__head--h3{font-size:30px}
  .btn{font-size:15px}
  .hero__in{padding:20px 20px 80px}
  .hero__sub{font-size:18px}
  .hero__actions{flex-direction:column;align-items:stretch}
  .hero__actions .btn{width:100%}
  .review{padding:24px}
  .accred img,.accred a:nth-child(2) img{max-width:120px;width:120px;height:auto}
  .band{min-height:0;padding:50px 20px}
}

/* Header overflow fix.
   Below ~600px the logo + Menu button + phone + quote button no longer fit on
   one row, and .hdr__cta pushed the document 54px wider than the viewport
   (measured: viewport 485, scrollWidth 539). Letting the row wrap and giving
   the CTA its own line keeps both conversion elements visible instead of
   hiding the phone number. */
@media (max-width:767px){
  .hdr__in{flex-wrap:wrap;row-gap:12px}
  .mnav{margin-left:auto}
  .hdr__cta{order:3;width:100%;justify-content:center}
}
@media (max-width:400px){
  .hdr__cta{gap:8px}
  .hdr__cta .btn{padding:10px 16px;font-size:14px}
  .tel{font-size:13px}
}

/* Quote form: let the grid tracks actually shrink.
   Grid items default to min-width:auto, so the two-column .tabrow and .f__row
   refused to go narrower than their content — the date inputs and the "Two Way
   Charter" label. The panel is overflow:hidden, so instead of scrolling, the
   right-hand side of the form was silently clipped (measured 528px of content
   in a 470px column at a 1265px viewport). */

/* The real transportersio widget replaces the mock form in the hero column.
   Its own stylesheet (quoteform_style.css) does the internal styling; these
   rules only make it sit correctly inside the hero grid. */
.qform-live{width:100%;min-width:0}
.qform-live .transportersio-quote{margin:0;width:100%}
.qform-live .panel-body{overflow:visible}
/* Google Places dropdown must clear the hero stacking context */
.pac-container{z-index:2147483647}

/* ---- restored: rule families removed in error by an over-broad cleanup ---- */
/* FAQ accordion */
.faqs{max-width:900px;margin:0 auto;display:grid;gap:10px}
.faq{background:var(--white);border:1px solid var(--ink-900);border-radius:4px}
.faq summary{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:15px 20px;font-family:var(--font-display);font-size:16px;font-weight:var(--fw-bold);color:var(--ink-900);cursor:pointer;list-style:none}
.faq summary::-webkit-details-marker{display:none}
.faq summary .i{width:15px;height:15px;font-size:15px;color:var(--ink-900);transition:transform var(--dur-base) var(--ease-standard)}
.faq[open]>summary{background:var(--gradient-active);color:var(--white);border-radius:3px 3px 0 0}
.faq[open]>summary .i{color:var(--white);transform:rotate(180deg)}
.faq p{margin:0;padding:0 20px 15px;font-size:16px}
/* Fleet cards */
.fleet{display:grid;gap:20px}
.fcard{display:grid;grid-template-columns:minmax(0,300px) minmax(0,1fr);gap:30px;padding:24px;background:var(--white);border:1px solid var(--ink-200);border-radius:10px;align-items:start}
.fcard__img{display:flex;align-items:center;justify-content:center}
.fcard__img img{max-width:100%;height:auto}
.fcard__body{display:grid;gap:14px}
.fcard h3{margin:0;font-family:var(--font-display);font-size:23px;font-weight:var(--fw-bold);line-height:1.2}
.fcard p{margin:0;font-size:16px}
.fcard__links{display:flex;flex-wrap:wrap;gap:8px}
.fcard__links a{padding:8px 16px;background:var(--ink-50);border:1px solid var(--ink-200);border-radius:100px;font-size:14px;font-weight:var(--fw-bold);color:var(--ink-900);text-decoration:none}
.fcard__links a:hover{background:var(--brand);border-color:var(--brand);color:var(--white);text-decoration:none}
.fcard__amh{margin:0;font-family:var(--font-display);font-size:16px;font-weight:var(--fw-bold);text-transform:uppercase;letter-spacing:.06em;color:var(--ink-600)}
/* Footer */
.ftr{background:var(--surface-dark);color:rgba(255,255,255,.78)}
.ftr__badges{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:40px;padding:40px 20px 0}
.ftr__badges img{height:120px;width:auto;object-fit:contain}
.ftr__in{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:40px;padding:50px 20px 40px}
.ftr h3{margin:0 0 16px;color:var(--white);font-family:var(--font-display);font-size:23px;font-weight:var(--fw-bold)}
.ftr__blurb{margin:16px 0 0;font-size:14px;font-style:italic;line-height:1.6}
.ftr__blurb a{color:var(--white)}
.ftr ul{margin:0;padding:0;list-style:none;display:grid;gap:10px}
.ftr ul a{font-size:14px;color:rgba(255,255,255,.78);text-decoration:none}
.ftr ul a:hover{color:var(--white);text-decoration:underline}
.ftr__tel{display:inline-flex;align-items:center;gap:8px;font-size:20px;font-weight:var(--fw-bold);color:var(--white);text-decoration:none}
.ftr__tel .i{font-size:20px}
.ftr__social{display:inline-block;margin-top:16px;font-size:14px;color:rgba(255,255,255,.78);text-decoration:none}
.ftr__social:hover{color:var(--white);text-decoration:underline}
.ftr__mail{display:inline-flex;align-items:center;gap:8px;margin-top:12px;font-size:15px;color:rgba(255,255,255,.85);text-decoration:none}
.ftr__mail:hover{color:var(--white);text-decoration:underline}
.ftr__mail .i{font-size:18px}
.ftr__legal{border-top:1px solid rgba(255,255,255,.12)}
.ftr__legal .wrap{display:flex;flex-wrap:wrap;gap:16px;justify-content:space-between;padding:20px}
.ftr__legal,.ftr__legal a{font-size:13px}
.ftr__legal a{color:rgba(255,255,255,.78);text-decoration:none}
.ftr__legal a:hover{color:var(--white);text-decoration:underline}
@media (max-width:900px){.fcard{grid-template-columns:minmax(0,1fr);gap:20px}}

/* ===========================================================================
   Header spans the full window rather than the 1200px content column.
   =========================================================================== */
.hdr .wrap.hdr__in{max-width:none;padding-left:30px;padding-right:30px}
@media (max-width:767px){.hdr .wrap.hdr__in{padding-left:20px;padding-right:20px}}

/* Footer social link. The design export left the Font Awesome class name
   "Facebook-f" sitting in the markup as visible text; it is now a real icon.
   .i sets fill:none/stroke:currentColor for the line icons used elsewhere,
   but this glyph is a solid shape, so it needs the opposite. */
.ftr__social{display:inline-flex;align-items:center;gap:8px}
.ftr__social .i{font-size:18px;fill:currentColor;stroke:none}

/* Footer contact details stack: phone, then email beneath it.
   Both were inline-flex, so they sat on the same line. width:fit-content keeps
   the hover underline to the text rather than the full column. */
.ftr__tel,.ftr__mail{display:flex;width:fit-content}

/* ===========================================================================
   Mobile hero order.
   The quote form is the point of the page, but on a phone it sat below a
   screenful of copy and three buttons, so it had to be scrolled to. It now
   follows the trust line directly, with the supporting copy beneath it.

   .hero__copy becomes display:contents so its children are promoted to flex
   items of .hero__in - order: can then interleave them with the form, which is
   a sibling of .hero__copy rather than of the paragraphs. gap is zeroed because
   the children already carry their own margins.
   =========================================================================== */
.cta-mobile{display:none}
@media (max-width:767px){
  .hero__in{display:flex;flex-direction:column;gap:0}
  .hero__copy{display:contents}
  .crumbs       {order:1}
  .hero h1      {order:2}
  .hero__sub    {order:3}
  .trust        {order:4}
  .qform-live   {order:5;margin:18px 0 4px}
  .hero__body   {order:6}
  .hero__actions{order:7}
  .accred       {order:8}
  /* redundant on mobile: the form is directly above this sentence */
  .hide-mobile{display:none}
  /* the hero form has scrolled away by the pricing table, so re-offer it once */
  .cta-mobile{display:flex;justify-content:center;margin:0 0 22px}
  .cta-mobile .btn{width:100%}
}

/* Tab row stays one line on phones. The plugin's markup uses Bootstrap
   .col-sm-4, which stacks below 768px and cost ~100px of height directly above
   the fold - the opposite of what moving the form up was for. */
@media (max-width:767px){
  .qform-live .tabrow{display:flex}
  .qform-live .tabrow .tab{flex:1;width:auto;padding:12px 4px;font-size:13px}
}
