/* =========================================================
   GAGS — Design System
   Colour: navy + red pulled from the GAGS mark, warm paper
   ground. Type: Fraunces (display, craftsmanship) + Work Sans
   (body/UI, clean and legible for a catalogue).
   Signature: viewfinder "frame corners" that snap onto every
   product photo on hover/focus — a nod to door + window framing.
   ========================================================= */

:root {
  --navy: #14335E;
  --navy-dark: #0B2038;
  --navy-soft: #EAF0F8;
  --red: #C1272D;
  --red-dark: #8F1D22;
  --paper: #FAFAF8;
  --paper-alt: #F3F1EC;
  --ink: #1B2430;
  --ink-soft: #5B6B7F;
  --border: #E4E1DA;
  --white: #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-s: 4px;
  --radius-m: 10px;
  --shadow-card: 0 1px 3px rgba(20, 51, 94, 0.08), 0 12px 28px -14px rgba(20, 51, 94, 0.18);
  --shadow-card-hover: 0 4px 10px rgba(20, 51, 94, 0.10), 0 24px 44px -16px rgba(20, 51, 94, 0.28);
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 .5em;
  line-height: 1.15;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

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

.section {
  padding: 64px 0;
}

.section--tight {
  padding: 40px 0;
}

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.center {
  text-align: center;
}

.lede {
  max-width: 640px;
}

.center .lede {
  margin-left: auto;
  margin-right: auto;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 26px;
  border-radius: var(--radius-s);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  min-height: 48px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -10px rgba(193, 39, 45, .6);
}

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

.btn-secondary:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -10px rgba(20, 51, 94, .6);
}

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

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

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

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

.btn-block {
  width: 100%;
}

.btn[disabled] {
  opacity: .6;
  cursor: not-allowed;
  transform: none !important;
}

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

.center .cta-row {
  justify-content: center;
}

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

.header-top {
  display: flex;
  justify-content: center;
  padding: 22px 24px 10px;
}

.header-top a {
  display: inline-block;
}

.logo-img {
  height: 94px;
  width: auto;
}

.main-nav {
  border-top: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-list>li {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 14px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--red);
  border-color: var(--red);
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  border-radius: var(--radius-s);
  padding: 10px 18px;
  margin-left: 6px;
  border-bottom: none !important;
}

.nav-cta:hover {
  background: var(--red-dark);
  color: var(--white) !important;
}

.nav-call {
  background: var(--navy);
  color: var(--white) !important;
  border-radius: var(--radius-s);
  padding: 10px 18px;
  border-bottom: none !important;
}

.nav-call:hover {
  background: var(--navy-dark);
  color: var(--white) !important;
}

.caret {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform .15s;
}

.has-dropdown:hover .caret,
.has-dropdown.is-open .caret {
  transform: rotate(225deg);
  margin-top: 3px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card-hover);
  min-width: 260px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 50;
}

@media (min-width:901px) {

  .has-dropdown:hover .dropdown,
  .has-dropdown.is-open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-s);
  font-weight: 500;
  font-size: .92rem;
  color: var(--ink);
}

.dropdown a:hover {
  background: var(--navy-soft);
  color: var(--navy);
}

.dropdown .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex: none;
}

/* mobile nav */
.nav-toggle {
  display: none;
}

@media (max-width:900px) {
  .header-top {
    padding: 16px 20px 8px;
  }

  .logo-img {
    height: 108px;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: none;
    border: none;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--navy);
    font-size: .95rem;
    cursor: pointer;
  }

  .nav-toggle .bars {
    width: 20px;
    height: 14px;
    position: relative;
  }

  .nav-toggle .bars span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--navy);
  }

  .nav-toggle .bars span:nth-child(1) {
    top: 0;
  }

  .nav-toggle .bars span:nth-child(2) {
    top: 6px;
  }

  .nav-toggle .bars span:nth-child(3) {
    top: 12px;
  }

  .nav-inner {
    display: block;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-bottom: 12px;
  }

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

  .nav-link {
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 14px 20px;
    justify-content: space-between;
  }

  .nav-cta,
  .nav-call {
    margin: 10px 20px 0;
    text-align: center;
    justify-content: center;
  }

  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    display: none;
    width: 100%;
    padding: 0 0 0 16px;
    background: var(--paper-alt);
    border-radius: 0;
  }

  .has-dropdown.is-open .dropdown {
    display: block;
  }

  .dropdown a {
    padding: 12px 20px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 32, 56, .86) 0%, rgba(11, 32, 56, .75) 55%, rgba(11, 32, 56, .85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 56px 24px 64px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero-content h1 {
  color: var(--white);
  max-width: 760px;
}

.hero-content p {
  color: rgba(255, 255, 255, .88);
  font-size: 1.1rem;
  max-width: 560px;
}

.hero-content .eyebrow {
  color: #FFD9C9;
}

/* ---------- Category / feature cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

@media (max-width:640px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.cat-card {
  background: var(--white);
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s ease, transform .25s ease;
  display: flex;
  flex-direction: column;
}

.cat-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.cat-card .cat-media {
  display: block;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper-alt);
}

.cat-card .cat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.cat-card:hover .cat-media img {
  transform: scale(1.06);
}

.cat-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.cat-body h3 {
  margin: 0;
}

.cat-body p {
  margin: 0;
  font-size: .95rem;
  flex: 1;
}

.cat-body .btn {
  align-self: flex-start;
  margin-top: 4px;
}

/* ---------- Product grid (catalogue pages) ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width:980px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s ease, transform .25s ease;
}

.product-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.product-media {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--paper-alt);
  cursor: zoom-in;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-media:hover img {
  transform: scale(1.07);
}

/* signature: viewfinder corners on every product image */
.product-media::before,
.product-media::after,
.product-media .corner-tl,
.product-media .corner-tr,
.product-media .corner-bl,
.product-media .corner-br {
  content: '';
}

.product-media .corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 0 solid var(--red);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}

.product-media:hover .corner,
.product-media:focus-within .corner {
  opacity: 1;
}

.corner-tl {
  top: 10px;
  left: 10px;
  border-top-width: 3px;
  border-left-width: 3px;
  transform: translate(6px, 6px);
}

.corner-tr {
  top: 10px;
  right: 10px;
  border-top-width: 3px;
  border-right-width: 3px;
  transform: translate(-6px, 6px);
}

.corner-bl {
  bottom: 10px;
  left: 10px;
  border-bottom-width: 3px;
  border-left-width: 3px;
  transform: translate(6px, -6px);
}

.corner-br {
  bottom: 10px;
  right: 10px;
  border-bottom-width: 3px;
  border-right-width: 3px;
  transform: translate(-6px, -6px);
}

.product-media:hover .corner,
.product-media:focus-within .corner {
  transform: translate(0, 0);
}

.product-body {
  padding: 18px 20px 22px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0 0 2px;
}

.product-code {
  font-size: .8rem;
  color: var(--ink-soft);
  letter-spacing: .5px;
  margin: 0 0 12px;
}

.product-desc {
  font-size: .9rem;
  margin: 0 0 14px;
  display: none;
}

.quote-btn {
  width: 100%;
  margin-top: 14px;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 32, 56, .94);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .35);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  transition: background .15s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, .24);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, .85);
  font-size: .9rem;
}

@media (max-width:640px) {

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
  }
}

/* ---------- Why-us icons ---------- */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

@media (max-width:900px) {
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:520px) {
  .icon-grid {
    grid-template-columns: 1fr;
  }
}

.icon-item {
  text-align: center;
  padding: 26px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
}

.icon-badge {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--navy-soft);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.icon-item p {
  font-size: .9rem;
  margin: 0;
}

/* ---------- Masonry gallery ---------- */
.masonry {
  columns: 4 240px;
  column-gap: 10px;
}

@media (max-width:900px) {
  .masonry {
    columns: 3 200px;
  }
}

@media (max-width:640px) {
  .masonry {
    columns: 2 150px;
    column-gap: 8px;
  }
}

.masonry-item {
  display: block;
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: var(--radius-s);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: zoom-in;
  position: relative;
  line-height: 0;
}

.masonry-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  font-size: .82rem;
  color: var(--ink-soft);
  padding: 16px 0 0;
}

.breadcrumbs a {
  color: var(--ink-soft);
}

.breadcrumbs a:hover {
  color: var(--red);
}

.breadcrumbs .sep {
  margin: 0 6px;
}

.breadcrumbs .current {
  color: var(--navy);
  font-weight: 600;
}

/* ---------- Local SEO / service areas ---------- */
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.area-pill {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 32, 56, .72), rgba(11, 32, 56, .72));
  z-index: 1;
}

.cta-band-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-band-content h2 {
  color: var(--white);
}

.cta-band-content p {
  color: rgba(255, 255, 255, .9);
}

/* ---------- Form ---------- */
.quote-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 32px;
  box-shadow: var(--shadow-card);
  max-width: 640px;
}

.form-row {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-weight: 600;
  font-size: .88rem;
  color: var(--navy);
}

.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-s);
  background: var(--paper);
  color: var(--ink);
  transition: border-color .15s;
}

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

.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width:560px) {
  .form-two {
    grid-template-columns: 1fr;
  }
}

.form-note {
  font-size: .85rem;
  color: var(--ink-soft);
  margin-top: 14px;
}

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-s);
  font-size: .9rem;
  display: none;
}

.form-status.is-success {
  display: block;
  background: #E8F5E9;
  color: #1E5C22;
  border: 1px solid #BFE3C2;
}

.form-status.is-error {
  display: block;
  background: #FDEAEA;
  color: var(--red-dark);
  border: 1px solid #F3C6C6;
}

.thankyou-panel {
  text-align: center;
  padding: 60px 24px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .8);
  padding: 56px 0 26px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

@media (max-width:760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 14px;
}

.footer-grid p {
  color: rgba(255, 255, 255, .68);
  font-size: .9rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .75);
  font-size: .9rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 22px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
  transition: transform .18s ease;
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float i {
  color: #FFFFFF;
  font-size: 30px;
}

@media (max-width:640px) {
  .wa-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }

  .wa-float i {
    font-size: 26px;
  }
}

/* ---------- Page hero (catalogue pages, image-backed, shorter than home hero) ---------- */
.hero--inner {
  min-height: 300px;
}

.hero--inner .hero-content {
  padding: 36px 24px 40px;
}

.hero--inner h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}

.hero--inner p {
  font-size: 1rem;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--navy);
  padding: 16px 0;
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 34px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .92);
  font-size: .86rem;
  font-weight: 600;
}

.trust-item i {
  color: var(--red);
  font-size: 1rem;
  width: 18px;
  text-align: center;
}

@media (max-width:640px) {
  .trust-strip .container {
    gap: 10px 20px;
    justify-content: flex-start;
  }

  .trust-item {
    font-size: .8rem;
  }
}

/* ---------- Font Awesome spacing helpers ---------- */
.btn i,
.nav-link i,
.quote-btn i {
  font-size: .92em;
}

.btn i {
  margin-right: 2px;
}

.icon-item .icon-badge i {
  font-size: 1.3rem;
}

/* utility */
.mt-0 {
  margin-top: 0;
}

.text-white {
  color: var(--white);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.window-feature {
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 48px;
}

@media (max-width:760px) {
  .window-feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.quote-layout{ display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:start; }
@media (max-width:760px){
  .quote-layout{ grid-template-columns:1fr; gap:28px; }
}