:root {
  --color-accent: #810100;
  --color-accent-strong: #650000;
  --color-heading: #1b1717;
  --color-bg: #f4f0e4;
  --color-surface: #fffdf8;
  --color-surface-strong: #ffffff;
  --color-text: #2f2929;
  --color-muted: #5a5a5a;
  --color-border: rgba(27, 23, 23, 0.08);
  --color-shadow: rgba(27, 23, 23, 0.08);
  --color-overlay: rgba(17, 13, 13, 0.56);
  --color-success: #1b6d4f;
  --color-warning: #c27918;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --shadow-soft: 0 18px 50px rgba(27, 23, 23, 0.08);
  --shadow-lift: 0 22px 60px rgba(27, 23, 23, 0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --space-1: 0.4rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.35rem;
  --space-5: 1.8rem;
  --space-6: 2.4rem;
  --space-7: 3.2rem;
  --space-8: 4.6rem;
  --container: min(1560px, calc(100% - clamp(1.5rem, 4vw, 4.5rem)));
  --nav-height: 78px;
  color-scheme: light;
}

body[data-theme="dark"] {
  --color-bg: #161211;
  --color-surface: #201a19;
  --color-surface-strong: #261f1e;
  --color-text: #f6eee7;
  --color-heading: #fff8f2;
  --color-muted: #c0b4ae;
  --color-border: rgba(255, 248, 242, 0.08);
  --color-shadow: rgba(0, 0, 0, 0.25);
  --color-overlay: rgba(10, 7, 7, 0.68);
  color-scheme: dark;
}

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

html {
  min-height: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  max-width: 100%;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(129, 1, 0, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(34, 24, 24, 0.18), transparent 30%),
    var(--color-bg);
  overflow-x: hidden;
  transition: background-color 0.35s ease, color 0.35s ease;
}

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

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

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

button {
  cursor: pointer;
  touch-action: manipulation;
}

main {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: clamp(4.4rem, 8vw, 6.8rem) 0;
}

.section-tight {
  padding: clamp(3.4rem, 6vw, 5.2rem) 0;
}

.section-header {
  display: grid;
  gap: var(--space-2);
  max-width: 42rem;
  margin-bottom: var(--space-6);
}

.section-header-compact {
  margin-bottom: 0;
}

.section-header-centered {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.section-header-wide {
  max-width: 58rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(129, 1, 0, 0.18);
  background: rgba(129, 1, 0, 0.06);
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--color-heading);
  font-family: var(--font-heading);
  line-height: 1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 1vw, 5.35rem);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
}

h3 {
  font-size: clamp(1.02rem, 1.5vw, 1.28rem);
}

p {
  margin: 0;
  color: var(--color-muted);
}

.lead {
  font-size: 1rem;
  max-width: 42rem;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: none;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  margin-bottom: calc(var(--nav-height) * -1);
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
}

body:not([data-theme="dark"]) .site-header {
  backdrop-filter: blur(14px);
  background: rgba(244, 240, 228, 0.88);
  border-bottom: 1px solid rgba(27, 23, 23, 0.06);
  box-shadow: 0 10px 28px rgba(66, 28, 22, 0.08);
}

body:not([data-theme="dark"]) .nav-links {
  background: rgba(255, 253, 248, 0.62);
  border: 1px solid rgba(27, 23, 23, 0.04);
  border-radius: 999px;
  padding: 0.18rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

body:not([data-theme="dark"]) .nav-links a {
  color: rgba(47, 41, 41, 0.76);
}

body:not([data-theme="dark"]) .nav-links a:hover,
body:not([data-theme="dark"]) .nav-links a.active {
  color: #241716;
  background: rgba(129, 1, 0, 0.08);
}

body:not([data-theme="dark"]) .theme-toggle,
body:not([data-theme="dark"]) .language-toggle,
body:not([data-theme="dark"]) .nav-toggle {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(27, 23, 23, 0.06);
  box-shadow: 0 8px 18px rgba(66, 28, 22, 0.06);
}

.nav {
  min-height: var(--nav-height);
  display: grid;
  grid-template-columns: minmax(13rem, 0.9fr) auto minmax(12rem, 0.8fr);
  align-items: center;
  gap: 1.1rem;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  transition: padding 0.35s ease, gap 0.35s ease, transform 0.35s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.75rem;
  line-height: 1;
  white-space: nowrap;
  transition: gap 0.35s ease, transform 0.35s ease;
}

.brand-logo {
  display: block;
  width: clamp(3.2rem, 5vw, 4.2rem);
  height: auto;
  max-height: 52px;
  object-fit: contain;
  transition: width 0.35s ease, max-height 0.35s ease, transform 0.35s ease;
}

.brand-logo-icon {
  width: clamp(3.2rem, 5vw, 4.2rem);
}

.brand-copy {
  display: grid;
  gap: 0.08rem;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.brand-copy strong {
  font-size: clamp(0.9rem, 1.15vw, 1.04rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-heading);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-heading);
}

.brand-mark span {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #b02d1f);
  color: #fff;
  box-shadow: 0 14px 30px rgba(129, 1, 0, 0.18);
}

.brand small {
  display: block;
  font-size: 0.58rem;
  color: var(--color-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  justify-self: center;
  gap: 0.35rem;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease, border-radius 0.35s ease;
}

.nav-links a {
  padding: 0.66rem 0.92rem;
  border-radius: var(--radius-pill);
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, padding 0.35s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-heading);
  background: color-mix(in srgb, var(--color-accent) 8%, transparent);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.7rem;
  transition: gap 0.35s ease, transform 0.35s ease;
}

.theme-toggle,
.language-toggle,
.nav-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: var(--color-heading);
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.35s ease;
}

.language-toggle {
  min-width: 3rem;
  width: auto;
  padding: 0 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.theme-toggle:hover,
.language-toggle:hover,
.nav-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(129, 1, 0, 0.28);
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3rem;
  padding: 0.78rem 1.28rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #9d1a14, #7f120e);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 24px rgba(95, 14, 10, 0.18);
}

.button-primary:hover {
  background: linear-gradient(135deg, #aa1d17, #8a1410);
}

.site-header.is-scrolled {
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--color-bg) 74%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--color-border) 65%, transparent);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.site-header.is-scrolled .nav {
  gap: 0.9rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.site-header.is-scrolled .brand {
  gap: 0.62rem;
}

.site-header.is-scrolled .brand-logo,
.site-header.is-scrolled .brand-logo-icon {
  width: clamp(2.8rem, 4.3vw, 3.55rem);
  max-height: 44px;
  transform: scale(0.96);
}

.site-header.is-scrolled .brand-copy {
  transform: translateY(-1px);
}

.site-header.is-scrolled .brand-copy strong {
  letter-spacing: 0.05em;
}

.site-header.is-scrolled .brand small {
  opacity: 0.58;
}

.site-header.is-scrolled .nav-links {
  padding: 0.2rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-surface) 72%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .nav-links a {
  padding: 0.6rem 0.86rem;
}

.site-header.is-scrolled .nav-actions {
  gap: 0.55rem;
}

.site-header.is-scrolled .theme-toggle,
.site-header.is-scrolled .language-toggle,
.site-header.is-scrolled .nav-toggle {
  background: color-mix(in srgb, var(--color-surface) 58%, transparent);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.site-header.is-scrolled .button-primary {
  box-shadow: 0 10px 20px rgba(95, 14, 10, 0.14);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f7eee8;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--nav-height) + clamp(1.4rem, 4vw, 3rem)) 0 clamp(3rem, 6vw, 5rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 6, 6, 0.82) 0%, rgba(12, 8, 8, 0.66) 26%, rgba(16, 10, 10, 0.42) 100%),
    linear-gradient(115deg, rgba(16, 10, 10, 0.5), rgba(16, 10, 10, 0.16)),
    url("../assets/home/hero.jpg") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10rem;
  background: linear-gradient(180deg, transparent, var(--color-bg));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1rem;
  max-width: 41rem;
  color: #fff;
}

.hero-copy p,
.hero-copy h1 {
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-stats {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.4rem, 2vw, 2rem);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.stat-card {
  padding: 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.stat-card strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1;
  margin-bottom: 0.3rem;
  font-family: var(--font-body);
  font-weight: 800;
}

.stat-card span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
}

.feature-strip {
  margin-top: clamp(-2.4rem, -3vw, -1.4rem);
  position: relative;
  z-index: 2;
}

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


.glass-card,
.card,
.info-card,
.testimonial-card,
.faq-item,
.legal-card,
.contact-card,
.filters-panel,
.modal-panel,
.footer-shell {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.glass-card {
  border-radius: 22px;
  padding: 1.2rem 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.glass-card h3 {
  margin-bottom: 0.35rem;
  font-size: 0.98rem;
  line-height: 1.15;
  text-align: center;
}

.glass-card p {
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
}

.hero-copy .lead {
  font-size: 1.08rem;
  max-width: 27rem;
}

.hero-copy .eyebrow {
  padding: 0.4rem 0.8rem;
  font-size: 0.84rem;
}

.hero .button {
  min-height: 2.8rem;
  padding: 0.88rem 1.35rem;
  font-size: 1rem;
}

body[data-theme="dark"] .hero-stats {
  background: rgba(28, 23, 22, 0.5);
  border-color: rgba(255, 248, 242, 0.08);
}

body[data-theme="dark"] .stat-card {
  background: rgba(255, 255, 255, 0.05);
}

.card-grid {
  display: grid;
  gap: var(--space-4);
}

.featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.category-card {
  display: grid;
  grid-template-rows: 316px auto;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(27, 23, 23, 0.12);
  border: 1px solid rgba(129, 1, 0, 0.14);
  background: #f8f1e5;
  color: var(--color-heading);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(27, 23, 23, 0.16);
}

.category-card .card-body {
  align-content: start;
  gap: 1rem;
  padding: 1.25rem 1.45rem 1.35rem;
  grid-template-rows: auto minmax(4.8rem, auto) auto auto;
}

.category-card .card-meta {
  align-items: flex-start;
  align-content: flex-start;
}

.category-card h3 {
  color: #231d1d;
  font-size: 1.08rem;
  line-height: 1.2;
  min-height: 2.6rem;
}

.category-card p {
  color: #6a5f59;
  line-height: 1.45;
  min-height: 4.8rem;
}

.category-card .card-image {
  aspect-ratio: auto;
  height: 100%;
  border-top: 0;
  background: #dedbd4;
}

.category-card .card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(27, 23, 23, 0.06));
}

.category-card .card-image img {
  filter: saturate(0.92);
}

.category-card .card-price {
  margin-top: 0.35rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 3.4rem;
  gap: 0.75rem;
}

.category-card .card-price strong {
  color: #231d1d;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  max-width: none;
  white-space: nowrap;
}

.category-card .chip {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  flex: 0 0 auto;
  background: transparent;
  color: #8a7b73;
  border: 1px solid rgba(129, 1, 0, 0.12);
  padding: 0.68rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
}

.category-card .card-badge {
  background: rgba(27, 23, 23, 0.86);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.category-card .button-secondary {
  min-height: 2.95rem;
  padding-inline: 0.95rem;
  border-color: rgba(129, 1, 0, 0.2);
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.68);
  min-width: 8.8rem;
  white-space: nowrap;
  justify-self: end;
  font-size: 0.9rem;
}

.category-card .card-price {
  align-items: center;
}

.category-card .button-secondary:hover {
  background: rgba(129, 1, 0, 0.08);
}

#featured-vehicles {
  background: linear-gradient(180deg, rgba(129, 1, 0, 0.03), transparent 28%);
}

body[data-theme="dark"] #featured-vehicles {
  background: linear-gradient(180deg, rgba(129, 1, 0, 0.06), transparent 28%);
}

body[data-theme="dark"] .category-card {
  background: #231c1b;
  border-color: rgba(255, 248, 242, 0.08);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

body[data-theme="dark"] .category-card h3 {
  color: #fff4ec;
}

body[data-theme="dark"] .category-card p {
  color: #c7b9b1;
}

body[data-theme="dark"] .category-card .card-image {
  background: #2e2524;
}

body[data-theme="dark"] .category-card .card-image::after {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.16));
}

body[data-theme="dark"] .category-card .chip {
  color: #d0c2bb;
  border-color: rgba(255, 248, 242, 0.12);
}

body[data-theme="dark"] .category-card .card-price strong {
  color: #fff4ec;
}

body[data-theme="dark"] .category-card .button-secondary {
  color: #fff4ec;
  background: rgba(129, 1, 0, 0.14);
  border-color: rgba(129, 1, 0, 0.3);
}

body[data-theme="dark"] .category-card .button-secondary:hover {
  background: rgba(129, 1, 0, 0.22);
}

body[data-theme="dark"] .category-card h3 {
  color: #fff4ec;
}

body[data-theme="dark"] .category-card p {
  color: #c7b9b1;
}

body[data-theme="dark"] .category-card .card-price strong {
  color: #fff4ec;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(27, 23, 23, 0.72);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.card-body {
  display: grid;
  gap: 0.8rem;
  padding: 1.05rem;
}

.card-meta,
.item-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  padding: 0.32rem 0.58rem;
  border-radius: var(--radius-pill);
  background: rgba(129, 1, 0, 0.06);
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.card-price {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  justify-content: space-between;
  gap: 0.8rem;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.card-deposit-text {
  display: block;
  margin-top: 0.3rem;
  color: var(--color-muted);
  font-size: 0.76rem;
}

.card-price strong {
  color: var(--color-heading);
  font-size: 1.18rem;
  font-family: var(--font-heading);
  line-height: 1;
}

.card-price span {
  color: var(--color-muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

.card-price .button {
  min-height: 2.7rem;
  padding: 0.72rem 1.05rem;
  font-size: 0.88rem;
  white-space: nowrap;
}

.listing-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border-radius: 30px;
  border-color: rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, #2a201f 0%, #221918 100%);
  box-shadow: 0 24px 44px rgba(8, 6, 6, 0.22);
}

.listing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 54px rgba(8, 6, 6, 0.28);
}

.listing-card .card-image {
  aspect-ratio: 16 / 11;
  min-height: 15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.listing-card--cars .card-image {
  aspect-ratio: 16 / 10;
}

.listing-card--motorbikes .card-image {
  aspect-ratio: 5 / 4;
}

.listing-card--apartments .card-image {
  aspect-ratio: 4 / 3;
}

.listing-card .card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 10, 10, 0.08) 0%, rgba(14, 10, 10, 0.12) 46%, rgba(14, 10, 10, 0.78) 100%);
}

.listing-card-image-glow {
  position: absolute;
  inset: auto -12% -18% auto;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129, 1, 0, 0.24), transparent 68%);
  filter: blur(8px);
  z-index: 1;
  pointer-events: none;
}

.listing-card .card-badge {
  top: 1.1rem;
  left: 1.1rem;
  z-index: 2;
  padding: 0.58rem 0.9rem;
  background: rgba(23, 17, 17, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.listing-card .card-body {
  gap: 1rem;
  padding: 1.3rem 1.2rem 1.2rem;
  grid-template-rows: auto auto 1fr;
  align-content: start;
}

.listing-card-top {
  display: grid;
  gap: 0.55rem;
}

.listing-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 239, 230, 0.58);
}

.listing-card h3 {
  font-size: clamp(1.34rem, 1.75vw, 1.72rem);
  line-height: 1.02;
  color: #fff6ef;
}

.listing-card p {
  color: rgba(241, 228, 223, 0.78);
  font-size: 0.98rem;
  line-height: 1.5;
}

.listing-card .item-specs {
  gap: 0.55rem;
}

.listing-card .chip {
  padding: 0.46rem 0.72rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f7eee8;
  font-size: 0.74rem;
  font-weight: 700;
}

body[data-theme="dark"] .listing-card .chip {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f7eee8;
}

.listing-card-footer {
  display: grid;
  gap: 0.95rem;
  align-self: end;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.listing-card .card-price {
  grid-template-columns: 1fr;
  gap: 0.35rem;
  align-items: start;
}

.listing-card-price {
  display: grid;
  gap: 0.1rem;
}

.listing-card-price-label {
  color: rgba(241, 228, 223, 0.62);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listing-card .card-price strong {
  font-size: 1.9rem;
  font-family: var(--font-heading);
  color: #fff8f2;
}

.listing-card-price-unit {
  color: rgba(241, 228, 223, 0.78);
  font-size: 0.98rem;
  font-weight: 500;
}

.listing-card .card-deposit-text {
  margin-top: 0.3rem;
  color: rgba(241, 228, 223, 0.62);
  font-size: 0.82rem;
}

.listing-card .card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.listing-card .button {
  min-height: 3rem;
  padding-inline: 1rem;
  font-size: 0.92rem;
}

.listing-card .button-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #f7eee8;
}

.listing-card .button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}


body:not([data-theme="dark"]) .listing-card {
  border-color: rgba(129, 1, 0, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 247, 241, 0.92)),
    linear-gradient(180deg, #fff7f1 0%, #f4ebe4 100%);
  box-shadow: 0 22px 44px rgba(82, 31, 24, 0.1);
}

body:not([data-theme="dark"]) .listing-card .card-image {
  border-bottom-color: rgba(129, 1, 0, 0.08);
}

body:not([data-theme="dark"]) .listing-card .card-image::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(34, 22, 22, 0.04) 48%, rgba(34, 22, 22, 0.22) 100%);
}

body:not([data-theme="dark"]) .listing-card .card-badge {
  background: rgba(255, 248, 242, 0.7);
  border-color: rgba(129, 1, 0, 0.12);
  color: #3c2a28;
}

body:not([data-theme="dark"]) .listing-card-label {
  color: rgba(99, 66, 60, 0.6);
}

body:not([data-theme="dark"]) .listing-card h3 {
  color: #241918;
}

body:not([data-theme="dark"]) .listing-card p {
  color: #665651;
}

body:not([data-theme="dark"]) .listing-card .chip {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(90, 68, 63, 0.12);
  color: #4d3b39;
}

body:not([data-theme="dark"]) .listing-card-footer {
  border-top-color: rgba(129, 1, 0, 0.08);
}

body:not([data-theme="dark"]) .listing-card-price-label,
body:not([data-theme="dark"]) .listing-card-price-unit,
body:not([data-theme="dark"]) .listing-card .card-deposit-text {
  color: #776560;
}

body:not([data-theme="dark"]) .listing-card .card-price strong {
  color: #231716;
}

body:not([data-theme="dark"]) .listing-card .button-secondary {
  border-color: rgba(129, 1, 0, 0.12);
  background: rgba(129, 1, 0, 0.05);
  color: #3b2725;
}

body:not([data-theme="dark"]) .listing-card .button-secondary:hover {
  background: rgba(129, 1, 0, 0.1);
}

.detail-kicker {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(243, 228, 221, 0.52);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}


.benefits-layout,
.about-layout,
.contact-layout,
.listing-layout {
  display: grid;
  gap: var(--space-5);
}

.benefits-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.benefits-panel {
  display: grid;
  gap: var(--space-4);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--color-heading), #302828);
  color: #fff;
}

.benefits-panel h2,
.benefits-panel p {
  color: #fff;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.info-card {
  border-radius: 24px;
  padding: var(--space-4);
}

.icon-wrap {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(129, 1, 0, 0.08);
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.testimonial-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.testimonial-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: testimonial-loop 42s linear infinite;
}

.testimonial-card {
  flex: 0 0 24rem;
  padding: var(--space-5);
  border-radius: 28px;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.review-stars {
  display: inline-flex;
  gap: 0.3rem;
  color: #d0a24f;
  font-size: 0.82rem;
}

.review-badge {
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(129, 1, 0, 0.08);
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-copy {
  color: var(--color-heading);
  font-size: 1rem;
  line-height: 1.5;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.review-chip {
  padding: 0.38rem 0.68rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.74rem;
  font-weight: 600;
}

@keyframes testimonial-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.6rem));
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(129, 1, 0, 0.18), rgba(129, 1, 0, 0.04));
  color: var(--color-accent);
  font-weight: 800;
}

body[data-theme="dark"] .review-copy {
  color: #f7eee8;
}

body[data-theme="dark"] .review-chip {
  border-color: rgba(255, 248, 242, 0.12);
  color: #c9bbb4;
}

body[data-theme="dark"] .booking-summary-card,
body[data-theme="dark"] .booking-inline-note {
  border-color: rgba(255, 248, 242, 0.1);
  background: linear-gradient(180deg, rgba(129, 1, 0, 0.14), rgba(129, 1, 0, 0.05));
}

body[data-theme="dark"] .booking-inline-note {
  color: #f4ddd5;
}

body[data-theme="dark"] .long-stay-note {
  background: rgba(194, 121, 24, 0.14);
  border-color: rgba(194, 121, 24, 0.22);
}

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

.faq-item {
  border-radius: 24px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  position: relative;
  padding: 1.1rem 1.2rem;
  border: 0;
  background: transparent;
  color: var(--color-heading);
  font-weight: 700;
  text-align: center;
}

.faq-question span {
  display: block;
  width: 100%;
  padding-inline: 2.4rem;
}

.faq-question i {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, padding 0.28s ease;
  padding: 0 1.2rem;
  text-align: center;
}

.faq-item.open .faq-answer {
  max-height: 12rem;
  padding: 0 1.2rem 1.2rem;
}

.newsletter-panel,
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: var(--space-6);
  background:
    linear-gradient(135deg, rgba(129, 1, 0, 0.94), rgba(74, 0, 0, 0.88)),
    var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-lift);
}

body:not([data-theme="dark"]) .newsletter-panel,
body:not([data-theme="dark"]) .cta-banner {
  background: linear-gradient(135deg, #9a0904, #760202);
  box-shadow: 0 26px 56px rgba(92, 10, 8, 0.16);
}

.newsletter-panel::before,
.cta-banner::before {
  content: "";
  position: absolute;
  inset: auto -4rem -4rem auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 0;
}

body:not([data-theme="dark"]) .newsletter-panel::before,
body:not([data-theme="dark"]) .cta-banner::before {
  background: rgba(255, 214, 204, 0.1);
}

.newsletter-panel h2,
.newsletter-panel p,
.cta-banner h2,
.cta-banner p {
  color: #fff;
}

.newsletter-panel > *,
.cta-banner > * {
  position: relative;
  z-index: 1;
}

body:not([data-theme="dark"]) .newsletter-panel .eyebrow,
body:not([data-theme="dark"]) .cta-banner .eyebrow {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
}

.eyebrow-light {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
}

.newsletter-form,
.contact-form,
.footer-newsletter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.newsletter-status {
  margin-top: 0.95rem;
  min-height: 1.4rem;
  max-width: 52rem;
  color: rgba(255, 248, 242, 0.88);
  font-size: 0.95rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.newsletter-status.show {
  opacity: 1;
  transform: translateY(0);
}

.newsletter-status.is-error {
  color: #ffe0d8;
}

.newsletter-status--footer {
  margin-top: 0.7rem;
  font-size: 0.84rem;
  color: rgba(255, 244, 236, 0.76);
}

.section-trust {
  padding-top: 0;
}

.logo-list-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.6rem;
  padding: clamp(1.35rem, 2.8vw, 2.15rem);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at top left, rgba(129, 1, 0, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.03), transparent 30%),
    linear-gradient(145deg, rgba(34, 27, 27, 0.98), rgba(25, 19, 19, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 48px rgba(10, 7, 7, 0.18);
}

.logo-list-panel::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.logo-list-copy,
.logo-list-grid {
  position: relative;
  z-index: 1;
}

.logo-list-copy {
  display: grid;
  gap: 0.75rem;
  max-width: 42rem;
}

.logo-list-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.logo-list-copy .lead {
  max-width: 36rem;
}

.logo-list-panel-editorial {
  gap: 1.35rem;
}

.logo-list-copy-editorial {
  max-width: 44rem;
}

.logo-rail {
  display: grid;
  gap: 0.8rem;
}

.logo-rail-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.logo-rail-row:first-child {
  border-top: 0;
  padding-top: 0.2rem;
}

.logo-rail-label {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 244, 236, 0.52);
}

.logo-rail-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
  align-items: center;
}

.logo-wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  color: rgba(255, 248, 242, 0.92);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  opacity: 0.9;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.logo-wordmark:hover {
  opacity: 1;
  transform: translateY(-1px);
}

body:not([data-theme="dark"]) .logo-list-panel {
  border-color: rgba(129, 1, 0, 0.08);
  background:
    radial-gradient(circle at top left, rgba(182, 79, 46, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 240, 235, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 20px 42px rgba(82, 31, 24, 0.1);
}

body:not([data-theme="dark"]) .logo-list-panel::after {
  border-color: rgba(129, 1, 0, 0.08);
}

body:not([data-theme="dark"]) .logo-rail-row {
  border-top-color: rgba(129, 1, 0, 0.09);
}

body:not([data-theme="dark"]) .logo-rail-label {
  color: rgba(83, 53, 49, 0.56);
}

body:not([data-theme="dark"]) .logo-wordmark {
  color: #2d1c1a;
}

.input,
.select,
.textarea {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  background: var(--color-surface-strong);
  color: var(--color-text);
}

.input[type="date"] {
  min-height: 3.2rem;
  color-scheme: dark;
}

body:not([data-theme="dark"]) .input[type="date"] {
  color-scheme: light;
}

.input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.9;
  filter: invert(0.95);
}

body:not([data-theme="dark"]) .input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.18);
}

.select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 3.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3.25 5.5L7 9.25L10.75 5.5' stroke='%23f5efe8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.35rem center;
  background-size: 0.9rem;
}

.select option {
  color: #241817;
  background: #fff8f2;
}

.select option:checked,
.select option:selected {
  color: #241817;
  background: #fff8f2;
}

body[data-theme="dark"] .select option {
  color: #f5ece6;
  background: #2b201f;
}

body[data-theme="dark"] .select option:checked,
body[data-theme="dark"] .select option:selected {
  color: #fff5ee;
  background: #2b201f;
}

.select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

body:not([data-theme="dark"]) .select:focus {
  border-color: rgba(129, 1, 0, 0.28);
  box-shadow: 0 0 0 3px rgba(129, 1, 0, 0.08);
}

.textarea {
  min-height: 8rem;
  resize: vertical;
}

.newsletter-form .input,
.footer-newsletter .input {
  flex: 1 1 16rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

body:not([data-theme="dark"]) .newsletter-form .input {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.newsletter-form .input::placeholder,
.footer-newsletter .input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

body:not([data-theme="dark"]) .newsletter-form .input::placeholder {
  color: rgba(255, 240, 234, 0.82);
}

.page-hero {
  padding: calc(var(--nav-height) + clamp(1.8rem, 4vw, 3rem)) 0 clamp(2.4rem, 5vw, 4rem);
}

.page-hero-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: var(--space-4);
  padding: clamp(1.6rem, 3vw, 3rem);
  border-radius: 36px;
  background:
    linear-gradient(125deg, rgba(18, 12, 12, 0.98), rgba(45, 33, 33, 0.92)),
    var(--color-heading);
  box-shadow: var(--shadow-lift);
}

.page-hero-shell::before {
  content: "";
  position: absolute;
  left: -7rem;
  top: 50%;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129, 1, 0, 0.28), transparent 72%);
  transform: translateY(-50%);
  filter: blur(14px);
}

.page-hero-shell::after {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.page-hero-shell > * {
  position: relative;
  z-index: 1;
}

.page-hero-shell h1,
.page-hero-shell p {
  color: #fff;
}

.page-hero-shell h1 {
  max-width: 18ch;
  line-height: 0.96;
  font-size: clamp(2.1rem, 3.4vw, 3.8rem);
}

body.motorbikes-page .page-hero-shell h1 {
  max-width: 21ch;
}

.page-hero-shell .lead {
  max-width: 42rem;
  color: rgba(255, 248, 242, 0.84);
  font-size: 1rem;
}

body:not([data-theme="dark"]) .page-hero-shell {
  background: linear-gradient(140deg, #f7ede4 0%, #f1e1d4 52%, #ead6cb 100%);
  border: 1px solid rgba(129, 1, 0, 0.08);
  box-shadow: 0 24px 54px rgba(82, 31, 24, 0.12);
}

body:not([data-theme="dark"]) .page-hero-shell::before {
  background: radial-gradient(circle, rgba(129, 1, 0, 0.14), transparent 72%);
}

body:not([data-theme="dark"]) .page-hero-shell::after {
  border-color: rgba(129, 1, 0, 0.08);
}

body:not([data-theme="dark"]) .page-hero-shell h1 {
  color: #241717;
}

body:not([data-theme="dark"]) .page-hero-shell p {
  color: #5f4e49;
}

body:not([data-theme="dark"]) .page-hero-shell .eyebrow {
  border-color: rgba(129, 1, 0, 0.12);
  background: rgba(129, 1, 0, 0.05);
  color: var(--color-accent);
}

.page-hero-cars {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 390px);
  align-items: center;
  overflow: hidden;
  position: relative;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-top: clamp(1.6rem, 3vw, 2.8rem);
  padding-bottom: clamp(1.6rem, 3vw, 2.8rem);
  background:
    linear-gradient(120deg, rgba(14, 9, 9, 0.96), rgba(34, 22, 22, 0.9)),
    var(--color-heading);
}

.page-hero-cars::before {
  content: "";
  position: absolute;
  left: -8rem;
  top: 50%;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129, 1, 0, 0.36), transparent 70%);
  transform: translateY(-50%);
  filter: blur(12px);
}

.page-hero-cars::after {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.15rem;
  max-width: 48rem;
}

.page-hero-copy h1 {
  max-width: 20ch;
  line-height: 1.2;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.page-hero-copy .lead {
  max-width: 28rem;
  color: rgba(255, 248, 242, 0.86);
  font-size: 1rem;
}

.page-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.45rem;
}

.page-hero-tags span {
  padding: 0.5rem 0.82rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 248, 242, 0.82);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hero-aside {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  justify-items: stretch;
  align-self: stretch;
  align-content: center;
}

.page-hero-metric,
.page-hero-note {
  padding: 1.2rem 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.page-hero-metric strong {
  display: block;
  color: #fff;
  font-size: 2.35rem;
  line-height: 1;
  margin-bottom: 0.45rem;
  letter-spacing: -0.04em;
}

.page-hero-metric span {
  color: rgba(255, 248, 242, 0.74);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.page-hero-note p {
  color: rgba(255, 248, 242, 0.82);
  font-size: 0.98rem;
  line-height: 1.6;
}

body:not([data-theme="dark"]) .page-hero-cars {
  background: linear-gradient(140deg, #f7ede4 0%, #f1e1d4 52%, #ead6cb 100%);
  border: 1px solid rgba(129, 1, 0, 0.08);
}

body:not([data-theme="dark"]) .page-hero-cars::before {
  background: radial-gradient(circle, rgba(129, 1, 0, 0.14), transparent 72%);
}

body:not([data-theme="dark"]) .page-hero-cars::after {
  border-color: rgba(129, 1, 0, 0.08);
}

body:not([data-theme="dark"]) .page-hero-cars h1 {
  color: #241717;
}

body:not([data-theme="dark"]) .page-hero-cars .lead {
  color: #5f4e49;
}

body:not([data-theme="dark"]) .page-hero-cars .eyebrow {
  border-color: rgba(129, 1, 0, 0.12);
  background: rgba(129, 1, 0, 0.05);
  color: var(--color-accent);
}

body:not([data-theme="dark"]) .page-hero-cars .page-hero-tags span {
  border-color: rgba(129, 1, 0, 0.12);
  background: rgba(255, 255, 255, 0.52);
  color: #7a6058;
}

body:not([data-theme="dark"]) .page-hero-cars .page-hero-metric,
body:not([data-theme="dark"]) .page-hero-cars .page-hero-note {
  border-color: rgba(129, 1, 0, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 250, 246, 0.52));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

body:not([data-theme="dark"]) .page-hero-cars .page-hero-metric strong {
  color: #2d1d1b;
}

body:not([data-theme="dark"]) .page-hero-cars .page-hero-metric span {
  color: #8b7167;
}

body:not([data-theme="dark"]) .page-hero-cars .page-hero-note p {
  color: #5d4d48;
}

.listing-layout {
  display: grid;
  grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
  gap: clamp(1.4rem, 2.5vw, 2.4rem);
  align-items: start;
}

.filters-panel {
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
  border-radius: 28px;
  overflow: visible;
  background:
    radial-gradient(circle at top left, rgba(162, 44, 26, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, #261d1c 0%, #1d1515 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 26px 48px rgba(10, 7, 7, 0.22);
}

.filters-group {
  display: grid;
  gap: 0.45rem;
}

.filters-group label {
  font-size: 0.74rem;
  color: rgba(248, 236, 230, 0.7);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filters-panel .section-header {
  gap: 0.45rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.filters-panel .section-header h3 {
  font-size: 1.12rem;
  line-height: 1.02;
  color: #fff5ee;
}

.filters-panel .section-header p {
  max-width: 18rem;
  font-size: 0.88rem;
  line-height: 1.35;
  color: rgba(241, 228, 223, 0.72);
}

.filters-panel form {
  display: grid;
  gap: 0.85rem;
  overflow: visible;
}

.filters-panel .select {
  min-height: 3.15rem;
  padding: 0.82rem 0.95rem;
  border-radius: 18px;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  color: #fff6ef;
}

body:not([data-theme="dark"]) .filters-panel {
  background:
    radial-gradient(circle at top left, rgba(182, 79, 46, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 251, 247, 0.96)),
    linear-gradient(180deg, #fffaf6 0%, #f6ede6 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 18px 42px rgba(82, 31, 24, 0.1);
}

body:not([data-theme="dark"]) .filters-panel .select {
  border-color: rgba(129, 1, 0, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 246, 0.86)),
    rgba(255, 252, 249, 0.88);
  color: var(--color-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

body:not([data-theme="dark"]) .filters-group label {
  color: rgba(92, 64, 58, 0.75);
}

body:not([data-theme="dark"]) .filters-panel .section-header {
  border-bottom-color: rgba(129, 1, 0, 0.08);
}

body:not([data-theme="dark"]) .filters-panel .section-header h3 {
  color: #241716;
}

body:not([data-theme="dark"]) .filters-panel .section-header p {
  color: #655550;
}

.mobile-filter-toggle {
  display: none;
  width: 100%;
  margin-bottom: 1rem;
}

.listing-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.3rem;
}

.no-results {
  padding: 2.6rem 2rem;
  border-radius: 28px;
  border: 1px dashed rgba(129, 1, 0, 0.26);
  background: linear-gradient(180deg, rgba(129, 1, 0, 0.05), rgba(129, 1, 0, 0.02));
  color: var(--color-muted);
  text-align: center;
}

.about-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.about-image,
.contact-map iframe {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.about-image img,
.contact-map iframe {
  width: 100%;
  min-height: 100%;
  border: 0;
}

.value-list {
  display: grid;
  gap: 0.9rem;
}

.value-list-spaced {
  margin-top: 1.5rem;
}

.about-story-note {
  margin-top: 1rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.contact-side-stack {
  display: grid;
  gap: 1.5rem;
}

.contact-form-card,
.contact-side-stack .contact-card {
  padding: clamp(1.35rem, 2.2vw, 2rem);
}

.contact-card,
.legal-card,
.footer-shell {
  border-radius: 32px;
  padding: var(--space-5);
}

.contact-panel-head {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
}

.contact-panel-head h2 {
  font-size: clamp(1.75rem, 2.6vw, 2.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.contact-panel-head p {
  max-width: 29rem;
  font-size: 0.98rem;
  color: var(--color-muted);
}

.contact-form-head {
  gap: 0.55rem;
  max-width: 30rem;
}

.contact-form-head-spaced {
  margin-bottom: 1.15rem;
}

.contact-form-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.95rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.contact-form-head p {
  color: var(--color-muted);
}

.contact-form {
  gap: 0.8rem;
}

.contact-form .input,
.contact-form .textarea {
  border-radius: 20px;
  min-height: 3.3rem;
  padding: 0.82rem 1rem;
  background: rgba(255, 255, 255, 0.015);
}

.contact-form .textarea {
  min-height: 8.8rem;
}

.contact-submit {
  min-height: 3.25rem;
  padding-inline: 1.35rem;
  border-radius: 999px;
  align-self: flex-start;
  box-shadow: 0 10px 20px rgba(95, 14, 10, 0.14);
}

.contact-channel-grid {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.contact-channel {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
  color: inherit;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.contact-channel:hover {
  transform: translateY(-2px);
  border-color: rgba(186, 53, 44, 0.28);
  background:
    linear-gradient(135deg, rgba(186, 53, 44, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.contact-channel--primary {
  background:
    radial-gradient(circle at top left, rgba(186, 53, 44, 0.22), rgba(186, 53, 44, 0)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
}

.contact-channel-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  color: #fff4ec;
  font-size: 1rem;
}

.contact-channel-copy {
  display: grid;
  gap: 0.18rem;
}

.contact-channel-copy strong {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 244, 236, 0.68);
}

.contact-channel-copy span:last-child {
  font-size: 0.99rem;
  color: #fff8f2;
}

.contact-location-card {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.2rem;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at bottom right, rgba(129, 1, 0, 0.14), rgba(129, 1, 0, 0)),
    rgba(255, 255, 255, 0.018);
}

.contact-location-label,
.contact-social-label {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 244, 236, 0.58);
}

.contact-location-copy p,
.contact-social-copy p {
  color: #fff6ef;
}

.contact-location-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1rem;
}

.contact-map-code {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 244, 236, 0.88);
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(186, 53, 44, 0.22);
  background: rgba(186, 53, 44, 0.08);
  color: #fff4ec;
}

.contact-map-link:hover {
  border-color: rgba(186, 53, 44, 0.34);
  background: rgba(186, 53, 44, 0.14);
}

.contact-social-panel {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.85rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-social-links a {
  width: 2.9rem;
  height: 2.9rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

body:not([data-theme="dark"]) .contact-channel,
body:not([data-theme="dark"]) .contact-location-card {
  border-color: rgba(129, 1, 0, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 248, 244, 0.92)),
    rgba(255, 255, 255, 0.92);
}

body:not([data-theme="dark"]) .contact-channel--primary {
  background:
    radial-gradient(circle at top left, rgba(186, 53, 44, 0.12), rgba(186, 53, 44, 0)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 247, 243, 0.96)),
    rgba(255, 255, 255, 0.94);
}

body:not([data-theme="dark"]) .contact-channel-icon {
  border-color: rgba(129, 1, 0, 0.1);
  background: rgba(129, 1, 0, 0.05);
  color: #6e1714;
}

body:not([data-theme="dark"]) .contact-channel-copy strong,
body:not([data-theme="dark"]) .contact-location-label,
body:not([data-theme="dark"]) .contact-social-label {
  color: rgba(83, 53, 49, 0.7);
}

body:not([data-theme="dark"]) .contact-channel-copy span:last-child,
body:not([data-theme="dark"]) .contact-location-copy p,
body:not([data-theme="dark"]) .contact-social-copy p,
body:not([data-theme="dark"]) .contact-map-code {
  color: #241716;
}

body:not([data-theme="dark"]) .contact-social-panel {
  border-top-color: rgba(129, 1, 0, 0.08);
}

body:not([data-theme="dark"]) .contact-map-code {
  border-color: rgba(129, 1, 0, 0.08);
  background: rgba(129, 1, 0, 0.04);
}

body:not([data-theme="dark"]) .contact-map-link {
  border-color: rgba(129, 1, 0, 0.16);
  background: rgba(129, 1, 0, 0.08);
  color: #6e1714;
}

.contact-list,
.legal-list,
.footer-links {
  display: grid;
  gap: 0.85rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.social-links a {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-heading);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(129, 1, 0, 0.25);
  background: rgba(129, 1, 0, 0.08);
}

.legal-layout {
  display: grid;
  gap: var(--space-4);
}

.legal-card h2 {
  margin-bottom: 0.75rem;
}

.legal-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-muted);
}

.site-footer {
  padding: 0 0 var(--space-5);
}

.footer-shell {
  background:
    linear-gradient(135deg, rgba(27, 23, 23, 0.98), rgba(43, 36, 36, 0.96)),
    var(--color-heading);
  color: #fff;
  padding: 2rem 2rem 1.3rem;
  border-radius: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.78fr 0.78fr 0.82fr;
  gap: 2rem;
}

.footer-shell h3,
.footer-shell p,
.footer-shell a,
.footer-shell small {
  color: #fff;
}

.footer-shell h3 {
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.footer-shell .brand-mark {
  font-size: 0.96rem;
  gap: 0.7rem;
}

.footer-shell .brand-mark span {
  width: 2.35rem;
  box-shadow: 0 9px 20px rgba(129, 1, 0, 0.18);
}

.footer-shell .brand small {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.footer-shell p {
  max-width: 28rem;
  line-height: 1.5;
}

.footer-intro-text {
  margin-top: 1rem;
}

.footer-links a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links {
  gap: 0.6rem;
}

.footer-links a,
.footer-legal a {
  width: fit-content;
  font-size: 0.94rem;
  line-height: 1.4;
  transition: color 0.24s ease, transform 0.24s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #fff4ec;
  transform: translateX(2px);
}

.footer-newsletter {
  align-items: center;
  gap: 0.8rem;
  flex-wrap: nowrap;
}

.footer-newsletter-spaced {
  margin-top: 1.25rem;
}

.footer-shell .footer-newsletter .input {
  min-height: 3rem;
  border-radius: 18px;
  padding-inline: 0.95rem;
  flex: 1 1 auto;
  min-width: 0;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.footer-shell .footer-newsletter .button-light {
  min-height: 3rem;
  min-width: 4.5rem;
  padding-inline: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  flex: 0 0 auto;
}

.footer-shell .social-links {
  gap: 0.75rem;
  margin-top: 0.15rem;
}

.footer-shell .social-links a {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  color: #fff4ec;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-shell .social-links a:hover {
  transform: translateY(-3px);
  background:
    radial-gradient(circle at top, rgba(129, 1, 0, 0.22), rgba(129, 1, 0, 0.08)),
    rgba(255, 255, 255, 0.05);
  border-color: rgba(129, 1, 0, 0.28);
}

.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  min-width: min(24rem, calc(100vw - 2rem));
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: var(--color-heading);
  color: #fff;
  box-shadow: var(--shadow-lift);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

body:not([data-theme="dark"]) .toast {
  background: rgba(255, 248, 242, 0.96);
  color: #241716;
  border: 1px solid rgba(129, 1, 0, 0.08);
  box-shadow: 0 18px 38px rgba(66, 28, 22, 0.14);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(17, 13, 13, 0.56);
  backdrop-filter: blur(10px);
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-panel {
  width: min(42rem, 100%);
  max-height: min(94vh, 56rem);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-radius: 32px;
  padding: var(--space-5);
  transform: translateY(18px);
  transition: transform 0.28s ease;
}

.modal.open .modal-panel {
  transform: translateY(0);
}

.modal-header,
.modal-total,
.modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.modal-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.modal-subtitle {
  margin-top: 0.35rem;
  max-width: 36rem;
}

.booking-modal-panel {
  position: relative;
  width: min(52rem, 100%);
}

.booking-modal-panel .modal-header {
  padding-right: 3.35rem;
}

.booking-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff4ec;
  backdrop-filter: blur(10px);
}

.booking-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.product-detail-panel {
  position: relative;
  width: min(64rem, calc(100vw - 1.5rem));
  max-height: min(92vh, 54rem);
  max-width: 100%;
  padding: 1.2rem;
  border-radius: 30px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, #2a201f 0%, #1f1716 100%);
}

.product-detail-header {
  align-items: flex-start;
  padding-right: 3.35rem;
}

.product-detail-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff4ec;
  backdrop-filter: blur(10px);
}

.product-detail-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.product-detail-shell {
  display: grid;
  gap: 1rem;
  margin-top: 0.85rem;
}

.product-detail-top {
  display: grid;
  grid-template-columns: minmax(18rem, 24rem) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  min-width: 0;
}

.product-detail-media {
  display: grid;
  gap: 0.6rem;
  align-content: start;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.product-detail-image-wrap,
.product-detail-summary,
.product-detail-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.product-detail-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.product-detail-panel[data-detail-kind="car"] .product-detail-image-wrap {
  aspect-ratio: 16 / 10;
}

.product-detail-panel[data-detail-kind="motorbike"] .product-detail-image-wrap {
  aspect-ratio: 5 / 4;
}

.product-detail-panel[data-detail-kind="apartment"] .product-detail-image-wrap {
  aspect-ratio: 4 / 3;
}

.product-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.product-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  align-content: start;
  min-width: 0;
  padding-bottom: 0.1rem;
  scrollbar-width: thin;
}

.product-detail-thumb {
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  aspect-ratio: 16 / 10;
  opacity: 0.72;
  transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.product-detail-panel[data-detail-kind="car"] .product-detail-thumb {
  aspect-ratio: 16 / 10;
}

.product-detail-panel[data-detail-kind="motorbike"] .product-detail-thumb {
  aspect-ratio: 5 / 4;
}

.product-detail-panel[data-detail-kind="apartment"] .product-detail-thumb {
  aspect-ratio: 4 / 3;
}

.product-detail-thumb:hover,
.product-detail-thumb.is-active {
  opacity: 1;
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
}

.product-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.product-detail-summary {
  display: grid;
  gap: 0.95rem;
  align-content: start;
  min-width: 0;
  max-width: 100%;
  padding: 1rem 1.05rem;
  border-radius: 24px;
}

.product-detail-price {
  display: grid;
  gap: 0.18rem;
  padding: 0.9rem 0.95rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(129, 1, 0, 0.12), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.product-detail-kicker,
.product-detail-card-label,
.product-detail-fact span {
  color: rgba(241, 228, 223, 0.56);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-price strong {
  color: #fff8f2;
  font-size: 2rem;
  line-height: 1.02;
}

.product-detail-price small {
  color: rgba(241, 228, 223, 0.76);
  font-size: 0.92rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.product-detail-fact {
  padding: 0.85rem 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.product-detail-fact span {
  display: block;
  margin-bottom: 0.25rem;
}

.product-detail-fact strong {
  color: #fff4ec;
  font-size: 0.96rem;
  line-height: 1.25;
}

.product-detail-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-detail-card {
  padding: 1rem 1.05rem;
  border-radius: 24px;
}

.product-detail-card-label {
  display: block;
  margin-bottom: 0.55rem;
}

.product-detail-list {
  margin: 0;
  padding-left: 1rem;
  color: rgba(241, 228, 223, 0.8);
  display: grid;
  gap: 0.42rem;
  font-size: 0.94rem;
  line-height: 1.45;
}

.product-detail-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

@media (max-width: 980px) {
  .product-detail-panel {
    width: min(46rem, calc(100vw - 1.1rem));
  }

  .product-detail-top,
  .product-detail-sections {
    grid-template-columns: 1fr;
  }

  .product-detail-image-wrap {
    min-height: 18rem;
  }
}

body:not([data-theme="dark"]) .product-detail-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 242, 0.96)),
    linear-gradient(180deg, #fff9f4 0%, #f4ebe3 100%);
}

body:not([data-theme="dark"]) .product-detail-image-wrap,
body:not([data-theme="dark"]) .product-detail-summary,
body:not([data-theme="dark"]) .product-detail-card {
  border-color: rgba(129, 1, 0, 0.08);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 32px rgba(82, 31, 24, 0.08);
}

body:not([data-theme="dark"]) .product-detail-thumb {
  border-color: rgba(129, 1, 0, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

body:not([data-theme="dark"]) .product-detail-thumb:hover,
body:not([data-theme="dark"]) .product-detail-thumb.is-active {
  border-color: rgba(90, 68, 63, 0.22);
}

body:not([data-theme="dark"]) .product-detail-price,
body:not([data-theme="dark"]) .product-detail-fact {
  border-color: rgba(129, 1, 0, 0.08);
  background: rgba(129, 1, 0, 0.035);
}

body:not([data-theme="dark"]) .product-detail-kicker,
body:not([data-theme="dark"]) .product-detail-card-label,
body:not([data-theme="dark"]) .product-detail-fact span {
  color: rgba(99, 66, 60, 0.62);
}

body:not([data-theme="dark"]) .product-detail-price strong,
body:not([data-theme="dark"]) .product-detail-fact strong {
  color: #241817;
}

body:not([data-theme="dark"]) .product-detail-price small,
body:not([data-theme="dark"]) .product-detail-list {
  color: #62524d;
}

.booking-summary-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  background: linear-gradient(180deg, rgba(129, 1, 0, 0.08), rgba(129, 1, 0, 0.03));
}

.booking-summary-card strong {
  color: var(--color-heading);
}

.booking-summary-total {
  text-align: right;
}

.booking-summary-total small {
  display: block;
  margin-top: 0.35rem;
  color: var(--color-muted);
}

.booking-inline-note {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(129, 1, 0, 0.14);
  background: linear-gradient(180deg, rgba(129, 1, 0, 0.08), rgba(129, 1, 0, 0.03));
  color: #f2d8cf;
  font-size: 0.88rem;
  line-height: 1.5;
}

body:not([data-theme="dark"]) .booking-inline-note {
  border-color: rgba(129, 1, 0, 0.12);
  background: linear-gradient(180deg, rgba(129, 1, 0, 0.08), rgba(129, 1, 0, 0.03));
  color: #6e130d;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.checkbox-row input {
  margin-top: 0.2rem;
}

.long-stay-note {
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: rgba(194, 121, 24, 0.09);
  border: 1px solid rgba(194, 121, 24, 0.18);
  color: var(--color-warning);
  font-size: 0.88rem;
  line-height: 1.45;
}

#bookingLicenseGroup[hidden] {
  display: none;
}

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

.confirmation-box {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(27, 109, 79, 0.08);
  border: 1px solid rgba(27, 109, 79, 0.22);
}

.floating-whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 1rem;
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff !important;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.28);
  overflow: hidden;
  isolation: isolate;
}

.floating-whatsapp::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.82rem;
  height: 1.82rem;
  transform: translate(-50%, -50%);
  background: #ffffff;
  display: block;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='black' d='M16.04 3.2c-7.07 0-12.8 5.73-12.8 12.8 0 2.25.59 4.45 1.7 6.39L3.2 28.8l6.56-1.72a12.73 12.73 0 0 0 6.25 1.63h.01c7.06 0 12.79-5.74 12.79-12.8 0-3.42-1.33-6.63-3.74-9.05A12.7 12.7 0 0 0 16.04 3.2zm0 23.32h-.01a10.64 10.64 0 0 1-5.43-1.49l-.39-.23-3.89 1.02 1.04-3.78-.25-.4a10.6 10.6 0 0 1-1.62-5.64c0-5.88 4.78-10.66 10.67-10.66 2.84 0 5.52 1.11 7.53 3.12a10.58 10.58 0 0 1 3.12 7.54c0 5.88-4.79 10.67-10.67 10.67zm5.84-7.93c-.32-.16-1.88-.93-2.18-1.03-.29-.11-.5-.16-.71.16-.21.31-.82 1.03-1 1.24-.18.21-.37.24-.68.08-.32-.16-1.33-.49-2.53-1.58-.93-.83-1.57-1.86-1.75-2.17-.18-.32-.02-.49.14-.65.14-.14.31-.37.47-.55.15-.18.21-.32.31-.53.1-.21.05-.4-.03-.56-.08-.16-.71-1.7-.97-2.33-.26-.62-.52-.54-.71-.55h-.61c-.21 0-.55.08-.84.39-.29.31-1.11 1.08-1.11 2.64 0 1.56 1.14 3.07 1.3 3.28.16.21 2.24 3.43 5.42 4.8.76.33 1.35.52 1.81.66.77.24 1.47.21 2.03.13.62-.09 1.88-.77 2.14-1.51.26-.74.26-1.37.18-1.5-.08-.13-.29-.21-.61-.37z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='black' d='M16.04 3.2c-7.07 0-12.8 5.73-12.8 12.8 0 2.25.59 4.45 1.7 6.39L3.2 28.8l6.56-1.72a12.73 12.73 0 0 0 6.25 1.63h.01c7.06 0 12.79-5.74 12.79-12.8 0-3.42-1.33-6.63-3.74-9.05A12.7 12.7 0 0 0 16.04 3.2zm0 23.32h-.01a10.64 10.64 0 0 1-5.43-1.49l-.39-.23-3.89 1.02 1.04-3.78-.25-.4a10.6 10.6 0 0 1-1.62-5.64c0-5.88 4.78-10.66 10.67-10.66 2.84 0 5.52 1.11 7.53 3.12a10.58 10.58 0 0 1 3.12 7.54c0 5.88-4.79 10.67-10.67 10.67zm5.84-7.93c-.32-.16-1.88-.93-2.18-1.03-.29-.11-.5-.16-.71.16-.21.31-.82 1.03-1 1.24-.18.21-.37.24-.68.08-.32-.16-1.33-.49-2.53-1.58-.93-.83-1.57-1.86-1.75-2.17-.18-.32-.02-.49.14-.65.14-.14.31-.37.47-.55.15-.18.21-.32.31-.53.1-.21.05-.4-.03-.56-.08-.16-.71-1.7-.97-2.33-.26-.62-.52-.54-.71-.55h-.61c-.21 0-.55.08-.84.39-.29.31-1.11 1.08-1.11 2.64 0 1.56 1.14 3.07 1.3 3.28.16.21 2.24 3.43 5.42 4.8.76.33 1.35.52 1.81.66.77.24 1.47.21 2.03.13.62-.09 1.88-.77 2.14-1.51.26-.74.26-1.37.18-1.5-.08-.13-.29-.21-.61-.37z'/%3E%3C/svg%3E") center / contain no-repeat;
  pointer-events: none;
}

.floating-whatsapp svg {
  display: none;
}

.floating-whatsapp::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 0.75rem);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  white-space: nowrap;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  background: rgba(28, 22, 21, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff4ec;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.floating-whatsapp:hover::before,
.floating-whatsapp:focus-visible::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.focus-card {
  outline: 2px solid rgba(129, 1, 0, 0.45);
  outline-offset: 4px;
}

@media (min-width: 1280px) {
  .hero-copy .lead,
  .page-hero-copy .lead,
  .section-header .lead {
    font-size: 1.08rem;
  }

  .page-hero-shell,
  .contact-card,
  .legal-card,
  .footer-shell {
    border-radius: 36px;
  }
}

@media (min-width: 1500px) {
  .hero-content {
    min-height: calc(100svh - var(--nav-height) - 3rem);
  }
}

@media (max-width: 1080px) {
  :root {
    --container: min(100%, calc(100% - 2rem));
  }

  .hero-content,
  .benefits-layout,
  .about-layout,
  .contact-layout,
  .listing-layout,
  .footer-grid,
  .page-hero-cars {
    grid-template-columns: 1fr;
  }

  .feature-strip-grid,
  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters-panel {
    position: static;
  }

}

@media (max-width: 760px) {
  :root {
    --nav-height: 72px;
    --container: min(100%, calc(100% - 1rem));
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(16, 12, 12, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  body:not([data-theme="dark"]).nav-open::before {
    background: rgba(255, 248, 243, 0.2);
  }

  body {
    font-size: 1rem;
    line-height: 1.6;
  }

  .page-shell,
  .site-header,
  .site-footer,
  main,
  section,
  .container,
  .hero-content,
  .page-hero-shell,
  .listing-layout,
  .contact-layout,
  .about-layout,
  .footer-shell,
  .modal-panel,
  .booking-modal-panel,
  .product-detail-panel {
    max-width: 100%;
  }

  .nav {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    gap: 0.7rem;
  }

  .nav-links {
    position: fixed;
    left: 0.5rem;
    right: 0.5rem;
    top: calc(var(--nav-height) + 0.4rem);
    z-index: 101;
    flex-direction: column;
    padding: 0.85rem;
    border-radius: 20px;
    background: rgba(32, 26, 25, 0.82);
    border: 1px solid rgba(255, 248, 242, 0.1);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    justify-self: stretch;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  body:not([data-theme="dark"]) .nav-links {
    background: rgba(255, 250, 245, 0.82);
    border-color: rgba(90, 68, 63, 0.1);
    box-shadow: 0 24px 50px rgba(82, 31, 24, 0.14);
  }

  body:not([data-theme="dark"]) .nav-links a {
    color: #2b1c1a;
  }

  body:not([data-theme="dark"]) .nav-links a:hover,
  body:not([data-theme="dark"]) .nav-links a.active {
    color: #1f1413;
    background: rgba(129, 1, 0, 0.08);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-actions .button {
    display: none;
  }

  .brand {
    gap: 0.55rem;
    min-width: 0;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-logo,
  .brand-logo-icon {
    width: 2.9rem;
    max-height: 42px;
  }

  .brand-copy strong {
    font-size: 0.82rem;
  }

  .brand small {
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }

  body:not([data-theme="dark"]) .brand-copy strong {
    color: #201514;
  }

  body:not([data-theme="dark"]) .brand small {
    color: rgba(73, 51, 47, 0.88);
    opacity: 1;
  }

  .nav-actions {
    gap: 0.34rem;
    flex-shrink: 0;
  }

  .theme-toggle,
  .language-toggle,
  .nav-toggle {
    width: 2.55rem;
    height: 2.55rem;
    display: inline-grid;
    place-items: center;
  }

  .language-toggle {
    min-width: 2.55rem;
    width: auto;
    padding-inline: 0.56rem;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    display: inline-grid;
    place-items: center;
  }

  .nav-actions .language-toggle {
    display: inline-grid !important;
  }

  body:not([data-theme="dark"]) .theme-toggle,
  body:not([data-theme="dark"]) .language-toggle,
  body:not([data-theme="dark"]) .nav-toggle {
    color: #201514;
    background: rgba(255, 252, 248, 0.9);
    border: 1px solid rgba(66, 28, 22, 0.08);
    box-shadow: 0 8px 18px rgba(66, 28, 22, 0.08);
  }

  .nav-toggle {
    display: inline-grid;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 1rem);
    padding-bottom: 2.75rem;
  }

  .hero-stats-grid,
  .benefit-list,
  .feature-strip-grid,
  .listing-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .listing-card {
    border-radius: 24px;
  }

  .listing-card .card-image {
    min-height: 12.5rem;
  }

  .listing-card .card-body {
    padding: 1rem 0.95rem;
    gap: 0.85rem;
  }

  .listing-card h3 {
    font-size: 1.7rem;
  }

  .listing-card p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .listing-card .chip {
    font-size: 0.72rem;
    padding: 0.42rem 0.64rem;
  }

  .listing-card .card-price strong {
    font-size: 1.65rem;
  }

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

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

  .listing-card-detail-item,
  .listing-card-detail-block {
    padding: 0.8rem 0.82rem;
  }

  .testimonial-card {
    flex-basis: min(19rem, calc(100vw - 2.2rem));
  }

  .mobile-filter-toggle {
    display: inline-flex;
    justify-content: center;
    min-height: 3rem;
  }

  .filters-panel {
    display: none;
    gap: 1rem;
    padding: 1rem;
    border-radius: 24px;
  }

  .filters-panel.open {
    display: grid;
  }

  .newsletter-form,
  .contact-form,
  .hero-actions,
  .modal-header,
  .modal-total,
  .modal-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

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

  .booking-summary-total {
    text-align: left;
  }

  .section,
  .section-tight {
    padding: 3rem 0;
  }

  .page-hero-shell,
  .contact-card,
  .legal-card,
  .footer-shell,
  .benefits-panel,
  .glass-card,
  .modal-panel {
    padding: 1rem;
    border-radius: 24px;
  }

  .hero-copy,
  .page-hero-copy,
  .section-header,
  .filters-panel .section-header p,
  .footer-shell p {
    max-width: 100%;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  .hero .button,
  .hero-actions .button,
  .newsletter-form .button,
  .card-price .button {
    width: 100%;
  }

  .newsletter-form .input,
  .footer-newsletter .input {
    flex: 0 0 auto;
    min-height: 3.25rem;
  }

  .footer-newsletter {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.7rem;
  }

  .footer-newsletter .input {
    flex: 1 1 auto;
    min-width: 0;
  }

  .footer-newsletter .button {
    width: auto;
    flex: 0 0 auto;
    padding-inline: 1.35rem;
    white-space: nowrap;
  }

  .page-hero {
    padding-top: calc(var(--nav-height) + 1rem);
  }

  .page-hero-copy h1 {
    max-width: 100%;
  }

  body.motorbikes-page .page-hero-copy h1 {
    font-size: clamp(1.7rem, 9.2vw, 2.7rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    max-width: 11.5ch;
  }

  body.motorbikes-page .page-hero-copy .lead {
    font-size: 0.94rem;
    line-height: 1.38;
  }

  body.motorbikes-page .page-hero-tags {
    gap: 0.55rem;
  }

  body.motorbikes-page .page-hero-tags span {
    font-size: 0.78rem;
    padding: 0.62rem 0.78rem;
  }

  .page-hero-shell .lead,
  .section-header .lead {
    font-size: 1rem;
    line-height: 1.5;
  }

  .filters-panel .section-header p,
  .contact-panel-head p,
  .contact-form-head p,
  .contact-channel-copy span:last-child,
  .contact-location-copy p,
  .contact-social-copy p,
  .contact-map-code,
  .contact-map-link,
  .footer-shell p,
  .footer-links a,
  .footer-legal a,
  .newsletter-status,
  .product-detail-list,
  .booking-inline-note,
  .modal-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }

  .contact-panel-head {
    gap: 0.6rem;
    margin-bottom: 0.95rem;
  }

  .contact-panel-head h2 {
    font-size: clamp(1.55rem, 8.5vw, 2.15rem);
  }

  .contact-form-head h2 {
    font-size: clamp(1.65rem, 9vw, 2.25rem);
  }

  .contact-channel {
    padding: 0.85rem 0.95rem;
    border-radius: 22px;
  }

  .contact-channel-icon {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 16px;
  }

  .contact-channel-copy span:last-child {
    font-size: 0.94rem;
  }

  .contact-location-card {
    padding: 0.92rem;
    border-radius: 22px;
  }

  .contact-location-meta {
    align-items: stretch;
  }

  .contact-map-code,
  .contact-map-link {
    width: 100%;
    justify-content: center;
  }

  .contact-social-links a {
    width: 2.8rem;
    height: 2.8rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "intro intro"
      "links legal"
      ". social";
    gap: 1.5rem;
  }

  .footer-grid > :first-child {
    grid-area: intro;
  }

  .footer-grid > :nth-child(2) {
    grid-area: links;
  }

  .footer-grid > :nth-child(3) {
    grid-area: legal;
  }

  .footer-grid > :last-child {
    grid-area: social;
    align-self: start;
    margin-top: -5.8rem;
  }

  .footer-shell h3 {
    margin-bottom: 0.55rem;
    font-size: 0.96rem;
  }

  .footer-links {
    gap: 0.45rem;
  }

  .footer-links a,
  .footer-legal a {
    font-size: 1rem;
    line-height: 1.45;
  }

  .footer-shell .social-links {
    justify-content: flex-start;
    gap: 0.65rem;
    margin-top: 0.05rem;
  }

  .footer-shell .social-links a {
    width: 2.75rem;
    height: 2.75rem;
  }

  .footer-bottom {
    gap: 0.7rem;
  }

  .logo-list-panel {
    gap: 1.1rem;
    padding: 1rem 0.95rem 1.05rem;
    border-radius: 24px;
  }

  .logo-list-panel::after {
    inset: 0.75rem;
    border-radius: 18px;
  }

  .logo-list-copy {
    gap: 0.55rem;
  }

  .logo-list-copy h2 {
    font-size: clamp(1.5rem, 8.4vw, 2.15rem);
    line-height: 1.02;
  }

  .logo-list-copy .lead {
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .logo-list-panel-editorial {
    gap: 1rem;
  }

  .logo-rail {
    gap: 0.4rem;
  }

  .logo-rail-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 0.85rem 0;
  }

  .logo-wordmark {
    min-height: 2rem;
    font-size: 0.92rem;
  }

  body[data-page="apartments"] .page-hero-shell,
  body[data-page="about"] .page-hero-shell,
  body[data-page="contact"] .page-hero-shell {
    gap: 0.85rem;
    padding: 1rem 0.95rem 1.1rem;
  }

  body[data-page="apartments"] .page-hero-shell::after,
  body[data-page="about"] .page-hero-shell::after,
  body[data-page="contact"] .page-hero-shell::after {
    inset: 0.8rem;
    border-radius: 22px;
  }

  body[data-page="apartments"] .page-hero-shell h1,
  body[data-page="about"] .page-hero-shell h1,
  body[data-page="contact"] .page-hero-shell h1 {
    max-width: 11ch;
    line-height: 1.02;
    font-size: clamp(1.9rem, 10vw, 2.85rem);
  }

  body[data-page="apartments"] .page-hero-shell .lead,
  body[data-page="about"] .page-hero-shell .lead,
  body[data-page="contact"] .page-hero-shell .lead {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  body[data-page="apartments"] .listing-layout {
    gap: 0.9rem;
  }

  body[data-page="apartments"] .mobile-filter-toggle {
    margin-bottom: 0.8rem;
  }

  body[data-page="apartments"] .filters-panel {
    gap: 0.9rem;
    padding: 0.95rem;
    border-radius: 22px;
  }

  body[data-page="apartments"] .filters-panel .section-header {
    gap: 0.35rem;
    padding-bottom: 0.65rem;
  }

  body[data-page="apartments"] .filters-panel .section-header h3 {
    font-size: 1rem;
  }

  body[data-page="apartments"] .filters-panel .section-header p {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  body[data-page="apartments"] .filters-panel form {
    gap: 0.75rem;
  }

  body[data-page="apartments"] .filters-panel .select {
    min-height: 3rem;
    padding: 0.76rem 0.9rem;
    border-radius: 16px;
  }

  body[data-page="apartments"] .listing-grid {
    gap: 1rem;
  }

  body[data-page="about"] .about-layout {
    gap: 1rem;
  }

  body[data-page="about"] .about-image {
    order: -1;
  }

  body[data-page="about"] .about-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  body[data-page="about"] .section-header {
    gap: 0.65rem;
  }

  body[data-page="about"] .section-header h2 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
    line-height: 1.02;
  }

  body[data-page="about"] .value-list {
    gap: 0.75rem;
    margin-top: 1.1rem !important;
  }

  body[data-page="about"] .value-item {
    gap: 0.7rem;
    padding: 0.85rem 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  body:not([data-theme="dark"])[data-page="about"] .value-item {
    background: rgba(129, 1, 0, 0.035);
    border-color: rgba(129, 1, 0, 0.08);
  }

  body[data-page="contact"] .contact-layout,
  body[data-page="contact"] .contact-side-stack {
    gap: 1rem;
  }

  body[data-page="contact"] .contact-form-card,
  body[data-page="contact"] .contact-side-stack .contact-card {
    padding: 1rem 0.95rem;
  }

  body[data-page="contact"] .contact-form {
    gap: 0.7rem;
  }

  body[data-page="contact"] .contact-form .input,
  body[data-page="contact"] .contact-form .textarea {
    border-radius: 18px;
  }

  body[data-page="contact"] .contact-form .textarea {
    min-height: 7.4rem;
  }

  body[data-page="contact"] .contact-submit {
    width: 100%;
    align-self: stretch;
  }

  body[data-page="contact"] .contact-channel-grid {
    gap: 0.65rem;
    margin-bottom: 0.75rem;
  }

  body[data-page="contact"] .contact-channel {
    gap: 0.8rem;
  }

  body[data-page="contact"] .contact-channel-copy span:last-child,
  body[data-page="contact"] .contact-location-copy p,
  body[data-page="contact"] .contact-social-copy p {
    overflow-wrap: anywhere;
  }

  body[data-page="contact"] .contact-location-card {
    gap: 0.75rem;
  }

  body[data-page="contact"] .contact-map iframe {
    min-height: 18rem;
    border-radius: 24px;
  }

  .modal {
    padding: 0.35rem;
  }

  .modal-panel {
    width: 100%;
    max-width: calc(100vw - 0.7rem);
    box-sizing: border-box;
  }

  .booking-modal-panel {
    width: calc(100vw - 0.9rem);
    max-height: calc(100vh - 0.9rem);
  }

  .booking-modal-panel .modal-header {
    padding-right: 2.9rem;
    align-items: flex-start;
    gap: 1.08rem;
  }

  .booking-modal-panel .eyebrow {
    padding: 0.34rem 0.72rem;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.22rem;
  }

  .booking-modal-panel .modal-header h3 {
    font-size: 1.55rem;
    line-height: 1.08;
    margin-top: 0.2rem;
  }

  .booking-modal-panel .modal-subtitle {
    margin-top: 0.58rem;
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .booking-modal-close {
    top: 0.65rem;
    right: 0.65rem;
  }

  .product-detail-panel {
    width: 100%;
    max-height: calc(100vh - 0.9rem);
    padding: 0.85rem;
    border-radius: 22px;
  }

  .product-detail-header {
    gap: 0.9rem;
    padding-right: 2.9rem;
  }

  .product-detail-header h3 {
    font-size: 1.7rem;
    line-height: 1.05;
  }

  .product-detail-close {
    top: 0.65rem;
    right: 0.65rem;
  }

  .product-detail-shell {
    gap: 0.75rem;
    margin-top: 0.6rem;
  }

  .product-detail-top {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    min-width: 0;
  }

  .product-detail-image-wrap {
    border-radius: 18px;
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .product-detail-panel[data-detail-kind="car"] .product-detail-image-wrap {
    aspect-ratio: 16 / 11;
  }

  .product-detail-panel[data-detail-kind="motorbike"] .product-detail-image-wrap {
    aspect-ratio: 5 / 4;
  }

  .product-detail-panel[data-detail-kind="apartment"] .product-detail-image-wrap {
    aspect-ratio: 4 / 3;
  }

  .product-detail-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow-x: visible;
    align-content: start;
    gap: 0.45rem;
    padding-bottom: 0;
  }

  .product-detail-thumb {
    border-radius: 14px;
    aspect-ratio: auto;
    height: clamp(3.9rem, 18vw, 4.8rem);
    min-width: 0;
  }

  .product-detail-summary,
  .product-detail-card {
    padding: 0.9rem;
    border-radius: 20px;
  }

  .product-detail-price {
    padding: 0.8rem 0.85rem;
    border-radius: 18px;
  }

  .product-detail-price strong {
    font-size: 1.6rem;
  }

  .product-detail-grid,
  .product-detail-sections {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .product-detail-fact {
    padding: 0.78rem 0.82rem;
    border-radius: 16px;
  }

  .product-detail-list {
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .product-detail-actions {
    flex-direction: column-reverse;
    gap: 0.65rem;
  }

  .product-detail-actions .button {
    width: 100%;
  }

  .floating-whatsapp::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .logo-rail-marks {
    gap: 0.3rem 0.8rem;
  }

  .logo-wordmark {
    font-size: 0.88rem;
  }

  body[data-page="apartments"] .page-hero-shell h1 {
    max-width: 10ch;
  }

  body[data-page="about"] .page-hero-shell h1 {
    max-width: 10.5ch;
  }

  body[data-page="contact"] .page-hero-shell h1 {
    max-width: 10.8ch;
  }

  body[data-page="contact"] .contact-panel-head h2,
  body[data-page="contact"] .contact-form-head h2 {
    font-size: clamp(1.45rem, 8.4vw, 1.95rem);
    line-height: 1.02;
  }

  body[data-page="contact"] .contact-channel {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  body[data-page="contact"] .contact-map-code,
  body[data-page="contact"] .contact-map-link {
    min-height: 2.45rem;
    font-size: 0.88rem;
  }
}
