:root {
  --black: #080a09;
  --black-2: #111412;
  --black-3: #191c1a;
  --yellow: #ffc400;
  --yellow-2: #e5ae00;
  --white: #fff;
  --paper: #f7f7f5;
  --ink: #151715;
  --muted: #646964;
  --line: #dedfdb;
  --green: #18743c;
  --red: #a71d19;
  --shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
  font-family: Arial, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  line-height: 1.5;
  background: var(--paper);
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(1180px, calc(100% - 36px));
  margin: auto;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  background: var(--yellow);
  padding: 12px;
  color: #000;
}
.skip-link:focus {
  left: 8px;
}
.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;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(8, 10, 9, 0.98);
  color: #fff;
  border-bottom: 1px solid #292c29;
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-style: italic;
  font-weight: 900;
  line-height: 0.9;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 48px;
  border-radius: 6px;
  background: linear-gradient(145deg, #ffd321, #e9a800);
  color: #fff;
  font-size: 2rem;
  text-shadow: 1px 2px 0 #795b00;
  transform: skew(-10deg);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.22);
}
.brand-name {
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}
.brand-name b {
  color: var(--yellow);
}
.brand-name small {
  display: block;
  margin-top: 7px;
  font-size: 0.43rem;
  font-style: normal;
  letter-spacing: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
.main-nav > a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 15px 0;
}
.main-nav > a:not(.header-contact):after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: 0.2s;
}
.main-nav > a:hover:after,
.main-nav > a.active:after {
  transform: scaleX(1);
}
.main-nav .header-contact {
  padding: 13px 18px;
  background: var(--yellow);
  color: #090909;
  border-radius: 5px;
}
.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 0;
  background: transparent;
}
.menu-button span:not(.sr-only) {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: #fff;
  border-radius: 2px;
}
.hero {
  background:
    radial-gradient(circle at 20% 35%, #202522 0, transparent 34%), var(--black);
  color: #fff;
  padding: 0 0 34px;
}
.hero-main {
  display: grid;
  grid-template-columns: minmax(350px, 0.76fr) minmax(0, 1.35fr);
  min-height: 520px;
}
.hero-copy {
  padding: 66px 44px 36px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.1vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0 0 22px;
}
.accent {
  color: var(--yellow);
}
.hero p {
  font-size: 1.08rem;
  max-width: 530px;
  color: #e8e9e7;
  margin: 0;
}
.hero p strong {
  color: var(--yellow);
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 2px solid var(--yellow);
  border-radius: 5px;
  background: var(--yellow);
  color: #090a09;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.88rem;
  cursor: pointer;
}
.btn:hover {
  background: var(--yellow-2);
  border-color: var(--yellow-2);
}
.btn.ghost,
.btn.secondary {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}
.btn.dark {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}
.btn.danger {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.btn.small {
  min-height: 40px;
  padding: 8px 13px;
  font-size: 0.75rem;
}
.carousel {
  position: relative;
  min-height: 500px;
  margin-top: 0;
  border-radius: 0 0 0 12px;
  overflow: hidden;
  background: #222;
}
.slides,
.slide {
  height: 100%;
}
.slide {
  display: none;
  background-position: center;
  background-size: cover;
}
.slide.active {
  display: block;
}
.arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
}
.arrow.prev {
  left: 14px;
}
.arrow.next {
  right: 14px;
}
.carousel-thumbs {
  position: absolute;
  z-index: 3;
  left: 34px;
  right: 34px;
  bottom: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.carousel-thumb {
  height: 72px;
  border: 2px solid #fff;
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}
.carousel-thumb.active {
  border-color: var(--yellow);
}
.carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 0;
}
.trust-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  padding: 24px 24px 12px 0;
  color: #fff;
}
.trust-item + .trust-item {
  padding-left: 24px;
  border-left: 1px solid #353835;
}
.trust-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 1.4rem;
}
.trust-item strong {
  display: block;
  font-size: 0.75rem;
}
.trust-item span {
  display: block;
  color: #cacdca;
  font-size: 0.76rem;
}
.section {
  padding: 68px 0;
}
.section-white {
  background: #fff;
}
.section-soft {
  background: #efefec;
}
.eyebrow {
  display: block;
  color: #8a6800;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.section h2,
.page-hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ink);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  margin-bottom: 28px;
}
.section-heading a {
  font-weight: 800;
}
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.listing-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}
.listing-card > img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.listing-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 19px;
}
.listing-content h3 {
  font-size: 1.18rem;
  line-height: 1.12;
  margin: 10px 0 4px;
  text-transform: uppercase;
}
.listing-brand {
  margin: 0 0 8px;
  color: #353a36;
  font-weight: 800;
}
.listing-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 10px;
}
.price {
  font-size: 1.4rem;
  font-weight: 900;
  color: #c58d00;
  margin: 6px 0 16px;
}
.listing-content .btn {
  margin-top: auto;
}
.status {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 9px;
  border-radius: 4px;
  background: #e5f5e9;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}
.status.sold {
  background: #eee;
  color: #555;
}
.empty-state {
  text-align: center;
  padding: 44px 24px;
  border: 2px dashed #c8cac6;
  border-radius: 8px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cards article,
.panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}
.cards article > b {
  color: #b98500;
  font-size: 1.7rem;
}
.page-hero {
  padding: 52px 0;
  background: var(--black);
  color: #fff;
}
.page-hero h1 {
  color: #fff;
}
.page-hero p {
  font-size: 1.08rem;
  color: #d1d4d1;
  margin-bottom: 0;
}
.filter-form {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr)) auto;
  gap: 9px;
  align-items: end;
  padding: 17px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 30px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}
input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #bfc2bd;
  border-radius: 5px;
  padding: 10px 11px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
textarea {
  min-height: 135px;
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(255, 196, 0, 0.3);
  border-color: #a67b00;
}
.breadcrumb {
  font-size: 0.82rem;
  color: #6e736e;
  margin-bottom: 20px;
}
.breadcrumb a {
  font-weight: 800;
}
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 30px;
}
.main-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  background: #ddd;
}
.thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 9px;
}
.thumbnail {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}
.thumbnail:hover,
.thumbnail:focus {
  border-color: var(--yellow);
}
.thumbnail img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}
.detail-card {
  align-self: start;
  position: sticky;
  top: 106px;
  padding: 28px;
  border-left: 1px solid var(--line);
}
.detail-card h1 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 14px 0;
}
.detail-card .price {
  font-size: 2rem;
  color: #d99c00;
}
.detail-card .btn {
  width: 100%;
  margin-top: 9px;
}
.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin: 30px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.specs div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.specs dt {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 800;
}
.specs dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}
.prose {
  max-width: 830px;
}
.prose h2,
.prose h3 {
  margin-top: 32px;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 55px;
  align-items: center;
}
.founder-photo {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.about-copy p {
  font-size: 1.08rem;
  color: #454a45;
}
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 25px;
}
.about-point {
  border-left: 4px solid var(--yellow);
  padding: 10px 14px;
  background: #fff;
  font-weight: 800;
}
.sell-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.58)),
    url("../images/mural-4.jpeg") center/cover;
}
.steps {
  counter-reset: steps;
}
.steps article {
  position: relative;
  padding-left: 72px;
}
.steps article:before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 22px;
  top: 24px;
  font-size: 1.8rem;
  font-weight: 900;
  color: #b98500;
}
.alert {
  padding: 14px 16px;
  border-radius: 5px;
  margin-bottom: 20px;
  background: #e8f5eb;
  color: #185b35;
}
.alert.error {
  background: #fff0ef;
  color: #8f1d15;
}
.site-footer {
  padding-top: 46px;
  background: #080a09;
  color: #d7d9d7;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 38px;
}
.site-footer a {
  display: block;
  color: #fff;
  margin: 7px 0;
}
.site-footer .brand {
  display: inline-flex;
}
.footer-bottom {
  margin-top: 36px;
  padding: 18px 0;
  border-top: 1px solid #30332f;
  color: #999e99;
  font-size: 0.82rem;
}
.admin-bar {
  background: var(--black);
  color: #fff;
  border-bottom: 4px solid var(--yellow);
}
.admin-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}
.admin-bar nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.admin-bar a {
  padding: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}
.admin-main {
  padding: 38px 0 70px;
  background: #f4f4f1;
  min-height: calc(100vh - 72px);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat {
  padding: 22px;
  border-top: 5px solid var(--yellow);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.stat strong {
  display: block;
  font-size: 2rem;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 7px;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
th,
td {
  text-align: left;
  padding: 13px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
th {
  background: #151815;
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.table-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.table-actions form {
  margin: 0;
}
.equipment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.equipment-form .full {
  grid-column: 1/-1;
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkbox input {
  width: 22px;
  min-height: 22px;
}
.photo-admin-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.photo-admin {
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.photo-admin img {
  aspect-ratio: 1;
  object-fit: cover;
}
.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
  background: radial-gradient(circle at center, #252a25, var(--black));
}
.login-card {
  width: min(440px, 100%);
  padding: 34px;
  border-top: 6px solid var(--yellow);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.login-card .brand {
  display: inline-flex;
  margin-bottom: 25px;
  background: #0a0b0a;
  padding: 12px;
}
.login-card .btn {
  width: 100%;
  margin-top: 12px;
}
.muted {
  color: var(--muted);
}
code {
  font-size: 0.9em;
}
@media (max-width: 980px) {
  .main-nav {
    gap: 14px;
  }
  .hero-main {
    grid-template-columns: 1fr 1.1fr;
  }
  .hero-copy {
    padding-right: 28px;
  }
  .filter-form {
    grid-template-columns: repeat(3, 1fr);
  }
  .filter-form .btn {
    width: 100%;
  }
}
@media (max-width: 768px) {
  :root {
    font-size: 16px;
  }
  .container {
    width: min(calc(100% - 28px), 1180px);
  }
  .site-header {
    position: relative;
  }
  .nav-wrap {
    min-height: 70px;
  }
  .brand-mark {
    width: 37px;
    height: 41px;
    font-size: 1.7rem;
  }
  .brand-name {
    font-size: 1.18rem;
  }
  .menu-button {
    display: block;
  }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    z-index: 20;
    padding: 14px;
    background: #0a0c0b;
    border-top: 1px solid #30332f;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav > a {
    padding: 15px;
  }
  .main-nav .header-contact {
    text-align: center;
    margin-top: 8px;
  }
  .hero-main {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 52px 0 32px;
  }
  .hero h1 {
    font-size: clamp(2.45rem, 9.5vw, 4rem);
  }
  .carousel {
    min-height: 380px;
    border-radius: 8px;
  }
  .carousel-thumbs {
    left: 12px;
    right: 12px;
  }
  .trust {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item,
  .trust-item + .trust-item {
    padding: 22px 10px;
    border-left: 0;
    border-top: 1px solid #30332f;
  }
  .listing-grid,
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .detail-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .detail-card {
    position: static;
    border-left: 0;
    padding: 20px 0;
  }
  .about-grid {
    gap: 30px;
  }
  .founder-photo {
    max-height: 600px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .photo-admin-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 500px) {
  .container {
    width: min(calc(100% - 22px), 1180px);
  }
  .section {
    padding: 48px 0;
  }
  .hero-copy {
    padding-top: 42px;
  }
  .hero h1 {
    font-size: 2.55rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .actions .btn {
    width: 100%;
  }
  .carousel {
    min-height: 300px;
  }
  .carousel-thumbs {
    bottom: 8px;
    gap: 4px;
  }
  .carousel-thumb {
    height: 52px;
  }
  .trust-item {
    grid-template-columns: 38px 1fr;
    gap: 8px;
  }
  .trust-icon {
    width: 37px;
    height: 37px;
    font-size: 1rem;
  }
  .listing-grid,
  .cards,
  .footer-grid,
  .equipment-form {
    grid-template-columns: 1fr;
  }
  .filter-form {
    grid-template-columns: 1fr 1fr;
    padding: 12px;
  }
  .filter-form .btn {
    grid-column: 1/-1;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .specs {
    grid-template-columns: 1fr;
  }
  .thumbnails {
    grid-template-columns: repeat(4, 1fr);
  }
  .about-points {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .photo-admin-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .equipment-form .full {
    grid-column: auto;
  }
}
@media (min-width: 981px) {
  .hero-main {
    grid-template-columns: minmax(390px, 0.82fr) minmax(0, 1.28fr);
  }
  .hero h1 {
    font-size: clamp(2.4rem, 3.45vw, 3.55rem);
  }
}
@media (max-width: 768px) {
  .admin-bar .container {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .admin-bar nav {
    width: 100%;
  }
}

/* Approved CARRETASC mockup alignment */
@media (min-width: 981px) {
  .nav-wrap {
    min-height: 70px;
  }
  .brand-mark {
    width: 39px;
    height: 43px;
    font-size: 1.75rem;
  }
  .brand-name {
    font-size: 1.28rem;
  }
  .hero {
    background:
      linear-gradient(
        90deg,
        rgba(5, 7, 6, 0.96) 0%,
        rgba(5, 7, 6, 0.88) 34%,
        rgba(5, 7, 6, 0) 55%
      ),
      url("../images/home-gallery-09.jpeg") left center/60% auto no-repeat,
      var(--black);
    padding: 0;
  }
  .hero-main {
    grid-template-columns: 36% 64%;
    grid-template-rows: 350px 92px;
    min-height: 0;
  }
  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    padding: 40px 34px 16px 0;
  }
  .hero h1 {
    font-size: 2.18rem;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 18px;
  }
  .hero p {
    font-size: 0.91rem;
  }
  .hero .actions {
    margin-top: 23px;
    gap: 10px;
  }
  .hero .btn {
    min-height: 45px;
    padding: 10px 18px;
    font-size: 0.74rem;
  }
  .carousel {
    grid-column: 2;
    grid-row: 1/3;
    min-height: 0;
    height: 442px;
    border-radius: 0 0 0 10px;
  }
  .carousel-thumbs {
    left: 34px;
    right: 34px;
    bottom: 12px;
  }
  .carousel-thumb {
    height: 66px;
  }
  .trust {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: repeat(4, 1fr);
    align-self: stretch;
  }
  .trust-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
    padding: 11px 7px 8px;
    text-align: center;
  }
  .trust-item + .trust-item {
    padding-left: 7px;
  }
  .trust-icon {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 0;
    stroke: #fff;
    stroke-width: 2.2;
    fill: none;
  }
  .trust-item strong {
    font-size: 0.58rem;
    line-height: 1.15;
  }
  .trust-item span {
    font-size: 0.57rem;
    line-height: 1.2;
  }
  .featured-grid,
  .inventory-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }
  .featured-grid .listing-content,
  .inventory-grid .listing-content {
    padding: 12px;
  }
  .featured-grid .listing-content h3,
  .inventory-grid .listing-content h3 {
    font-size: 0.85rem;
  }
  .featured-grid .listing-brand,
  .inventory-grid .listing-brand,
  .featured-grid .listing-meta,
  .inventory-grid .listing-meta {
    font-size: 0.72rem;
  }
  .featured-grid .price,
  .inventory-grid .price {
    font-size: 1rem;
    margin: 4px 0 10px;
  }
  .featured-grid .btn,
  .inventory-grid .btn {
    min-height: 36px;
    padding: 7px;
    font-size: 0.68rem;
  }
}
.inventory-hero {
  background: #fff;
  color: var(--ink);
  padding: 28px 0 12px;
}
.inventory-hero h1 {
  color: var(--ink);
  font-size: 1.7rem;
}
.inventory-hero p {
  color: var(--ink);
  font-size: 0.92rem;
  margin-top: 4px;
}
.inventory-section {
  padding-top: 0;
}
.inventory-section .filter-form {
  margin-top: 0;
}
@media (max-width: 980px) {
  .trust-icon {
    stroke: #fff;
    stroke-width: 2.2;
    fill: none;
    border: 0;
    border-radius: 0;
  }
  .featured-grid,
  .inventory-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .hero {
    background:
      linear-gradient(rgba(5, 7, 6, 0.78), rgba(5, 7, 6, 0.92)),
      url("../images/home-gallery-06.jpeg") center top/cover no-repeat;
    padding-bottom: 0;
  }
  .hero-main {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 260px auto;
    min-height: 0;
  }
  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    padding: 38px 6px 24px;
  }
  .hero h1 {
    font-size: 2.05rem;
    line-height: 1.08;
  }
  .hero p {
    font-size: 0.84rem;
    max-width: 365px;
  }
  .hero .actions {
    margin-top: 20px;
  }
  .hero .btn {
    min-height: 43px;
  }
  .carousel {
    grid-column: 1;
    grid-row: 2;
    min-height: 0;
    height: 260px;
    margin: 0 6px;
    border-radius: 8px;
  }
  .carousel-thumbs {
    left: 10px;
    right: 10px;
    bottom: 7px;
  }
  .carousel-thumb {
    height: 49px;
  }
  .arrow {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
  .trust {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: 1fr 1fr;
    padding: 12px 6px 18px;
  }
  .trust-item,
  .trust-item + .trust-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 9px;
    padding: 12px 8px;
    border: 0;
    text-align: left;
  }
  .trust-icon {
    width: 35px;
    height: 35px;
  }
  .trust-item strong {
    font-size: 0.65rem;
  }
  .trust-item span {
    font-size: 0.62rem;
  }
  .featured-grid,
  .inventory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .inventory-hero {
    padding: 26px 0 12px;
  }
  .inventory-hero h1 {
    font-size: 1.55rem;
  }
}
@media (max-width: 500px) {
  .hero-main {
    grid-template-rows: auto 238px auto;
  }
  .hero-copy {
    padding-top: 34px;
  }
  .hero h1 {
    font-size: 1.92rem;
  }
  .carousel {
    height: 238px;
  }
  .featured-grid,
  .inventory-grid {
    grid-template-columns: 1fr;
  }
  .inventory-hero h1 {
    font-size: 1.42rem;
  }
  .inventory-section .filter-form {
    margin-top: 0;
  }
}
@media (max-width: 500px) {
  .hero-main {
    grid-template-rows: auto 190px auto;
  }
  .hero-copy {
    padding: 26px 6px 18px;
  }
  .hero h1 {
    font-size: 1.82rem;
    margin-bottom: 13px;
  }
  .hero p {
    font-size: 0.8rem;
  }
  .hero .actions {
    margin-top: 15px;
    gap: 9px;
  }
  .hero .btn {
    min-height: 40px;
    padding: 8px 14px;
  }
  .carousel {
    height: 190px;
  }
  .carousel-thumb {
    height: 39px;
  }
  .trust {
    padding: 7px 6px 12px;
  }
  .trust-item,
  .trust-item + .trust-item {
    grid-template-columns: 32px 1fr;
    gap: 7px;
    padding: 8px 6px;
  }
  .trust-icon {
    width: 30px;
    height: 30px;
  }
  .trust-item strong {
    font-size: 0.59rem;
  }
  .trust-item span {
    font-size: 0.57rem;
  }
}

.about-hero {
  padding: 42px 0;
}
.about-introduction {
  padding: 48px 0;
}
.about-intro-copy {
  max-width: 900px;
  margin: 0 auto;
}
.about-intro-copy p {
  font-size: 1.22rem;
  line-height: 1.65;
  margin: 0;
}
.about-intro-copy p + p {
  margin-top: 18px;
}
.founder-section {
  border-top: 1px solid var(--line);
}
.founder-section .about-copy h2 {
  font-size: clamp(1.85rem, 3.15vw, 2.85rem);
  line-height: 1.08;
  margin: 8px 0 24px;
}
@media (max-width: 768px) {
  .about-hero {
    padding: 34px 0;
  }
  .about-introduction {
    padding: 36px 0;
  }
  .about-intro-copy p {
    font-size: 1.08rem;
  }
  .founder-section .about-copy h2 {
    font-size: 1.8rem;
  }
  .founder-section .about-grid {
    gap: 28px;
  }
}

/* Home gallery: official 9-image set */
.carousel-thumbs {
  display: flex;
  grid-template-columns: none;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--yellow) rgba(0, 0, 0, 0.35);
  overscroll-behavior-x: contain;
}
.carousel-thumb {
  flex: 0 0 112px;
  scroll-snap-align: center;
}
.carousel-thumb img {
  object-fit: cover;
  object-position: center;
}
.slide {
  background-position: center;
  background-size: cover;
}
@media (min-width: 981px) {
  .hero {
    background:
      linear-gradient(
        90deg,
        rgba(5, 7, 6, 0.96) 0%,
        rgba(5, 7, 6, 0.88) 34%,
        rgba(5, 7, 6, 0) 55%
      ),
      url("../images/home-gallery-09.jpeg") left center/60% auto no-repeat,
      var(--black);
  }
}
@media (max-width: 768px) {
  .hero {
    background:
      linear-gradient(rgba(5, 7, 6, 0.78), rgba(5, 7, 6, 0.92)),
      url("../images/home-gallery-06.jpeg") center top/cover no-repeat;
  }
  .carousel-thumb {
    flex-basis: 78px;
  }
}
@media (max-width: 500px) {
  .carousel-thumb {
    flex-basis: 72px;
  }
}
