/* Security Course Melbourne — securitycoursemelbourne.com.au
   Deep navy / gold amber · corporate guard · mobile-first */

:root {
  --navy: #0B1C2C;
  --navy-mid: #122636;
  --navy-soft: #1A3348;
  --ink: #0B1C2C;
  --muted: #5A6A7A;
  --line: #D8DEE6;
  --bg: #F4F6F8;
  --white: #ffffff;
  --gold: #C9A227;
  --gold-dark: #A8861A;
  --gold-soft: #F7F1DE;
  --radius: 6px;
  --radius-sm: 4px;
  --radius-lg: 10px;
  --shadow: 0 6px 24px rgba(11, 28, 44, 0.08);
  --shadow-lg: 0 16px 48px rgba(11, 28, 44, 0.16);
  --font: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "IBM Plex Sans", system-ui, sans-serif;
  --max: 1140px;
  --header-h: 70px;
  --callbar-h: 60px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  padding-bottom: var(--callbar-h);
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-dark);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--navy);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.text-balance {
  text-wrap: balance;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 3.5rem 0;
}

.section--tight {
  padding: 2.5rem 0;
}

.section--alt {
  background: var(--bg);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy .section__title,
.section--navy .section__lead {
  color: var(--white);
}

.section__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.section--navy .section__eyebrow,
.section__eyebrow--on-dark {
  color: var(--gold);
}

.section__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.section__lead {
  margin: 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.0625rem;
}

.section-head {
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--ghost:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: var(--white);
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(11, 28, 44, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--white);
  min-width: 0;
}

.logo:hover {
  color: var(--white);
  text-decoration: none;
}

.logo__mark {
  flex-shrink: 0;
  width: 36px;
  height: 40px;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.logo__name {
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo__tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--gold);
}

.nav__cta {
  padding: 0.45rem 0.9rem !important;
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}

.nav__cta:hover {
  background: var(--gold-dark) !important;
  color: var(--navy) !important;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle span {
  transition: transform 0.2s, opacity 0.2s;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

.nav--mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  padding: 0.5rem 0;
}

.nav--mobile.is-open {
  display: flex;
}

.nav--mobile a {
  color: var(--white);
  text-decoration: none;
  padding: 0.85rem 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav--mobile a:last-child {
  border-bottom: 0;
  margin: 0.5rem 1rem 0.75rem;
  text-align: center;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  font-weight: 600;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11, 28, 44, 0.94) 0%, rgba(11, 28, 44, 0.78) 48%, rgba(11, 28, 44, 0.55) 100%),
    linear-gradient(to top, rgba(11, 28, 44, 0.85) 0%, transparent 45%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
  padding: 3.5rem 0 4rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.35fr 0.9fr;
    align-items: center;
    gap: 2.5rem;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--white);
}

.hero__sub {
  margin: 0;
  max-width: 36rem;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero__sub strong {
  color: var(--gold);
  font-weight: 600;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.trust-chips li {
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.hero-card {
  background: var(--white);
  color: var(--ink);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold);
}

.hero-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: var(--navy);
}

.hero-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

.hero-card__price {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
}

.hero-card__meta {
  margin: 1rem 0 0 !important;
  font-size: 0.8125rem !important;
  text-align: center;
}

.hero-card__meta a {
  color: var(--navy);
  font-weight: 600;
}

/* Cards & grids */
.card-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .card-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.card--soft {
  background: var(--white);
}

.card--navy {
  background: var(--navy-mid);
  border-color: rgba(201, 162, 39, 0.2);
  color: var(--white);
}

.card--navy h3 {
  color: var(--white);
}

.card--navy p {
  color: rgba(255, 255, 255, 0.8);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.85rem;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  color: var(--navy);
}

.card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

/* Units grid */
.units-grid {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .units-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .units-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.unit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.unit-item code {
  display: inline-block;
  padding: 0.15rem 0.4rem;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 2px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  white-space: nowrap;
}

.unit-item h3 {
  margin: 0 0 0.15rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}

.unit-item p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Split */
.split-block {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .split-block {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
  }
  .split-block--flip {
    grid-template-columns: 1.1fr 1fr;
  }
  .split-block--flip .split-block__media {
    order: 2;
  }
}

.photo-frame {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.photo-frame--tall {
  aspect-ratio: 3 / 4;
  max-height: 480px;
}

.photo-frame--sm {
  aspect-ratio: 16 / 10;
  margin-bottom: 1.25rem;
}

.detail-list {
  display: grid;
  gap: 0;
  margin: 1.5rem 0 0;
}

.detail-list dt {
  margin: 0;
  padding-top: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.detail-list dd {
  margin: 0.25rem 0 0;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.975rem;
}

.detail-list dd:last-of-type {
  border-bottom: 0;
}

/* Career outcomes */
.career-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .career-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.career-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
}

.career-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-card__body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.35rem;
  background: linear-gradient(to top, rgba(11, 28, 44, 0.95) 0%, rgba(11, 28, 44, 0.55) 70%, transparent 100%);
  color: var(--white);
}

.career-card__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
}

.career-card__body p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

.licence-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--gold-soft);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9375rem;
  color: var(--navy);
}

.licence-note strong {
  display: block;
  margin-bottom: 0.25rem;
}

/* Why */
.why-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.4rem;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

@media (min-width: 700px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.steps li {
  position: relative;
  padding: 1.5rem 1.25rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  counter-increment: step;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
}

.steps h3 {
  margin: 0 0 0.4rem;
  font-size: 1.0625rem;
  color: var(--navy);
}

.steps p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

/* Photo band */
.photo-band {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.photo-band img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.photo-band__caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(11, 28, 44, 0.88) 0%, rgba(11, 28, 44, 0.45) 100%);
}

.photo-band__caption p {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

.photo-band__caption em {
  color: var(--gold);
  font-style: normal;
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.65rem;
  max-width: 48rem;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  padding-right: 2.5rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--gold-dark);
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq__a {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
  font-size: 0.975rem;
}

/* Location */
.location-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .location-grid {
    grid-template-columns: 1fr 1.4fr;
    align-items: stretch;
  }
}

.address-block {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.address-block h3 {
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* Form */
.form-wrap {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .form-wrap {
    grid-template-columns: 1fr 1.15fr;
    gap: 3rem;
    align-items: start;
  }
}

.contact-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: grid;
  gap: 0.15rem;
}

.contact-list span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-list a,
.contact-list strong {
  color: var(--white);
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--gold);
}

.enquire-form {
  background: var(--white);
  color: var(--ink);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  min-height: 48px;
}

.form-row textarea {
  min-height: 110px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
}

.form-hint {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.form-grid-2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 500px) {
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 2rem;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer h3 {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-footer p,
.site-footer li {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  line-height: 1.55;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom p {
  margin: 0 0 0.5rem;
}

/* Mobile call bar */
.call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: var(--callbar-h);
  background: var(--navy);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -8px 24px rgba(11, 28, 44, 0.25);
}

.call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--white);
}

.call-bar a:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.call-bar a:last-child {
  background: var(--gold);
  color: var(--navy);
}

@media (min-width: 768px) {
  .call-bar {
    display: none;
  }
}

/* Mosaic */
.photo-mosaic {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .photo-mosaic {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
  }
  .mosaic-card--lg {
    grid-row: span 2;
  }
}

.mosaic-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 180px;
}

.mosaic-card--lg {
  min-height: 280px;
}

.mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.mosaic-card__label {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(11, 28, 44, 0.92) 0%, rgba(11, 28, 44, 0.2) 55%, transparent 100%);
  color: var(--white);
}

.mosaic-card__label h3 {
  margin: 0 0 0.25rem;
  font-size: 1.0625rem;
}

.mosaic-card__label p {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
