:root {
  --clg-black: #050505;
  --clg-black-soft: #0b0b0c;
  --clg-ink: #15130f;
  --clg-gold: #caa35c;
  --clg-gold-light: #efd99f;
  --clg-gold-dark: #8e682d;
  --clg-ivory: #f7f3eb;
  --clg-white: #fffdf9;
  --clg-silver: #c8c9cc;
  --clg-muted: #76716a;
  --clg-border: rgba(202, 163, 92, 0.36);
  --clg-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --clg-radius: 3px;
  --clg-serif: "Bodoni MT", Didot, "Times New Roman", serif;
  --clg-sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --clg-container: 1220px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.clg-theme {
  margin: 0;
  color: var(--clg-ink);
  background: var(--clg-black);
  font-family: var(--clg-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.clg-menu-open {
  overflow: hidden;
}

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

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

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

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--clg-serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
}

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

h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

::selection {
  color: var(--clg-black);
  background: var(--clg-gold-light);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.clg-skip-link:focus {
  z-index: 999999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 18px;
  color: var(--clg-black);
  background: var(--clg-gold-light);
}

.clg-container {
  width: min(calc(100% - 48px), var(--clg-container));
  margin-inline: auto;
}

.clg-readable {
  max-width: 860px;
}

.clg-main {
  min-height: 55vh;
  background: var(--clg-ivory);
}

.clg-icon {
  flex: 0 0 auto;
  width: 1.35em;
  height: 1.35em;
  vertical-align: -0.2em;
}

.clg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--clg-gold-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.clg-eyebrow::before,
.clg-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.clg-hero .clg-eyebrow::before,
.clg-final-cta .clg-eyebrow::before {
  display: none;
}

.clg-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: var(--clg-radius);
  font-family: var(--clg-sans);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.clg-button:hover,
.clg-button:focus-visible {
  transform: translateY(-2px);
}

.clg-button--gold {
  color: var(--clg-black);
  border-color: var(--clg-gold-light);
  background: linear-gradient(135deg, var(--clg-gold-light), var(--clg-gold), #b17f39);
  box-shadow: 0 10px 28px rgba(202, 163, 92, 0.2);
}

.clg-button--gold:hover,
.clg-button--gold:focus-visible {
  background: linear-gradient(135deg, #fff0bc, #d8b46f, #bd8a42);
}

.clg-button--outline {
  color: var(--clg-white);
  border-color: rgba(239, 217, 159, 0.72);
  background: rgba(5, 5, 5, 0.44);
}

.clg-button--outline:hover,
.clg-button--outline:focus-visible {
  color: var(--clg-black);
  background: var(--clg-gold-light);
}

.clg-button--black {
  color: var(--clg-white);
  background: var(--clg-black);
  border-color: var(--clg-black);
}

.clg-button--outline-dark {
  color: var(--clg-black);
  border-color: rgba(5, 5, 5, 0.72);
  background: transparent;
}

.clg-button--outline-dark:hover,
.clg-button--outline-dark:focus-visible {
  color: var(--clg-white);
  background: var(--clg-black);
}

.clg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Header */
.clg-site-header {
  position: relative;
  z-index: 100;
  color: var(--clg-white);
  background: var(--clg-black);
  border-bottom: 1px solid rgba(202, 163, 92, 0.3);
}

.clg-topbar {
  border-bottom: 1px solid rgba(202, 163, 92, 0.22);
  background: #020202;
}

.clg-topbar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.76rem;
  color: #dad6ce;
}

.clg-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.clg-topbar__item .clg-icon {
  color: var(--clg-gold);
}

.clg-nav-wrap {
  background: rgba(5, 5, 5, 0.97);
}

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

.clg-brand {
  display: inline-flex;
  width: 238px;
  flex: 0 0 auto;
  align-items: center;
}

.clg-brand__image,
.custom-logo {
  width: auto;
  max-width: 100%;
  max-height: 68px;
  object-fit: contain;
}

.clg-primary-nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
}

.clg-menu,
.clg-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clg-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
}

.clg-menu a {
  position: relative;
  display: inline-block;
  padding: 28px 0;
  color: #e8e4dc;
  font-size: 0.82rem;
  font-weight: 500;
}

.clg-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background: var(--clg-gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.clg-menu a:hover::after,
.clg-menu .current-menu-item > a::after {
  transform: scaleX(1);
}

.clg-nav__cta {
  flex: 0 0 auto;
}

.clg-menu-toggle {
  display: none;
  width: 48px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--clg-border);
  background: transparent;
}

.clg-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: var(--clg-gold-light);
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.clg-hero {
  position: relative;
  isolation: isolate;
  min-height: 0;
  padding-bottom: 28px;
  overflow: hidden;
  color: var(--clg-white);
  background: var(--clg-black);
}

.clg-hero__backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.82) 39%, rgba(3, 3, 3, 0.14) 74%, rgba(3, 3, 3, 0.25) 100%), url("../images/hero-limo.svg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.clg-hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.92));
}

.clg-hero__inner {
  display: flex;
  min-height: 620px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.clg-hero__copy {
  width: min(620px, 58%);
}

.clg-hero__copy .clg-eyebrow {
  color: var(--clg-gold-light);
}

.clg-hero__copy h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--clg-white);
}

.clg-hero__copy p {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255, 253, 249, 0.78);
  font-size: 1.05rem;
}

.clg-hero__form-wrap {
  position: relative;
  z-index: 1;
}

/* Quote forms */
.clg-quote-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--clg-border);
  background: rgba(8, 8, 8, 0.94);
  box-shadow: var(--clg-shadow);
}

.clg-quote-form--compact {
  grid-template-columns: 1.25fr 1.45fr 1.45fr 0.85fr 0.75fr auto;
  align-items: end;
  padding: 21px;
  backdrop-filter: blur(14px);
}

.clg-quote-form--full {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(22px, 4vw, 44px);
  color: var(--clg-white);
}

.clg-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.clg-field label {
  color: rgba(255, 253, 249, 0.78);
  font-size: 0.72rem;
  font-weight: 600;
}

.clg-field input,
.clg-field select,
.clg-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--clg-white);
  border: 1px solid rgba(239, 217, 159, 0.26);
  border-radius: 2px;
  outline: none;
  background: #101010;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.clg-field textarea {
  resize: vertical;
}

.clg-field input:focus,
.clg-field select:focus,
.clg-field textarea:focus {
  border-color: var(--clg-gold);
  box-shadow: 0 0 0 3px rgba(202, 163, 92, 0.12);
}

.clg-field input[type="date"],
.clg-field input[type="time"] {
  color-scheme: dark;
}

.clg-field--wide,
.clg-form-privacy {
  grid-column: 1 / -1;
}

.clg-field--submit {
  align-self: end;
}

.clg-field--submit .clg-button {
  width: 100%;
}

.clg-honeypot {
  position: absolute;
  left: -9999px;
}

.clg-form-privacy {
  margin: 4px 0 0;
  color: rgba(255, 253, 249, 0.58);
  font-size: 0.76rem;
}

.clg-form-notice {
  margin-bottom: 18px;
  padding: 15px 18px;
  border-left: 3px solid;
}

.clg-form-notice--success {
  color: #d9f7dc;
  border-color: #58bb66;
  background: #17351c;
}

.clg-form-notice--error {
  color: #ffd8d8;
  border-color: #db5b5b;
  background: #3a1717;
}

/* Trust strip */
.clg-trust {
  color: var(--clg-white);
  border-top: 1px solid rgba(202, 163, 92, 0.2);
  border-bottom: 1px solid rgba(202, 163, 92, 0.24);
  background: var(--clg-black);
}

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

.clg-trust__item {
  display: flex;
  min-height: 108px;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border-right: 1px solid rgba(202, 163, 92, 0.25);
}

.clg-trust__item:first-child {
  border-left: 1px solid rgba(202, 163, 92, 0.25);
}

.clg-trust__item .clg-icon {
  width: 31px;
  height: 31px;
  color: var(--clg-gold);
}

.clg-trust__item strong,
.clg-trust__item span {
  display: block;
}

.clg-trust__item strong {
  margin-bottom: 2px;
  font-size: 0.87rem;
}

.clg-trust__item span {
  color: rgba(255, 253, 249, 0.55);
  font-size: 0.7rem;
}

/* Sections */
.clg-section {
  padding: clamp(74px, 9vw, 126px) 0;
}

.clg-section--ivory {
  color: var(--clg-ink);
  background: var(--clg-ivory);
}

.clg-section--black {
  color: var(--clg-white);
  background: var(--clg-black);
}

.clg-section-heading {
  max-width: 800px;
  margin-bottom: 48px;
}

.clg-section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.clg-section-heading h2 {
  margin-bottom: 18px;
}

.clg-section-heading p {
  max-width: 650px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: var(--clg-muted);
}

.clg-section-heading--light p {
  color: rgba(255, 253, 249, 0.58);
}

.clg-section-heading--light .clg-eyebrow {
  color: var(--clg-gold);
}

.clg-section-action {
  margin-top: 44px;
  text-align: center;
}

/* Service cards */
.clg-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.clg-service-card {
  position: relative;
  min-height: 330px;
  padding: 38px 28px 32px;
  overflow: hidden;
  border: 1px solid rgba(142, 104, 45, 0.28);
  background: var(--clg-white);
  box-shadow: 0 12px 40px rgba(32, 23, 10, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.clg-service-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(202, 163, 92, 0.2);
  border-radius: 50%;
}

.clg-service-card:hover,
.clg-service-card:focus-visible {
  transform: translateY(-7px);
  border-color: var(--clg-gold);
  box-shadow: 0 24px 58px rgba(32, 23, 10, 0.12);
}

.clg-service-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--clg-gold-dark);
  border: 1px solid var(--clg-border);
  border-radius: 50%;
  background: #fbf7ef;
}

.clg-service-card__icon .clg-icon {
  width: 27px;
  height: 27px;
}

.clg-service-card h3 {
  margin-bottom: 14px;
}

.clg-service-card p {
  margin-bottom: 27px;
  color: var(--clg-muted);
  font-size: 0.89rem;
}

.clg-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clg-gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.clg-text-link .clg-icon {
  width: 16px;
  transition: transform 180ms ease;
}

.clg-text-link:hover .clg-icon,
.clg-text-link:focus-visible .clg-icon {
  transform: translateX(4px);
}

/* Fleet */
.clg-fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.clg-fleet-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(202, 163, 92, 0.46);
  background: #0d0d0e;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.clg-fleet-card:hover {
  transform: translateY(-6px);
  border-color: var(--clg-gold-light);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.42);
}

.clg-fleet-card__media {
  display: block;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  background: #151515;
}

.clg-fleet-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.clg-fleet-card:hover .clg-fleet-card__image {
  transform: scale(1.035);
}

.clg-fleet-card__body {
  padding: 25px 25px 27px;
}

.clg-fleet-card__class {
  display: block;
  margin-bottom: 7px;
  color: var(--clg-gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.clg-fleet-card h3 {
  margin-bottom: 20px;
  color: var(--clg-white);
}

.clg-fleet-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
  color: rgba(255, 253, 249, 0.56);
  font-size: 0.72rem;
}

.clg-fleet-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.clg-fleet-card__meta .clg-icon {
  color: var(--clg-gold);
}

.clg-fleet-card .clg-text-link {
  color: var(--clg-gold-light);
}

/* Comfort */
.clg-comfort {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 520px;
  background: var(--clg-ivory);
}

.clg-comfort__visual {
  min-height: 500px;
  background-color: #0c0c0d;
  background-image: url("../images/interior.svg");
  background-position: center;
  background-size: cover;
}

.clg-comfort__content {
  display: flex;
  max-width: 650px;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(42px, 7vw, 110px);
}

.clg-comfort__content h2 {
  margin-bottom: 20px;
}

.clg-comfort__content > p {
  color: var(--clg-muted);
}

.clg-check-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.clg-check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.clg-check-list .clg-icon {
  width: 19px;
  height: 19px;
  padding: 2px;
  color: var(--clg-black);
  border-radius: 50%;
  background: var(--clg-gold);
}

/* Locations */
.clg-locations {
  padding-top: 94px;
}

.clg-location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.clg-location-card {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--clg-border);
  background: radial-gradient(circle at 70% 10%, rgba(202, 163, 92, 0.2), transparent 35%), linear-gradient(145deg, #202020, #080808 70%);
}

.clg-location-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(90deg, transparent 49%, rgba(202, 163, 92, 0.6) 50%, transparent 51%), linear-gradient(transparent 49%, rgba(202, 163, 92, 0.6) 50%, transparent 51%);
  background-size: 44px 44px;
  transform: perspective(400px) rotateX(58deg) scale(1.5) translateY(15%);
}

.clg-location-card__code,
.clg-location-card h3 {
  position: relative;
}

.clg-location-card__code {
  margin-bottom: 12px;
  color: var(--clg-gold-light);
  font-family: var(--clg-serif);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1;
}

.clg-location-card h3 {
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.72);
  font-family: var(--clg-sans);
  font-size: 0.82rem;
  line-height: 1.4;
  letter-spacing: 0;
}

/* Steps and testimonials */
.clg-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border: 1px solid rgba(142, 104, 45, 0.35);
  list-style: none;
  background: var(--clg-white);
}

.clg-steps li {
  display: flex;
  min-height: 170px;
  align-items: center;
  gap: 22px;
  padding: 32px;
  border-right: 1px solid rgba(142, 104, 45, 0.25);
}

.clg-steps li:last-child {
  border-right: 0;
}

.clg-steps li > span {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--clg-black);
  border-radius: 50%;
  background: var(--clg-gold-light);
  font-family: var(--clg-serif);
  font-size: 1.6rem;
}

.clg-steps h3 {
  margin-bottom: 7px;
}

.clg-steps p {
  margin-bottom: 0;
  color: var(--clg-muted);
  font-size: 0.82rem;
}

.clg-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.clg-testimonial-grid blockquote {
  margin: 0;
  padding: 30px;
  border: 1px solid var(--clg-border);
  background: linear-gradient(145deg, #151515, #0a0a0a);
}

.clg-stars {
  display: block;
  margin-bottom: 20px;
  color: var(--clg-gold);
  letter-spacing: 0.12em;
}

.clg-testimonial-grid p {
  color: rgba(255, 253, 249, 0.76);
  font-family: var(--clg-serif);
  font-size: 1.18rem;
  line-height: 1.45;
}

.clg-testimonial-grid cite {
  color: var(--clg-gold-light);
  font-size: 0.76rem;
  font-style: normal;
}

/* CTA and footer */
.clg-final-cta {
  color: var(--clg-black);
  background: radial-gradient(circle at 20% 20%, #f8e8b4, transparent 34%), linear-gradient(135deg, #b8873f, #ead08a 44%, #bd8c44);
}

.clg-final-cta__inner {
  display: flex;
  min-height: 250px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 52px;
  padding-bottom: 52px;
}

.clg-final-cta h2 {
  margin-bottom: 7px;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}

.clg-final-cta p {
  margin-bottom: 0;
}

.clg-final-cta .clg-eyebrow {
  color: rgba(5, 5, 5, 0.7);
}

.clg-site-footer {
  color: var(--clg-white);
  background: #030303;
  border-top: 1px solid rgba(202, 163, 92, 0.25);
}

.clg-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.9fr 1.35fr;
  gap: 52px;
  padding-top: 68px;
  padding-bottom: 58px;
}

.clg-brand--footer {
  margin-bottom: 22px;
}

.clg-footer-brand p {
  max-width: 360px;
  color: rgba(255, 253, 249, 0.55);
  font-size: 0.82rem;
}

.clg-footer-title {
  margin-bottom: 22px;
  color: var(--clg-gold);
  font-family: var(--clg-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.clg-footer-menu {
  display: grid;
  gap: 8px;
}

.clg-footer-menu a {
  color: rgba(255, 253, 249, 0.64);
  font-size: 0.8rem;
}

.clg-footer-menu a:hover,
.clg-footer-menu a:focus-visible,
.clg-footer-contact a:hover,
.clg-footer-contact a:focus-visible {
  color: var(--clg-gold-light);
}

.clg-footer-contact > strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--clg-serif);
  font-size: 1.18rem;
  font-weight: 400;
}

.clg-footer-contact p {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(255, 253, 249, 0.64);
  font-size: 0.78rem;
}

.clg-footer-contact .clg-icon,
.clg-footer-contact__symbol {
  flex: 0 0 auto;
  color: var(--clg-gold);
}

.clg-footer-bottom {
  border-top: 1px solid rgba(202, 163, 92, 0.18);
}

.clg-footer-bottom__inner {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 253, 249, 0.44);
  font-size: 0.7rem;
}

/* Standard pages */
.clg-page-hero {
  position: relative;
  display: flex;
  min-height: 350px;
  align-items: flex-end;
  padding: 90px 0 70px;
  overflow: hidden;
  color: var(--clg-white);
  background: radial-gradient(circle at 80% 20%, rgba(202, 163, 92, 0.25), transparent 26%), linear-gradient(135deg, #151515, #020202 70%);
}

.clg-page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -240px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(202, 163, 92, 0.3);
  border-radius: 50%;
}

.clg-page-hero .clg-container {
  position: relative;
  z-index: 1;
}

.clg-page-hero h1 {
  max-width: 950px;
  margin-bottom: 0;
}

.clg-page-hero p {
  max-width: 650px;
  margin-top: 20px;
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.65);
}

.clg-page-content,
.clg-content-area {
  padding-top: 80px;
  padding-bottom: 100px;
}

.clg-page-content > *:first-child,
.clg-entry-content > *:first-child {
  margin-top: 0;
}

.clg-page-content a,
.clg-entry-content a {
  color: var(--clg-gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.clg-page-content .clg-quote-form {
  margin-top: 30px;
}

.clg-service-page-hero .clg-actions {
  margin-top: 30px;
}

.clg-service-detail {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 7vw, 95px);
  align-items: center;
}

.clg-service-detail > div:first-child > p {
  color: var(--clg-muted);
  font-size: 1.02rem;
}

.clg-benefit-panel {
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(142, 104, 45, 0.35);
  background: var(--clg-white);
  box-shadow: 0 24px 65px rgba(32, 23, 10, 0.09);
}

.clg-benefit-panel h3 {
  margin-bottom: 24px;
}

.clg-steps--dark {
  color: var(--clg-white);
  border-color: var(--clg-border);
  background: #0d0d0e;
}

.clg-steps--dark li {
  border-color: rgba(202, 163, 92, 0.25);
}

.clg-steps--dark p {
  color: rgba(255, 253, 249, 0.58);
}

.clg-post-list {
  display: grid;
  gap: 24px;
}

.clg-post-card {
  padding: 30px;
  border: 1px solid rgba(142, 104, 45, 0.2);
  background: var(--clg-white);
}

.clg-error-page {
  display: flex;
  min-height: 62vh;
  align-items: center;
  padding: 90px 0;
  color: var(--clg-white);
  background: radial-gradient(circle at 70% 30%, rgba(202, 163, 92, 0.2), transparent 24%), var(--clg-black);
}

.clg-vehicle-detail {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.clg-vehicle-detail__media {
  overflow: hidden;
  border: 1px solid var(--clg-border);
  background: #111;
}

.clg-vehicle-detail__image {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.clg-vehicle-detail__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 28px;
  padding: 17px 0;
  border-top: 1px solid rgba(142, 104, 45, 0.25);
  border-bottom: 1px solid rgba(142, 104, 45, 0.25);
}

.clg-vehicle-detail__specs span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--clg-muted);
  font-size: 0.82rem;
}

.clg-vehicle-detail__specs .clg-icon {
  color: var(--clg-gold-dark);
}

.alignwide {
  width: min(1100px, calc(100vw - 48px));
  max-width: none;
  margin-right: calc((100% - min(1100px, calc(100vw - 48px))) / 2);
  margin-left: calc((100% - min(1100px, calc(100vw - 48px))) / 2);
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* Elementor compatibility */
.elementor-page .clg-elementor-full-width,
.elementor-page .clg-main {
  overflow: clip;
}

.elementor-page .clg-main > .elementor {
  width: 100%;
}

@media (max-width: 1120px) {
  .clg-nav {
    gap: 18px;
  }

  .clg-brand {
    width: 190px;
  }

  .clg-menu {
    gap: 18px;
  }

  .clg-menu a {
    font-size: 0.75rem;
  }

  .clg-quote-form--compact {
    grid-template-columns: repeat(3, 1fr);
  }

  .clg-service-grid,
  .clg-location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clg-service-card {
    min-height: 290px;
  }

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

  .clg-footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .clg-topbar__inner {
    min-height: 38px;
  }

  .clg-nav {
    min-height: 74px;
    justify-content: space-between;
  }

  .clg-brand {
    width: 205px;
  }

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

  .clg-menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .clg-menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .clg-menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .clg-primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    padding: 18px 24px 28px;
    border-top: 1px solid var(--clg-border);
    background: #050505;
  }

  .clg-primary-nav.is-open {
    display: block;
  }

  .clg-menu {
    display: block;
  }

  .clg-menu a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(202, 163, 92, 0.15);
    font-size: 0.9rem;
  }

  .clg-menu a::after {
    display: none;
  }

  .clg-nav__cta {
    display: none;
  }

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

  .clg-hero__backdrop {
    background-image: linear-gradient(90deg, rgba(3, 3, 3, 0.96), rgba(3, 3, 3, 0.55)), url("../images/hero-limo.svg");
    background-position: 64% center;
  }

  .clg-hero__inner {
    min-height: 550px;
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .clg-hero__copy {
    width: min(620px, 78%);
  }

  .clg-quote-form--compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .clg-hero__form-wrap {
    bottom: auto;
  }

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

  .clg-trust__item:nth-child(3) {
    border-left: 1px solid rgba(202, 163, 92, 0.25);
  }

  .clg-fleet-grid,
  .clg-testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clg-fleet-card:last-child,
  .clg-testimonial-grid blockquote:last-child {
    grid-column: 1 / -1;
  }

  .clg-comfort {
    grid-template-columns: 1fr;
  }

  .clg-comfort__visual {
    min-height: 440px;
  }

  .clg-comfort__content {
    max-width: none;
  }

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

  .clg-steps li {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid rgba(142, 104, 45, 0.25);
  }

  .clg-steps li:last-child {
    border-bottom: 0;
  }

  .clg-final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .clg-vehicle-detail {
    grid-template-columns: 1fr;
  }

  .clg-service-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .clg-container {
    width: min(calc(100% - 30px), var(--clg-container));
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .clg-topbar__inner {
    justify-content: flex-end;
  }

  .clg-topbar__item:first-child {
    display: none;
  }

  .clg-brand {
    width: 180px;
  }

  .clg-hero {
    min-height: 0;
    padding-bottom: 18px;
  }

  .clg-hero__inner {
    min-height: 0;
    align-items: flex-start;
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .clg-hero__copy {
    width: 100%;
  }

  .clg-hero__copy p {
    font-size: 0.96rem;
  }

  .clg-actions .clg-button {
    width: 100%;
  }

  .clg-quote-form--compact,
  .clg-quote-form--full {
    grid-template-columns: 1fr;
  }

  .clg-quote-form--compact {
    max-height: 480px;
    overflow-y: auto;
  }

  .clg-field--wide,
  .clg-form-privacy {
    grid-column: auto;
  }

  .clg-trust__grid,
  .clg-service-grid,
  .clg-fleet-grid,
  .clg-location-grid,
  .clg-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .clg-trust__item,
  .clg-trust__item:nth-child(3) {
    min-height: 94px;
    border-right: 1px solid rgba(202, 163, 92, 0.25);
    border-left: 1px solid rgba(202, 163, 92, 0.25);
    border-bottom: 1px solid rgba(202, 163, 92, 0.25);
  }

  .clg-fleet-card:last-child,
  .clg-testimonial-grid blockquote:last-child {
    grid-column: auto;
  }

  .clg-comfort__visual {
    min-height: 320px;
  }

  .clg-comfort__content {
    padding: 60px 24px;
  }

  .clg-steps li {
    align-items: flex-start;
    padding: 26px 22px;
  }

  .clg-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .clg-footer-contact {
    grid-column: auto;
  }

  .clg-footer-bottom__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .clg-page-hero {
    min-height: 300px;
    padding-bottom: 52px;
  }

  .clg-page-content,
  .clg-content-area {
    padding-top: 55px;
    padding-bottom: 70px;
  }

  .clg-vehicle-detail__image {
    min-height: 280px;
  }
}

/* Elementor 4.2 boxed-container inner wrapper support */
body.clg-theme .clg-el-home .clg-el-home-hero.e-con > .e-con-inner,
body.clg-theme .clg-el-home .clg-el-trust.e-con > .e-con-inner,
body.clg-theme .clg-el-home .clg-el-section.e-con > .e-con-inner,
body.clg-theme .clg-el-home .clg-el-comfort.e-con > .e-con-inner,
body.clg-theme .clg-el-home .clg-el-final-cta.e-con > .e-con-inner {
  width: 100% !important;
  max-width: none !important;
  gap: 0 !important;
  padding: 0 !important;
}

body.clg-theme .clg-el-home .clg-el-shell.e-con > .e-con-inner {
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  flex-direction: column !important;
  gap: 0 !important;
  padding: 0 !important;
}

body.clg-theme .clg-el-home .clg-el-hero-shell.e-con > .e-con-inner {
  min-height: 760px !important;
  justify-content: space-between !important;
}

body.clg-theme .clg-el-home .clg-el-hero-copy.e-con > .e-con-inner {
  display: flex !important;
  width: 100% !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
}

body.clg-theme .clg-el-home .clg-el-actions.e-con > .e-con-inner {
  display: flex !important;
  width: auto !important;
  max-width: none !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 13px !important;
  padding: 0 !important;
}

body.clg-theme .clg-el-home .clg-el-actions.e-con > .e-con-inner > .elementor-element {
  width: auto !important;
  max-width: none !important;
}

body.clg-theme .clg-el-home .clg-el-trust-grid.e-con > .e-con-inner {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.clg-theme .clg-el-home .clg-el-trust-item.e-con > .e-con-inner,
body.clg-theme .clg-el-home .clg-el-service-card.e-con > .e-con-inner,
body.clg-theme .clg-el-home .clg-el-location-card.e-con > .e-con-inner,
body.clg-theme .clg-el-home .clg-el-testimonial.e-con > .e-con-inner {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  flex-direction: column !important;
  gap: 0 !important;
  padding: 0 !important;
}

body.clg-theme .clg-el-home .clg-el-trust-item.e-con > .e-con-inner {
  justify-content: center !important;
}

body.clg-theme .clg-el-home .clg-el-location-card.e-con > .e-con-inner {
  justify-content: flex-end !important;
}

body.clg-theme .clg-el-home .clg-el-section-heading.e-con > .e-con-inner {
  display: flex !important;
  width: 100% !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
  text-align: center !important;
}

body.clg-theme .clg-el-home .clg-el-services-grid.e-con > .e-con-inner,
body.clg-theme .clg-el-home .clg-el-locations-grid.e-con > .e-con-inner,
body.clg-theme .clg-el-home .clg-el-steps-grid.e-con > .e-con-inner,
body.clg-theme .clg-el-home .clg-el-testimonials-grid.e-con > .e-con-inner {
  display: grid !important;
  width: 100% !important;
  max-width: none !important;
  gap: 18px !important;
  padding: 0 !important;
}

body.clg-theme .clg-el-home .clg-el-services-grid.e-con > .e-con-inner,
body.clg-theme .clg-el-home .clg-el-locations-grid.e-con > .e-con-inner {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.clg-theme .clg-el-home .clg-el-steps-grid.e-con > .e-con-inner,
body.clg-theme .clg-el-home .clg-el-testimonials-grid.e-con > .e-con-inner {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body.clg-theme .clg-el-home .clg-el-centered-action.e-con > .e-con-inner {
  display: flex !important;
  width: 100% !important;
  flex-direction: row !important;
  justify-content: center !important;
  gap: 0 !important;
}

body.clg-theme .clg-el-home .clg-el-centered-action.e-con > .e-con-inner > .elementor-element {
  width: auto !important;
}

body.clg-theme .clg-el-home .clg-el-comfort.e-con > .e-con-inner {
  display: grid !important;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) !important;
}

body.clg-theme .clg-el-home .clg-el-comfort-content.e-con > .e-con-inner {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 0 !important;
}

body.clg-theme .clg-el-home .clg-el-step-card.e-con > .e-con-inner {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 22px !important;
}

body.clg-theme .clg-el-home .clg-el-step-copy.e-con > .e-con-inner,
body.clg-theme .clg-el-home .clg-el-final-cta-copy.e-con > .e-con-inner {
  display: flex !important;
  width: 100% !important;
  flex-direction: column !important;
  gap: 0 !important;
}

body.clg-theme .clg-el-home .clg-el-final-cta-inner.e-con > .e-con-inner {
  display: flex !important;
  width: 100% !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 44px !important;
}

@media (max-width: 1120px) {
  body.clg-theme .clg-el-home .clg-el-services-grid.e-con > .e-con-inner,
  body.clg-theme .clg-el-home .clg-el-locations-grid.e-con > .e-con-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  body.clg-theme .clg-el-home .clg-el-hero-shell.e-con > .e-con-inner {
    min-height: 0 !important;
  }

  body.clg-theme .clg-el-home .clg-el-trust-grid.e-con > .e-con-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.clg-theme .clg-el-home .clg-el-comfort.e-con > .e-con-inner,
  body.clg-theme .clg-el-home .clg-el-steps-grid.e-con > .e-con-inner {
    grid-template-columns: 1fr !important;
  }

  body.clg-theme .clg-el-home .clg-el-testimonials-grid.e-con > .e-con-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.clg-theme .clg-el-home .clg-el-final-cta-inner.e-con > .e-con-inner {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
}

@media (max-width: 680px) {
  body.clg-theme .clg-el-home .clg-el-actions.e-con > .e-con-inner {
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  body.clg-theme .clg-el-home .clg-el-actions.e-con > .e-con-inner > .elementor-element {
    width: 100% !important;
  }

  body.clg-theme .clg-el-home .clg-el-trust-grid.e-con > .e-con-inner,
  body.clg-theme .clg-el-home .clg-el-services-grid.e-con > .e-con-inner,
  body.clg-theme .clg-el-home .clg-el-locations-grid.e-con > .e-con-inner,
  body.clg-theme .clg-el-home .clg-el-testimonials-grid.e-con > .e-con-inner {
    grid-template-columns: 1fr !important;
  }

  body.clg-theme .clg-el-home .clg-el-step-card.e-con > .e-con-inner {
    align-items: flex-start !important;
  }
}

/* Elementor editable homepage template */
.clg-el-home,
.clg-el-home * {
  box-sizing: border-box;
}

.clg-el-home {
  display: flex;
  width: 100%;
  max-width: none;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: var(--clg-ivory);
}

.clg-el-home .elementor-widget {
  margin-bottom: 0;
}

.clg-el-home .elementor-widget-heading .elementor-heading-title,
.clg-el-home .elementor-widget-text-editor p {
  margin: 0;
}

.clg-el-shell {
  display: flex;
  width: min(calc(100% - 48px), var(--clg-container));
  max-width: var(--clg-container);
  flex-direction: column;
  gap: 0;
  margin-inline: auto;
  padding: 0;
}

.clg-el-home-hero {
  display: flex;
  width: 100%;
  max-width: none;
  color: var(--clg-white);
  background-color: var(--clg-black);
  background-image: linear-gradient(90deg, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.83) 39%, rgba(3, 3, 3, 0.18) 74%, rgba(3, 3, 3, 0.38) 100%), url("../images/hero-limo.svg");
  background-position: center;
  background-size: cover;
  padding: 70px 0 30px;
}

.clg-el-hero-shell {
  min-height: 760px;
  justify-content: space-between;
}

.clg-el-hero-copy {
  display: flex;
  width: min(620px, 58%);
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 0 62px;
}

.clg-el-eyebrow .elementor-heading-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--clg-gold-dark);
  font-family: var(--clg-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.clg-el-eyebrow .elementor-heading-title::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.clg-el-eyebrow-light .elementor-heading-title {
  color: var(--clg-gold-light);
}

.clg-el-eyebrow-dark .elementor-heading-title {
  color: var(--clg-ink);
}

.clg-el-hero-title {
  margin-top: 18px;
}

.clg-el-hero-title .elementor-heading-title {
  color: var(--clg-white);
  font-family: var(--clg-serif);
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.clg-el-hero-description {
  max-width: 590px;
  margin-top: 24px;
}

.clg-el-hero-description,
.clg-el-hero-description p {
  color: rgba(255, 253, 249, 0.8);
  font-family: var(--clg-sans);
  font-size: 1.05rem;
  line-height: 1.65;
}

.clg-el-actions {
  display: flex;
  width: auto;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
}

.clg-el-actions > .elementor-element {
  width: auto;
}

.clg-el-button .elementor-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: var(--clg-radius);
  font-family: var(--clg-sans);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.3;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.clg-el-button .elementor-button:hover,
.clg-el-button .elementor-button:focus-visible {
  transform: translateY(-2px);
}

.clg-el-button-gold .elementor-button {
  color: var(--clg-black);
  border-color: var(--clg-gold-light);
  background: linear-gradient(135deg, var(--clg-gold-light), var(--clg-gold), #b17f39);
  box-shadow: 0 10px 28px rgba(202, 163, 92, 0.2);
}

.clg-el-button-outline .elementor-button {
  color: var(--clg-white);
  border-color: rgba(239, 217, 159, 0.72);
  background: rgba(5, 5, 5, 0.28);
}

.clg-el-button-black .elementor-button {
  color: var(--clg-white);
  border-color: var(--clg-black);
  background: var(--clg-black);
}

.clg-el-button-outline-dark .elementor-button {
  color: var(--clg-ink);
  border-color: rgba(21, 19, 15, 0.55);
  background: transparent;
}

.clg-el-quote {
  width: 100%;
  margin-top: auto;
}

.clg-el-quote .clg-quote-form {
  width: 100%;
}

.clg-el-trust {
  display: flex;
  width: 100%;
  max-width: none;
  color: var(--clg-white);
  background: #070707;
}

.clg-el-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.clg-el-trust-item {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  justify-content: center;
  padding: 22px 28px;
  border-right: 1px solid rgba(202, 163, 92, 0.25);
}

.clg-el-trust-item:first-child {
  border-left: 1px solid rgba(202, 163, 92, 0.25);
}

.clg-el-trust-title .elementor-heading-title {
  color: var(--clg-white);
  font-family: var(--clg-sans);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
}

.clg-el-trust-copy {
  margin-top: 4px;
}

.clg-el-trust-copy,
.clg-el-trust-copy p {
  color: rgba(255, 253, 249, 0.5);
  font-size: 0.7rem;
  line-height: 1.5;
}

.clg-el-section {
  display: flex;
  width: 100%;
  max-width: none;
  padding: 110px 0;
}

.clg-el-section-ivory {
  color: var(--clg-ink);
  background: var(--clg-ivory);
}

.clg-el-section-black {
  color: var(--clg-white);
  background: var(--clg-black);
}

.clg-el-section-heading {
  display: flex;
  max-width: 780px;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 54px;
  text-align: center;
}

.clg-el-section-title {
  margin-top: 16px;
}

.clg-el-section-title .elementor-heading-title,
.clg-el-comfort-title .elementor-heading-title,
.clg-el-final-title .elementor-heading-title {
  color: var(--clg-ink);
  font-family: var(--clg-serif);
  font-size: clamp(2.35rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.clg-el-title-light .elementor-heading-title {
  color: var(--clg-white);
}

.clg-el-section-description {
  max-width: 720px;
  margin-top: 20px;
}

.clg-el-section-description,
.clg-el-section-description p,
.clg-el-card-copy,
.clg-el-card-copy p {
  color: var(--clg-muted);
  font-family: var(--clg-sans);
  font-size: 0.95rem;
  line-height: 1.7;
}

.clg-el-copy-light,
.clg-el-copy-light p {
  color: rgba(255, 253, 249, 0.58);
}

.clg-el-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.clg-el-service-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 28px;
  border: 1px solid rgba(142, 104, 45, 0.23);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 16px 45px rgba(33, 25, 14, 0.04);
}

.clg-el-card-number .elementor-heading-title {
  color: var(--clg-gold-dark);
  font-family: var(--clg-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.clg-el-card-title {
  margin-top: 25px;
}

.clg-el-card-title .elementor-heading-title,
.clg-el-step-title .elementor-heading-title {
  color: var(--clg-ink);
  font-family: var(--clg-serif);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.clg-el-service-card .clg-el-card-copy {
  margin-top: 16px;
}

.clg-el-card-link {
  width: auto;
  margin-top: auto;
}

.clg-el-card-link .elementor-button {
  padding: 12px 0 0;
  color: var(--clg-gold-dark);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
}

.clg-el-fleet-shortcode {
  width: 100%;
}

.clg-el-centered-action {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 44px;
}

.clg-el-centered-action > .elementor-element {
  width: auto;
}

.clg-el-comfort {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: 1.1fr 0.9fr;
  color: var(--clg-ink);
  background: #0a0b0d;
}

.clg-el-comfort-visual {
  min-height: 620px;
  background-color: #0a0b0d;
  background-image: url("../images/interior.svg");
  background-position: center;
  background-size: cover;
}

.clg-el-comfort-content {
  display: flex;
  max-width: 720px;
  flex-direction: column;
  justify-content: center;
  padding: 84px 8vw;
  background: var(--clg-ivory);
}

.clg-el-comfort-title {
  margin-top: 16px;
}

.clg-el-comfort-content > .clg-el-card-copy {
  margin-top: 24px;
}

.clg-el-comfort-list {
  margin-top: 27px;
}

.clg-el-comfort-list ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.clg-el-comfort-list li {
  position: relative;
  padding-left: 30px;
  color: var(--clg-ink);
}

.clg-el-comfort-list li::before {
  content: "✓";
  position: absolute;
  top: 0.12em;
  left: 0;
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--clg-black);
  background: var(--clg-gold);
  font-size: 0.72rem;
}

.clg-el-locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.clg-el-location-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  border: 1px solid rgba(202, 163, 92, 0.32);
  background: radial-gradient(circle at 70% 10%, rgba(202, 163, 92, 0.2), transparent 35%), linear-gradient(145deg, #202020, #080808 70%);
}

.clg-el-location-code .elementor-heading-title {
  color: var(--clg-gold-light);
  font-family: var(--clg-serif);
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
}

.clg-el-location-copy {
  margin-top: 15px;
}

.clg-el-location-copy,
.clg-el-location-copy p {
  color: rgba(255, 253, 249, 0.65);
  font-size: 0.78rem;
  line-height: 1.5;
}

.clg-el-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(142, 104, 45, 0.25);
  background: rgba(255, 255, 255, 0.48);
}

.clg-el-step-card {
  display: flex;
  min-height: 180px;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  padding: 34px 30px;
  border-right: 1px solid rgba(142, 104, 45, 0.25);
}

.clg-el-step-card:last-child {
  border-right: 0;
}

.clg-el-step-number {
  display: flex;
  width: 54px;
  min-width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--clg-gold-light);
}

.clg-el-step-number .elementor-heading-title {
  color: var(--clg-ink);
  font-family: var(--clg-serif);
  font-size: 1.45rem;
  line-height: 1;
}

.clg-el-step-copy {
  display: flex;
  flex-direction: column;
}

.clg-el-step-copy .clg-el-card-copy {
  margin-top: 9px;
}

.clg-el-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.clg-el-testimonial {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 34px 30px;
  border: 1px solid rgba(202, 163, 92, 0.3);
  background: linear-gradient(145deg, #151515, #0a0a0a);
}

.clg-el-stars .elementor-heading-title {
  color: var(--clg-gold);
  font-family: var(--clg-sans);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
}

.clg-el-testimonial-quote {
  margin-top: 24px;
}

.clg-el-testimonial-quote,
.clg-el-testimonial-quote p {
  color: rgba(255, 253, 249, 0.78);
  font-family: var(--clg-serif);
  font-size: 1.08rem;
  line-height: 1.6;
}

.clg-el-testimonial-author {
  margin-top: auto;
  padding-top: 24px;
}

.clg-el-testimonial-author .elementor-heading-title {
  color: var(--clg-gold-light);
  font-family: var(--clg-sans);
  font-size: 0.72rem;
  font-weight: 400;
}

.clg-el-final-cta {
  display: flex;
  width: 100%;
  max-width: none;
  padding: 72px 0;
  color: var(--clg-ink);
  background: radial-gradient(circle at 20% 20%, #f8e8b4, transparent 34%), linear-gradient(135deg, #b8873f, #ead08a 44%, #bd8c44);
}

.clg-el-final-cta-inner {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.clg-el-final-cta-copy {
  display: flex;
  max-width: 720px;
  flex-direction: column;
}

.clg-el-final-title {
  margin-top: 16px;
}

.clg-el-final-description {
  margin-top: 17px;
}

.clg-el-final-description,
.clg-el-final-description p {
  color: rgba(21, 19, 15, 0.78);
}

.clg-el-final-cta .clg-el-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

@media (max-width: 1120px) {
  .clg-el-services-grid,
  .clg-el-locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clg-el-service-card {
    min-height: 290px;
  }
}

@media (max-width: 900px) {
  .clg-el-home-hero {
    background-image: linear-gradient(90deg, rgba(3, 3, 3, 0.96), rgba(3, 3, 3, 0.57)), url("../images/hero-limo.svg");
    background-position: 64% center;
  }

  .clg-el-hero-shell {
    min-height: 0;
  }

  .clg-el-hero-copy {
    width: min(620px, 82%);
  }

  .clg-el-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clg-el-trust-item:nth-child(3) {
    border-left: 1px solid rgba(202, 163, 92, 0.25);
  }

  .clg-el-comfort {
    grid-template-columns: 1fr;
  }

  .clg-el-comfort-visual {
    min-height: 440px;
  }

  .clg-el-comfort-content {
    max-width: none;
  }

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

  .clg-el-step-card {
    border-right: 0;
    border-bottom: 1px solid rgba(142, 104, 45, 0.25);
  }

  .clg-el-step-card:last-child {
    border-bottom: 0;
  }

  .clg-el-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clg-el-testimonial:last-child {
    grid-column: 1 / -1;
  }

  .clg-el-final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .clg-el-shell {
    width: min(calc(100% - 30px), var(--clg-container));
  }

  .clg-el-home-hero {
    padding-top: 42px;
    padding-bottom: 18px;
  }

  .clg-el-hero-copy {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 48px;
  }

  .clg-el-hero-title .elementor-heading-title {
    font-size: clamp(2.75rem, 14vw, 4.5rem);
  }

  .clg-el-hero-description,
  .clg-el-hero-description p {
    font-size: 0.96rem;
  }

  .clg-el-actions,
  .clg-el-final-cta .clg-el-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .clg-el-actions > .elementor-element,
  .clg-el-button,
  .clg-el-button .elementor-button {
    width: 100%;
  }

  .clg-el-trust-grid,
  .clg-el-services-grid,
  .clg-el-locations-grid,
  .clg-el-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .clg-el-trust-item,
  .clg-el-trust-item:nth-child(3) {
    min-height: 94px;
    border-right: 1px solid rgba(202, 163, 92, 0.25);
    border-bottom: 1px solid rgba(202, 163, 92, 0.25);
    border-left: 1px solid rgba(202, 163, 92, 0.25);
  }

  .clg-el-section {
    padding: 72px 0;
  }

  .clg-el-section-heading {
    margin-bottom: 38px;
  }

  .clg-el-service-card {
    min-height: 280px;
  }

  .clg-el-comfort-visual {
    min-height: 320px;
  }

  .clg-el-comfort-content {
    padding: 60px 24px;
  }

  .clg-el-step-card {
    align-items: flex-start;
    padding: 26px 22px;
  }

  .clg-el-testimonial:last-child {
    grid-column: auto;
  }

  .clg-el-final-cta {
    padding: 58px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Elementor 4.x container and global-style compatibility */
body.clg-theme .clg-el-home.e-con,
body.clg-theme .clg-el-home .e-con {
  gap: 0 !important;
  padding: 0 !important;
}

body.clg-theme .clg-el-home.e-con {
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  flex-direction: column !important;
  gap: 0 !important;
}

body.clg-theme .clg-el-home .clg-el-shell.e-con {
  display: flex !important;
  width: min(calc(100% - 48px), var(--clg-container)) !important;
  max-width: var(--clg-container) !important;
  flex-direction: column !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

body.clg-theme .clg-el-home .clg-el-home-hero.e-con {
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  padding: 70px 0 30px !important;
}

body.clg-theme .clg-el-home .clg-el-hero-shell.e-con {
  min-height: 760px !important;
  justify-content: space-between !important;
}

body.clg-theme .clg-el-home .clg-el-hero-copy.e-con {
  display: flex !important;
  width: min(620px, 58%) !important;
  max-width: 620px !important;
  flex-direction: column !important;
  align-self: flex-start !important;
  align-items: flex-start !important;
  padding: 28px 0 62px !important;
}

body.clg-theme .clg-el-home .clg-el-actions.e-con {
  display: flex !important;
  width: auto !important;
  max-width: 100% !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-self: flex-start !important;
  align-items: center !important;
  gap: 13px !important;
  margin-top: 34px !important;
}

body.clg-theme .clg-el-home .clg-el-actions.e-con > .elementor-element {
  width: auto !important;
  max-width: none !important;
}

body.clg-theme .clg-el-home .clg-el-quote {
  width: 100% !important;
  max-width: none !important;
}

body.clg-theme .clg-el-home .clg-el-trust.e-con {
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
}

body.clg-theme .clg-el-home .clg-el-trust-grid.e-con {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.clg-theme .clg-el-home .clg-el-trust-item.e-con {
  display: flex !important;
  min-height: 118px !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 22px 28px !important;
}

body.clg-theme .clg-el-home .clg-el-section.e-con {
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  padding: 110px 0 !important;
}

body.clg-theme .clg-el-home .clg-el-section-heading.e-con {
  display: flex !important;
  width: 100% !important;
  max-width: 780px !important;
  flex-direction: column !important;
  align-items: center !important;
  margin: 0 auto 54px !important;
}

body.clg-theme .clg-el-home .clg-el-services-grid.e-con,
body.clg-theme .clg-el-home .clg-el-locations-grid.e-con,
body.clg-theme .clg-el-home .clg-el-steps-grid.e-con,
body.clg-theme .clg-el-home .clg-el-testimonials-grid.e-con {
  display: grid !important;
  width: 100% !important;
  max-width: none !important;
  gap: 18px !important;
}

body.clg-theme .clg-el-home .clg-el-services-grid.e-con,
body.clg-theme .clg-el-home .clg-el-locations-grid.e-con {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.clg-theme .clg-el-home .clg-el-steps-grid.e-con,
body.clg-theme .clg-el-home .clg-el-testimonials-grid.e-con {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body.clg-theme .clg-el-home .clg-el-service-card.e-con {
  display: flex !important;
  min-height: 330px !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  padding: 30px 28px !important;
}

body.clg-theme .clg-el-home .clg-el-centered-action.e-con {
  display: flex !important;
  width: 100% !important;
  flex-direction: row !important;
  justify-content: center !important;
}

body.clg-theme .clg-el-home .clg-el-centered-action.e-con > .elementor-element {
  width: auto !important;
}

body.clg-theme .clg-el-home .clg-el-comfort.e-con {
  display: grid !important;
  width: 100% !important;
  max-width: none !important;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) !important;
}

body.clg-theme .clg-el-home .clg-el-comfort-visual.e-con {
  width: 100% !important;
  min-height: 620px !important;
}

body.clg-theme .clg-el-home .clg-el-comfort-content.e-con {
  display: flex !important;
  width: 100% !important;
  max-width: 720px !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 84px 8vw !important;
}

body.clg-theme .clg-el-home .clg-el-location-card.e-con {
  display: flex !important;
  min-height: 230px !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding: 28px 24px !important;
}

body.clg-theme .clg-el-home .clg-el-step-card.e-con {
  display: flex !important;
  min-height: 180px !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 22px !important;
  padding: 34px 30px !important;
}

body.clg-theme .clg-el-home .clg-el-step-copy.e-con,
body.clg-theme .clg-el-home .clg-el-final-cta-copy.e-con {
  display: flex !important;
  flex-direction: column !important;
}

body.clg-theme .clg-el-home .clg-el-testimonial.e-con {
  display: flex !important;
  min-height: 270px !important;
  flex-direction: column !important;
  padding: 34px 30px !important;
}

body.clg-theme .clg-el-home .clg-el-final-cta.e-con {
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  padding: 72px 0 !important;
}

body.clg-theme .clg-el-home .clg-el-final-cta-inner.e-con {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 44px !important;
}

body.clg-theme .clg-el-home .clg-el-hero-title {
  margin-top: 18px !important;
}

body.clg-theme .clg-el-home .clg-el-hero-description {
  margin-top: 24px !important;
}

body.clg-theme .clg-el-home .clg-el-section-title,
body.clg-theme .clg-el-home .clg-el-comfort-title,
body.clg-theme .clg-el-home .clg-el-final-title {
  margin-top: 16px !important;
}

body.clg-theme .clg-el-home .clg-el-section-description {
  margin-top: 20px !important;
}

body.clg-theme .clg-el-home .clg-el-card-title {
  margin-top: 25px !important;
}

body.clg-theme .clg-el-home .clg-el-service-card .clg-el-card-copy {
  margin-top: 16px !important;
}

body.clg-theme .clg-el-home .clg-el-card-link {
  margin-top: auto !important;
}

body.clg-theme .clg-el-home .clg-el-centered-action {
  margin-top: 44px !important;
}

body.clg-theme .clg-el-home .clg-el-comfort-content > .clg-el-card-copy {
  margin-top: 24px !important;
}

body.clg-theme .clg-el-home .clg-el-comfort-list {
  margin-top: 27px !important;
}

body.clg-theme .clg-el-home .clg-el-location-copy {
  margin-top: 15px !important;
}

body.clg-theme .clg-el-home .clg-el-step-copy .clg-el-card-copy {
  margin-top: 9px !important;
}

body.clg-theme .clg-el-home .clg-el-testimonial-quote {
  margin-top: 24px !important;
}

body.clg-theme .clg-el-home .clg-el-testimonial-author {
  margin-top: auto !important;
  padding-top: 24px !important;
}

body.clg-theme .clg-el-home .clg-el-final-description {
  margin-top: 17px !important;
}

body.clg-theme .clg-el-home .clg-el-final-cta .clg-el-actions.e-con {
  margin-top: 0 !important;
}

body.clg-theme .clg-el-home .clg-el-eyebrow .elementor-heading-title {
  color: var(--clg-gold-dark) !important;
  font-family: var(--clg-sans) !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  line-height: 1.4 !important;
}

body.clg-theme .clg-el-home .clg-el-eyebrow-light .elementor-heading-title {
  color: var(--clg-gold-light) !important;
}

body.clg-theme .clg-el-home .clg-el-eyebrow-dark .elementor-heading-title {
  color: var(--clg-ink) !important;
}

body.clg-theme .clg-el-home .clg-el-hero-title .elementor-heading-title {
  color: var(--clg-white) !important;
  font-family: var(--clg-serif) !important;
  font-size: clamp(3rem, 6vw, 5.6rem) !important;
  font-weight: 400 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.08 !important;
}

body.clg-theme .clg-el-home .clg-el-section-title .elementor-heading-title,
body.clg-theme .clg-el-home .clg-el-comfort-title .elementor-heading-title,
body.clg-theme .clg-el-home .clg-el-final-title .elementor-heading-title {
  color: var(--clg-ink) !important;
  font-family: var(--clg-serif) !important;
  font-size: clamp(2.35rem, 4vw, 4rem) !important;
  font-weight: 400 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.08 !important;
}

body.clg-theme .clg-el-home .clg-el-title-light .elementor-heading-title {
  color: var(--clg-white) !important;
}

body.clg-theme .clg-el-home .clg-el-card-title .elementor-heading-title,
body.clg-theme .clg-el-home .clg-el-step-title .elementor-heading-title {
  color: var(--clg-ink) !important;
  font-family: var(--clg-serif) !important;
  font-weight: 400 !important;
}

body.clg-theme .clg-el-home .clg-el-trust-title .elementor-heading-title {
  color: var(--clg-white) !important;
  font-family: var(--clg-sans) !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
}

body.clg-theme .clg-el-home .clg-el-card-number .elementor-heading-title {
  color: var(--clg-gold-dark) !important;
  font-family: var(--clg-sans) !important;
}

body.clg-theme .clg-el-home .clg-el-location-code .elementor-heading-title {
  color: var(--clg-gold-light) !important;
  font-family: var(--clg-serif) !important;
  font-weight: 400 !important;
}

body.clg-theme .clg-el-home .clg-el-step-number .elementor-heading-title {
  color: var(--clg-ink) !important;
  font-family: var(--clg-serif) !important;
  line-height: 1 !important;
}

body.clg-theme .clg-el-home .clg-el-stars .elementor-heading-title {
  color: var(--clg-gold) !important;
  font-family: var(--clg-sans) !important;
}

body.clg-theme .clg-el-home .clg-el-testimonial-author .elementor-heading-title {
  color: var(--clg-gold-light) !important;
  font-family: var(--clg-sans) !important;
  font-size: 0.72rem !important;
  font-weight: 400 !important;
}

body.clg-theme .clg-el-home .elementor-widget-text-editor,
body.clg-theme .clg-el-home .elementor-widget-text-editor p,
body.clg-theme .clg-el-home .elementor-button {
  font-family: var(--clg-sans) !important;
}

body.clg-theme .clg-el-home .clg-el-testimonial-quote,
body.clg-theme .clg-el-home .clg-el-testimonial-quote p {
  font-family: var(--clg-serif) !important;
}

body.clg-theme .clg-el-home .clg-el-button-gold .elementor-button {
  color: var(--clg-black) !important;
  border-color: var(--clg-gold-light) !important;
  background: linear-gradient(135deg, var(--clg-gold-light), var(--clg-gold), #b17f39) !important;
}

body.clg-theme .clg-el-home .clg-el-button-outline .elementor-button {
  color: var(--clg-white) !important;
  border-color: rgba(239, 217, 159, 0.72) !important;
  background: rgba(5, 5, 5, 0.28) !important;
}

body.clg-theme .clg-el-home .clg-el-button-black .elementor-button {
  color: var(--clg-white) !important;
  border-color: var(--clg-black) !important;
  background: var(--clg-black) !important;
}

body.clg-theme .clg-el-home .clg-el-button-outline-dark .elementor-button {
  color: var(--clg-ink) !important;
  border-color: rgba(21, 19, 15, 0.55) !important;
  background: transparent !important;
}

body.clg-theme .clg-el-home .clg-el-card-link .elementor-button {
  color: var(--clg-gold-dark) !important;
  background: transparent !important;
}

@media (max-width: 1120px) {
  body.clg-theme .clg-el-home .clg-el-services-grid.e-con,
  body.clg-theme .clg-el-home .clg-el-locations-grid.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.clg-theme .clg-el-home .clg-el-service-card.e-con {
    min-height: 290px !important;
  }
}

@media (max-width: 900px) {
  body.clg-theme .clg-el-home .clg-el-hero-shell.e-con {
    min-height: 0 !important;
  }

  body.clg-theme .clg-el-home .clg-el-hero-copy.e-con {
    width: min(620px, 82%) !important;
  }

  body.clg-theme .clg-el-home .clg-el-trust-grid.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.clg-theme .clg-el-home .clg-el-comfort.e-con {
    grid-template-columns: 1fr !important;
  }

  body.clg-theme .clg-el-home .clg-el-comfort-content.e-con {
    max-width: none !important;
  }

  body.clg-theme .clg-el-home .clg-el-steps-grid.e-con {
    grid-template-columns: 1fr !important;
  }

  body.clg-theme .clg-el-home .clg-el-testimonials-grid.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.clg-theme .clg-el-home .clg-el-testimonial:last-child {
    grid-column: 1 / -1 !important;
  }

  body.clg-theme .clg-el-home .clg-el-final-cta-inner.e-con {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
}

@media (max-width: 680px) {
  body.clg-theme .clg-el-home .clg-el-shell.e-con {
    width: min(calc(100% - 30px), var(--clg-container)) !important;
  }

  body.clg-theme .clg-el-home .clg-el-home-hero.e-con {
    padding: 42px 0 18px !important;
  }

  body.clg-theme .clg-el-home .clg-el-hero-copy.e-con {
    width: 100% !important;
    max-width: none !important;
    padding: 20px 0 48px !important;
  }

  body.clg-theme .clg-el-home .clg-el-hero-title .elementor-heading-title {
    font-size: clamp(2.75rem, 14vw, 4.5rem) !important;
  }

  body.clg-theme .clg-el-home .clg-el-actions.e-con,
  body.clg-theme .clg-el-home .clg-el-final-cta .clg-el-actions.e-con {
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  body.clg-theme .clg-el-home .clg-el-actions.e-con > .elementor-element,
  body.clg-theme .clg-el-home .clg-el-button,
  body.clg-theme .clg-el-home .clg-el-button .elementor-button {
    width: 100% !important;
  }

  body.clg-theme .clg-el-home .clg-el-trust-grid.e-con,
  body.clg-theme .clg-el-home .clg-el-services-grid.e-con,
  body.clg-theme .clg-el-home .clg-el-locations-grid.e-con,
  body.clg-theme .clg-el-home .clg-el-testimonials-grid.e-con {
    grid-template-columns: 1fr !important;
  }

  body.clg-theme .clg-el-home .clg-el-section.e-con {
    padding: 72px 0 !important;
  }

  body.clg-theme .clg-el-home .clg-el-section-heading.e-con {
    margin-bottom: 38px !important;
  }

  body.clg-theme .clg-el-home .clg-el-service-card.e-con {
    min-height: 280px !important;
  }

  body.clg-theme .clg-el-home .clg-el-comfort-visual.e-con {
    min-height: 320px !important;
  }

  body.clg-theme .clg-el-home .clg-el-comfort-content.e-con {
    padding: 60px 24px !important;
  }

  body.clg-theme .clg-el-home .clg-el-step-card.e-con {
    align-items: flex-start !important;
    padding: 26px 22px !important;
  }

  body.clg-theme .clg-el-home .clg-el-testimonial:last-child {
    grid-column: auto !important;
  }

  body.clg-theme .clg-el-home .clg-el-final-cta.e-con {
    padding: 58px 0 !important;
  }
}

/* Elementor 4.2+: keep the outer boxed container full-width and let its
   generated .e-con-inner wrapper own the grid tracks. */
body.clg-theme .clg-el-home .clg-el-trust-grid.e-con,
body.clg-theme .clg-el-home .clg-el-services-grid.e-con,
body.clg-theme .clg-el-home .clg-el-locations-grid.e-con,
body.clg-theme .clg-el-home .clg-el-steps-grid.e-con,
body.clg-theme .clg-el-home .clg-el-testimonials-grid.e-con,
body.clg-theme .clg-el-home .clg-el-comfort.e-con {
  display: block !important;
}

body.clg-theme .clg-el-home .clg-el-trust-grid.e-con > .e-con-inner,
body.clg-theme .clg-el-home .clg-el-services-grid.e-con > .e-con-inner,
body.clg-theme .clg-el-home .clg-el-locations-grid.e-con > .e-con-inner,
body.clg-theme .clg-el-home .clg-el-steps-grid.e-con > .e-con-inner,
body.clg-theme .clg-el-home .clg-el-testimonials-grid.e-con > .e-con-inner,
body.clg-theme .clg-el-home .clg-el-comfort.e-con > .e-con-inner {
  width: 100% !important;
  max-width: none !important;
}
