/* ==========================================================================
   Island Cart Rentals & Sales — Design System
   "Coastal utility with premium dealership polish."
   Brand: navy trust, island-green conversion, coastal-blue support, gold stars.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------- */
:root {
  /* Brand palette (sampled from the Island Cart sign — verify exact values) */
  --navy:        #0e2f5c;
  --navy-900:    #0a2244;
  --navy-700:    #123a70;
  --ocean:       #1b74c4;
  --ocean-600:   #14588f;
  --sky-50:      #f2f8fd;
  --sky-100:     #e4f1fb;
  --sky-200:     #cbe4f6;
  --green:       #6fbf3b;
  --green-600:   #57a028;
  --star:        #f6b500;
  --charcoal:    #22303c;
  --ink:         #16222c;
  --muted:       #566672;
  --line:        #dbe4ec;
  --danger:      #d24a24;
  --danger-bg:   #fdece6;
  --white:       #ffffff;

  /* Type */
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Barlow Condensed", "Barlow", system-ui, sans-serif;

  /* Rhythm */
  --wrap: 1180px;
  --wrap-narrow: 820px;
  --gap: clamp(1rem, 2.4vw, 1.6rem);
  --section-y: clamp(3rem, 7vw, 5.5rem);
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(14,47,92,.08), 0 2px 6px rgba(14,47,92,.06);
  --shadow-md: 0 6px 18px rgba(14,47,92,.10), 0 2px 6px rgba(14,47,92,.06);
  --shadow-lg: 0 18px 40px rgba(14,47,92,.16);
  --ring: 0 0 0 3px rgba(27,116,196,.35);
}

/* ---- Reset / base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  color: var(--navy);
  margin: 0 0 .5em;
  letter-spacing: .01em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.3rem, 1.6rem + 3.4vw, 3.9rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 1.3rem + 2vw, 2.7rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 1.1rem + .7vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; text-transform: none; letter-spacing: 0; }
p { margin: 0 0 1rem; }
a { color: var(--ocean-600); text-decoration-thickness: 1.5px; text-underline-offset: 2px; }
a:hover { color: var(--navy); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.15rem; }
li { margin-bottom: .35rem; }
strong { color: var(--ink); }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }
::selection { background: var(--green); color: var(--navy-900); }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; padding: .6rem 1rem; border-radius: 8px;
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---- Layout helpers ------------------------------------------------------ */
.wrap { width: min(100% - 2rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2rem, var(--wrap-narrow)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--sky { background: var(--sky-50); }
.section--navy { background: var(--navy); color: #e8f0f9; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy a { color: #bfe0ff; }
.eyebrow {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .14em;
  font-weight: 600; color: var(--ocean); font-size: .95rem; margin: 0 0 .5rem;
}
.section--navy .eyebrow { color: var(--green); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 62ch; }
.section-head { max-width: 64ch; margin-bottom: 2rem; }
.center { text-align: center; }
.center .lead, .center .section-head { margin-inline: auto; }
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.stack > * + * { margin-top: 1rem; }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em;
  font-weight: 600; font-size: 1.05rem; line-height: 1;
  padding: .85rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .12s ease, background .16s ease, box-shadow .16s ease;
  min-height: 48px;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--green); color: var(--navy-900); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-600); color: var(--navy-900); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-900); color: #fff; }
.btn--ocean { background: var(--ocean); color: #fff; }
.btn--ocean:hover { background: var(--ocean-600); color: #fff; }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--light { background: #fff; color: var(--navy); border-color: var(--line); }
.btn--light:hover { background: var(--sky-100); color: var(--navy); }
.btn--sm { font-size: .95rem; padding: .6rem 1.1rem; min-height: 42px; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---- Badges / pills ------------------------------------------------------ */
.badge {
  display: inline-flex; align-items: center; gap: .35rem; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .05em; font-weight: 600; font-size: .8rem;
  padding: .3rem .6rem; border-radius: 999px; background: var(--sky-100); color: var(--ocean-600);
}
.badge--green,
.badge--yellow { background: #e9f6dd; color: #2f7d1e; } /* --yellow retained as legacy alias; renders green */
.badge--navy { background: var(--navy); color: #fff; }
.badge--available { background: #e4f6e0; color: #2f7d1e; }
.badge--sold { background: #f1e3e0; color: #9a3c22; }

/* ---- Top utility + operational alert ------------------------------------ */
.alert-bar {
  background: var(--green); color: var(--navy-900); font-weight: 600;
  font-size: .95rem; position: relative;
}
.alert-bar__inner { display: flex; align-items: center; gap: .6rem; padding: .5rem 2.5rem .5rem 1rem;
  width: min(100% - 2rem, var(--wrap)); margin-inline: auto; }
.alert-bar__inner svg { flex: 0 0 auto; }
.alert-bar a { color: var(--navy-900); }
.alert-bar__close {
  position: absolute; right: .5rem; top: 50%; transform: translateY(-50%);
  background: transparent; border: 0; cursor: pointer; color: var(--navy-900);
  font-size: 1.4rem; line-height: 1; padding: .2rem .5rem; border-radius: 6px;
}
.alert-bar__close:hover { background: rgba(14,47,92,.12); }

/* ---- Header / nav -------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: min(100% - 2rem, var(--wrap)); margin-inline: auto; min-height: 74px;
}
/* Brand lockup: mascot + wordmark */
.brand { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; }
.brand__mark { display: block; width: 46px; height: 46px; flex: none; border-radius: 10px; }
.brand__word { font-family: var(--font-display); line-height: .92; color: var(--navy); }
.brand__word b { display: block; font-size: 1.16rem; font-weight: 700; letter-spacing: .01em; }
.brand__word i { display: block; font-size: .82rem; font-weight: 600; font-style: normal; color: var(--navy-700); }
/* Light variant for the dark footer */
.site-footer .brand__word { color: #fff; }
.site-footer .brand__word i { color: #cfe0f2; }
.mobile-nav__head .brand__mark { width: 40px; height: 40px; }
.primary-nav { display: none; }
.primary-nav ul { display: flex; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.primary-nav a {
  display: inline-flex; align-items: center; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .03em; font-weight: 600; font-size: 1rem;
  color: var(--navy); text-decoration: none; padding: .55rem .7rem; border-radius: 8px;
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { background: var(--sky-100); color: var(--ocean-600); }
.header-actions { display: flex; align-items: center; gap: .6rem; }
.header-actions .btn { display: none; }
.header-call { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-display);
  font-weight: 600; color: var(--navy); text-decoration: none; font-size: 1.05rem; }
.header-call span { display: none; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  background: var(--navy); color: #fff; border: 0; border-radius: 10px; cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 150; background: rgba(10,34,71,.55);
  opacity: 0; visibility: hidden; transition: opacity .2s ease;
}
.mobile-nav[data-open="true"] { opacity: 1; visibility: visible; }
.mobile-nav__panel {
  position: absolute; right: 0; top: 0; height: 100%; width: min(86%, 360px);
  background: #fff; padding: 1.1rem 1.1rem 6rem; overflow-y: auto;
  transform: translateX(100%); transition: transform .24s ease; box-shadow: var(--shadow-lg);
}
.mobile-nav[data-open="true"] .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.mobile-nav__close { width: 44px; height: 44px; border: 0; background: var(--sky-100); border-radius: 10px; font-size: 1.5rem; cursor: pointer; color: var(--navy); }
.mobile-nav ul { list-style: none; margin: 0 0 1rem; padding: 0; }
.mobile-nav li { margin: 0; border-bottom: 1px solid var(--line); }
.mobile-nav li a {
  display: block; padding: .9rem .4rem; font-family: var(--font-display); text-transform: uppercase;
  font-weight: 600; font-size: 1.15rem; color: var(--navy); text-decoration: none;
}
.mobile-nav li a:hover { color: var(--ocean-600); }
@media (prefers-reduced-motion: reduce) {
  .mobile-nav, .mobile-nav__panel { transition: none; }
}

/* ---- Hero ---------------------------------------------------------------- */
.hero { position: relative; background: var(--navy); color: #eaf2fb; overflow: hidden; }
.hero__inner {
  width: min(100% - 2rem, var(--wrap)); margin-inline: auto;
  display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.hero__title { color: #fff; }
.hero__title .accent { color: var(--green); }
.hero__sub { font-size: 1.2rem; color: #cfe0f2; max-width: 52ch; }
.hero__media { position: relative; }
.hero__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.hero__badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.hero__badges .badge { background: rgba(255,255,255,.12); color: #eaf2fb; }
.hero__rating { display: inline-flex; align-items: center; gap: .5rem; margin: 0 0 1rem; font-weight: 600; color: #eaf2fb; font-size: .95rem; }
.hero__rating .stars { color: var(--star); letter-spacing: 2px; font-size: 1.05rem; }

/* Availability widget */
.availability {
  background: #fff; color: var(--charcoal); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1.25rem; margin-top: 1.5rem;
}
.availability h2 { font-size: 1.35rem; margin-bottom: .9rem; color: var(--navy); }
.availability .field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.availability .field--full { grid-column: 1 / -1; }
.avail-note { font-size: .85rem; color: var(--muted); margin: .8rem 0 0; }

/* ---- Forms --------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-weight: 600; color: var(--ink); font-size: .95rem; }
.field .req { color: var(--danger); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--charcoal); background: #fff;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: .7rem .8rem; width: 100%; min-height: 48px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ocean); box-shadow: var(--ring); outline: none; }
.field .hint { font-size: .82rem; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.25rem, 3vw, 2rem); box-shadow: var(--shadow-sm); }
.form-note { background: var(--sky-50); border-left: 4px solid var(--ocean); padding: .9rem 1rem; border-radius: 0 8px 8px 0; font-size: .92rem; }
fieldset { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.2rem 1.3rem; margin: 0 0 1.4rem; }
legend { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; color: var(--navy); padding: 0 .5rem; letter-spacing: .03em; }
.checkbox { display: flex; gap: .6rem; align-items: flex-start; }
.checkbox input { width: 20px; height: 20px; min-height: 0; margin-top: .2rem; }
.form-status { margin-top: 1rem; padding: .9rem 1rem; border-radius: 10px; font-weight: 600; display: none; }
.form-status[data-state="ok"] { display: block; background: #e4f6e0; color: #2f7d1e; }
.form-status[data-state="err"] { display: block; background: var(--danger-bg); color: var(--danger); }

/* ---- Cards --------------------------------------------------------------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sky-100); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card__body h3 { margin: 0; }
.card__meta { display: flex; flex-wrap: wrap; gap: .4rem; }
.card__specs { display: flex; flex-wrap: wrap; gap: .4rem; margin: .2rem 0 .6rem; padding: 0; list-style: none; }
.card__specs li { display: inline-flex; align-items: center; gap: .3rem; font-size: .76rem; font-weight: 600; color: var(--navy-700); background: var(--sky-100); border-radius: 999px; padding: .26rem .6rem; }
.card__price { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.35rem; }
.card__price small { font-weight: 600; color: var(--muted); font-size: .8rem; }
.card__foot { margin-top: auto; padding-top: .4rem; }

/* Feature/utility list */
.spec-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.spec-list li { display: flex; gap: .6rem; align-items: flex-start; margin: 0; }
.spec-list li::before { content: ""; flex: 0 0 auto; width: 1.15rem; height: 1.15rem; margin-top: .15rem;
  background: var(--green); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / 80% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / 80% no-repeat; }

/* Service / path tiles */
.tile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; text-decoration: none; color: var(--charcoal); display: block; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease, border-color .15s; }
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--sky-200); color: var(--charcoal); }
.tile__icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 12px; background: var(--sky-100); color: var(--ocean-600); margin-bottom: .8rem; }
.tile__icon svg { width: 28px; height: 28px; }
.tile h3 { margin: 0 0 .3rem; }
.tile p { margin: 0; color: var(--muted); font-size: .96rem; }
.tile__more { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; color: var(--ocean-600); margin-top: .7rem; display: inline-block; font-size: .95rem; }
.tile--photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.tile--photo .tile__img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.tile--photo .tile__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .35rem; }
.tile--photo .tile__body h3 { margin: 0; }

/* Split feature */
.split { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* ---- Rate table ---------------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table.rates { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
table.rates caption { text-align: left; padding: .6rem 0; color: var(--muted); font-size: .9rem; }
table.rates th, table.rates td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
table.rates thead th { background: var(--navy); color: #fff; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; font-weight: 600; }
table.rates tbody tr:nth-child(even) { background: var(--sky-50); }
table.rates td.num { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.15rem; }

/* ---- Callouts / notes ---------------------------------------------------- */
.callout { border-radius: var(--radius); padding: 1.1rem 1.25rem; border: 1px solid var(--line); background: var(--sky-50); }
.callout--warn { background: var(--danger-bg); border-color: #f3c9bb; }
.callout--verify { background: #fff8df; border-color: #f2df9c; }
.callout h3, .callout h4 { margin-top: 0; }
.callout__title { display: flex; align-items: center; gap: .5rem; font-family: var(--font-display); text-transform: uppercase; font-weight: 600; color: var(--navy); margin-bottom: .3rem; }
.updated { font-size: .85rem; color: var(--muted); }

/* Trust strip */
.trust { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 1.5rem; }
.trust li { display: flex; align-items: center; gap: .5rem; margin: 0; font-weight: 600; color: var(--navy); }
.trust li::marker { content: ""; }
.trust svg { color: var(--green); width: 22px; height: 22px; flex: 0 0 auto; }

/* Reviews */
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow-sm); }
.review__stars { color: var(--star); letter-spacing: 2px; font-size: 1.1rem; }
.review__stars span { color: #d7dee5; }
.review blockquote { margin: .5rem 0 .8rem; font-size: 1.05rem; }
.review cite { font-style: normal; font-weight: 600; color: var(--navy); }
.review .src { color: var(--muted); font-size: .85rem; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .6rem; }
.gallery-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow-sm); }

/* Breadcrumbs */
.crumbs { font-size: .9rem; color: var(--muted); padding: .9rem 0 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; padding: 0; margin: 0; }
.crumbs li { margin: 0; }
.crumbs li + li::before { content: "›"; margin-right: .35rem; color: var(--line); }

/* Page hero (interior pages) */
.page-hero { background: var(--navy); color: #eaf2fb; padding: clamp(2rem, 5vw, 3.2rem) 0; }
.page-hero h1 { color: #fff; margin-bottom: .4rem; }
.page-hero p { color: #cfe0f2; max-width: 60ch; margin: 0; }
.page-hero .crumbs { color: #a9c6e4; }
.page-hero .crumbs a { color: #cfe0f2; }

/* FAQ */
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 1rem; margin-bottom: .7rem; background: #fff; }
.faq summary { cursor: pointer; font-weight: 600; color: var(--navy); padding: .95rem 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-display); font-size: 1.5rem; color: var(--ocean); }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq details > div { padding: .8rem 0 1.1rem; }

/* ---- Footer -------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: #c3d5ea; padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.5rem; }
.site-footer a { color: #c3d5ea; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.footer-col h4 { color: #fff; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-size: 1rem; margin: 0 0 .8rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .5rem; }
.footer-contact p { margin: 0 0 .5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.4rem; font-size: .85rem; color: #93aecb; }
.footer-bottom p { margin: 0 0 .4rem; }
.fg-credit { display: flex; justify-content: center; margin-top: 1.2rem; }
.fg-credit a { display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; color: #7f9bbb; }
.fg-credit a:hover { color: #fff; text-decoration: none; }
.fg-credit img { height: 20px; width: auto; }

/* ---- Mobile action bar --------------------------------------------------- */
.action-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: #fff;
  border-top: 1px solid var(--line); box-shadow: 0 -4px 14px rgba(14,47,92,.10);
  display: grid; grid-template-columns: repeat(4, 1fr); padding-bottom: env(safe-area-inset-bottom);
}
.action-bar a {
  display: flex; flex-direction: column; align-items: center; gap: .2rem; padding: .55rem .2rem;
  text-decoration: none; color: var(--navy); font-family: var(--font-display); text-transform: uppercase;
  font-size: .72rem; font-weight: 600; letter-spacing: .02em; border-right: 1px solid var(--line);
}
.action-bar a:last-child { border-right: 0; }
.action-bar a[data-accent] { color: var(--ocean-600); }
.action-bar svg { width: 22px; height: 22px; }
body { padding-bottom: 64px; }

/* ---- Responsive ---------------------------------------------------------- */
@media (min-width: 620px) {
  .header-call span { display: inline; }
}
@media (min-width: 700px) {
  .hero__inner { grid-template-columns: 1.05fr .95fr; }
  .split { grid-template-columns: 1fr 1fr; }
  .split--media-first > .split__media { order: -1; }
}
@media (min-width: 980px) {
  .primary-nav { display: block; }
  .nav-toggle { display: none; }
  .header-actions .btn { display: inline-flex; }
  .action-bar { display: none; }
  body { padding-bottom: 0; }
  .availability .field-grid { grid-template-columns: repeat(3, 1fr); }
}

@media print {
  .site-header, .action-bar, .alert-bar, .mobile-nav, .hero__media, .btn { display: none !important; }
  body { padding: 0; color: #000; }
  a { color: #000; text-decoration: underline; }
}
