@font-face {
  font-family: "DBAdmanX";
  src: url("../fonts/DB-Adman-X.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DBAdmanX";
  src: url("../fonts/DB-Adman-X-Bd.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f7f3ea;
  --paper: #fff9ee;
  --ink: #1b160f;
  --muted: #695c43;
  --gold: #d4af37;
  --gold-deep: #8e6a14;
  --line: rgba(212, 175, 55, 0.26);
  --dark: #090909;
  --radius: 24px;
  --container: min(1200px, calc(100% - 48px));
  --font-heading: "DBAdmanX", sans-serif;
  --font-detail: "Chakra Petch", sans-serif;
  --section-title-size: clamp(1.05rem, 3.15vw, 3.25rem);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-heading);
  background: linear-gradient(180deg, #fdfaf4 0%, #f6f1e4 100%);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
}

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

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

/* โลโก้เฮดเดอร์: ชนะ width:100% ของ img และคงสัดส่วน 1:1 ไม่ให้วงกลมถูกบีบเป็นรี */
img.brand-mark {
  display: block;
  width: 72px;
  max-width: 72px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
  border-radius: 4px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 244, 212, 0.15);
  /* พื้นดำทึบให้กลืนกับพื้นหลังดำของโลโก้ PNG (ไม่โปร่งจนเห็นเป็นกล่องเทา) */
  background: #000000;
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 90px;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff0bf;
  letter-spacing: 0.03em;
  font-size: clamp(0.78rem, 1.35vw, 1.42rem);
  font-weight: 700;
  line-height: 1.15;
  min-width: 0;
}

.brand-text {
  display: block;
  white-space: nowrap;
}

.menu {
  display: flex;
  gap: 16px;
  align-items: center;
}

.menu a {
  color: #f3dfaa;
  font-size: 1.12rem;
  padding: 7px 10px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.menu a:hover,
.menu a.is-active {
  background: rgba(212, 175, 55, 0.18);
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #f9ecc7;
  font-size: 1.06rem;
}

.lang-switch {
  display: inline-flex;
  flex-shrink: 0;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.38);
  background: rgba(255, 255, 255, 0.05);
}

.lang-switch__btn {
  margin: 0;
  padding: 8px 14px;
  border: 0;
  background: transparent;
  color: #e8d4a8;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-switch__btn:hover {
  background: rgba(212, 175, 55, 0.12);
  color: #fff6dc;
}

.lang-switch__btn.is-active {
  background: rgba(212, 175, 55, 0.32);
  color: #1a1204;
}

.menu-toggle {
  display: none;
  box-sizing: border-box;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #f7e8bc;
  cursor: pointer;
  place-items: center;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.5);
}

.menu-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.45);
}

.menu-toggle__icon {
  display: flex;
  width: 22px;
  height: 16px;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.menu-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  background: currentColor;
  transition:
    transform 0.22s ease,
    opacity 0.2s ease;
  transform-origin: center;
}

.menu-toggle.is-open .menu-toggle__icon {
  justify-content: center;
  position: relative;
  height: 18px;
}

.menu-toggle.is-open .menu-toggle__bar:nth-child(1) {
  position: absolute;
  transform: translateY(0) rotate(45deg);
}

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

.menu-toggle.is-open .menu-toggle__bar:nth-child(3) {
  position: absolute;
  transform: translateY(0) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .menu-toggle__bar {
    transition: none;
  }
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 90px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.26) 30%,
    rgba(0, 0, 0, 0.09) 58%,
    rgba(0, 0, 0, 0.02) 100%
  );
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 680px;
  padding: 80px 0;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  text-shadow:
    0 2px 36px rgba(0, 0, 0, 0.55),
    0 1px 14px rgba(0, 0, 0, 0.45);
}

.hero-copy .eyebrow,
.hero-copy p {
  text-shadow:
    0 1px 20px rgba(0, 0, 0, 0.5),
    0 2px 10px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  color: #6b5420;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.94rem;
  font-weight: 600;
}

.hero .eyebrow,
.car-select-section .eyebrow {
  color: #f3d784;
  font-weight: 400;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.14;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  color: #fff3cf;
  margin-top: 10px;
}

h2 {
  font-size: var(--section-title-size);
  line-height: 1.2;
  color: #231b10;
}

h1.site-page-title,
h2.site-page-title {
  font-family: var(--font-heading);
  font-size: var(--section-title-size);
  line-height: 1.2;
  color: #231b10;
  margin: 0;
  white-space: nowrap;
  letter-spacing: -0.025em;
}

.articles-page-head {
  max-width: none;
}

.articles-page-title.site-page-title {
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  color: #1a140c;
  line-height: 1.2;
}

.articles-page-lead {
  margin: 6px 0 0;
  font-family: var(--font-detail);
  font-size: clamp(0.6rem, 1.18vw, 0.98rem);
  color: var(--muted);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.5;
  white-space: nowrap;
}

@media (max-width: 880px) {
  .articles-page-lead {
    white-space: normal;
    font-size: 0.95rem;
  }

  .articles-page-title.site-page-title {
    font-size: clamp(1.3rem, 4.6vw, 1.85rem);
  }
}

@media (max-width: 480px) {
  h1.site-page-title,
  h2.site-page-title {
    white-space: normal;
  }
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-family: var(--font-detail);
  font-weight: 500;
}

.hero p {
  color: rgba(247, 233, 196, 0.93);
  max-width: 640px;
  margin-top: 18px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-family: var(--font-heading);
  font-size: 1.14rem;
  transition: transform 0.2s ease;
}

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

.btn-gold {
  background: linear-gradient(140deg, #f4da89, #d4af37 60%, #9f7a1f);
  color: #1e1508;
}

.btn-dark {
  border-color: rgba(247, 225, 171, 0.45);
  color: #fdeec4;
  background: rgba(8, 8, 8, 0.35);
}

.section {
  padding: 92px 0;
}

.section--reduce-bottom {
  padding-bottom: 48px;
}

.section--reduce-top {
  padding-top: 44px;
}

.section--tight {
  padding-top: 56px;
  padding-bottom: 56px;
}

/* Homepage — album carousel (split copy + one 1:1 slide at a time) */
.home-album {
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.92) 0%, rgba(247, 241, 228, 0.55) 100%);
}

.home-album__split {
  display: grid;
  grid-template-columns: minmax(0, min(26rem, 100%)) minmax(0, 1fr);
  gap: clamp(18px, 3.2vw, 40px);
  align-items: center;
}

.home-album__copy .section-head {
  margin-bottom: 0;
}

.home-album__title.site-page-title {
  white-space: normal;
  line-height: 1.25;
  font-size: clamp(1.05rem, 1.35vw + 0.85rem, 1.55rem);
  margin-top: 0.15em;
}

.home-album__lead {
  margin: 14px 0 0;
  font-family: var(--font-detail);
  font-size: clamp(1.02rem, 0.35vw + 0.95rem, 1.12rem);
  color: var(--text, #1a1a1a);
  line-height: 1.6;
  font-weight: 500;
}

.home-album__points {
  margin: 14px 0 0;
  padding-left: 1.2em;
  font-family: var(--font-detail);
  font-size: clamp(0.98rem, 0.25vw + 0.92rem, 1.06rem);
  color: var(--muted);
  line-height: 1.65;
}

.home-album__points li {
  margin: 0.45em 0;
}

.home-album__points li:first-child {
  margin-top: 0;
}

.home-album__stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.home-album__viewport {
  overflow: hidden;
  border-radius: 18px;
  min-width: 0;
  outline: none;
}

.home-album__viewport:focus-visible {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.45);
}

.home-album__track {
  display: flex;
  flex-direction: row;
  gap: 14px;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-album__track.is-no-trans {
  transition: none;
}

.home-album__slide {
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: #fff;
  box-shadow: 0 10px 28px rgba(45, 34, 15, 0.08);
}

.home-album__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-album__nav {
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(255, 255, 255, 0.92);
  color: #5c4518;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(45, 34, 15, 0.08);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.home-album__nav:hover {
  background: #fffef6;
  transform: scale(1.05);
}

.home-album__nav:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(212, 175, 55, 0.45),
    0 4px 16px rgba(45, 34, 15, 0.08);
}

.home-album__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 900px) {
  .home-album__split {
    grid-template-columns: 1fr;
  }

  .home-album__copy {
    max-width: 36rem;
  }

  .home-album__stage {
    max-width: 100%;
    margin-inline: 0;
  }
}

@media (max-width: 560px) {
  .home-album__nav {
    width: 40px;
    height: 40px;
    font-size: 1.35rem;
  }

  .home-album__slide {
    border-radius: 14px;
  }

  .home-album__track {
    gap: 10px;
  }
}

.reviews-page .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.reviews-intro {
  margin-top: 4px;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: var(--muted);
  font-family: var(--font-detail);
  font-size: 1.02rem;
  line-height: 1.65;
  font-weight: 500;
}

.reviews-intro--muted {
  font-size: 0.98rem;
  opacity: 0.92;
}

.reviews-intro--photo-lead {
  white-space: nowrap;
  font-size: clamp(0.52rem, 2.15vw, 0.98rem);
  letter-spacing: -0.02em;
}

.reviews-stats {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-stats__item {
  text-align: center;
  padding: 20px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.reviews-stats__num {
  display: block;
  font-family: var(--font-detail);
  font-size: clamp(1.55rem, 3vw, 1.95rem);
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 6px;
}

.reviews-stats__label {
  font-family: var(--font-detail);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.reviews-page-gallery {
  background: rgba(255, 249, 238, 0.55);
}

.reviews-mosaic {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
  align-items: start;
}

.reviews-mosaic figure {
  margin: 0;
  min-width: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 6px 20px rgba(40, 30, 10, 0.06);
  background: #ede8de;
}

.reviews-mosaic img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

@media (max-width: 960px) {
  .reviews-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .reviews-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

.reviews-quote__text {
  margin: 0 0 14px;
  font-family: var(--font-detail);
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
}

.reviews-quote__meta {
  margin: 0;
  font-family: var(--font-detail);
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 600;
}

.reviews-page-google {
  background: linear-gradient(180deg, rgba(255, 249, 238, 0.4) 0%, transparent 100%);
}

/* Google reviews block on reviews.html (light page background) */
.reviews-page-google-carousel .greviews-grade {
  color: var(--ink);
}

.reviews-page-google-carousel .greviews-count {
  color: var(--muted);
  font-weight: 600;
}

.reviews-page-google-carousel .greviews-maps-cta {
  color: var(--gold-deep);
}

.reviews-page-google-carousel .greviews-maps-cta:hover {
  color: var(--ink);
}

.reviews-page-google-carousel .greviews-footnote {
  color: var(--muted);
}

.reviews-page-google-carousel .greviews-arrow {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.reviews-page-google-carousel .greviews-arrow:hover {
  color: var(--gold-deep);
  border-color: rgba(212, 175, 55, 0.45);
  background: #fff;
}

.reviews-page-google-carousel .greviews-stars--lg .greviews-star {
  text-shadow: none;
}

.reviews-page-google-carousel .reviews-google-cta {
  margin-top: 28px;
  margin-bottom: 0;
}

.reviews-page-google-carousel .greviews-panel {
  margin-top: 0;
}

.reviews-google-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}

@media (max-width: 720px) {
  .reviews-stats {
    grid-template-columns: 1fr;
  }
}

.car-select-section {
  overflow-x: hidden;
  background-color: #060606;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.86) 100%),
    radial-gradient(circle at 18% 18%, rgba(212, 175, 55, 0.09), transparent 36%),
    url("../images/car-select-bg.png");
  background-position: center, center, center;
  background-size: auto, auto, cover;
  background-repeat: no-repeat;
}

.car-select-section .section-head h2 {
  color: #fff1c6;
  font-size: var(--section-title-size);
  white-space: nowrap;
}

.car-select-section .car-picker {
  padding-top: 20px;
}

/* Slightly wider than global --container so cards keep size next to filter sidebar */
.car-select-section .container {
  width: min(1320px, calc(100% - 48px));
}

.section-head {
  max-width: 760px;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.panel {
  background: linear-gradient(180deg, #fffdf8, #f8f1e1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.panel h3 {
  color: #2d220f;
  margin-bottom: 8px;
  font-size: 1.62rem;
}

.article-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(1.18rem, 1vw + 0.96rem, 1.62rem);
  line-height: 1.25;
  color: #1f160c;
}

.article-toc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.article-toc strong {
  margin-right: 8px;
  color: #2d220f;
}

.article-toc a {
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.9rem;
  background: rgba(212, 175, 55, 0.1);
}

.article-cover {
  display: block;
  width: 100%;
  height: clamp(190px, 18vw, 235px);
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  margin-bottom: 12px;
  background: #f2ece4;
}

.article-readmore {
  min-height: 40px;
  padding: 8px 14px;
}

.article-panel p {
  margin: 0 0 10px;
}

.article-source {
  margin-top: 14px;
  font-size: 0.84rem;
  color: #6b5a38;
}

.article-source a {
  text-decoration: underline;
}

.article-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}

.article-single-main {
  min-width: 0;
}

.article-reco {
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.95);
  padding: 14px;
}

.article-reco h3 {
  margin: 0 0 10px;
  color: #231b10;
  font-size: 1.1rem;
}

.article-reco-list {
  display: grid;
  gap: 12px;
}

.article-reco-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.article-reco-item img {
  width: 92px;
  height: 70px;
  flex: 0 0 auto;
  border-radius: 12px;
  object-fit: cover;
  background: #f2ece4;
}

.article-reco-item a {
  color: #231b10;
  font-family: var(--font-detail);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.25;
}

.article-reco-item a:hover {
  text-decoration: underline;
}

.article-section {
  margin: 0 0 28px;
}

.article-section h2,
.article-section h3 {
  margin: 0 0 10px;
  color: #231b10;
  font-size: 1.35rem;
}

.article-prose {
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(204, 173, 97, 0.42);
}

.article-prose:last-of-type {
  border-bottom: 0;
}

.article-prose p {
  margin: 0 0 12px;
  color: #433626;
  line-height: 1.8;
}

.article-prose ul {
  margin: 0 0 12px 1.1rem;
  padding: 0;
  color: #433626;
  line-height: 1.75;
}

.article-prose h3,
.article-prose h4 {
  margin: 14px 0 8px;
  color: #231b10;
  font-size: 1.05rem;
}

.article-faq {
  margin: 8px 0 16px;
}

.article-faq h3 {
  margin-bottom: 12px;
}

.article-faq details {
  border: 1px solid rgba(204, 173, 97, 0.42);
  border-radius: 10px;
  background: rgba(255, 252, 244, 0.85);
  padding: 10px 12px;
  margin-bottom: 10px;
}

.article-faq summary {
  cursor: pointer;
  color: #231b10;
  font-weight: 700;
}

.article-faq p {
  margin: 10px 0 2px;
  color: #433626;
  line-height: 1.75;
}

.article-section-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  margin: 10px 0 14px;
  background: #f2ece4;
}

.article-photo {
  margin: 12px 0 16px;
}

.article-photo .article-section-image {
  margin: 0;
}

.article-photo figcaption {
  margin-top: 6px;
  color: #77674f;
  font-family: var(--font-detail);
  font-size: 0.68rem;
  line-height: 1.35;
  text-align: left;
}

.article-photo figcaption a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-single {
  max-width: 900px;
  margin: 0 auto;
}

.article-single h2 {
  margin: 8px 0;
}

.article-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  margin: 10px 0 16px;
}

.panel--with-media {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.panel--with-media .panel-media {
  /* Taller than 2:1 so vehicles / lifestyle shots show wheels & feet; contain avoids cropping */
  aspect-ratio: 4 / 3;
  overflow: hidden;
  /* White so studio-style PNGs blend; letterboxing no longer shows as beige bars */
  background: #fff;
}

.panel--with-media .panel-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.panel--with-media h3 {
  margin: 20px 24px 0;
}

.panel--with-media p {
  margin: 10px 24px 24px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
  align-items: stretch;
}

.pricing-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.06),
    0 16px 36px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.pricing-card__glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    118deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.12) 38%,
    transparent 45%,
    transparent 100%
  );
  mix-blend-mode: soft-light;
}

.pricing-card--premium .pricing-card__glare {
  mix-blend-mode: overlay;
  opacity: 0.85;
}

.pricing-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 22px 22px;
}

.pricing-card__title {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 1.85vw, 1.32rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pricing-card__lead {
  margin: 0 0 10px;
  line-height: 1.3;
}

.pricing-card__prefix {
  display: block;
  font-family: var(--font-detail);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  opacity: 0.72;
  margin-bottom: 6px;
}

.pricing-card__figures {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.12em;
  font-family: var(--font-heading);
}

.pricing-card__num {
  font-size: clamp(1.48rem, 3.1vw, 1.95rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.05;
}

.pricing-card__unit {
  font-family: var(--font-detail);
  font-size: clamp(0.86rem, 1.45vw, 1.02rem);
  font-weight: 600;
  line-height: 1.2;
}

.pricing-card__sep {
  font-family: var(--font-detail);
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  font-weight: 500;
  opacity: 0.42;
  margin: 0 0.06em;
}

.pricing-card__time-num {
  font-size: clamp(1.32rem, 2.7vw, 1.72rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.pricing-card__time-suffix {
  font-family: var(--font-detail);
  font-size: clamp(0.88rem, 1.5vw, 1.06rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pricing-card__per {
  font-size: clamp(1.26rem, 2.5vw, 1.62rem);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.pricing-card--silver .pricing-card__prefix {
  color: #3d4a5c;
}

.pricing-card--silver .pricing-card__num,
.pricing-card--silver .pricing-card__time-num,
.pricing-card--silver .pricing-card__per {
  color: #0f141f;
}

.pricing-card--silver .pricing-card__unit,
.pricing-card--silver .pricing-card__time-suffix {
  color: #252d3d;
}

.pricing-card--gold .pricing-card__prefix {
  color: rgba(55, 42, 18, 0.78);
}

.pricing-card--gold .pricing-card__num,
.pricing-card--gold .pricing-card__time-num,
.pricing-card--gold .pricing-card__per {
  color: #120a02;
  text-shadow: 0 1px 0 rgba(255, 252, 235, 0.45);
}

.pricing-card--gold .pricing-card__unit,
.pricing-card--gold .pricing-card__time-suffix {
  color: #241808;
}

.pricing-card__note {
  margin: 0;
  font-family: var(--font-detail);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.5;
  flex: 1;
}

.pricing-card__visual {
  flex-shrink: 0;
  height: 120px;
  overflow: hidden;
  border-radius: 19px 19px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.pricing-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pricing-card--silver {
  color: #1a1f2c;
  background:
    linear-gradient(158deg, rgba(255, 255, 255, 0.55) 0%, transparent 44%),
    linear-gradient(148deg, #f2f4f8 0%, #dce1ea 22%, #c5ccd8 48%, #aeb6c5 72%, #dde3ec 100%);
}

.pricing-card--silver .pricing-card__note {
  color: #3d4656;
}

.pricing-card--gold {
  color: #2a1f0c;
  border-color: rgba(200, 162, 55, 0.5);
  background:
    linear-gradient(158deg, rgba(255, 252, 235, 0.75) 0%, transparent 42%),
    linear-gradient(148deg, #faf3dc 0%, #ecd9a0 20%, #d4af37 42%, #b8891a 58%, #e6d49a 82%, #f8efd8 100%);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.07),
    0 16px 38px rgba(120, 90, 20, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.pricing-card--gold .pricing-card__note {
  color: #4a3d1f;
}

.pricing-card--premium {
  color: #f8efd8;
  border-color: rgba(212, 175, 55, 0.48);
  background:
    linear-gradient(158deg, rgba(212, 175, 55, 0.22) 0%, transparent 48%),
    linear-gradient(148deg, #0c0a08 0%, #1a1510 32%, #2a2218 52%, #16120e 78%, #080706 100%);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.25),
    0 20px 44px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(212, 175, 55, 0.28),
    inset 0 0 0 1px rgba(212, 175, 55, 0.12);
}

.pricing-card--premium .pricing-card__title {
  color: #faf3d8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.pricing-card--premium .pricing-card__prefix {
  color: rgba(220, 200, 160, 0.78);
}

.pricing-card--premium .pricing-card__num,
.pricing-card--premium .pricing-card__time-num,
.pricing-card--premium .pricing-card__per {
  color: #fffdf2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}

.pricing-card--premium .pricing-card__unit,
.pricing-card--premium .pricing-card__time-suffix {
  color: rgba(255, 248, 225, 0.96);
}

.pricing-card--premium .pricing-card__sep {
  color: rgba(255, 235, 190, 0.55);
  opacity: 1;
}

.pricing-card--premium .pricing-card__note {
  color: rgba(230, 215, 180, 0.9);
}

.pricing-card--premium .pricing-card__visual {
  border-bottom-color: rgba(212, 175, 55, 0.28);
}

.booking-steps-section {
  position: relative;
  background:
    radial-gradient(ellipse 85% 55% at 50% -15%, rgba(212, 175, 55, 0.11), transparent 55%),
    linear-gradient(180deg, #fbf8f1 0%, #f3ede2 55%, #ebe4d6 100%);
}

.booking-steps-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 85%, rgba(212, 175, 55, 0.07), transparent 42%),
    radial-gradient(circle at 94% 25%, rgba(142, 106, 20, 0.06), transparent 38%);
  pointer-events: none;
}

.booking-steps-section .container {
  position: relative;
  z-index: 1;
}

.section-head--center {
  max-width: min(960px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 40px;
}

.seo-guide-grid .panel h3 {
  font-size: 1.05rem;
  margin: 0 0 10px;
  color: #1e160c;
}

.seo-guide-grid .panel p:last-child {
  margin-bottom: 0;
}

.seo-guide-grid .panel a,
.seo-guide-lead a {
  font-weight: 600;
  color: var(--gold-deep);
}

.service-card__link {
  margin-top: 12px;
  font-size: 0.88rem;
}

.service-card__link a {
  font-weight: 600;
  color: var(--gold-deep);
}

.panel-link {
  margin-top: 10px;
  font-size: 0.88rem;
}

.panel-link a {
  font-weight: 600;
  color: var(--gold-deep);
}

.booking-steps-eyebrow {
  color: var(--gold-deep);
  letter-spacing: 0.12em;
}

.booking-steps-title {
  font-size: var(--section-title-size);
  color: #1e160c;
  margin-top: 6px;
}

.booking-steps-lead {
  margin-top: 14px;
  font-family: var(--font-detail);
  font-size: clamp(0.62rem, 1.45vw, 1.02rem);
  color: var(--muted);
  line-height: 1.5;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

@media (max-width: 480px) {
  .booking-steps-lead {
    white-space: normal;
    font-size: 0.92rem;
  }
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
}

.booking-step {
  position: relative;
  margin: 0;
  padding: 26px 22px 28px;
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 252, 245, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow:
    0 4px 22px rgba(45, 34, 15, 0.07),
    0 1px 3px rgba(45, 34, 15, 0.04);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.25s ease;
  overflow: hidden;
}

.booking-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.85), rgba(201, 167, 53, 0.45), transparent);
  opacity: 0.9;
}

.booking-step:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.48);
  box-shadow:
    0 20px 44px rgba(45, 34, 15, 0.12),
    0 10px 20px rgba(212, 175, 55, 0.09);
}

.booking-step__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.booking-step__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #2d220f;
  background: linear-gradient(145deg, #f2d78a 0%, #d4af37 45%, #9a7618 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 4px 14px rgba(142, 106, 20, 0.28);
}

.booking-step__num {
  font-family: var(--font-detail);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(142, 106, 20, 0.9);
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.26);
}

.booking-step__title {
  margin: 0 0 10px;
  font-size: 1.28rem;
  color: #1e160c;
  font-weight: 700;
}

.booking-step__text {
  margin: 0;
  font-family: var(--font-detail);
  font-size: 0.94rem;
  line-height: 1.58;
  color: var(--muted);
  font-weight: 500;
}

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

@media (max-width: 560px) {
  .booking-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.services-showcase {
  position: relative;
  background:
    radial-gradient(ellipse 75% 50% at 18% 0%, rgba(212, 175, 55, 0.1), transparent 52%),
    radial-gradient(ellipse 55% 42% at 92% 15%, rgba(142, 106, 20, 0.07), transparent 48%),
    linear-gradient(180deg, #faf6ee 0%, #efe7d9 55%, #e8dfd0 100%);
}

.services-showcase .container {
  position: relative;
  z-index: 1;
}

.services-page-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.services-page-head {
  max-width: 100%;
}

.services-page-eyebrow {
  color: var(--gold-deep);
  letter-spacing: 0.14em;
}

.services-page-title {
  font-size: var(--section-title-size);
  color: #1a140c;
  line-height: 1.2;
  margin-top: 8px;
}

.services-page-lead {
  margin-top: 14px;
  font-family: var(--font-detail);
  font-size: clamp(0.52rem, 1.42vw, 1.05rem);
  color: var(--muted);
  line-height: 1.5;
  font-weight: 500;
  max-width: 100%;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

@media (max-width: 420px) {
  .services-page-title.site-page-title,
  .services-page-lead {
    white-space: normal;
  }

  .services-page-title.site-page-title {
    font-size: clamp(1.2rem, 4.5vw, 1.85rem);
  }

  .services-page-lead {
    font-size: 0.92rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
}

.service-card {
  margin: 0;
  padding: 26px 22px 28px;
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 252, 246, 0.91) 100%);
  border: 1px solid rgba(212, 175, 55, 0.26);
  box-shadow:
    0 4px 22px rgba(45, 34, 15, 0.065),
    0 1px 3px rgba(45, 34, 15, 0.04);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), rgba(201, 167, 53, 0.38), transparent);
  opacity: 0.88;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.44);
  box-shadow:
    0 18px 42px rgba(45, 34, 15, 0.11),
    0 8px 18px rgba(212, 175, 55, 0.08);
}

.service-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #2d220f;
  margin-bottom: 18px;
  background: linear-gradient(145deg, #f2d78a 0%, #d4af37 48%, #9a7618 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 4px 14px rgba(142, 106, 20, 0.24);
}

.service-card__title {
  margin: 0 0 12px;
  font-size: 1.22rem;
  font-weight: 700;
  color: #1e160c;
  line-height: 1.25;
}

.service-card__text {
  margin: 0;
  font-family: var(--font-detail);
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 500;
}

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

@media (max-width: 720px) {
  .services-grid {
    order: -1;
  }

  .services-page-stack {
    gap: 26px;
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.info-table-wrap {
  margin: 16px 0 22px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 0.45);
}

.info-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  font-family: var(--font-detail);
  font-size: 0.96rem;
  font-weight: 500;
}

.info-table th,
.info-table td {
  text-align: left;
  vertical-align: top;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.info-table thead th {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #3d3218;
  background: rgba(212, 175, 55, 0.14);
  border-bottom: 1px solid rgba(212, 175, 55, 0.32);
  white-space: nowrap;
}

.info-table tbody tr:last-child td {
  border-bottom: none;
}

.info-table tbody td {
  color: var(--muted);
}

.info-table tbody td:first-child {
  color: #2d220f;
  font-weight: 600;
}

.info-table .num {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.car-picker {
  display: grid;
  gap: 18px;
}

.carousel-layout {
  display: grid;
  grid-template-columns: minmax(0, 210px) minmax(0, 1fr);
  gap: clamp(12px, 1.8vw, 20px);
  align-items: start;
}

/* Full-width row above sidebar + cards — no panel chrome (chips sit on section background) */
.carousel-layout > .car-toolbar {
  grid-column: 1 / -1;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}

.carousel-main {
  position: relative;
  display: grid;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
}

.car-toolbar {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.car-toolbar-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 20px;
}

.car-toolbar-top .car-sidebar-filters {
  flex: 1 1 auto;
  min-width: 0;
}

/* Toolbar sits on dark car-select background — lighten label for contrast */
.carousel-layout > .car-toolbar .car-search-label {
  color: rgba(255, 244, 212, 0.92);
}

.car-toolbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.car-toolbar-empty {
  margin: 0;
}

.car-carousel {
  position: relative;
  min-height: 600px;
}

.carousel-viewport {
  position: relative;
  min-height: 600px;
  max-width: 100%;
  /* clip transformed side cards; overflow-x alone can still expand scrollWidth on some engines */
  overflow: hidden;
  contain: paint;
}

.car-carousel .car-option {
  position: absolute;
  top: 0;
  left: 50%;
  /* Narrower width + tall 1:1 image = portrait card */
  width: min(100%, clamp(280px, 30vw, 380px));
  transform: translateX(-50%) scale(0.88);
  opacity: 0;
  pointer-events: none;
  filter: blur(2px);
  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease, box-shadow 0.25s ease;
}

.car-carousel .car-option.is-center {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  pointer-events: auto;
  filter: blur(0);
  z-index: 3;
}

.car-carousel .car-option.is-center:hover {
  transform: translateX(-50%) scale(1.03);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
}

.car-carousel .car-option.is-left {
  transform: translateX(calc(-50% - min(364px, 30vw))) scale(0.84);
  opacity: 1;
  pointer-events: auto;
  filter: none;
  z-index: 2;
}

.car-carousel .car-option.is-right {
  transform: translateX(calc(-50% + min(364px, 30vw))) scale(0.84);
  opacity: 1;
  pointer-events: auto;
  filter: none;
  z-index: 2;
}

.car-carousel .car-option img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  margin-bottom: 8px;
  transition: filter 0.35s ease;
  background: #2a2418;
}

.car-carousel .car-option.is-left img,
.car-carousel .car-option.is-right img {
  filter: brightness(0.5) blur(2px);
}

.car-carousel .car-option.is-center img {
  filter: none;
}

.carousel-nav {
  position: relative;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  background: #fff9e8;
  color: #7a5b14;
  font-size: 1.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.carousel-nav:hover {
  transform: scale(1.08);
  background: #ffeeb8;
  box-shadow: 0 8px 22px rgba(104, 74, 11, 0.25);
}

.carousel-nav.prev,
.carousel-nav.next {
  left: auto;
  right: auto;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: -8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  padding: 0;
  display: inline-block;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.75);
  background: transparent;
  cursor: pointer;
}

.carousel-dot.is-active {
  background: rgba(212, 175, 55, 0.9);
}

.reviews-section {
  background: linear-gradient(180deg, #12100c 0%, #1a1510 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.reviews-section .section-head .eyebrow {
  color: #e8c86e;
}

.reviews-section .section-head h2 {
  color: #fff1c6;
  font-size: var(--section-title-size);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .reviews-section .section-head h2 {
    white-space: normal;
  }
}

.reviews-slider {
  --reviews-per-view: 5;
  --reviews-gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .reviews-slider {
    --reviews-per-view: 3;
  }
}

@media (max-width: 560px) {
  .reviews-slider {
    --reviews-per-view: 2;
  }
}

.reviews-stage {
  position: relative;
}

.reviews-viewport {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: #080808;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.reviews-track {
  display: flex;
  gap: var(--reviews-gap, 12px);
  transition: transform 0.85s ease-in-out;
  will-change: transform;
}

.reviews-slide {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.reviews-slide img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: rgba(8, 8, 8, 0.88);
  color: #f3dfaa;
  font-size: 1.75rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.reviews-nav:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(30, 24, 12, 0.95);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.reviews-nav.prev {
  left: 10px;
}

.reviews-nav.next {
  right: 10px;
}

.reviews-meta {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.reviews-counter {
  font-family: var(--font-detail);
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(247, 235, 200, 0.85);
}

.reviews-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  max-width: 100%;
}

.reviews-dot {
  width: 7px;
  height: 7px;
  min-width: 7px;
  min-height: 7px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.reviews-dot.is-active {
  background: rgba(212, 175, 55, 0.92);
  transform: scale(1.15);
}

/* Google Business Profile reviews (live via Places API) */
.greviews-panel {
  --greviews-per-view: 3;
  --greviews-gap: 16px;
  margin-top: 8px;
  padding: 12px 0 0;
  background: transparent;
  border: none;
  box-shadow: none;
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  gap: 20px 28px;
  align-items: start;
}

@media (max-width: 900px) {
  .greviews-panel {
    --greviews-per-view: 2;
  }
}

@media (max-width: 560px) {
  .greviews-panel {
    --greviews-per-view: 1;
  }
}

@media (max-width: 820px) {
  .greviews-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .greviews-summary {
    align-items: center;
  }

  .greviews-carousel {
    width: 100%;
    max-width: 520px;
  }
}

.greviews-source-badge {
  margin: 0;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: var(--font-detail);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: linear-gradient(90deg, #e8f0fe, #fef7e0);
  border: 1px solid rgba(66, 133, 244, 0.35);
}

.greviews-maps-cta {
  margin-top: 4px;
  font-family: var(--font-detail);
  font-size: 0.82rem;
  font-weight: 600;
  color: #8ec5ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.greviews-maps-cta:hover {
  color: #fff1c6;
}

.greviews-footnote {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  font-family: var(--font-detail);
  font-size: 0.75rem;
  color: rgba(247, 235, 200, 0.55);
}

.is-google-live .greviews-card {
  border-color: rgba(66, 133, 244, 0.22);
}

.reviews-photos-label {
  margin: 36px 0 12px;
  font-family: var(--font-detail);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(247, 235, 200, 0.65);
  text-align: center;
}

.greviews-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 4px 0;
}

.greviews-grade {
  margin: 0;
  font-family: var(--font-detail);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff1c6;
  letter-spacing: -0.02em;
}

.greviews-stars {
  display: inline-flex;
  gap: 2px;
  line-height: 1;
}

.greviews-stars--lg .greviews-star {
  font-size: 1.65rem;
  color: #fbbc04;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.greviews-stars--sm .greviews-star {
  font-size: 0.95rem;
  color: #fbbc04;
}

.greviews-count {
  margin: 0;
  font-family: var(--font-detail);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(247, 235, 200, 0.72);
}

.greviews-google-brand {
  margin: 6px 0 0;
  font-family: var(--font-detail);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.greviews-gw--g {
  color: #4285f4;
}

.greviews-gw--o1 {
  color: #ea4335;
}

.greviews-gw--o2 {
  color: #fbbc05;
}

.greviews-gw--g2 {
  color: #4285f4;
}

.greviews-gw--l {
  color: #34a853;
}

.greviews-gw--e {
  color: #ea4335;
}

.greviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.greviews-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.greviews-track {
  display: flex;
  gap: var(--greviews-gap, 16px);
  transition: transform 0.55s ease-out;
  will-change: transform;
}

.greviews-card {
  flex: 0 0 auto;
  margin: 0;
  padding: 16px 16px 14px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(60, 64, 67, 0.12);
  box-shadow: 0 4px 18px rgba(32, 33, 36, 0.06);
  box-sizing: border-box;
}

.greviews-card-head {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 10px;
  align-items: start;
  margin-bottom: 10px;
}

.greviews-avatar--photo {
  padding: 0;
  overflow: hidden;
  background: #fff;
}

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

.greviews-posted {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: #4285f4;
  letter-spacing: 0.02em;
}

.greviews-view-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4285f4;
  text-decoration: none;
}

.greviews-view-link:hover {
  text-decoration: underline;
}

.greviews-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-detail);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
}

.greviews-avatar--a {
  background: linear-gradient(135deg, #5c6bc0, #3949ab);
}

.greviews-avatar--b {
  background: linear-gradient(135deg, #ec407a, #c2185b);
}

.greviews-avatar--c {
  background: linear-gradient(135deg, #26a69a, #00695c);
}

.greviews-avatar--d {
  background: linear-gradient(135deg, #ff7043, #e64a19);
}

.greviews-avatar--e {
  background: linear-gradient(135deg, #7e57c2, #4527a0);
}

.greviews-avatar--f {
  background: linear-gradient(135deg, #42a5f5, #1565c0);
}

.greviews-card-meta {
  min-width: 0;
}

.greviews-name {
  display: block;
  font-family: var(--font-detail);
  font-size: 0.95rem;
  font-weight: 600;
  color: #202124;
}

.greviews-date {
  display: block;
  margin-top: 2px;
  font-family: var(--font-detail);
  font-size: 0.78rem;
  color: #80868b;
}

.greviews-mini-g {
  display: flex;
  align-items: flex-start;
  opacity: 0.95;
}

.greviews-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.greviews-verified {
  display: inline-flex;
  flex-shrink: 0;
}

.greviews-snippet {
  margin: 0 0 12px;
  font-family: var(--font-detail);
  font-size: 0.84rem;
  line-height: 1.55;
  color: #3c4043;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.greviews-readmore {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.82rem;
  color: #80868b;
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.greviews-readmore:hover {
  color: #1a73e8;
}

.greviews-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: rgba(8, 8, 8, 0.88);
  color: #f3dfaa;
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.greviews-arrow:hover {
  background: rgba(30, 24, 12, 0.95);
  color: #fff1c6;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.greviews-footnote {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-family: var(--font-detail);
  font-size: 0.78rem;
  color: rgba(247, 235, 200, 0.55);
  text-align: center;
  line-height: 1.45;
}

@media (max-width: 820px) {
  .greviews-readmore {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .greviews-arrow {
    width: 32px;
    height: 32px;
    font-size: 1.35rem;
  }
}

.mini-book-btn {
  margin-top: 10px;
  min-height: 40px;
  width: 100%;
  border-radius: 999px;
  border: 1px solid #c9a735;
  background: #d9b53b;
  color: #2b220f;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.04rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.mini-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(121, 89, 18, 0.28);
  filter: brightness(1.04);
}

#selected-car-book-link {
  border-color: #c9a735;
  background: #d9b53b;
  color: #2b220f;
}

#selected-car-book-link:hover {
  box-shadow: 0 12px 26px rgba(121, 89, 18, 0.3);
  filter: brightness(1.04);
}

.car-filter-bar {
  display: grid;
  grid-template-columns: minmax(260px, 1.7fr) repeat(2, minmax(170px, 1fr)) auto;
  gap: 10px;
}

.car-filter-bar input,
.car-filter-bar select,
.car-filter-bar button {
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  padding: 0 12px;
  font-family: inherit;
}

.car-filter-bar button {
  background: rgba(212, 175, 55, 0.14);
  color: #4f3e19;
  font-weight: 700;
  cursor: pointer;
}

.car-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 18px;
}

.car-sidebar {
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 16px;
  background: #fffdf7;
  padding: 11px 10px;
  display: grid;
  gap: 8px;
  align-content: start;
  height: fit-content;
  position: sticky;
  top: 98px;
}

.car-sidebar strong {
  color: #2d220f;
}

.car-sidebar-filters {
  display: grid;
  gap: 10px;
}

.car-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.car-filter-chip {
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: #54421c;
  background: rgba(212, 175, 55, 0.1);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.car-filter-chip:hover {
  border-color: rgba(212, 175, 55, 0.55);
  background: rgba(212, 175, 55, 0.18);
}

.car-filter-chip.is-active {
  border-color: rgba(180, 140, 40, 0.95);
  background: linear-gradient(180deg, #fffef9, #f0e4c4);
  color: #2d220f;
}

.car-search-row {
  display: grid;
  gap: 6px;
}

.car-search-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #5c4a28;
}

.car-search-fields {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.car-search-input {
  flex: 1;
  min-width: 0;
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  padding: 0 10px;
  font-family: inherit;
  font-size: 0.92rem;
  color: #2d220f;
  background: #fffef9;
}

.car-search-input::placeholder {
  color: rgba(84, 66, 28, 0.45);
}

.car-search-input:focus {
  outline: 2px solid rgba(212, 175, 55, 0.45);
  outline-offset: 1px;
}

.car-search-btn {
  flex-shrink: 0;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  color: #3d3218;
  background: linear-gradient(180deg, #fffef6, #ecd9a8);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.car-search-btn:hover {
  border-color: rgba(180, 140, 40, 0.85);
}

.car-search-btn:active {
  transform: translateY(1px);
}

.car-sidebar-empty {
  margin: 0;
  padding: 8px 4px;
  font-size: 0.88rem;
  color: #6b5a38;
  text-align: center;
  line-height: 1.35;
}

.car-side-btn {
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(212, 175, 55, 0.08);
  color: #54421c;
  text-align: left;
  padding: 0 12px;
  font-family: inherit;
  font-size: 1.02rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.car-side-btn-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #3d3218;
}

.car-side-btn-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.car-side-btn-text {
  flex: 1;
  min-width: 0;
  line-height: 1.25;
}

.car-side-btn:hover {
  transform: translateX(4px);
  border-color: rgba(212, 175, 55, 0.55);
  background: rgba(212, 175, 55, 0.16);
}

.car-side-btn.is-active {
  border-color: rgba(212, 175, 55, 0.9);
  background: linear-gradient(180deg, #fffef9, #f6ecd2);
}

.car-picker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.car-option {
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 18px;
  background: #fffdf7;
  padding: 10px 10px 12px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: block;
  position: relative;
}

.car-option img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  background: #f2ece4;
  border-radius: 12px;
  margin-bottom: 8px;
}

.car-seat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.72);
  color: #f7ebc9;
  font-size: 0.82rem;
  font-family: var(--font-detail);
  font-weight: 600;
}

.car-option strong {
  display: block;
  color: #2d220f;
  font-size: 1.16rem;
  line-height: 1.2;
}

.car-option small {
  display: block;
  margin-top: 4px;
  color: #7a6d50;
  font-size: 0.82rem;
  font-family: var(--font-detail);
  font-weight: 500;
}

.car-option:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.65);
}

.car-option.is-selected {
  border-color: rgba(212, 175, 55, 0.9);
  box-shadow: 0 10px 24px rgba(90, 63, 9, 0.12);
  background: linear-gradient(180deg, #fffdf8, #f6ecd2);
}

.car-option.is-hidden {
  display: none;
}

.car-result {
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 250, 239, 0.9);
}

.car-result strong {
  color: #2b220f;
}

.car-empty {
  display: none;
  margin: 12px 0 0;
  padding: 10px 12px;
  border: 1px dashed rgba(212, 175, 55, 0.6);
  border-radius: 10px;
  color: #6a582d;
}

.car-empty.is-visible {
  display: block;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 8, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.contact-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  background: #141414;
  color: #f5e7be;
  padding: 20px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
  transform: translateY(12px) scale(0.97);
  opacity: 0;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    box-shadow 0.28s ease;
}

.contact-modal.is-open .contact-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.booking-modal-dialog {
  padding: 22px 20px 20px;
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  background:
    radial-gradient(120% 80% at 50% -20%, rgba(212, 175, 55, 0.12), transparent 55%),
    linear-gradient(165deg, #1a1a1c 0%, #101012 100%);
}

.booking-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.32);
  background: rgba(255, 255, 255, 0.05);
  color: #f0e4c8;
  cursor: pointer;
  font-family: inherit;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.booking-modal-close:hover {
  background: rgba(212, 175, 55, 0.14);
  border-color: rgba(230, 200, 130, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
  transform: rotate(90deg);
}

.booking-modal-close:active {
  transform: rotate(90deg) scale(0.94);
}

.booking-modal-close-x {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}

.booking-modal-close-x::before,
.booking-modal-close-x::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.booking-modal-close-x::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.booking-modal-header {
  padding-right: 44px;
  margin-bottom: 4px;
}

.booking-modal-header h3 {
  margin: 0 0 8px;
  font-size: clamp(1.15rem, 2.8vw, 1.28rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f8ecd4;
  line-height: 1.25;
}

.booking-modal-selection {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(232, 214, 176, 0.72);
}

.contact-options {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-option {
  min-height: 44px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f8e9bd;
  font-size: 1.02rem;
  background: rgba(255, 255, 255, 0.04);
}

.booking-modal-channels {
  gap: 12px;
}

.booking-channel {
  position: relative;
  min-height: 56px;
  padding: 12px 14px 12px 12px;
  border-radius: 14px;
  justify-content: flex-start;
  gap: 14px;
  text-align: left;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.42);
  background: rgba(255, 255, 255, 0.035);
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.booking-channel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.06) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.booking-channel:hover::before {
  transform: translateX(100%);
}

.booking-channel:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 200, 130, 0.65);
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(212, 175, 55, 0.15);
}

.booking-channel:active {
  transform: translateY(-1px) scale(0.99);
}

.booking-channel--line {
  border-left: 3px solid #06c755;
}

.booking-channel--whatsapp {
  border-left: 3px solid #25d366;
}

.booking-channel--call {
  border-left: 3px solid rgba(212, 175, 55, 0.75);
}

.booking-channel-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
}

.booking-channel-icon img {
  display: block;
  width: auto;
  height: auto;
  max-width: 28px;
  max-height: 28px;
  object-fit: contain;
}

.booking-channel--line .booking-channel-icon {
  background: transparent;
}

.booking-channel--line .booking-channel-icon img {
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
  border-radius: 11px;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s ease, filter 0.22s ease;
}

.booking-channel--line:hover .booking-channel-icon img {
  transform: scale(1.07);
  box-shadow: 0 8px 22px rgba(6, 199, 85, 0.42);
  filter: brightness(1.05);
}

.booking-channel-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.booking-channel-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #fdf6e4;
  letter-spacing: 0.04em;
}

.booking-channel--call .booking-channel-title {
  letter-spacing: 0.02em;
}

.booking-channel-sub {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(232, 214, 176, 0.62);
  line-height: 1.35;
}

.booking-channel-chevron {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  margin-right: 4px;
  border-right: 2px solid rgba(232, 214, 176, 0.45);
  border-bottom: 2px solid rgba(232, 214, 176, 0.45);
  transform: rotate(-45deg);
  opacity: 0.55;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease,
    border-color 0.22s ease;
}

.booking-channel:hover .booking-channel-chevron {
  transform: translate(4px, -4px) rotate(-45deg);
  opacity: 1;
  border-color: rgba(248, 236, 212, 0.75);
}

@media (prefers-reduced-motion: reduce) {
  .contact-modal-dialog {
    transform: none;
    opacity: 1;
    transition: opacity 0.2s ease;
  }

  .contact-modal.is-open .contact-modal-dialog {
    transform: none;
  }

  .booking-channel,
  .booking-channel::before,
  .booking-channel:hover,
  .booking-channel-chevron,
  .booking-modal-close,
  .booking-modal-close:hover {
    transition: none;
    transform: none;
  }

  .booking-modal-close:hover {
    transform: none;
  }

  .booking-channel:hover {
    transform: none;
  }

  .booking-channel:hover::before {
    transform: none;
  }

  .booking-channel:hover .booking-channel-chevron {
    transform: rotate(-45deg);
    opacity: 1;
  }

  .booking-channel--line .booking-channel-icon img,
  .booking-channel--line:hover .booking-channel-icon img {
    transition: none;
    transform: none;
    filter: none;
    box-shadow: none;
  }
}

.split-stack {
  display: grid;
  gap: 22px;
}

.split {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.split-cta {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.split-cta-cell {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.split-cta-btn {
  width: 100%;
  justify-content: center;
}

.info-table-wrap--panel-end {
  margin-bottom: 0;
}

.contact-direct .site-page-title {
  margin-bottom: 4px;
}

.contact-channels {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-channels > li {
  margin: 0;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 15px;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: linear-gradient(148deg, rgba(255, 253, 248, 0.98) 0%, rgba(250, 244, 228, 0.72) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

a.contact-channel:hover {
  border-color: rgba(184, 140, 40, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 28px rgba(45, 34, 12, 0.08);
  transform: translateY(-1px);
}

a.contact-channel:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.contact-channel--static {
  cursor: default;
  opacity: 0.98;
}

.contact-channel__icon {
  flex-shrink: 0;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #fdf9ef, #e8dcc6);
  border: 1px solid rgba(212, 175, 55, 0.38);
  color: var(--gold-deep);
}

.contact-channel__icon svg {
  display: block;
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  flex: 0 0 auto;
  overflow: visible;
}

.contact-channel__icon--line {
  color: #0d5c3a;
  background: linear-gradient(145deg, #f0fdf6, #cfead8);
  border-color: rgba(6, 199, 85, 0.28);
}

.contact-channel__icon--wa {
  color: #0f6b5c;
  background: linear-gradient(145deg, #ecfaf7, #c5ebe3);
  border-color: rgba(18, 140, 126, 0.28);
}

.contact-channel__icon--phone {
  color: #5c4518;
  background: linear-gradient(145deg, #fdf6e4, #edd9a8);
  border-color: rgba(184, 140, 40, 0.35);
}

.contact-channel__icon--mail {
  color: #4a3d1f;
  background: linear-gradient(145deg, #faf4e8, #e8dcc4);
  border-color: rgba(142, 106, 20, 0.3);
}

.contact-channel__icon--hours {
  color: #4d4330;
  background: linear-gradient(145deg, #f5f2ea, #e0d8c8);
  border-color: rgba(105, 92, 67, 0.22);
}

.contact-channel__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.contact-channel__label {
  font-family: var(--font-detail);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.contact-channel__value {
  font-family: var(--font-detail);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.35;
  color: #2a2214;
  word-break: break-word;
}

.media {
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.45)),
    url("../images/cover.png") center/cover;
}

.strip {
  padding: 86px 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.92), rgba(9, 9, 9, 0.64)),
    url("../images/cover.png") center/cover;
}

.strip h2,
.strip p {
  color: #fff5d5;
}

.strip h2 {
  font-size: var(--section-title-size);
  line-height: 1.22;
}

.site-footer {
  background: linear-gradient(180deg, #0e0c0a 0%, #060504 100%);
  color: rgba(247, 235, 200, 0.88);
  border-top: 1px solid rgba(212, 175, 55, 0.32);
  margin-top: 0;
}

.site-footer a {
  color: rgba(255, 241, 198, 0.9);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer a:hover {
  color: #fff8e7;
}

.site-footer a.btn-gold {
  color: #0a0a0a;
}

.site-footer a.btn-gold:hover {
  color: #000;
}

.site-footer__main {
  padding: 52px 0 40px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(200px, 1.25fr) repeat(3, minmax(0, 1fr));
  gap: 36px 32px;
  align-items: start;
}

.site-footer__logo {
  display: inline-block;
  font-weight: 700;
  font-size: clamp(0.72rem, 1.1vw, 1.05rem);
  line-height: 1.35;
  letter-spacing: 0.06em;
  color: #fff1c6;
  margin-bottom: 14px;
  white-space: nowrap;
}

.site-footer__logo:hover {
  color: #fff8e7;
}

.site-footer__tagline {
  margin: 0;
  font-family: var(--font-detail);
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(247, 235, 200, 0.68);
  max-width: 280px;
}

.site-footer__heading {
  margin: 0 0 16px;
  font-family: var(--font-detail);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d4af37;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-family: var(--font-detail);
  font-size: 0.94rem;
}

.site-footer__list--contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
}

.site-footer__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  margin-top: 2px;
  opacity: 0.75;
  color: #e8c86e;
}

.site-footer__icon svg {
  display: block;
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  flex: 0 0 auto;
  overflow: visible;
}

.site-footer__maps {
  margin: 18px 0 0;
  font-family: var(--font-detail);
  font-size: 0.88rem;
}

.site-footer__maps a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: rgba(232, 200, 110, 0.85);
}

.site-footer__maps a:hover {
  color: #fff1c6;
}

.site-footer__cta {
  margin-top: 40px;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer__cta-text {
  margin: 0;
  font-size: 1.02rem;
  color: rgba(255, 245, 214, 0.88);
  max-width: 520px;
  line-height: 1.5;
}

.site-footer__cta-text strong {
  display: block;
  margin-bottom: 4px;
  color: #fff1c6;
  font-size: 1.08rem;
}

.site-footer__cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__btn {
  min-height: 48px;
  font-size: 1.02rem;
  padding: 0 22px;
}

.site-footer__bar {
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  background: rgba(0, 0, 0, 0.45);
  padding: 18px 0 22px;
}

.site-footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
}

.site-footer__copy {
  margin: 0;
  font-family: var(--font-detail);
  font-size: 0.82rem;
  color: rgba(247, 235, 200, 0.55);
}

.site-footer__copy-muted {
  opacity: 0.85;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--font-detail);
  font-size: 0.82rem;
}

.site-footer__legal a {
  color: rgba(247, 235, 200, 0.6);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__legal a:hover {
  color: #fff1c6;
}

.site-footer__top {
  font-family: var(--font-detail);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(8, 8, 8, 0.6);
  color: #f3dfaa;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-footer__top:hover {
  background: rgba(30, 24, 12, 0.95);
  color: #fff1c6;
  transform: translateY(-1px);
}

@media (max-width: 960px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__tagline {
    max-width: 420px;
  }
}

@media (max-width: 600px) {
  .site-footer__main {
    padding: 40px 0 32px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .site-footer__cta-btns {
    justify-content: center;
  }

  .site-footer__bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .site-footer__legal {
    justify-content: center;
  }
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 12px 0 0;
  font-family: var(--font-detail);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-status[data-state="success"] {
  color: #2d6a3f;
}

.form-status[data-state="error"] {
  color: #8b2e2e;
}

.form-status[data-state="loading"] {
  color: #6b5a38;
}

.form-status[hidden] {
  display: none;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(133, 108, 48, 0.3);
  background: #fff;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1.06rem;
}

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

.span-2 {
  grid-column: 1 / -1;
}

@media (max-width: 980px) {
  .article-single-layout {
    grid-template-columns: 1fr;
  }

  .article-reco {
    order: 2;
  }

  .article-single-main {
    order: 1;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }

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

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

  .grid-4,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .carousel-layout {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .carousel-layout > .car-toolbar {
    order: -2;
  }

  .carousel-main {
    order: -1;
    min-width: 0;
    max-width: 100%;
  }

  .car-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .car-sidebar strong {
    grid-column: 1 / -1;
  }

  .car-toolbar-top {
    flex-direction: column;
    align-items: stretch;
  }

  .car-toolbar-nav {
    justify-content: flex-end;
  }

  /* Tall enough for portrait card (1:1 img + text + CTA + dots) */
  .car-carousel {
    min-height: clamp(540px, 126vw, 760px);
  }

  .carousel-viewport {
    min-height: clamp(540px, 126vw, 760px);
    max-width: 100%;
    margin-inline: auto;
    contain: none;
  }

  /* Match sidebar card width (full column) */
  .car-carousel .car-option {
    width: 100%;
    max-width: 100%;
  }

  /* One card only under desktop — avoids iPad / narrow widths peeking past viewport */
  .car-carousel .car-option.is-left,
  .car-carousel .car-option.is-right {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateX(-50%) scale(0.88) !important;
    filter: blur(2px) !important;
    z-index: 0 !important;
  }

  .car-carousel .car-option.is-left img,
  .car-carousel .car-option.is-right img {
    filter: none !important;
  }

  .car-carousel .car-option.is-center {
    z-index: 3;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) scale(1);
    filter: none !important;
  }

  .carousel-dots {
    margin-top: 6px;
  }

  .car-option {
    display: block;
  }

  .car-option img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    background: #2a2418;
  }

  .car-filter-bar {
    grid-template-columns: 1fr;
  }

  .car-layout {
    grid-template-columns: 1fr;
  }

  .car-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .car-sidebar strong {
    grid-column: 1 / -1;
  }

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

  .split-cta {
    grid-template-columns: 1fr;
  }
}

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

  .article-cover {
    height: clamp(190px, 56vw, 260px);
  }

  .brand {
    gap: 10px;
    font-size: clamp(0.52rem, 2.85vw, 1.05rem);
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }

  .brand-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  img.brand-mark {
    width: 52px;
    max-width: 52px;
    flex-shrink: 0;
  }

  .menu-toggle {
    display: grid;
  }

  .menu {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: rgba(11, 11, 11, 0.97);
    border-bottom: 1px solid rgba(212, 175, 55, 0.24);
    padding: 12px 24px 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .lang-switch {
    margin-left: auto;
    margin-right: 8px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

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

  .section {
    padding: 70px 0;
  }

  .section--reduce-bottom {
    padding-bottom: 36px;
  }

  .section--reduce-top {
    padding-top: 32px;
  }

  .car-select-section .section-head h2 {
    white-space: normal;
  }

  .car-picker-grid {
    grid-template-columns: 1fr;
  }

  .car-sidebar {
    grid-template-columns: 1fr;
  }

  .reviews-nav {
    width: 38px;
    height: 38px;
    font-size: 1.45rem;
  }

  .reviews-nav.prev {
    left: 4px;
  }

  .reviews-nav.next {
    right: 4px;
  }
}

/* About page — editorial split (distinct from index full-bleed hero + strip) */
body.about-page {
  background: linear-gradient(180deg, #faf7f0 0%, #f2ebe0 55%, #ebe3d4 100%);
}

.about-intro {
  padding: clamp(40px, 7vw, 72px) 0 clamp(48px, 9vw, 88px);
}

.about-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.about-intro__copy {
  max-width: 36rem;
}

.about-intro__eyebrow {
  margin: 0;
  font-family: var(--font-detail);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.about-intro__title {
  margin: 14px 0 0;
  font-size: clamp(1.75rem, 3.6vw, 2.85rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-weight: 700;
}

.about-intro__rule {
  width: 52px;
  height: 3px;
  margin: 20px 0 0;
  border: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
}

.about-intro__lead {
  margin: 22px 0 0;
  font-family: var(--font-detail);
  font-size: clamp(0.96rem, 1.25vw, 1.05rem);
  font-weight: 500;
  line-height: 1.72;
  color: var(--muted);
}

.about-intro__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
}

.about-intro__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid var(--ink);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.about-intro__btn--primary {
  background: var(--ink);
  color: #fdf6e3;
}

.about-intro__btn--primary:hover {
  background: #2a2318;
  border-color: #2a2318;
  transform: translateY(-1px);
}

.about-intro__btn--quiet {
  background: transparent;
  color: var(--ink);
}

.about-intro__btn--quiet:hover {
  background: rgba(27, 22, 15, 0.06);
  transform: translateY(-1px);
}

.about-intro__figure {
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: 420px;
}

.about-intro__frame {
  position: relative;
  border-radius: 4px 4px 28px 4px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow:
    0 28px 56px rgba(45, 34, 12, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  background: #e8e0d4;
}

.about-intro__frame::before {
  content: "";
  position: absolute;
  inset: -40% 40% 40% -40%;
  background: linear-gradient(125deg, rgba(212, 175, 55, 0.12), transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.about-intro__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 0;
}

.about-trust {
  padding: clamp(22px, 4vw, 34px) 0;
  background: rgba(255, 252, 246, 0.65);
  border-top: 1px solid rgba(105, 92, 67, 0.12);
  border-bottom: 1px solid rgba(105, 92, 67, 0.12);
}

.about-trust__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0;
}

.about-trust__item {
  padding: 8px clamp(16px, 3vw, 28px);
  font-family: var(--font-detail);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4a4030;
  text-align: center;
  border-right: 1px solid rgba(105, 92, 67, 0.2);
}

.about-trust__item:last-child {
  border-right: none;
}

.about-pillars {
  padding-top: clamp(72px, 10vw, 110px);
  padding-bottom: clamp(72px, 10vw, 110px);
}

.about-pillars__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 64px);
  align-items: start;
}

.about-pillars__intro .eyebrow {
  color: var(--gold-deep);
}

.about-pillars__heading {
  margin-top: 8px;
  white-space: normal;
  line-height: 1.18;
}

.about-pillars__sub {
  margin-top: 16px;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.65;
}

.about-pillar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(212, 175, 55, 0.28);
}

.about-pillar-list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 3vw, 28px);
  padding: clamp(22px, 3.5vw, 30px) 0;
  border-bottom: 1px solid rgba(105, 92, 67, 0.14);
}

.about-pillar-list__index {
  font-family: var(--font-detail);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(142, 106, 20, 0.85);
  line-height: 1.4;
  padding-top: 4px;
}

.about-pillar-list__h {
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  color: var(--ink);
  letter-spacing: -0.02em;
}

.about-pillar-list__p {
  margin-top: 8px;
  font-family: var(--font-detail);
  font-size: 0.98rem;
  line-height: 1.62;
  color: var(--muted);
}

.about-cta__card {
  margin-top: clamp(24px, 4vw, 36px);
  max-width: none;
  padding: clamp(22px, 4vw, 32px) clamp(20px, 4vw, 28px);
  text-align: left;
  background: linear-gradient(180deg, #fffdf8 0%, #faf5eb 100%);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 2px;
  box-shadow: 0 24px 48px rgba(45, 34, 12, 0.08);
}

.about-cta__title {
  margin: 0;
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 700;
}

.about-cta__text {
  margin: 14px 0 0;
  font-family: var(--font-detail);
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
}

.about-cta__links {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px 8px;
}

.about-cta__link {
  font-family: var(--font-detail);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 2px solid rgba(142, 106, 20, 0.35);
  padding-bottom: 2px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.about-cta__link:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.about-cta__sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(105, 92, 67, 0.35);
  margin: 0 4px;
}

@media (max-width: 900px) {
  .about-intro__grid {
    grid-template-columns: 1fr;
  }

  .about-intro__figure {
    justify-self: center;
    max-width: min(100%, 400px);
    order: -1;
  }

  .about-pillars__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .about-trust__list {
    flex-direction: column;
    align-items: stretch;
  }

  .about-trust__item {
    border-right: none;
    border-bottom: 1px solid rgba(105, 92, 67, 0.12);
    padding: 14px 12px;
    text-align: left;
  }

  .about-trust__item:last-child {
    border-bottom: none;
  }
}

/* Floating contact: one trigger; links show on hover / focus-within / .is-open */
.float-contact {
  position: fixed;
  z-index: 50;
  right: max(12px, env(safe-area-inset-right, 0px));
  bottom: max(12px, env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.float-contact__links {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.float-contact:hover .float-contact__links,
.float-contact:focus-within .float-contact__links,
.float-contact.is-open .float-contact__links {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.float-contact__link {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(148, 163, 184, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.float-contact__link:hover,
.float-contact__link:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.22);
  outline: none;
}

.float-contact__link:focus-visible {
  box-shadow:
    0 0 0 3px rgba(212, 175, 55, 0.55),
    0 8px 24px rgba(15, 23, 42, 0.22);
}

.float-contact__toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  color: #1e1508;
  background: linear-gradient(140deg, #f4da89, #d4af37 60%, #9f7a1f);
  border: 1px solid rgba(159, 122, 31, 0.55);
  box-shadow:
    0 4px 18px rgba(159, 122, 31, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.35) inset;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.float-contact__toggle:hover,
.float-contact__toggle:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 8px 26px rgba(142, 106, 20, 0.38),
    0 1px 0 rgba(255, 255, 255, 0.4) inset;
  outline: none;
}

.float-contact__toggle:focus-visible {
  box-shadow:
    0 0 0 3px rgba(212, 175, 55, 0.55),
    0 8px 26px rgba(142, 106, 20, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.4) inset;
}

.float-contact__toggle-icon {
  display: block;
}

.float-contact__icon {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 50%;
}

@media (prefers-reduced-motion: reduce) {
  .float-contact__links,
  .float-contact__link,
  .float-contact__toggle {
    transition: none;
  }
}

@media (max-width: 480px) {
  .float-contact__link {
    width: 48px;
    height: 48px;
  }

  .float-contact__toggle {
    width: 52px;
    height: 52px;
  }

  .float-contact__icon {
    width: 26px;
    height: 26px;
  }
}

/* Mobile: สมดุลและอ่านง่ายทุกหน้า */
@media (max-width: 640px) {
  :root {
    --container: min(1200px, calc(100% - 28px));
    --section-title-size: clamp(1.12rem, 5.2vw, 2rem);
  }

  html {
    font-size: 17px;
  }

  body {
    line-height: 1.68;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  p {
    font-size: 1rem;
    line-height: 1.72;
    overflow-wrap: break-word;
  }

  h2 {
    line-height: 1.24;
  }

  h1.site-page-title,
  h2.site-page-title {
    white-space: normal;
  }

  .nav {
    min-height: 72px;
    gap: 10px;
  }

  .menu {
    top: 72px;
    padding: 14px 20px 18px;
  }

  .menu a {
    font-size: 1.05rem;
    padding: 10px 12px;
    width: 100%;
    border-radius: 12px;
  }

  .hero-copy {
    padding: 48px 0 56px;
  }

  .hero-copy h1 {
    font-size: clamp(1.58rem, 6.8vw, 2.2rem);
    line-height: 1.22;
  }

  .hero .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

  .hero p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 52px 0;
  }

  .section--reduce-bottom {
    padding-bottom: 32px;
  }

  .section--reduce-top {
    padding-top: 28px;
  }

  .section-head {
    max-width: none;
  }

  .car-select-section .section-head h2 {
    white-space: normal;
  }

  .strip {
    padding: 52px 0;
  }

  .strip h2 {
    line-height: 1.22;
  }

  .strip .hero-actions {
    margin-top: 20px;
  }

  .panel {
    padding: 20px 18px;
  }

  .panel h3 {
    font-size: 1.38rem;
    line-height: 1.2;
  }

  .panel--with-media h3 {
    margin: 16px 18px 0;
  }

  .panel--with-media p {
    margin: 8px 18px 18px;
  }

  .btn {
    min-height: 48px;
    padding: 0 22px;
    font-size: 1.05rem;
  }

  input,
  select,
  textarea {
    font-size: 1rem;
    min-height: 50px;
    padding: 12px 14px;
  }

  textarea {
    min-height: 120px;
  }

  .site-footer__main {
    padding: 40px 0 28px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__cta {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 16px;
    padding: 20px 18px;
  }

  .site-footer__cta-text {
    text-align: left;
    max-width: none;
  }

  .site-footer__cta-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .site-footer__btn {
    width: 100%;
    justify-content: center;
  }

  .contact-channel {
    padding: 12px 14px;
    gap: 12px;
  }

  .contact-channel__value {
    font-size: 0.9rem;
  }

  .about-intro {
    padding: 32px 0 40px;
  }

  .about-intro__title {
    font-size: clamp(1.45rem, 5.5vw, 2rem);
  }

  .about-intro__lead {
    font-size: 0.98rem;
  }

  .about-intro__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-intro__btn {
    width: 100%;
    justify-content: center;
  }

  .about-pillars {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .about-cta__card {
    padding: 18px 16px;
  }

  .about-cta__title {
    font-size: clamp(1.08rem, 4.2vw, 1.45rem);
  }

  .about-cta__text {
    font-size: 0.94rem;
  }

  .about-cta__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .about-cta__sep {
    display: none;
  }

  .booking-modal-dialog,
  .contact-modal-dialog {
    width: min(100%, calc(100vw - 24px));
    max-height: min(90dvh, 92vh);
    overflow-y: auto;
  }

  .booking-modal-dialog {
    padding: 20px 16px 16px;
  }

  .media {
    min-height: 260px;
    border-radius: 20px;
  }
}

@media (max-width: 400px) {
  :root {
    --container: min(1200px, calc(100% - 20px));
  }

  html {
    font-size: 16px;
  }

  .lang-switch__btn {
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .brand-text {
    white-space: normal;
    line-height: 1.2;
    max-width: 52vw;
  }
}

@media print {
  .float-contact {
    display: none;
  }
}
