/* factory-layout-fingerprint:d03893e59eeaeb66f4d0 */
:root {
  --ink: #222322;
  --accent: #c37855;
  --signal: #8f4a2e;
  --paper: #ffffff;
  --surface: #eef1f2;
  --muted: #5a5b5a;
  --line: rgba(34, 35, 34, 0.12);
  --shadow: 0 24px 70px rgba(34, 35, 34, 0.08);
  --radius: 4px;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.65 Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Barlow Condensed", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 0.65em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1.15em;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}

.eyebrow {
  font-family: "Barlow Condensed", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: "Barlow Condensed", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: 0.2s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--accent);
  color: var(--paper);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
}

.btn-ghost {
  border-color: currentColor;
  background: transparent;
}

.topbar {
  background: var(--ink);
  color: white;
  font-size: 0.86rem;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}

.topbar strong {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-name {
  display: block;
  font-family: "Barlow Condensed", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  max-width: 220px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-weight: 600;
  font-size: 0.93rem;
}

.nav-actions {
  display: flex;
  gap: 10px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--surface);
  width: 46px;
  height: 46px;
  border-radius: 4px;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hero {
  overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 720px;
}

.hero-copy {
  padding: 90px 6vw 80px max(20px, calc((100vw - var(--max)) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-copy .lede {
  font-size: 1.19rem;
  max-width: 700px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.trust-row span {
  border-top: 2px solid var(--accent);
  padding-top: 9px;
  font-weight: 700;
  font-size: 0.88rem;
}

.hero-media {
  position: relative;
  min-height: 580px;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--surface), transparent 24%);
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  background: rgba(34, 35, 34, 0.92);
  color: white;
  padding: 20px;
  max-width: 300px;
  border-radius: 4px;
}

.hero-note strong {
  display: block;
  font: 700 1.2rem "Barlow Condensed", ui-sans-serif, system-ui, sans-serif;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.quickbar {
  background: var(--accent);
  color: white;
}

.quickbar .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quickbar div {
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.quickbar small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
  font-family: "Barlow Condensed", ui-sans-serif, system-ui, sans-serif;
}

.quickbar strong {
  font-size: 1.05rem;
}

.section {
  padding: 100px 0;
}

.section-tint {
  background: var(--surface);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 8vw;
  align-items: start;
}

.section-lede {
  font-size: 1.18rem;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
  box-shadow: 0 10px 34px rgba(34, 35, 34, 0.05);
}

.card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-family: "Barlow Condensed", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  margin-bottom: 28px;
}

.card a {
  font-weight: 700;
  color: var(--accent);
}

.photo-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 620px;
  background: var(--ink);
  color: white;
}

.photo-band-media img {
  height: 100%;
  object-fit: cover;
}

.photo-band-copy {
  padding: 80px 7vw;
  align-self: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 40px;
}

.step {
  background: var(--paper);
  padding: 26px;
}

.step b {
  display: block;
  color: var(--accent);
  font-family: "Barlow Condensed", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  margin-bottom: 36px;
  text-transform: uppercase;
}

.price-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  margin-top: 34px;
}

.price {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.price:last-child {
  border: 0;
}

.price strong {
  display: block;
  font: 800 2.2rem "Barlow Condensed", ui-sans-serif, system-ui, sans-serif;
  color: var(--accent);
}

.minimums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.minimum {
  background: var(--ink);
  color: #fff;
  padding: 28px;
  border-radius: 4px;
}

.minimum strong {
  font: 800 2.2rem "Barlow Condensed", ui-sans-serif, system-ui, sans-serif;
  color: var(--signal);
}

.quote-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  background: var(--ink);
  color: white;
  padding: clamp(30px, 5vw, 72px);
  border-radius: 4px;
}

.quote-copy {
  align-self: start;
  position: sticky;
  top: 120px;
}

.quote-copy li {
  margin-bottom: 10px;
}

.quote-form {
  background: #fff;
  color: var(--ink);
  padding: 30px;
  border-radius: 4px;
}

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

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.82rem;
  font-weight: 700;
  font-family: "Barlow Condensed", ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #bbc4ca;
  border-radius: 4px;
  padding: 13px;
  background: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.check input {
  margin-top: 5px;
}

.check input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.calculator {
  display: none;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.calculator.is-open {
  display: block;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.calc-result {
  margin-top: 16px;
  background: var(--surface);
  padding: 20px;
  border-radius: 4px;
}

.form-status {
  min-height: 24px;
  margin-top: 12px;
  font-weight: 700;
}

.content-hero {
  padding: 90px 0 70px;
  background: var(--surface);
}

.content-hero .wrap {
  max-width: 920px;
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
}

.breadcrumbs {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-family: "Barlow Condensed", ui-sans-serif, system-ui, sans-serif;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 60px;
  padding: 70px 0 100px;
}

.prose {
  max-width: 800px;
}

.prose h2 {
  margin-top: 1.35em;
}

.prose h3 {
  margin-top: 1.5em;
}

.prose ul {
  padding-left: 20px;
}

.prose li {
  margin-bottom: 10px;
}

.aside {
  align-self: start;
  position: sticky;
  top: 120px;
}

.aside-card {
  background: var(--surface);
  padding: 26px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.area-list,
.link-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.area-list a,
.link-list a {
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 4px;
  font-weight: 700;
  font-family: "Barlow Condensed", ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.gallery-grid figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.gallery-grid figure:hover img {
  transform: scale(1.03);
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
  font-family: "Barlow Condensed", ui-sans-serif, system-ui, sans-serif;
}

.cta-band {
  background: var(--accent);
  color: white;
  padding: 48px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
}

.cta-band h2 {
  max-width: 700px;
  margin: 0;
}

.site-footer {
  background: #222322;
  color: #dbe5ea;
  padding: 70px 0 100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
}

.footer-grid h3 {
  color: white;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
}

.footer-grid a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  margin-top: 50px;
  font-size: 0.83rem;
}

.mobile-actions {
  display: none;
}

.family-architectural .card {
  border-radius: 4px;
}

.family-architectural .btn {
  border-radius: 4px;
}

.brand-mark,
.footer-mark {
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
}

.footer-mark {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
}

.content-visual {
  margin: 0 0 42px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}

.content-visual img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.content-visual figcaption {
  padding: 13px 18px;
  color: var(--muted);
  font-size: 0.78rem;
}

.process-showcase {
  padding: 90px 0;
  background: var(--ink);
  color: #fff;
}

.process-showcase-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.process-video-card {
  position: relative;
  width: min(100%, 430px);
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  overflow: hidden;
  background: #0a1117;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.process-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 680px;
  object-fit: cover;
}

.process-video-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 4px;
  background: rgba(10, 17, 23, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  backdrop-filter: blur(10px);
  font-family: "Barlow Condensed", ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.process-explainer .eyebrow {
  color: var(--accent);
}

.process-explainer p,
.process-explainer li {
  color: #dbe5ea;
}

.process-explainer ol {
  padding-left: 22px;
  margin: 25px 0 34px;
}

.process-explainer li {
  padding: 6px 0;
}

.map-section {
  background: var(--surface);
}

.map-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.map-heading > div {
  max-width: 820px;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 20px;
}

.map-frame {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.location-cards {
  display: grid;
  gap: 12px;
  align-content: start;
}

.location-cards article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 22px;
}

.location-cards article > span {
  display: block;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Barlow Condensed", ui-sans-serif, system-ui, sans-serif;
}

.location-cards h3 {
  margin: 8px 0;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.location-actions a {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .brand {
    min-width: 0;
  }

  .hero-grid,
  .photo-band,
  .intro-grid,
  .quote-shell,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-copy {
    padding: 70px 20px;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-media:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.25), transparent);
  }

  .quickbar .wrap {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .price-table {
    grid-template-columns: 1fr 1fr;
  }

  .quote-copy,
  .aside {
    position: static;
  }

  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .area-list,
  .link-list,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-showcase-grid,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .process-video-card {
    width: min(100%, 390px);
  }

  .map-heading {
    align-items: start;
  }

  .map-frame {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 66px;
  }

  .topbar .wrap {
    justify-content: center;
  }

  .topbar span:last-child {
    display: none;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand-name {
    font-size: 0.86rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .nav-actions {
    display: none;
  }

  .hero-copy {
    padding: 56px 20px;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 14vw, 4.3rem);
  }

  .hero-media {
    min-height: 320px;
  }

  .quickbar .wrap,
  .card-grid,
  .steps,
  .price-table,
  .minimums,
  .form-grid,
  .calc-grid,
  .area-list,
  .link-list,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quickbar div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .section {
    padding: 70px 0;
  }

  .photo-band-copy {
    padding: 60px 20px;
  }

  .quote-shell {
    padding: 22px;
    border-radius: 4px;
  }

  .quote-form {
    padding: 20px;
  }

  .content-hero {
    padding: 60px 0 48px;
  }

  .content-layout {
    padding: 50px 0 80px;
  }

  .cta-band {
    padding: 28px;
    display: block;
  }

  .cta-band .btn {
    margin-top: 20px;
  }

  .footer-bottom {
    display: block;
  }

  .mobile-actions {
    position: fixed;
    z-index: 50;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.13);
  }

  .mobile-actions a {
    padding: 18px;
    text-align: center;
    font-weight: 700;
    font-family: "Barlow Condensed", ui-sans-serif, system-ui, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .mobile-actions a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
  }

  .mobile-actions a:last-child {
    background: var(--accent);
    color: var(--paper);
  }

  .process-showcase {
    padding: 64px 0;
  }

  .process-video-card {
    width: min(88vw, 340px);
    border-radius: 4px;
  }

  .map-heading {
    display: block;
  }

  .map-heading .btn {
    margin-top: 14px;
  }

  .map-frame {
    min-height: 360px;
    border-radius: 4px;
  }

  .content-visual {
    border-radius: 4px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .hero-copy {
    padding: 48px 16px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .hero-copy .lede {
    font-size: 1rem;
  }

  .section {
    padding: 56px 0;
  }

  .card {
    padding: 20px;
  }

  .card-grid {
    gap: 12px;
  }

  .quote-shell {
    padding: 16px;
  }

  .quote-form {
    padding: 16px;
  }

  .form-grid {
    gap: 12px;
  }

  .field input,
  .field select,
  .field textarea {
    padding: 11px;
  }

  .gallery-grid {
    gap: 8px;
  }

  .gallery-grid figure {
    border-radius: 4px;
  }

  .area-list a,
  .link-list a {
    padding: 14px;
    font-size: 0.9rem;
  }

  .footer-grid {
    gap: 32px;
  }

  .mobile-actions a {
    padding: 14px;
    font-size: 0.85rem;
  }
}

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

  .gallery-grid figure:hover img {
    transform: none;
  }

  .btn:hover,
  .btn-primary:hover {
    transform: none;
    filter: none;
  }
}

.link-list > a,
.area-list > a {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .prose p > .btn {
    display: flex;
    width: 100%;
    margin: 0 0 12px;
  }

  .prose p > .btn + a {
    display: block;
    width: 100%;
    margin-top: 12px;
    overflow-wrap: anywhere;
  }
}

/* factory-mobile-min-width-guard-v1 */
@media (max-width: 640px) {
  .content-layout,
  .content-layout > *,
  .cta-band,
  .cta-band > *,
  .cta-band form,
  .cta-band .form-grid,
  .cta-band .field {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  .cf-turnstile {
    max-width: 100%;
    overflow: hidden;
  }
}

/* factory-mobile-min-width-guard-v2 */
@media (max-width: 640px) {
  html,
  body,
  main,
  .site-header,
  .site-header .wrap,
  .nav-shell,
  .mobile-actions,
  .process-video-section,
  .process-video-container,
  .process-video-container video,
  .content-layout,
  .content-layout > *,
  .cta-band,
  .cta-band > *,
  .cta-band form,
  .cta-band .form-grid,
  .cta-band .field {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  .site-header,
  .mobile-actions {
    width: 100% !important;
  }
  .process-video-container video {
    display: block;
    width: 100% !important;
    height: auto;
  }
  .cf-turnstile {
    max-width: 100%;
    overflow: hidden;
  }
}


/* fleet-media-density-20260816 */
.list-thumb,
.link-thumb,
.card-thumb {
  display: block;
  margin: 0 0 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: var(--warm);
}

.list-thumb img,
.link-thumb img,
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.link-list a:hover .list-thumb img,
.link-list a:hover .link-thumb img,
.link-list a:hover .card-thumb img {
  transform: scale(1.035);
}

.media-grid figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
}

.media-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-photo-ribbon {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 0.9fr));
  gap: 12px;
  margin: clamp(42px, 6vw, 68px) 0 0;
}

.page-photo-ribbon figure {
  position: relative;
  min-width: 0;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.page-photo-ribbon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.page-photo-ribbon figure:hover img {
  transform: scale(1.025);
}

.page-photo-ribbon figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(10, 24, 34, 0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

@media (max-width: 760px) {
  .page-photo-ribbon {
    grid-template-columns: 1fr;
  }

  .page-photo-ribbon figure {
    min-height: 240px;
  }
}
