:root {
  --limo-black: #14151A;
  --wine: #8A2A3B;
  --wine-light: #C25E72;
  --platinum: #B9BCC0;
  --ivory: #F5F1E8;
  --card: #FFFFFF;
  --steel: #5A5C63;

  --font-display: 'Bodoni Moda', serif;
  --font-body: 'Archivo', sans-serif;
}

@font-face {
  font-family: 'Bodoni Moda';
  src: url('../fonts/bodoni-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bodoni Moda';
  src: url('../fonts/bodoni-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--ivory);
  color: var(--limo-black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

ul, ol {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

.h1 {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
}

.h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.kicker {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  color: var(--wine-light);
}

.icon-kicker {
  color: var(--platinum);
  margin-right: 0.5rem;
  vertical-align: middle;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  opacity: 0.9;
}

.btn-primary {
  background-color: var(--wine);
  color: #fff;
}

.btn-outline-platinum {
  background-color: transparent;
  color: #fff;
  border: 1px solid var(--platinum);
}

.btn-outline-platinum:hover {
  background-color: rgba(255,255,255,0.1);
}

/* Masthead */
.masthead {
  background-color: var(--limo-black);
  color: #fff;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-display {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--platinum);
}

.desktop-nav {
  display: none;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.desktop-nav a {
  font-size: 0.875rem;
  font-weight: 800;
}

/* Mobile Nav */
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--limo-black);
  padding: 1rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav a {
  font-size: 1.125rem;
  font-weight: 800;
}

.mobile-nav .btn-primary {
  margin-top: 1rem;
  text-align: center;
  width: 100%;
}

details.mobile-nav-container > summary {
  list-style: none;
  cursor: pointer;
}

details.mobile-nav-container > summary::-webkit-details-marker {
  display: none;
}

.hamburger {
  width: 24px;
  height: 2px;
  background: #fff;
  position: relative;
  display: block;
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: #fff;
  left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

@media (min-width: 992px) {
  .mobile-nav-container { display: none; }
  .desktop-nav { display: block; }
}

/* Hero - Porte-Cochere */
.hero {
  background-color: var(--limo-black);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr;
}

.hero-content {
  padding: 4rem 2rem;
  max-width: 600px;
}

.hero .kicker {
  display: block;
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-subhead {
  font-size: 1.125rem;
  color: #e0e0e0;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-micro-trust {
  font-size: 0.75rem;
  color: var(--platinum);
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-weight: 800;
}

.hero-image-wrapper {
  position: relative;
  min-height: 300px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-left: none;
}

.caption-tab {
  position: absolute;
  top: 2rem;
  right: 0;
  background-color: var(--limo-black);
  color: var(--wine-light);
  padding: 0.5rem 1rem;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (min-width: 992px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }
  .hero-content {
    padding: 6rem 4rem 6rem 2rem;
    margin-left: auto;
    max-width: 700px;
  }
  .hero-image {
    border-left: 4px solid var(--platinum);
  }
}

/* Trust Strip */
.trust-strip {
  background-color: var(--card);
  color: var(--limo-black);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  font-weight: 800;
  font-size: 0.875rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* For every occasion */
.occasions {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.occasions-inner {
  max-width: 1200px;
}

.occasions h2 {
  margin-bottom: 2rem;
}

.occasion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--wine);
  color: var(--wine);
  font-weight: 800;
  font-size: 0.875rem;
  background-color: transparent;
}

/* The Fleet Lineup */
.fleet {
  padding: 0 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fleet h2 {
  margin-bottom: 2.5rem;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .fleet-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.fleet-card {
  background-color: var(--limo-black);
  color: #fff;
  display: flex;
  flex-direction: column;
}

.fleet-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.fleet-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.fleet-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.fleet-card .spec {
  color: var(--platinum);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.rate-tag-wrapper {
  margin-top: auto;
}

.rate-tag {
  display: inline-block;
  background-color: var(--wine);
  color: #fff;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.fleet-note {
  color: var(--steel);
  font-size: 0.875rem;
}

.wedding-package {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--card);
  border-left: 4px solid var(--wine);
}
.wedding-package p {
  font-size: 1rem;
  color: var(--limo-black);
}

/* About */
.about {
  background-color: var(--ivory);
  padding: 5rem 2rem;
  border-top: 1px solid var(--platinum);
  border-bottom: 1px solid var(--platinum);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  margin-bottom: 1.5rem;
}

.about p {
  font-size: 1.125rem;
}

/* Reviews */
.reviews {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.reviews h2 {
  margin-bottom: 2.5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.review-card {
  background-color: var(--card);
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.05);
}

.stars {
  color: var(--wine);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  display: flex;
  gap: 0.25rem;
}

.review-text {
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--steel);
}

/* Contact */
.contact {
  background-color: var(--limo-black);
  color: #fff;
  padding: 5rem 2rem;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

.contact h2 {
  margin-bottom: 1.5rem;
}

.contact-info {
  margin-top: 2rem;
}
.contact-info p {
  color: var(--platinum);
  margin-bottom: 0.5rem;
}
.contact-info a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--wine);
}

.mock-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mock-form input {
  padding: 0.75rem 1rem;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid var(--platinum);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
}

.mock-form input::placeholder {
  color: var(--platinum);
}

.mock-form button {
  align-self: flex-start;
}

/* Footer */
.footer {
  background-color: #0b0c0e;
  color: var(--platinum);
  padding: 2rem;
  text-align: center;
  font-size: 0.75rem;
}
.footer p {
  margin-bottom: 0.5rem;
}
.footer .footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
}

/* Sticky Mobile Bar */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--wine);
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-weight: 800;
  font-size: 1rem;
  z-index: 100;
  display: block;
}

@media (min-width: 768px) {
  .mobile-call-bar {
    display: none;
  }
  body {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 60px;
  }
}

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