:root {
  --bg: #f4f6f5;
  --bg-soft: #edf1ee;
  --surface: #ffffff;
  --text: #19211d;
  --muted: #5f6b64;
  --line: #d7dfda;
  --brand: #1f8f4f;
  --brand-strong: #14713d;
  --shadow: 0 12px 30px rgba(22, 34, 27, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-soft) 100%);
  line-height: 1.55;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  filter: blur(18px);
}

.bg-shape-left {
  top: -90px;
  left: -120px;
  width: 340px;
  height: 340px;
  border-radius: 57% 43% 48% 52% / 35% 45% 55% 65%;
  background: radial-gradient(circle at 30% 30%, #e3f8ea 0%, rgba(227, 248, 234, 0) 75%);
}

.bg-shape-right {
  bottom: -130px;
  right: -70px;
  width: 290px;
  height: 290px;
  border-radius: 43% 57% 69% 31% / 52% 61% 39% 48%;
  background: radial-gradient(circle at 60% 40%, #def4e6 0%, rgba(222, 244, 230, 0) 72%);
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  overflow: visible;
  backdrop-filter: blur(7px);
  background: rgba(244, 246, 245, 0.82);
  border-bottom: 1px solid rgba(31, 143, 79, 0.13);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  background: linear-gradient(145deg, #23a35b 0%, #14713d 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(31, 143, 79, 0.3);
}

.brand-text {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.top-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
}

.top-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.top-nav a:hover {
  color: var(--brand-strong);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle {
  width: 40px;
  height: 40px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid #c7d8cf;
  border-radius: 10px;
  background: #f3faf6;
  cursor: pointer;
  padding: 0 10px;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #256c45;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  background: rgba(244, 246, 245, 0.96);
  border-top: 1px solid transparent;
  box-shadow: 0 16px 32px rgba(16, 27, 21, 0.18);
  transition: opacity 0.2s ease, transform 0.22s ease, border-color 0.2s ease;
  z-index: 35;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  border-top-color: rgba(31, 143, 79, 0.13);
}

.mobile-menu-inner {
  display: grid;
  gap: 0.15rem;
  padding-top: 0.6rem;
  padding-bottom: 0.8rem;
  justify-items: end;
  text-align: right;
}

.mobile-menu a {
  text-decoration: none;
  color: #2f3a35;
  font-weight: 600;
  padding: 0.62rem 0;
  text-align: right;
}

.mobile-menu-cta {
  margin-top: 0.35rem;
  width: auto;
  justify-self: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.9rem 1.3rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 10px 22px rgba(20, 113, 61, 0.25);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(20, 113, 61, 0.3);
}

.btn:active {
  transform: translateY(0);
}

.btn-small {
  padding: 0.65rem 1rem;
  font-size: 0.89rem;
}

.btn-ghost {
  background: transparent;
  color: var(--brand-strong);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 78vh;
  padding: 5.2rem 0 3.1rem;
  overflow: hidden;
}

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

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
  color: #eff7f2;
}

.hero h1 {
  color: #ffffff;
}

.hero .lead {
  color: #ffffff;
}

.hero .quick-stats li {
  background: rgba(255, 255, 255, 0.9);
}

.ui-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: #2b7249;
}

.hero .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.1);
}

.eyebrow {
  display: inline-block;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid #c4e3d0;
  background: #f1fbf5;
  color: #2a7c4d;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(2.05rem, 4.6vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.45rem, 3.1vw, 2.2rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.03rem;
  margin-bottom: 0.45rem;
}

.lead {
  margin: 1rem 0 0;
  max-width: 70ch;
  color: #404a44;
  font-size: 1.06rem;
}

.hero-cta {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.quick-stats {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.quick-stats li {
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.72rem 0.9rem;
  color: #4b554f;
  box-shadow: var(--shadow);
}

.quick-stats strong {
  color: var(--brand-strong);
  margin-right: 0.3rem;
}

.section {
  padding: 3.8rem 0 0.6rem;
}

main > .section:not(#hero) {
  content-visibility: auto;
  contain-intrinsic-size: 780px;
}

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

.section-kicker {
  color: #4f8969;
  margin: 0 0 0.4rem;
  font-size: 0.87rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cars-carousel {
  --cars-per-view: 3;
  --cars-gap: 1rem;
  --cars-peek: 56px;
  position: relative;
  overflow: visible;
  perspective: 1400px;
}

.cars-viewport {
  overflow: hidden;
  padding-inline: var(--cars-peek);
  touch-action: pan-y;
}

.listing-grid {
  display: flex;
  gap: var(--cars-gap);
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  transform-style: preserve-3d;
}

.cars-carousel:not(.is-static) .listing-card {
  transform: scale(0.965);
  opacity: 0.82;
  filter: saturate(0.9);
}

.cars-carousel:not(.is-static) .listing-card.cars-card-left {
  --cars-tilt: 4deg;
  transform-origin: right center;
}

.cars-carousel:not(.is-static) .listing-card.cars-card-right {
  --cars-tilt: -4deg;
  transform-origin: left center;
}

.cars-carousel:not(.is-static) .listing-card.cars-card-near {
  transform: scale(0.98) rotateY(var(--cars-tilt, 0deg)) translateZ(6px);
  opacity: 0.9;
  z-index: 3;
}

.cars-carousel:not(.is-static) .listing-card.cars-card-far {
  transform: scale(0.94) rotateY(calc(var(--cars-tilt, 0deg) * 1.2));
  opacity: 0.7;
  z-index: 2;
}

.cars-carousel:not(.is-static) .listing-card.cars-card-center {
  transform: scale(1) rotateY(0deg) translateZ(24px);
  opacity: 1;
  filter: none;
  z-index: 4;
}

.cars-carousel-btn {
  position: absolute;
  top: 95px;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 1px solid #bfd4c7;
  border-radius: 50%;
  background: rgba(242, 250, 245, 0.94);
  color: #2b7249;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: background-color 0.16s ease, color 0.16s ease, opacity 0.16s ease;
}

.cars-carousel-btn:hover {
  background: #e8f6ee;
}

.cars-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cars-carousel-prev {
  left: -18px;
}

.cars-carousel-next {
  right: -18px;
}

.cars-carousel.is-static .cars-carousel-btn {
  display: none;
}

.cars-message {
  width: 100%;
  flex: 0 0 100%;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  background: var(--surface);
  color: #4e5953;
}

.listing-card {
  flex: 0 0 var(
    --cars-card-width,
    calc((100% - (var(--cars-per-view) - 1) * var(--cars-gap)) / var(--cars-per-view))
  );
  max-width: var(
    --cars-card-width,
    calc((100% - (var(--cars-per-view) - 1) * var(--cars-gap)) / var(--cars-per-view))
  );
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  cursor: pointer;
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.32s ease, filter 0.32s ease;
}

.listing-image {
  position: relative;
  height: 182px;
  background: #dde5e0;
  overflow: hidden;
}

.listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(25, 33, 29, 0.45);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.carousel-prev {
  left: 0.5rem;
}

.carousel-next {
  right: 0.5rem;
}

.carousel-counter {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  font-size: 0.75rem;
  color: #ffffff;
  background: rgba(25, 33, 29, 0.6);
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
}

.listing-carousel.is-single .carousel-btn,
.listing-carousel.is-single .carousel-counter {
  display: none;
}

.listing-body {
  padding: 0.95rem 0.95rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.listing-body h3 {
  min-height: 2.5rem;
}

.listing-description {
  margin: 0.72rem 0 0;
  color: #4e5953;
}

.listing-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  margin-top: 0.72rem;
  min-height: 5rem;
}

.listing-meta span {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  gap: 0.3rem;
  border: 1px solid #c9ddd0;
  background: #f2faf5;
  color: #2b7249;
  border-radius: 12px;
  padding: 0.26rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listing-meta span:last-child {
  grid-column: 1 / -1;
}

.meta-icon {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}

.listing-specs {
  list-style: none;
  margin: 0.72rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.36rem;
}

.listing-specs li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.34rem 0.5rem;
  border: 1px dashed #d4ddd8;
  border-radius: 9px;
  background: #f9fcfa;
}

.listing-specs span {
  color: #5d6762;
  font-size: 0.77rem;
}

.listing-specs strong {
  color: #25322c;
  font-size: 0.8rem;
}

.listing-price {
  margin-top: 0.75rem;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  color: var(--brand-strong);
}

.listing-actions {
  display: grid;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.62rem;
}

.listing-toggle {
  border: 1px solid #c9ddd0;
  background: #f2faf5;
  color: #2b7249;
  border-radius: 10px;
  padding: 0.58rem 0.75rem;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.listing-toggle:hover {
  background: #e8f6ee;
  border-color: #b7d7c4;
}

.listing-toggle[aria-expanded="true"] {
  color: #1f5e3c;
  background: #def1e6;
  border-color: #abd0ba;
}

.listing-extra {
  margin-top: 0.15rem;
}

.listing-price.reduced {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.42rem 0.6rem;
}

.price-old {
  font-size: 0.95rem;
  color: #7f8a84;
  text-decoration: line-through;
}

.price-new {
  font-size: 1.35rem;
  color: var(--brand-strong);
}

.price-badge {
  font-family: "Work Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1f6c43;
  background: #dff2e7;
  border: 1px solid #bfe0cd;
  border-radius: 999px;
  padding: 0.2rem 0.45rem;
}

.listing-buy {
  width: 100%;
  padding: 0.72rem 1rem;
}

.listing-actions,
.listing-extra {
  cursor: default;
}

body.modal-open {
  overflow: hidden;
}

.listing-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(18, 25, 22, 0.62);
}

.listing-modal.is-open {
  display: flex;
}

.listing-modal-panel {
  position: relative;
  width: min(980px, 96vw);
  max-height: 92vh;
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 26px 60px rgba(11, 18, 14, 0.38);
  padding: 1rem;
}

.listing-modal-close {
  position: absolute;
  top: 0.72rem;
  right: 0.72rem;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: #ffffff;
  background: rgba(15, 20, 18, 0.88);
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 8px 18px rgba(11, 17, 14, 0.28);
}

.listing-modal-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0f1412;
  height: min(62vh, 560px);
  z-index: 1;
}

.listing-modal-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.listing-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  background: rgba(25, 33, 29, 0.45);
  color: #fff;
  font-size: 1.08rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.listing-modal-prev {
  left: 0.75rem;
}

.listing-modal-next {
  right: 0.75rem;
}

.listing-modal-counter {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  font-size: 0.82rem;
  color: #ffffff;
  background: rgba(25, 33, 29, 0.62);
  border-radius: 999px;
  padding: 0.22rem 0.6rem;
}

.listing-modal-body {
  margin-top: 0.95rem;
}

.listing-modal-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}

.listing-modal-title {
  margin: 0;
}

.listing-modal-price {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  color: var(--brand-strong);
}

.listing-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.listing-modal-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  border: 1px solid #c9ddd0;
  background: #f2faf5;
  color: #2b7249;
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.listing-modal .listing-description {
  margin-top: 0.8rem;
}

.listing-modal .listing-specs {
  margin-top: 0.8rem;
}

.listing-modal-buy {
  margin-top: 0.82rem;
}

.card,
.portfolio-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1rem;
  box-shadow: var(--shadow);
}

.card p,
.portfolio-card p {
  margin: 0;
  color: #4f5853;
}

.card-icon {
  width: 21px;
  height: 21px;
  margin-bottom: 0.55rem;
  color: #1f8f4f;
}

.accent-top {
  position: relative;
  overflow: hidden;
}

.accent-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2ea35f, #7bc895);
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
}

.split p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  color: #44504a;
}

.mini-stats {
  display: grid;
  gap: 0.7rem;
}

.mini-stats > div {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(170deg, #f8fbf9 0%, #f1f6f3 100%);
  padding: 0.9rem;
}

.mini-stats strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  color: var(--brand-strong);
}

.mini-stats span {
  color: #4e5a54;
  font-size: 0.93rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.car-shot {
  height: 165px;
  border-radius: 14px;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(20, 113, 61, 0.18);
}

.car-shot-1 {
  background: linear-gradient(140deg, #d7dfda 0%, #f6faf8 55%, #a4c6b2 100%);
}

.car-shot-2 {
  background: linear-gradient(140deg, #cad8cf 0%, #f8fbfa 53%, #9bc2ac 100%);
}

.car-shot-3 {
  background: linear-gradient(140deg, #d0ddd5 0%, #f9fcfa 56%, #8db89f 100%);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  background: var(--surface);
  text-align: center;
}

.metric strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
  color: var(--brand-strong);
}

.metric span {
  color: #58625d;
  font-size: 0.9rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.52rem 0.74rem;
  border-radius: 999px;
  border: 1px solid #c8ddcf;
  background: #eff9f3;
  color: #2a7148;
  font-size: 0.82rem;
  font-weight: 600;
}

.badge-icon {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}

.testimonial-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.85rem;
}

blockquote {
  margin: 0;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  color: #3d4742;
}

cite {
  display: block;
  margin-top: 0.6rem;
  color: #5f6964;
  font-style: normal;
  font-weight: 500;
  font-size: 0.92rem;
}

.steps {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.8rem;
}

.steps li {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  padding: 0.85rem;
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 0.9rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

details p {
  margin: 0.62rem 0 0;
  color: #4a5550;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lead-form {
  display: grid;
  gap: 0.72rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: #3d4742;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #cfd9d2;
  border-radius: 10px;
  padding: 0.72rem 0.75rem;
  font: inherit;
  color: var(--text);
  background: #fbfdfc;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid #b8e3c9;
  border-color: #8ccba7;
}

.form-note {
  min-height: 1.2rem;
  margin: 0;
  color: #2d7349;
  font-size: 0.88rem;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.contact-card p {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  margin: 0.35rem 0;
  color: #4d5953;
}

.contact-icon {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  color: #2a7148;
}

.contact-info iframe {
  width: 100%;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.site-footer {
  margin-top: 4rem;
  padding: 2.2rem 0;
  border-top: 1px solid #cfdad3;
  background: linear-gradient(180deg, #eef3f0 0%, #e8eeea 100%);
}

.footer-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.3fr 0.7fr 1fr 0.8fr;
}

.footer-row h3 {
  margin-bottom: 0.48rem;
}

.footer-row p {
  margin: 0;
  color: #4e5a54;
}

.footer-title {
  margin: 0 0 0.3rem;
  font-weight: 600;
  color: #2f3b35;
}

.footer-note {
  margin-top: 0.55rem;
  font-size: 0.92rem;
  color: #5b6862;
}

.footer-links,
.footer-social {
  display: grid;
  gap: 0.3rem;
}

.footer-links a,
.footer-social a {
  color: #3a4540;
  text-decoration: none;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.social-icon {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--brand-strong);
}

.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 120;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent-inner {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(248, 251, 249, 0.98);
  border: 1px solid rgba(31, 143, 79, 0.22);
  border-radius: 14px;
  box-shadow: 0 18px 32px rgba(18, 34, 26, 0.2);
  padding: 0.9rem 1rem;
}

.cookie-consent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.cookie-consent-inline {
  margin: 0;
  color: #2f3e36;
  font-size: 0.9rem;
}

.cookie-consent-inline a {
  color: var(--brand-strong);
}

.cookie-consent-actions {
  margin-top: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  align-items: center;
}

.cookie-btn {
  border: 1px solid #b9ccc1;
  border-radius: 10px;
  background: #ffffff;
  color: #203028;
  font-weight: 600;
  font-size: 0.87rem;
  padding: 0.52rem 0.72rem;
  cursor: pointer;
}

.cookie-btn:hover {
  border-color: #95b5a4;
}

.cookie-btn-primary {
  border-color: transparent;
  background: linear-gradient(145deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #ffffff;
}

.cookie-consent-panel {
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(31, 143, 79, 0.14);
  display: grid;
  gap: 0.55rem;
}

.cookie-toggle {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #2f3f37;
}

.cookie-toggle input {
  width: 16px;
  height: 16px;
  margin-top: 0.15rem;
}

.cookie-toggle.is-locked {
  opacity: 0.74;
}

.cookie-consent-actions-panel {
  margin-top: 0.2rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .top-nav {
    display: none;
  }

  .btn-small {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .card-grid.three,
  .portfolio-grid,
  .footer-row,
  .contact-layout,
  .trust-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .cars-carousel {
    --cars-per-view: 2;
    --cars-peek: 56px;
  }

  .trust-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav-row {
    min-height: 72px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .brand-text {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 72vh;
    padding-top: 3.1rem;
    padding-bottom: 1.2rem;
  }

  .hero-bg-media {
    object-position: 68% center;
  }

  .hero-inner {
    min-height: calc(72vh - 4.3rem);
    display: flex;
  }

  .hero-content {
    width: 100%;
    position: relative;
    min-height: 100%;
    padding-bottom: 8.2rem;
  }

  .section {
    padding-top: 3rem;
  }

  .cars-carousel {
    --cars-per-view: 1;
    --cars-gap: 0.8rem;
    --cars-peek: 28px;
    perspective: 1200px;
  }

  .cars-viewport {
    padding-bottom: 14px;
  }

  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-consent-inner {
    padding: 0.85rem 0.85rem;
  }

  .cookie-consent-row {
    gap: 0.55rem;
  }

  .cookie-consent-inline {
    width: 100%;
    font-size: 0.84rem;
  }

  .cookie-consent-actions {
    width: 100%;
    gap: 0.35rem;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .cookie-btn {
    white-space: nowrap;
    width: auto;
  }

  .cars-carousel:not(.is-static) .listing-card {
    transform: scale(0.92);
    opacity: 0.55;
    filter: saturate(0.8);
  }

  .cars-carousel:not(.is-static) .listing-card.cars-card-left {
    --cars-tilt: 11deg;
    transform-origin: right center;
  }

  .cars-carousel:not(.is-static) .listing-card.cars-card-right {
    --cars-tilt: -11deg;
    transform-origin: left center;
  }

  .cars-carousel:not(.is-static) .listing-card.cars-card-near {
    transform: scale(0.95) rotateY(var(--cars-tilt, 0deg));
    opacity: 0.76;
    z-index: 3;
  }

  .cars-carousel:not(.is-static) .listing-card.cars-card-far {
    transform: scale(0.88) rotateY(calc(var(--cars-tilt, 0deg) * 1.15));
    opacity: 0.36;
    z-index: 2;
  }

  .cars-carousel:not(.is-static) .listing-card.cars-card-center {
    transform: scale(1) rotateY(0deg);
    opacity: 1;
    filter: none;
    z-index: 4;
  }

  .listing-image {
    height: 170px;
  }

  .cars-carousel-btn {
    display: none;
  }

  .trust-metrics {
    grid-template-columns: 1fr;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-cta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 0;
    padding-top: 0;
  }

  .hero-mobile-hide {
    display: none;
  }

  .listing-modal {
    padding: 0.45rem;
  }

  .listing-modal-panel {
    width: 100%;
    max-height: 95vh;
    padding: 0.7rem;
    border-radius: 14px;
  }

  .listing-modal-media {
    height: min(52vh, 420px);
  }

  .listing-modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 34px;
    height: 34px;
  }

  .listing-modal-nav {
    width: 36px;
    height: 36px;
  }

  .listing-modal-title {
    font-size: 1.2rem;
  }

  .listing-modal-price {
    font-size: 1.28rem;
  }
}

@media (min-width: 981px) {
  .mobile-menu {
    display: none;
  }
}
