/* =========================================================
   Rovira Crane, LLC — site stylesheet
   ========================================================= */

:root {
  /* Brand */
  --navy-900: #0b1a29;
  --navy-800: #102a44;
  --navy: #16385a;
  --steel: #24557f;
  --steel-light: #3d6c94;
  --yellow: #f7a816;
  --yellow-600: #e0940c;

  /* Text tokens — all verified for contrast */
  --text-strong: #14273a;   /* headings on light            */
  --text-body: #35495c;     /* body copy on light           */
  --text-muted: #4d6175;    /* secondary copy on light      */
  --amber-text: #8f5a07;    /* amber that is legible on white */
  --on-dark: #ffffff;       /* text on dark                 */
  --on-dark-muted: #cfdae4; /* secondary text on dark       */

  /* Surfaces */
  --grey-50: #f6f8fa;
  --grey-100: #eaeef2;
  --grey-200: #dbe2e9;
  --line: #e3e9ef;
  --white: #ffffff;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 14px 40px rgba(11, 26, 41, 0.14);
  --shadow-sm: 0 3px 12px rgba(11, 26, 41, 0.07);
  --max-width: 1180px;
  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Every inline icon is constrained. Without this the raw SVGs
   expand to fill their flex parent and blow the layout apart. */
svg { flex-shrink: 0; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  color: var(--text-strong);
  line-height: 1.18;
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.05rem, 1.35rem + 2.4vw, 3.15rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.3rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.005em; }
h4 { font-size: 1rem; }

p { margin: 0 0 18px; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.eyebrow {
  display: inline-block;
  color: var(--amber-text);
  background: rgba(247, 168, 22, 0.13);
  border: 1px solid rgba(224, 148, 12, 0.4);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  line-height: 1.4;
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--grey { background: var(--grey-50); }

.section--navy {
  background-color: var(--navy-900);
  background-image: linear-gradient(135deg, var(--navy-900), var(--steel));
  color: var(--on-dark-muted);
}
.section--navy h1, .section--navy h2,
.section--navy h3, .section--navy h4 { color: var(--on-dark); }
.section--navy p { color: var(--on-dark-muted); }

.section-head {
  max-width: 730px;
  margin: 0 auto 52px;
  text-align: center;
}
.section-head p { color: var(--text-muted); font-size: 1.05rem; }
.section-head.left { margin-left: 0; text-align: left; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.97rem;
  line-height: 1.2;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
              background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }

.btn--yellow {
  background: var(--yellow);
  color: var(--navy-900);
  box-shadow: 0 4px 14px rgba(247, 168, 22, 0.3);
}
.btn--yellow:hover { background: var(--yellow-600); }

.btn--outline {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--on-dark);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
}

.btn--navy { background: var(--navy); color: var(--on-dark); }
.btn--navy:hover { background: var(--steel); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.topbar {
  background: var(--navy-900);
  color: var(--on-dark-muted);
  font-size: 0.84rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 6px 24px;
}
.topbar a { color: var(--on-dark); font-weight: 600; }
.topbar a:hover { color: var(--yellow); }
.topbar-links { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.topbar-links a { display: inline-flex; align-items: center; gap: 7px; }
.topbar-links svg { width: 15px; height: 15px; }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--text-strong);
  line-height: 1.25;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background-color: var(--navy-900);
  background-image: linear-gradient(135deg, var(--navy-800), var(--steel));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.brand small {
  display: block;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-top: 1px;
}

.nav { display: flex; align-items: center; gap: 4px; }

/* Scoped so the Call Now button inside .nav keeps its own colour.
   An unscoped `.nav a` rule out-specifies .btn--navy and turns the
   button's label dark-on-dark. */
.nav > a,
.nav .dropdown > a,
.nav .dropdown-menu a {
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-body);
}
.nav > a:hover, .nav > a.is-active,
.nav .dropdown > a:hover, .nav .dropdown > a.is-active,
.nav .dropdown-menu a:hover {
  color: var(--navy);
  background: var(--grey-100);
}

.nav .dropdown { position: relative; }
.nav .dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px;
  min-width: 232px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.15s ease;
}
.nav .dropdown:hover .dropdown-menu,
.nav .dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav .dropdown-menu a { display: block; }

.nav-cta { display: flex; align-items: center; gap: 12px; margin-left: 8px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-color: var(--navy-900);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(9, 21, 34, 0.95) 0%,
      rgba(11, 26, 41, 0.9) 42%,
      rgba(16, 42, 68, 0.72) 70%,
      rgba(36, 85, 127, 0.55) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 104px 0 88px;
  max-width: 880px;
}
.hero--sub .hero-inner { padding: 68px 0 64px; }

/* Hero text is light by definition — the global heading colour
   would otherwise render these dark navy on a dark photo. */
.hero, .hero p { color: var(--on-dark-muted); }
.hero h1, .hero h2, .hero h3 { color: var(--on-dark); }
.hero .lead {
  font-size: 1.13rem;
  color: var(--on-dark-muted);
  max-width: 660px;
}
.hero .eyebrow {
  color: var(--yellow);
  background: rgba(247, 168, 22, 0.16);
  border-color: rgba(247, 168, 22, 0.5);
}
.hero .btn-row { margin-top: 30px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-stat strong {
  display: block;
  font-size: 1.7rem;
  color: var(--yellow);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.hero-stat span {
  font-size: 0.85rem;
  color: var(--on-dark-muted);
  letter-spacing: 0.01em;
}

.breadcrumb {
  font-size: 0.84rem;
  color: var(--on-dark-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--on-dark-muted); }
.breadcrumb a:hover { color: var(--yellow); }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--grey-200);
}
.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.97rem; }
.card .card-link { margin-top: auto; padding-top: 16px; }

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(247, 168, 22, 0.15);
  color: var(--amber-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 25px; height: 25px; }

a.card-link {
  display: inline-block;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}
a.card-link:hover { color: var(--amber-text); }

.check-list { list-style: none; margin: 0 0 22px; padding: 0; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--text-body);
}
.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  margin-top: 4px;
  border-radius: 50%;
  background-color: var(--yellow);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b1a29' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
/* Photos are a mix of portrait and landscape. Without a fixed ratio a
   single tall phone photo stretches its whole section. */
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- CTA band ---------- */
.cta-band {
  background-color: var(--navy-900);
  background-image: linear-gradient(120deg, var(--navy-900), var(--steel));
  color: var(--on-dark);
  border-radius: var(--radius);
  padding: 46px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--on-dark); margin: 0; }
.cta-band p { color: var(--on-dark-muted); margin: 8px 0 0; }

/* ---------- Pills ---------- */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.section-head.left + .pill-row, .pill-row.left { justify-content: flex-start; }
.pill {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
}
.section--grey .pill { background: var(--white); }

/* ---------- Gallery ---------- */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.gallery-tabs button {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--grey-200);
  background: var(--white);
  color: var(--text-body);
  font-weight: 700;
  font-size: 0.88rem;
  font-family: var(--font);
  cursor: pointer;
  transition: 0.15s ease;
}
.gallery-tabs button:hover { border-color: var(--yellow); color: var(--navy); }
.gallery-tabs button.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--on-dark);
}

.gallery-group { margin-bottom: 60px; }
.gallery-group:last-child { margin-bottom: 0; }
.gallery-group h3 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  font-size: 1.12rem;
}
.gallery-group h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  background: var(--navy-900);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 15px 12px;
  background: linear-gradient(to top, rgba(6, 16, 26, 0.92) 15%, rgba(6, 16, 26, 0) 100%);
  color: var(--on-dark);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 17, 27, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 30px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(1000px, 92vw);
  max-height: 80vh;
  width: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}
.lightbox-caption {
  color: var(--on-dark);
  text-align: center;
  margin-top: 18px;
  font-weight: 600;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.14);
  border: none;
  color: var(--on-dark);
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.15s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--yellow);
  color: var(--navy-900);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Forms ---------- */
.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label {
  display: block;
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--text-strong);
  margin-bottom: 7px;
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--grey-200);
  font-family: var(--font);
  font-size: 0.97rem;
  color: var(--text-body);
  margin-bottom: 18px;
  background: var(--grey-50);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form input::placeholder, .form textarea::placeholder { color: #7d8d9c; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--steel-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(61, 108, 148, 0.15);
}
.form textarea { resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--text-muted); margin: -4px 0 18px; }
.form-note a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.form-success {
  display: none;
  background: #e8f5ee;
  border: 1px solid #94c9ad;
  color: #14603c;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-info-card {
  background-color: var(--navy-900);
  background-image: linear-gradient(135deg, var(--navy-900), var(--steel));
  color: var(--on-dark);
  border-radius: var(--radius);
  padding: 34px;
}
.contact-info-card h3 { color: var(--on-dark); margin-bottom: 24px; }
.contact-row { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 24px; }
.contact-row:last-child { margin-bottom: 0; }
.contact-row .ic {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(247, 168, 22, 0.2);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-row .ic svg { width: 20px; height: 20px; }
.contact-row a { color: var(--on-dark); font-weight: 700; }
.contact-row a:hover { color: var(--yellow); }
.contact-row p { color: var(--on-dark-muted); margin: 2px 0 0; font-size: 0.88rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: var(--on-dark-muted);
  padding: 64px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.15fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-grid h4 {
  color: var(--on-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 18px;
}
.footer-grid a {
  display: block;
  color: var(--on-dark-muted);
  margin-bottom: 11px;
  font-size: 0.92rem;
}
.footer-grid a:hover { color: var(--yellow); }
.footer-brand .brand { color: var(--on-dark); margin-bottom: 16px; }
.footer-brand p {
  color: var(--on-dark-muted);
  font-size: 0.92rem;
  max-width: 340px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--on-dark-muted);
}
.footer-bottom a { color: var(--on-dark-muted); }
.footer-bottom a:hover { color: var(--yellow); }

/* ---------- Mobile call bar ---------- */
.call-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  background: var(--yellow);
  color: var(--navy-900);
  font-weight: 800;
  font-size: 1.02rem;
  padding: 15px;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(11, 26, 41, 0.22);
}
.call-bar span { display: inline-flex; align-items: center; gap: 9px; }
.call-bar svg { width: 19px; height: 19px; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split .split-media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .section { padding: 68px 0; }
  .hero-inner { padding: 76px 0 66px; }
}

@media (max-width: 780px) {
  body { font-size: 16px; padding-bottom: 58px; }

  .topbar .container { justify-content: center; text-align: center; }
  .topbar-links:last-child { display: none; }

  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 84vw);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 84px 22px 30px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.22);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    gap: 2px;
    overflow-y: auto;
    z-index: 99;
  }
  .nav.is-open { transform: translateX(0); }
  .nav > a, .nav .dropdown > a { padding: 13px 14px; font-size: 1rem; }
  .nav .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    display: none;
    padding: 4px 0 4px 14px;
    min-width: 0;
  }
  .nav .dropdown.is-open .dropdown-menu { display: block; }
  .nav-cta { flex-direction: column; align-items: stretch; margin: 18px 0 0; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }

  .section { padding: 56px 0; }
  .section--tight { padding: 40px 0; }
  .section-head { margin-bottom: 36px; }

  .hero-inner { padding: 56px 0 52px; }
  .hero-stats { gap: 20px 32px; margin-top: 32px; padding-top: 24px; }
  .hero-stat strong { font-size: 1.45rem; }

  .cta-band { flex-direction: column; text-align: center; padding: 36px 26px; }
  .cta-band .btn-row { justify-content: center; }

  .form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { justify-content: center; text-align: center; }

  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .gallery-tabs { margin-bottom: 32px; }

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }

  .call-bar { display: block; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 26, 41, 0.55);
  z-index: 98;
}
.nav-overlay.is-open { display: block; }

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .btn:hover, .card:hover { transform: none; }
  .gallery-item:hover img { transform: none; }
}

/* Visible keyboard focus */
a:focus-visible, button:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}
