/* =========================================================
   LC Weddings - component styles
   Mirrors the LC Weddings redesign spec 1:1, with responsive
   behaviour added for tablet / mobile.
   ========================================================= */

.lcw-site { background: var(--color-bg); min-height: 100vh; }
.lcw-container { max-width: var(--max-width); margin: 0 auto; }
.lcw-section { }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; }

/* ---------------- Buttons & links ---------------- */
.lcw-btn {
  display: inline-block; cursor: pointer; border: none;
  padding: 14px 30px; font-size: 15px; letter-spacing: 0.02em;
  font-family: var(--font-sans); text-align: center;
}
.lcw-btn--accent { background: var(--color-accent); color: #fff; }
.lcw-btn--accent:hover { background: var(--color-accent-hover); color: #fff; }
.lcw-btn--outline { border: 1px solid oklch(0.85 0.02 75); color: #fff; }
.lcw-btn--outline:hover { border-color: #fff; color: #fff; }
.lcw-btn--light { background: #fff; color: var(--color-accent); padding: 14px 34px; }
.lcw-btn--light:hover { background: oklch(0.94 0.01 75); color: var(--color-accent-hover); }
.lcw-btn--pill { border: 1px solid oklch(0.85 0.02 75); padding: 8px 18px; font-size: 14px; }
.lcw-btn--block { width: 100%; padding: 15px; }

.lcw-text-link { display: inline-block; border-bottom: 1px solid var(--color-accent); color: var(--color-accent); font-size: 15px; font-weight: 500; }
.lcw-text-link:hover { color: var(--color-accent-hover); border-color: var(--color-accent-hover); }
.lcw-text-link--light { border-bottom-color: var(--color-gold); color: var(--color-gold); }
.lcw-text-link--light:hover { color: var(--color-gold-2); border-color: var(--color-gold-2); }

.lcw-eyebrow { font-family: var(--font-serif); font-style: italic; color: var(--color-accent); font-size: 18px; margin-bottom: 12px; }
.lcw-eyebrow--center { text-align: center; }

.lcw-h1 { font-size: 42px; margin-bottom: 28px; }
.lcw-h2 { font-size: 34px; margin-bottom: 20px; }
.lcw-h2--center { text-align: center; }
.lcw-h2--light { color: inherit; }
.lcw-h3 { font-size: 24px; font-weight: 600; margin-bottom: 20px; }

/* ---------------- Photo / placeholder ---------------- */
.lcw-photo { position: relative; width: 100%; height: 100%; overflow: hidden; background: oklch(0.93 0.02 75); }
.lcw-photo__img { width: 100%; height: 100%; object-fit: cover; }
.lcw-photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(135deg, oklch(0.95 0.015 75), oklch(0.95 0.015 75) 12px, oklch(0.93 0.018 75) 12px, oklch(0.93 0.018 75) 24px);
}
.lcw-photo__placeholder-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; color: oklch(0.65 0.02 60); }
.lcw-photo__icon { opacity: 0.7; }
.lcw-photo__label { font-size: 12px; letter-spacing: 0.03em; text-align: center; padding: 0 12px; }

/* ---------------- Top bar ---------------- */
.lcw-topbar {
  background: var(--color-dark); color: var(--color-cream-text);
  padding: 10px 32px; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px; font-size: 14px;
}
.lcw-topbar__msg a { color: var(--color-gold); font-weight: 500; }
.lcw-topbar__cta {
  background: var(--color-accent); border: 1px solid var(--color-accent); color: #fff;
  padding: 7px 18px; border-radius: 3px; letter-spacing: 0.02em; font-size: 13px; font-weight: 500;
  white-space: nowrap; flex-shrink: 0;
}
.lcw-topbar__cta:hover { background: var(--color-accent-hover); border-color: var(--color-accent-hover); color: #fff; }
.lcw-topbar__phone { display: inline-flex; align-items: center; gap: 5px; color: var(--color-gold); font-weight: 500; }
.lcw-topbar__phone-icon { flex-shrink: 0; }

/* ---------------- Header / nav ---------------- */
.lcw-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 40px; background: var(--color-bg-card);
  border-bottom: 1px solid var(--color-border-2);
  position: relative; z-index: 30; flex-wrap: wrap; gap: 16px;
}
.lcw-logo { font-family: var(--font-serif); font-size: 32px; letter-spacing: 0.02em; color: var(--color-text); }
.lcw-logo:hover { color: var(--color-text); }
.lcw-logo__accent { color: var(--color-accent); font-style: italic; }

/* Uploaded logo: fixed-height box, image always scales to fit inside it
   (object-fit: contain) so any shape -- square, wide, tall -- works without
   ever stretching, cropping oddly, or breaking the header's height/layout. */
.lcw-logo--image { display: flex; align-items: center; height: 56px; }
.lcw-logo--image .custom-logo-link { display: block; height: 100%; }
.lcw-logo--image img.custom-logo { height: 100%; width: auto; max-width: 240px; object-fit: contain; display: block; }

.lcw-nav { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.lcw-nav-item { position: relative; }
.lcw-nav-link { font-size: 15px; padding-bottom: 4px; border-bottom: 2px solid transparent; display: inline-block; }
.lcw-nav-item.is-current > .lcw-nav-link { border-bottom-color: var(--color-accent); }

.lcw-submenu {
  position: absolute; top: 100%; left: -16px; background: var(--color-bg-card);
  border: 1px solid var(--color-border-2); box-shadow: 0 12px 28px oklch(0.2 0.02 50 / 0.12);
  min-width: 210px; padding: 8px 0; display: none; z-index: 40;
}
.has-dropdown:hover .lcw-submenu,
.has-dropdown.is-open .lcw-submenu { display: block; }
.lcw-submenu-link { display: block; padding: 10px 20px; font-size: 14px; white-space: nowrap; }
.lcw-submenu-link:last-child { border-top: 1px solid var(--color-border); }

.lcw-nav-cta { background: var(--color-accent); color: #fff; padding: 11px 24px; font-size: 14px; letter-spacing: 0.02em; white-space: nowrap; }
.lcw-nav-cta:hover { background: var(--color-accent-hover); color: #fff; }

.lcw-nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 30px; height: 26px; background: none; border: none; cursor: pointer; padding: 0; }
.lcw-nav-toggle span:not(.screen-reader-text) { display: block; height: 2px; width: 100%; background: var(--color-text); }

/* ---------------- Hero (home) ---------------- */
.lcw-hero { position: relative; height: 560px; display: flex; align-items: center; overflow: hidden; }
.lcw-hero__photo { position: absolute; top: 0; bottom: 0; left: 40%; right: 0; }
.lcw-hero__photo-el { width: 100%; height: 100%; }
.lcw-hero__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, oklch(0.18 0.02 50 / 0.7) 45%, oklch(0.18 0.02 50 / 0.15)); pointer-events: none; }
.lcw-hero__content { position: relative; max-width: 560px; padding: 0 64px; color: var(--color-white); }
.lcw-hero__eyebrow { font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-gold-2); margin-bottom: 18px; }
.lcw-hero__content h1 { font-size: 58px; line-height: 1.08; font-weight: 500; margin-bottom: 22px; }
.lcw-hero__content p { font-size: 17px; line-height: 1.6; color: oklch(0.92 0.01 75); margin-bottom: 32px; }
.lcw-hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------------- Intro ---------------- */
.lcw-intro { padding: 90px 40px; max-width: var(--max-width); margin: 0 auto; text-align: center; }
.lcw-intro__text { font-size: 16px; line-height: 1.75; color: var(--color-text-secondary); max-width: 820px; margin: 0 auto; }

/* ---------------- Services ---------------- */
.lcw-services { background: var(--color-bg-card); padding: 80px 40px; border-top: 1px solid var(--color-border-2); border-bottom: 1px solid var(--color-border-2); }
.lcw-services__heading { font-size: 34px; margin-bottom: 50px; }
.lcw-services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; }

.lcw-service-card { cursor: pointer; border: 1px solid var(--color-border); color: inherit; display: block; transition: box-shadow .2s ease, transform .2s ease; }
.lcw-service-card:hover { box-shadow: 0 14px 30px oklch(0.2 0.02 50 / 0.1); transform: translateY(-2px); color: inherit; }
.lcw-service-card--home { background: var(--color-bg); }
.lcw-service-card--hub { background: var(--color-bg-card); }
.lcw-service-card__photo { overflow: hidden; }
.lcw-service-card__body h3 { font-family: var(--font-serif); font-weight: 600; margin-bottom: 10px; color: var(--color-text); }
.lcw-service-card__body p { font-size: 14.5px; line-height: 1.6; color: var(--color-text-secondary); margin-bottom: 14px; }
.lcw-service-card__link { font-size: 13.5px; color: var(--color-accent); font-weight: 500; }

/* ---------------- Fleet teaser ---------------- */
.lcw-fleet-teaser { padding: 90px 40px; max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lcw-fleet-teaser__photo { border-radius: 4px; overflow: hidden; height: 380px; }
.lcw-fleet-teaser__photo-el { width: 100%; height: 100%; }
.lcw-fleet-teaser h2 { margin-bottom: 20px; }
.lcw-fleet-teaser p { font-size: 15.5px; line-height: 1.75; color: var(--color-text-secondary); margin-bottom: 20px; }

/* ---------------- Testimonials (home, dark) ---------------- */
.lcw-testimonials { background: var(--color-dark); color: var(--color-cream-text); padding: 80px 40px; }
.lcw-testimonials__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.lcw-h2--light { font-size: 32px; margin-bottom: 46px; }
.lcw-testimonials__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; text-align: left; }
.lcw-testimonial--home .lcw-testimonial__quote { font-family: var(--font-serif); font-style: italic; font-size: 18px; line-height: 1.6; margin-bottom: 18px; }
.lcw-testimonial--home .lcw-testimonial__quote p { font-family: inherit; font-style: inherit; }
.lcw-testimonial--home .lcw-testimonial__author { font-size: 14px; color: var(--color-gold); }
.lcw-testimonials__more { margin-top: 44px; display: inline-block; }

/* ---------------- FAQ teaser (home) ---------------- */
.lcw-faq-teaser { padding: 80px 40px; max-width: 820px; margin: 0 auto; }
.lcw-faq-teaser h2 { font-size: 30px; margin-bottom: 40px; }
.lcw-faq-teaser__item { border-bottom: 1px solid var(--color-border-2); padding: 20px 0; }
.lcw-faq-teaser__item:last-of-type { border-bottom: none; }
.lcw-faq-teaser__q { font-size: 16.5px; font-weight: 500; margin-bottom: 10px; }
.lcw-faq-teaser__item p { font-size: 14.5px; line-height: 1.7; color: var(--color-text-secondary); }
.lcw-faq-teaser__more { margin-top: 30px; display: block; text-align: center; font-size: 14.5px; font-weight: 500; border-bottom: none; }

/* ---------------- CTA banner ---------------- */
.lcw-cta-banner { background: var(--color-accent); color: #fff; padding: 60px 40px; text-align: center; }
.lcw-cta-banner h2 { font-size: 30px; margin-bottom: 18px; color: #fff; }
.lcw-cta-banner p { font-size: 15.5px; margin-bottom: 28px; opacity: 0.9; }
.lcw-cta-banner p a { color: #fff; font-weight: 600; text-decoration: underline; }

/* ---------------- Sub-page hero (services, etc) ---------------- */
.lcw-subhero { position: relative; height: 300px; }
.lcw-subhero__photo { position: absolute; inset: 0; }
.lcw-subhero__photo-el { width: 100%; height: 100%; }
.lcw-subhero__scrim { position: absolute; inset: 0; background: oklch(0.18 0.02 50 / 0.42); }
.lcw-subhero__content { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 0 40px; max-width: var(--max-width); margin: 0 auto; }
.lcw-subhero__content .lcw-breadcrumb { font-size: 13.5px; color: oklch(0.85 0.05 75); margin-bottom: 12px; }
.lcw-subhero__content .lcw-breadcrumb a { color: oklch(0.85 0.05 75); }
.lcw-subhero__content h1 { font-family: var(--font-serif); font-size: 42px; font-weight: 500; color: #fff; }

/* ---------------- Breadcrumb (light pages) ---------------- */
.lcw-breadcrumb { font-size: 13.5px; color: var(--color-text-muted); margin-bottom: 14px; }
.lcw-breadcrumb a { color: var(--color-text-muted); }
.lcw-breadcrumb a:hover { color: var(--color-accent); }
.lcw-breadcrumb__sep { color: var(--color-text-muted); }

/* ---------------- Prose (service detail / transportation) ---------------- */
.lcw-prose { padding: 70px 40px; max-width: 820px; margin: 0 auto; }
.lcw-prose--narrow { max-width: 820px; }
.lcw-prose__body p { font-size: 16px; line-height: 1.8; color: oklch(0.32 0.02 50); margin-bottom: 22px; }

.lcw-inline-cta {
  background: var(--color-bg-card); border: 1px solid var(--color-border); padding: 32px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 44px;
}
.lcw-inline-cta__heading { font-family: var(--font-serif); font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.lcw-inline-cta__sub { font-size: 14.5px; color: var(--color-text-secondary); }

/* ---------------- Page intro (hub, cars, testimonials, faq, contact, quote) ---------------- */
.lcw-page-intro { padding: 70px 40px; max-width: var(--max-width); margin: 0 auto; }
.lcw-page-intro--narrow { max-width: 900px; }
.lcw-page-intro--faq { max-width: 820px; }
.lcw-page-intro--contact { max-width: 1100px; }
.lcw-page-intro--form { max-width: 720px; }
.lcw-page-intro__text { font-size: 16px; line-height: 1.75; color: var(--color-text-secondary); max-width: 780px; margin-bottom: 20px; }
.lcw-page-intro__lede { font-size: 15.5px; color: var(--color-text-secondary); margin-bottom: 40px; }
.lcw-page-intro__note { font-size: 15px; color: var(--color-text-secondary); margin-bottom: 50px; }
.lcw-page-intro__cta { text-align: center; margin-top: 60px; }

/* ---------------- Vehicles grid ---------------- */
.lcw-vehicles__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin-top: 20px; }
.lcw-vehicle-card { background: var(--color-bg-card); border: 1px solid var(--color-border); }
.lcw-vehicle-card__photo { height: 200px; overflow: hidden; }
.lcw-vehicle-card__body { padding: 26px 24px; }
.lcw-vehicle-card__body h3 { font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.lcw-vehicle-card__desc p { font-size: 14.5px; line-height: 1.65; color: var(--color-text-secondary); }

/* ---------------- Testimonials page ---------------- */
.lcw-testimonials__list { margin-top: 20px; }
.lcw-testimonial--page { background: var(--color-bg-card); border: 1px solid var(--color-border); padding: 34px; margin-bottom: 24px; }
.lcw-testimonial--page .lcw-testimonial__quote { font-family: var(--font-serif); font-style: italic; font-size: 19px; line-height: 1.7; color: oklch(0.3 0.02 50); margin-bottom: 16px; }
.lcw-testimonial--page .lcw-testimonial__quote p { font-family: inherit; font-style: inherit; }
.lcw-testimonial--page .lcw-testimonial__author { font-size: 14.5px; color: var(--color-accent); font-weight: 500; }

/* ---------------- FAQ page (accordion) ---------------- */
.lcw-faq-list { margin-top: 6px; }
.lcw-faq-item { border-bottom: 1px solid var(--color-border-2); }
.lcw-faq-item__q {
  cursor: pointer; width: 100%; background: none; border: none; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 17px; font-weight: 500; padding: 22px 0; color: var(--color-text); font-family: var(--font-sans);
}
.lcw-faq-item__symbol { font-size: 20px; line-height: 1; color: var(--color-accent); flex-shrink: 0; }
.lcw-faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.lcw-faq-item.is-open .lcw-faq-item__a { max-height: 600px; }
.lcw-faq-item__a-inner { padding-bottom: 22px; }
.lcw-faq-item__a-inner p { font-size: 15px; line-height: 1.75; color: var(--color-text-secondary); }

/* ---------------- Contact page ---------------- */
.lcw-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 26px; }
.lcw-contact__details { font-size: 15.5px; line-height: 2; color: oklch(0.32 0.02 50); margin-bottom: 28px; }
.lcw-contact__phone { display: block; font-weight: 500; }
.lcw-contact__note { font-size: 13.5px; color: var(--color-text-muted); }
.lcw-contact__social { display: flex; gap: 16px; margin-bottom: 34px; }
.lcw-contact__grid .lcw-photo { height: 220px; }

/* ---------------- Forms (contact + quote) ---------------- */
.lcw-form { display: flex; flex-direction: column; gap: 18px; }
.lcw-form--grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lcw-form__row--full { grid-column: 1 / -1; }
.lcw-form__row label,
.lcw-form--grid label { display: block; font-size: 13px; color: var(--color-text-secondary); margin-bottom: 6px; }
.lcw-form input[type="text"],
.lcw-form input[type="email"],
.lcw-form input[type="tel"],
.lcw-form input[type="date"],
.lcw-form select,
.lcw-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid oklch(0.85 0.02 75);
  background: #fff; font-size: 14.5px; color: var(--color-text); font-family: var(--font-sans);
}
.lcw-form textarea { resize: vertical; }
.lcw-hp { position: absolute; left: -9999px; top: -9999px; }

.lcw-form-success { background: var(--color-success-bg); border: 1px solid var(--color-success-border); padding: 30px; text-align: center; }
.lcw-form-success__heading { font-family: var(--font-serif); font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.lcw-form-success p { font-size: 15px; color: var(--color-text-secondary); }

/* ---------------- Footer ---------------- */
.lcw-footer { font-family: var(--font-sans); background: var(--color-dark); color: var(--color-cream-text-2); padding: 54px 40px 26px; }
.lcw-footer__cols { max-width: var(--max-width); margin: 0 auto 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.lcw-footer__logo { font-family: var(--font-serif); font-size: 26px; color: #fff; margin-bottom: 14px; }
.lcw-footer__logo span { font-style: italic; color: var(--color-gold); }
.lcw-footer__about p { font-size: 14px; line-height: 1.7; max-width: 320px; }
.lcw-footer__title { color: #fff; font-size: 15px; font-weight: 500; margin-bottom: 16px; }
.lcw-footer__links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.lcw-footer__links a, .lcw-footer__contact a { color: var(--color-cream-text-2); }
.lcw-footer__contact { font-size: 14px; line-height: 1.9; }
.lcw-footer__social { margin-top: 4px; }
.lcw-footer__bottom {
  max-width: var(--max-width); margin: 0 auto; border-top: 1px solid oklch(0.32 0.02 50);
  padding-top: 22px; font-size: 12.5px; color: oklch(0.6 0.01 75);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.lcw-footer__bottom a { color: oklch(0.6 0.01 75); }
.lcw-footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------------- Blog listing ---------------- */
.lcw-blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin-top: 30px; }
.lcw-blog-card { cursor: pointer; background: var(--color-bg-card); border: 1px solid var(--color-border); color: inherit; display: block; transition: box-shadow .2s ease, transform .2s ease; }
.lcw-blog-card:hover { box-shadow: 0 14px 30px oklch(0.2 0.02 50 / 0.1); transform: translateY(-2px); color: inherit; }
.lcw-blog-card__photo { height: 190px; overflow: hidden; }
.lcw-blog-card__body { padding: 24px 22px; }
.lcw-blog-card__date { font-size: 12.5px; letter-spacing: 0.03em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 8px; }
.lcw-blog-card__body h3 { font-family: var(--font-serif); font-size: 21px; font-weight: 600; margin-bottom: 10px; color: var(--color-text); }
.lcw-blog-card__body p { font-size: 14.5px; line-height: 1.6; color: var(--color-text-secondary); margin-bottom: 14px; }

.lcw-pagination { margin-top: 50px; }
.lcw-pagination .nav-links { display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; }
.lcw-pagination .page-numbers { display: inline-block; padding: 9px 15px; font-size: 14px; border: 1px solid var(--color-border); color: var(--color-text); }
.lcw-pagination .page-numbers.current { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.lcw-pagination .page-numbers.dots { border: none; }
.lcw-pagination a.page-numbers:hover { border-color: var(--color-accent); color: var(--color-accent); }

/* ---------------- Single post ---------------- */
.lcw-post__meta { font-size: 13.5px; color: var(--color-text-muted); margin-bottom: 12px; }
.lcw-post__photo { height: 380px; overflow: hidden; border-radius: 4px; margin: 30px 0 40px; }
.lcw-post__body { margin-bottom: 36px; }
.lcw-post__body h2 { font-size: 26px; margin: 34px 0 16px; }
.lcw-post__body h3 { font-size: 21px; margin: 28px 0 14px; }
.lcw-post__body ul, .lcw-post__body ol { margin: 0 0 22px 22px; }
.lcw-post__body li { font-size: 16px; line-height: 1.8; color: oklch(0.32 0.02 50); margin-bottom: 8px; }
.lcw-post__body blockquote { border-left: 3px solid var(--color-accent); padding-left: 20px; font-family: var(--font-serif); font-style: italic; font-size: 19px; color: var(--color-text-secondary); margin: 28px 0; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .lcw-header { position: sticky; top: 0; z-index: 50; box-shadow: 0 2px 10px oklch(0.2 0.02 50 / 0.08); }
  .lcw-nav-toggle { display: flex; }
  .lcw-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--color-bg-card); flex-direction: column; align-items: flex-start;
    padding: 20px 40px 28px; border-bottom: 1px solid var(--color-border-2);
    box-shadow: 0 16px 24px oklch(0.2 0.02 50 / 0.1); gap: 4px;
  }
  .lcw-nav.is-open { display: flex; }
  .lcw-nav-item { width: 100%; }
  .lcw-nav-link { display: block; padding: 10px 0; }
  .lcw-submenu { position: static; box-shadow: none; border: none; padding: 0 0 0 16px; min-width: 0; }
  .lcw-submenu-link:last-child { border-top: none; }
  .lcw-nav-cta { margin-top: 12px; }
  .lcw-fleet-teaser { grid-template-columns: 1fr; gap: 36px; }
  .lcw-hero__content h1 { font-size: 46px; }
}

@media (max-width: 780px) {
  .lcw-hero { height: auto; padding: 260px 0 60px; align-items: flex-end; }
  .lcw-hero__photo { left: 0; }
  .lcw-hero__content { max-width: 100%; padding: 0 24px 40px; }
  .lcw-testimonials__grid, .lcw-contact__grid, .lcw-form--grid { grid-template-columns: 1fr; }
  .lcw-form__row--full { grid-column: auto; }
  .lcw-footer__cols { grid-template-columns: 1fr; }
  .lcw-topbar { padding: 10px 16px; flex-wrap: nowrap; gap: 10px; }
  .lcw-topbar__tagline { display: none; }
  .lcw-topbar__msg { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .lcw-header, .lcw-intro, .lcw-services, .lcw-fleet-teaser, .lcw-testimonials,
  .lcw-faq-teaser, .lcw-cta-banner, .lcw-subhero__content, .lcw-page-intro, .lcw-prose {
    padding-left: 20px; padding-right: 20px;
  }
  .lcw-inline-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .lcw-hero__content h1 { font-size: 36px; }
  .lcw-h1 { font-size: 32px; }
  .lcw-intro h2, .lcw-services__heading { font-size: 26px; }
  .lcw-topbar { padding: 10px 14px; gap: 8px; }
  .lcw-topbar__msg { font-size: 12.5px; }
  .lcw-topbar__cta { padding: 7px 14px; font-size: 12.5px; }
}
