/* ==========================================================================
   Section Head (shared)
   ========================================================================== */

.section-head {
  margin-bottom: var(--space-6);
  max-width: 60ch;
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin-top: var(--space-2);
}

/* ==========================================================================
   All-Inclusive Pricing Split Section
   ========================================================================== */

.inclusive {
  background: var(--parchment);
}

.inclusive__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-5);
  align-items: center;
}

.inclusive__col--them h2 {
  color: rgba(28, 26, 22, 0.55);
}

.inclusive__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: var(--space-3);
}

.inclusive__list li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(28, 26, 22, 0.45);
  text-decoration: line-through;
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed rgba(28, 26, 22, 0.12);
}

.inclusive__footnote {
  margin-top: var(--space-2);
  font-size: 0.85rem;
  color: var(--rust);
  font-weight: 600;
}

.inclusive__divider {
  width: 1px;
  height: 220px;
  background: linear-gradient(to bottom, transparent, rgba(28,26,22,0.15), transparent);
}

.inclusive__col--us h2 {
  margin-top: var(--space-2);
}

.inclusive__copy {
  margin-block: var(--space-3);
  color: rgba(28, 26, 22, 0.72);
  max-width: 42ch;
}

/* ==========================================================================
   Services — Editorial Rows
   ========================================================================== */

.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px solid rgba(28, 26, 22, 0.08);
}

.service-row:first-of-type {
  border-top: 1px solid rgba(28, 26, 22, 0.08);
}

.service-row--reverse {
  grid-template-columns: auto 1fr;
}

.service-row--reverse .service-row__text {
  order: 2;
}

.service-row--reverse .service-row__num {
  order: 1;
}

.service-row__text h3 {
  margin-bottom: var(--space-1);
}

.service-row__text p {
  max-width: 55ch;
  color: rgba(28, 26, 22, 0.7);
}

.service-row__num {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  color: var(--brass);
  opacity: 0.55;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* ==========================================================================
   Fleet
   ========================================================================== */

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

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

.fleet-card__media {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: background-size 500ms var(--ease);
}

.fleet-card:hover .fleet-card__media {
  background-size: 108%;
}

.fleet-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,26,22,0.35) 0%, transparent 45%);
}

.fleet-card__media--sedan {
  background-image: url('../images/sedan.jpg');
}

.fleet-card__media--suv {
  background-image: url('../images/suv.jpg');
}

.fleet-card__media--limo {
  background-image: url('../images/limousine.jpg');
}

.fleet-card h3,
.fleet-card p,
.fleet-card__cap {
  padding-inline: var(--space-3);
}

.fleet-card h3 {
  margin-top: var(--space-3);
}

.fleet-card p {
  color: rgba(28, 26, 22, 0.68);
  font-size: 0.92rem;
  margin-top: var(--space-1);
}

.fleet-card__cap {
  display: block;
  margin-block: var(--space-2) var(--space-3);
  font-size: 0.85rem;
  color: var(--runway);
  font-weight: 600;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.testimonial-card {
  background: rgba(246, 242, 234, 0.08);
  border: 1px solid rgba(246, 242, 234, 0.18);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  transition: transform 300ms var(--ease), border-color 300ms var(--ease), background-color 300ms var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(176, 138, 69, 0.5);
  background: rgba(246, 242, 234, 0.13);
}

.testimonial-card__mark {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--brass);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-2);
}

.testimonial-card p {
  color: var(--parchment);
  font-size: 0.95rem;
  line-height: 1.65;
  flex-grow: 1;
}

.testimonial-card footer {
  margin-top: var(--space-3);
  padding-top: var(--space-2);
  border-top: 1px solid rgba(246, 242, 234, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.testimonial-card__name {
  color: var(--brass-light);
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-card__date {
  font-size: 0.75rem;
  color: rgba(246, 242, 234, 0.5);
}

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

/* ==========================================================================
   Service Area
   ========================================================================== */

.service-area {
  text-align: center;
}

.service-area h2 {
  margin-top: var(--space-2);
  margin-bottom: var(--space-4);
}

.service-area__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2) var(--space-4);
}

.service-area__list li {
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
}

.service-area__list li a {
  color: var(--runway);
  transition: color 200ms var(--ease);
}

.service-area__list li a:hover {
  color: var(--brass);
  text-decoration: underline;
}

.service-area__list li::after {
  content: '';
  position: absolute;
  right: calc(var(--space-4) / -2 - 2px);
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brass);
}

.service-area__list li:last-child::after {
  display: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding-top: var(--space-6);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: var(--space-5);
  padding-bottom: var(--space-5);
}

.site-footer .logo__mark {
  margin-bottom: var(--space-2);
}

.site-footer__tag {
  color: rgba(246, 242, 234, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
}

.site-footer__col p {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: rgba(246, 242, 234, 0.85);
}

.site-footer__col p:not(.eyebrow) {
  line-height: 1.6;
}

.site-footer__col p.mono-num {
  font-weight: 400;
}

.site-footer__bottom {
  border-top: 1px solid rgba(246, 242, 234, 0.12);
  padding-block: var(--space-3);
  font-size: 0.8rem;
  color: rgba(246, 242, 234, 0.55);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

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

  .inclusive__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(28,26,22,0.15), transparent);
  }

  .service-row,
  .service-row--reverse {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .service-row--reverse .service-row__text,
  .service-row--reverse .service-row__num {
    order: unset;
  }

  .service-row__num {
    font-size: 1.5rem;
    color: var(--brass);
  }

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

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

@media (max-width: 600px) {
  .service-area__list {
    gap: var(--space-1) var(--space-3);
  }
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-section {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-6);
  align-items: start;
}

.about-section__text p {
  margin-top: var(--space-3);
  color: rgba(28, 26, 22, 0.75);
  max-width: 60ch;
  line-height: 1.75;
}

.about-section__text p:first-of-type {
  font-size: 1.05rem;
  color: var(--ink);
}

.about-section__text h2 {
  margin-top: var(--space-2);
}

.about-section__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.about-card {
  background: var(--parchment-dim);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius-sm);
  padding: var(--space-3);
}

.about-card h3 {
  margin-bottom: 0.5rem;
  color: var(--runway);
}

.about-card p {
  font-size: 0.9rem;
  color: rgba(28, 26, 22, 0.7);
}

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

/* ==========================================================================
   Footer SEO Links Row
   ========================================================================== */

.footer-seo {
  border-top: 1px solid rgba(246, 242, 234, 0.1);
  padding-block: var(--space-3);
}

.footer-seo__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 0.5rem;
}

.footer-seo__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 1000px;
}

.footer-seo__links li {
  font-size: 0.75rem;
  color: rgba(246, 242, 234, 0.65);
  background: rgba(246, 242, 234, 0.06);
  border: 1px solid rgba(246, 242, 234, 0.1);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}

.section-head__title--light {
  color: var(--parchment) !important;
}

.section-head__title--nowrap {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .section-head__title--nowrap {
    white-space: normal;
  }
}

/* ==========================================================================
   Homepage teasers + dedicated-page layout helpers (scoped additions)
   ========================================================================== */

.section-cta {
  text-align: center;
  margin-top: var(--space-5);
}

.about-teaser {
  text-align: center;
  max-width: 60ch;
  margin-inline: auto;
}

.about-teaser h2 {
  margin-top: var(--space-2);
}

.about-teaser p {
  margin-block: var(--space-3);
  color: rgba(28, 26, 22, 0.75);
  line-height: 1.75;
}

.about-teaser .btn {
  margin-top: var(--space-1);
}

.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.about-page .about-section__text {
  max-width: 70ch;
}

.about-page .about-section__text h2 {
  margin-top: var(--space-2);
}

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

.services-teaser {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
}

.services-teaser__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-1);
  padding: var(--space-3) var(--space-2);
  background: var(--parchment-dim);
  border: 1px solid rgba(28, 26, 22, 0.06);
  border-radius: var(--radius-md);
  min-height: 7.5rem;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}

.services-teaser__item:hover {
  border-color: rgba(38, 67, 58, 0.35);
  transform: translateY(-2px);
}

.services-teaser__label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--runway);
  line-height: 1.35;
}

.services-teaser__hint {
  font-size: 0.75rem;
  color: rgba(28, 26, 22, 0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .services-teaser {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.review-spotlight {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.review-spotlight__quote {
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
}

.review-spotlight__mark {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--brass);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.review-spotlight__quote p {
  color: var(--parchment);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.7;
  font-weight: 500;
}

.review-spotlight__quote footer {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.review-spotlight__name {
  color: var(--brass-light);
  font-weight: 700;
  font-size: 1rem;
}

.review-spotlight__date {
  font-size: 0.8rem;
  color: rgba(246, 242, 234, 0.5);
}

.btn-reviews-more {
  border-color: var(--brass-light);
  color: var(--brass-light);
}

.btn-reviews-more:hover {
  background: var(--brass-light);
  color: var(--runway-dark);
}

.testimonial-track--page {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  max-width: 56rem;
  margin-inline: auto;
}

.testimonial-track--page .testimonial-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 28rem;
  margin-inline: auto;
  width: 100%;
}

@media (max-width: 900px) {
  .testimonial-track--page {
    grid-template-columns: 1fr;
  }

  .testimonial-track--page .testimonial-card:last-child:nth-child(odd) {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .footer-seo__links li {
    white-space: normal;
    font-size: 0.72rem;
  }
}
