/* ============================================================
   Orange County Flight Center — navy, orange & white, academy discipline
   Display: Saira Condensed · Body: Source Sans 3 · Data: IBM Plex Mono
   Signature: the dashed course line with certificate designators
   Geometry: zero radius — everything squared like a checklist
   ============================================================ */
:root {
  /* OCFC brand: navy #112337 · orange #FF6600 · blue #006799 (from ocfc.com) */
  --navy: #112337;
  --navy-2: #1B3352;
  --blue: #006799;
  --blue-hover: #00527A;
  --orange: #FF6600;
  --orange-hover: #E05A00;
  --sky: #F3F6F9;
  --white: #FFFFFF;
  --ink: #1A2433;
  --muted: #5B6675;
  --line: #D9DFE6;
  --gold: #FF6600;
  --ok-bg: #E6F4EA; --ok-ink: #1E6B34;
  --err-bg: #FBE9E9; --err-ink: #9B2C2C;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
}
h1, h2, h3 {
  font-family: "Saira Condensed", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.05;
  margin: 0 0 0.5rem;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }
p { margin: 0.6rem 0; }
a { color: var(--blue); }
img { max-width: 100%; }
.mono { font-family: "IBM Plex Mono", ui-monospace, monospace; }
.container { max-width: 70rem; margin: 0 auto; padding: 0 1.4rem; }
.center { text-align: center; margin-top: 1.75rem; }
.fine { font-size: 0.85rem; color: var(--muted); }
.eyebrow {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--blue); margin: 0 0 0.6rem;
}
.eyebrow a { text-decoration: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------- Topbar ---------- */
.topbar { background: var(--navy); color: var(--white); position: relative; z-index: 10; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem 1rem; padding-top: 0.85rem; padding-bottom: 0.85rem; }
.brand img { display: block; height: 44px; width: auto; }
.brand .brand-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.brand {
  display: flex; align-items: center; gap: 0.55rem; color: var(--white); text-decoration: none;
  font-family: "Saira Condensed", Arial, sans-serif; font-size: 1.35rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.mainnav { display: flex; align-items: center; flex-wrap: wrap; gap: 0.25rem 1.15rem; }
.mainnav a { color: #BCCFE8; text-decoration: none; font-size: 0.94rem; font-weight: 600; }
.mainnav a:hover { color: var(--white); }

/* ---------- Dropdown nav ---------- */
.navdrop { position: relative; }
.navdrop-btn {
  background: none; border: none; cursor: pointer; padding: 0.35rem 0;
  color: #BCCFE8; font-family: inherit; font-size: 0.94rem; font-weight: 600;
}
.navdrop-btn:hover { color: var(--white); }
.navdrop .chev { font-size: 0.7em; display: inline-block; transition: transform 0.15s; }
.navdrop-menu {
  display: none; position: absolute; left: 50%; transform: translateX(-50%); top: 100%;
  min-width: 15.5rem; padding: 0.6rem 0; margin-top: 0.65rem;
  background: var(--navy-2); border-top: 3px solid var(--gold);
  box-shadow: 0 12px 28px rgba(4,14,32,0.45);
  z-index: 50;
}
/* hover bridge so the menu doesn't close crossing the gap */
.navdrop-menu::before { content: ""; position: absolute; top: -0.75rem; left: 0; right: 0; height: 0.75rem; }
.navdrop-menu a {
  display: block; padding: 0.5rem 1.3rem; color: #D5E2F3; font-weight: 400; white-space: nowrap;
}
.navdrop-menu a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.navdrop-menu .navdrop-all {
  margin-top: 0.4rem; border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 0.75rem; font-weight: 600; color: var(--gold);
}
.navdrop.open .navdrop-menu { display: block; }
.navdrop.open .chev { transform: rotate(180deg); }
@media (hover: hover) and (pointer: fine) {
  .navdrop:hover .navdrop-menu, .navdrop:focus-within .navdrop-menu { display: block; }
  .navdrop:hover .chev { transform: rotate(180deg); }
}
@media (max-width: 760px) {
  .navdrop-menu { position: static; transform: none; min-width: 0; margin-top: 0.25rem;
    box-shadow: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 0.65rem 1.4rem; border-radius: 0; text-decoration: none;
  font-weight: 600; font-size: 0.98rem; border: 1px solid transparent; cursor: pointer;
  font-family: inherit; transition: background-color 0.15s, border-color 0.15s;
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.88rem;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-hover); }
.btn-ghost { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-ghost:hover { background: var(--sky); }
.btn-nav { background: var(--orange); color: var(--white) !important; padding: 0.45rem 1.05rem; }
.btn-nav:hover { background: var(--orange-hover); color: var(--white) !important; }
.btn-block { display: block; text-align: center; margin: 0.5rem 0; }

/* ---------- Hero ---------- */
.hero { position: relative; color: var(--white); padding: 6.5rem 0; overflow: hidden; }
.hero-video {
  background: var(--navy) url('/assets/img/hero-jet.jpg') 65% 55% / cover no-repeat;
  min-height: min(78vh, 720px); display: flex; align-items: center; padding: 7rem 0 6rem;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%;
  z-index: 0; pointer-events: none;
}
.hero-shade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(5,17,36,0.92) 0%, rgba(5,17,36,0.68) 45%, rgba(5,17,36,0.30) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-video .hero-credit { z-index: 3; left: 1.2rem; right: auto; bottom: 0.6rem; }
@media (prefers-reduced-motion: reduce) { .hero-bg { display: none; } }
@media (max-width: 760px) {
  .hero-video { min-height: 0; padding: 4.5rem 0 4.5rem; }
  .hero-video .hero-credit { display: none; }
}
.hero-photo {
  background:
    linear-gradient(100deg, rgba(5,17,36,0.94) 0%, rgba(5,17,36,0.76) 45%, rgba(5,17,36,0.28) 100%),
    var(--navy) url('/assets/img/hero-jet.jpg') 65% 55% / cover no-repeat;
}
.hero h1 { margin: 0.3rem 0 1rem; max-width: 15em; }
.hero .eyebrow { color: var(--gold); }
.hero-sub { max-width: 36rem; font-size: 1.18rem; color: #DCE7F5; }
.hero-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.9rem; }
.hero .btn-ghost { border-color: #8FB0DC; color: var(--white); }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.12); }
.hero-credit {
  position: absolute; right: 0.9rem; bottom: 0.5rem; margin: 0;
  font-size: 0.62rem; color: rgba(255,255,255,0.55); letter-spacing: 0.05em;
}

/* ---------- Sections ---------- */
.section { padding: 4rem 0; }
.section-alt { background: var(--sky); }
.section-title { margin-bottom: 0.75rem; }
.section-lede { color: var(--muted); max-width: 44rem; margin-bottom: 1.5rem; }
.pagehead { background: var(--sky); border-bottom: 1px solid var(--line); padding: 3rem 0 2.5rem; }
.pagehead p { color: var(--muted); max-width: 44rem; }
.pagehead-photo {
  background:
    linear-gradient(100deg, rgba(5,17,36,0.92) 0%, rgba(5,17,36,0.72) 55%, rgba(5,17,36,0.45) 100%),
    var(--navy) var(--head-img) center 40% / cover no-repeat;
  border-bottom: none; color: var(--white); padding: 4.5rem 0 3.5rem;
}
.pagehead-photo p { color: #D5E2F3; }
.pagehead-photo .eyebrow, .pagehead-photo .eyebrow a { color: var(--gold); }

/* ---------- The course line (signature) ---------- */
.flightpath { position: relative; display: flex; flex-direction: column; gap: 1.1rem; padding-left: 3.4rem; }
.flightpath::before {
  content: ""; position: absolute; left: 1.55rem; top: 1.5rem; bottom: 1.5rem;
  border-left: 3px dashed var(--blue); opacity: 0.5;
}
.waypoint {
  position: relative; display: flex; align-items: center; gap: 1.25rem;
  background: var(--white); border: 1px solid var(--line); border-radius: 0;
  padding: 0; text-decoration: none; color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.waypoint:hover { border-color: var(--blue); box-shadow: 0 3px 14px rgba(11,36,71,0.10); }
.waypoint::before {
  /* waypoint triangle on the course line */
  content: ""; position: absolute; left: -2.31rem; top: 50%;
  width: 0.9rem; height: 0.9rem; transform: translateY(-50%) rotate(45deg);
  background: var(--white); border: 3px solid var(--blue); border-radius: 0;
}
.section-alt .waypoint::before { background: var(--sky); }
.wp-marker {
  position: absolute; left: -3.45rem; top: 50%; transform: translateY(-50%) translateY(1.35rem);
  font-size: 0.62rem; color: var(--blue); letter-spacing: 0.08em;
}
.wp-photo { width: 9.5rem; height: 6.6rem; object-fit: cover; flex-shrink: 0; align-self: stretch; }
.wp-body { display: flex; flex-direction: column; gap: 0.15rem; padding: 0.9rem 1.2rem 0.9rem 0; min-width: 0; }
.waypoint .wp-body:first-child { padding-left: 1.2rem; }
.wp-body strong {
  font-family: "Saira Condensed", Arial, sans-serif; font-size: 1.25rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.02em;
}
.wp-tag { color: var(--muted); font-size: 0.95rem; }
.wp-meta { font-size: 0.78rem; color: var(--blue); margin-top: 0.25rem; }
@media (max-width: 640px) {
  .flightpath { padding-left: 2.6rem; }
  .flightpath::before { left: 1.1rem; }
  .waypoint::before { left: -1.95rem; }
  .wp-marker { display: none; }
  .wp-photo { width: 6rem; height: auto; }
}

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr)); gap: 1.2rem; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: 0; padding: 1.3rem 1.4rem; text-decoration: none; color: var(--ink); display: block; }
a.card:hover { border-color: var(--blue); box-shadow: 0 3px 14px rgba(11,36,71,0.10); }
.card p { font-size: 0.95rem; color: var(--muted); }
.card-meta { font-size: 0.8rem !important; color: var(--blue) !important; letter-spacing: 0.02em; }
.card-tag { font-size: 0.75rem !important; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--blue) !important; margin: 0.1rem 0 0.3rem; }
.promo { border-top: 3px solid var(--gold); }

/* photo cards (fleet) */
.photo-card { padding: 0; overflow: hidden; }
.photo-card img { width: 100%; height: 12rem; object-fit: cover; display: block; }
.photo-card-body { padding: 1.1rem 1.3rem 1.3rem; }
.photo-card-body h3 { margin-bottom: 0.35rem; }
.price-line { font-weight: 500; color: var(--blue); font-size: 0.9rem; }
.fleet-grid { grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr)); }

/* instructor cards + avatars */
.instructor-grid { grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr)); }
.instructor-card { display: flex; align-items: center; gap: 1.1rem; }
.instructor-card h3 { margin-bottom: 0.1rem; }
.avatar { border-radius: 50%; object-fit: cover; flex-shrink: 0; display: inline-flex; }
.avatar-mono {
  align-items: center; justify-content: center;
  background: var(--navy); color: var(--white);
  font-family: "Saira Condensed", Arial, sans-serif; font-weight: 600; letter-spacing: 0.05em;
}

/* profile list + profile page */
.profile-list { display: flex; flex-direction: column; gap: 1rem; }
.profile-row {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  border: 1px solid var(--line); border-radius: 0; padding: 1.25rem 1.5rem;
  text-decoration: none; color: var(--ink);
}
.profile-row:hover { border-color: var(--blue); box-shadow: 0 3px 14px rgba(11,36,71,0.10); }
.profile-row-body { flex: 1; min-width: 14rem; }
.profile-row-body h3 { margin-bottom: 0.1rem; }
.profile-spec { color: var(--muted); font-size: 0.95rem; margin: 0.3rem 0 0; }
.profile-row-facts { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.82rem; color: var(--muted); text-align: right; }
.profile-row-facts .linkish { color: var(--blue); font-weight: 500; }
.profile-hero { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; margin-top: 0.5rem; }
.profile-hero h1 { margin-bottom: 0.2rem; }
.profile-stats { display: flex; gap: 1.5rem; font-size: 0.85rem; color: var(--muted); }
.pull-quote {
  margin: 0 0 1.5rem; padding: 0.4rem 0 0.4rem 1.25rem; border-left: 3px solid var(--gold);
  font-family: "Saira Condensed", Arial, sans-serif; font-size: 1.45rem; font-weight: 500;
  line-height: 1.3; color: var(--navy);
}

/* ---------- Split layout + factbox ---------- */
.split { display: grid; grid-template-columns: 1.7fr 1fr; gap: 2.75rem; align-items: start; }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } }
.factbox { background: var(--sky); border: 1px solid var(--line); border-radius: 0; padding: 1.5rem 1.6rem; }
.factbox dl { margin: 0.75rem 0; }
.factbox dt { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.8rem; }
.factbox dd { margin: 0.15rem 0 0; font-weight: 500; }
.cta-panel { background: var(--navy); color: var(--white); border-radius: 0; padding: 1.9rem; }
.cta-panel .fine { color: #9DBCE4; margin-top: 1rem; }
.cta-panel a { color: var(--white); }
.prose { max-width: 46rem; }
.prose.narrow { max-width: 42rem; }
.prose h3 { margin-top: 2rem; }
.checklist { list-style: none; padding: 0; }
.checklist li { padding-left: 1.7rem; position: relative; margin: 0.7rem 0; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

/* ---------- Tables ---------- */
.tablewrap { overflow-x: auto; margin: 0 0 2.75rem; }
table { border-collapse: collapse; width: 100%; font-size: 0.97rem; }
th { text-align: left; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); border-bottom: 2px solid var(--navy); padding: 0.5rem 0.75rem; font-family: "IBM Plex Mono", monospace; font-weight: 500; }
td { border-bottom: 1px solid var(--line); padding: 0.65rem 0.75rem; }
td.num { font-family: "IBM Plex Mono", monospace; font-variant-numeric: tabular-nums; font-weight: 500; color: var(--blue); white-space: nowrap; font-size: 0.92rem; }

/* ---------- Forms ---------- */
.form { display: flex; flex-direction: column; gap: 0.95rem; max-width: 34rem; }
.form label { display: flex; flex-direction: column; gap: 0.3rem; font-weight: 600; font-size: 0.92rem; }
.form input, .form select, .form textarea {
  font: inherit; font-weight: 400; padding: 0.6rem 0.75rem;
  border: 1px solid var(--line); border-radius: 0; background: var(--white); color: var(--ink);
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--blue); outline-offset: 1px; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr)); gap: 0.95rem; }
.hp { position: absolute; left: -9999px; }

/* ---------- Flash ---------- */
.flash { padding: 0.85rem 1.15rem; border-radius: 0; margin: 1rem 0; font-weight: 500; }
.flash-success { background: var(--ok-bg); color: var(--ok-ink); }
.flash-error { background: var(--err-bg); color: var(--err-ink); }

/* ---------- Stats band (quantified credibility) ---------- */
.stats-band { background: var(--navy); color: var(--white); padding: 2.4rem 0; border-top: 3px solid var(--gold); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); gap: 1.75rem 2.5rem; }
.stat-item { display: flex; flex-direction: column; gap: 0.2rem; padding-left: 1rem; border-left: 2px solid rgba(232,185,49,0.55); }
.stat-value { font-size: 1.85rem; font-weight: 500; letter-spacing: 0.02em; line-height: 1.1; color: var(--white); font-variant-numeric: tabular-nums; }
.stat-label { font-size: 0.82rem; color: #9DBCE4; letter-spacing: 0.03em; }

/* ---------- Instructor corps ---------- */
.corps-band { background: var(--navy); color: #DCE7F5; }
.corps-band .section-title, .corps-band strong { color: var(--white); }
.corps-band .eyebrow { color: var(--gold); }
.corps-band .checklist li::before { color: var(--gold); }
.corps-facts { display: flex; flex-direction: column; gap: 1.4rem; border: 1px solid rgba(255,255,255,0.18); padding: 1.75rem 1.9rem; }
.corps-fact { display: flex; flex-direction: column; gap: 0.15rem; padding-left: 1rem; border-left: 2px solid rgba(232,185,49,0.55); }

/* ---------- Fleet spec sheets ---------- */
.spec-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); gap: 1.2rem; }
.spec-grid-lg { grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr)); }
.spec-card {
  border: 1px solid var(--line); border-top: 3px solid var(--navy);
  background: var(--white); padding: 1.2rem 1.4rem 1.3rem;
}
.spec-card h3 { margin: 0.15rem 0 0.3rem; }
.spec-card p { margin: 0.25rem 0; }
.spec-tail { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.08em; }
.spec-line { font-size: 0.78rem; color: var(--blue); letter-spacing: 0.04em; }
.spec-rate { font-weight: 500; color: var(--navy); font-size: 0.95rem; border-top: 1px solid var(--line); padding-top: 0.6rem; margin-top: 0.6rem; }
.spec-card > p:not(.mono) { font-size: 0.93rem; color: var(--muted); }

/* ---------- Certificate designator chip ---------- */
.desig {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  border: 1px solid currentColor; padding: 0.05rem 0.45rem; letter-spacing: 0.1em;
}

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #BCCFE8; margin-top: 3.5rem; padding: 3.25rem 0 1.5rem; }
.footer h3 { color: var(--white); font-size: 1.1rem; }
.footer a { color: #BCCFE8; }
.footer p { font-size: 0.93rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-links { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }
.footer-mono { font-size: 0.78rem; color: #8FB0DC; letter-spacing: 0.04em; }
.footer-fine { border-top: 1px solid rgba(255,255,255,0.15); margin-top: 2.25rem; padding-top: 1.3rem; font-size: 0.8rem; }

/* ---------- Film band (academy reel) ---------- */
.film-band, .photo-band { background: var(--navy); border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); }
.film-wrap { position: relative; max-width: 1280px; margin: 0 auto; }
.film { display: block; width: 100%; height: auto; background: #000; }
.film-overlay {
  position: absolute; left: 28px; bottom: 24px;
  pointer-events: none; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}
.film-overlay .eyebrow { color: var(--gold); margin: 0 0 0.2rem; }
.film-overlay h2 {
  color: var(--white); margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.6rem); letter-spacing: 0.03em;
}
.film-toggle {
  position: absolute; right: 20px; bottom: 20px;
  background: rgba(7, 27, 56, 0.82); color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55); border-radius: 0;
  padding: 0.5rem 0.9rem; font-size: 0.78rem; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer;
}
.film-toggle:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.film-credit {
  margin: 0; padding: 0.55rem 16px; text-align: center;
  color: #7E93B5; font-size: 0.7rem; letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .film-overlay { left: 14px; bottom: 12px; }
  .film-toggle { right: 10px; bottom: 10px; padding: 0.4rem 0.65rem; }
}

/* ---------- Enrollment shop / cart ---------- */
.cartlink { position: relative; display: inline-flex; align-items: center; color: #BCCFE8; }
.cartlink:hover { color: var(--white); }
.cartcount { position: absolute; top: -0.55rem; right: -0.7rem; background: var(--orange); color: var(--white);
  font-size: 0.68rem; font-weight: 700; line-height: 1; padding: 0.2rem 0.38rem; border-radius: 0; }
.product-card { display: flex; flex-direction: column; }
.product-card h3 { font-size: 1.15rem; margin: 0.2rem 0 0.4rem; }
.product-card .price { margin-top: auto; padding-top: 0.6rem; font-size: 1.15rem; font-weight: 500; color: var(--navy) !important; }
.product-card .price .fine { display: block; font-size: 0.78rem; font-weight: 400; margin-top: 0.15rem; }
.price-big { font-size: 2.2rem; font-weight: 500; color: var(--navy); margin: 0 0 0.25rem; }
.steps { padding-left: 1.3rem; }
.steps li { margin: 0.4rem 0; }
.cart-table td, .cart-table th { vertical-align: middle; }
.cart-table .qty { width: 4.2rem; padding: 0.35rem; border: 1px solid var(--line); font: inherit; text-align: center; }
.cart-total td { font-weight: 700; border-top: 2px solid var(--navy); }
.linkbtn { background: none; border: none; color: var(--blue); cursor: pointer; font: inherit; text-decoration: underline; padding: 0; }
.form-wide { max-width: 100%; }
.form h3 { margin-top: 0.75rem; }
.form label.check { flex-direction: row; align-items: flex-start; gap: 0.6rem; font-weight: 400; font-size: 0.9rem; }
.form label.check input { width: auto; margin-top: 0.25rem; }
.summary { width: 100%; font-size: 0.95rem; }
.summary td { padding: 0.35rem 0; border-bottom: 1px solid var(--line); }
.summary .num, table .num { text-align: right; }
.empty { color: var(--muted); }
.spec-rate { font-size: 1.25rem; color: var(--navy) !important; margin: 0.3rem 0 !important; }
.spec-rate span { font-size: 0.75rem; color: var(--muted); }
.cta-panel .btn { margin: 0.25rem 0.35rem 0.25rem 0; }
.photo-band .film { max-height: 560px; object-fit: cover; object-position: 65% 55%; }
