:root {
  color-scheme: light;
  --ink: #15130f;
  --muted: #5f605b;
  --line: #d9d2c6;
  --paper: #f6f2ea;
  --panel: #ffffff;
  --red: #b51f1b;
  --gold: #bf8b2e;
  --olive: #3f4c43;
  --blue: #254b63;
  --charcoal: #201d18;
  --shadow: 0 24px 70px rgba(21, 19, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(32, 29, 24, 0.035), transparent 18rem),
    var(--paper);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(22, 20, 18, 0.1);
  background: rgba(246, 242, 234, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 8px;
  background: var(--charcoal);
  color: white;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.site-nav a,
.site-footer a,
.card-links a,
.link-list a {
  border-radius: 7px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a {
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: #e8dfd2;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  padding: 0.55rem 0.8rem;
  font: inherit;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  min-height: min(780px, calc(100vh - 4rem));
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(21, 19, 15, 0.96), rgba(21, 19, 15, 0.88) 45%, rgba(21, 19, 15, 0.18) 72%, rgba(21, 19, 15, 0.02)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=2200&q=82") center / cover;
  color: white;
}

.hero::after {
  position: absolute;
  right: 3vw;
  bottom: 2rem;
  width: min(28rem, 42vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55));
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3.3rem, 8vw, 7rem);
  max-width: 10.5ch;
  letter-spacing: 0;
}

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

h3 {
  font-size: 1.3rem;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.hero p {
  color: rgba(255, 255, 255, 0.78);
}

.hero .eyebrow {
  color: #f4d087;
}

.hero-copy > p:not(.eyebrow),
.subhero > p:not(.eyebrow),
.section-heading > p {
  max-width: 68ch;
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.45rem 0.65rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  border-radius: 7px;
  padding: 0.9rem 1.08rem;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: #d6a038;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  color: #15130f;
}

.button.primary:hover {
  background: #edbd56;
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.button.secondary {
  border: 1px solid var(--line);
  background: white;
}

.hero-media {
  position: relative;
  z-index: 1;
  min-height: 540px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1511919884226-fd3cad34687c?auto=format&fit=crop&w=1600&q=78") center / cover;
}

.hero-media::before {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  content: "";
}

.hero-media::after {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border-radius: 7px;
  background: rgba(21, 19, 15, 0.78);
  color: white;
  content: "LAX arrivals \00a0 / \00a0 Beverly Hills stays \00a0 / \00a0 Malibu drives";
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0.9rem 1rem;
  text-transform: uppercase;
}

.section {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.route-section {
  background: #eee8dc;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 16px 34px rgba(22, 20, 18, 0.08);
}

.route-card {
  display: grid;
  align-content: space-between;
  min-height: 210px;
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 246, 239, 0.96)),
    white;
  color: var(--ink);
  text-decoration: none;
}

.route-card span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.12;
}

.route-card:hover {
  background: white;
}

.feature-grid,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.guide-card {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    var(--panel);
  padding: 1.45rem;
  box-shadow: 0 14px 30px rgba(22, 20, 18, 0.07);
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card h3::before {
  display: block;
  width: 2.5rem;
  height: 0.2rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: var(--red);
  content: "";
}

.feature-card:nth-child(2n) {
  border-top: 4px solid var(--gold);
}

.feature-card:nth-child(3n) {
  border-top: 4px solid var(--blue);
}

.card-links,
.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.card-links a,
.link-list a {
  border: 1px solid var(--line);
  background: #f3eadb;
  padding: 0.55rem 0.7rem;
  font-size: 0.88rem;
}

.card-links a:hover,
.link-list a:hover {
  border-color: rgba(181, 31, 27, 0.35);
  background: #fff8eb;
}

.editorial,
.article-body {
  max-width: 940px;
  margin: 0 auto;
  background: transparent;
}

.home-page .editorial {
  max-width: none;
  padding-top: clamp(1.8rem, 4vw, 3.4rem);
}

.home-page .editorial > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.home-page .editorial h2 {
  grid-column: 1 / -1;
  max-width: 13ch;
  margin-top: 2.6rem;
}

.home-page .editorial h2:first-child {
  margin-top: 0;
}

.home-page .editorial h3,
.home-page .editorial p {
  margin-top: 0;
}

.home-page .editorial p {
  padding: 1.05rem 1.15rem;
  border: 1px solid rgba(217, 210, 198, 0.85);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.home-page .editorial h3 {
  align-self: start;
  padding-top: 0.7rem;
  border-top: 3px solid var(--gold);
}

.article-body h2,
.editorial h2 {
  margin-top: 2.25rem;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.article-body h3,
.editorial h3 {
  margin-top: 1.7rem;
}

.article-body a,
.editorial a,
.guide-card a {
  color: var(--blue);
  font-weight: 800;
}

.subhero {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem) clamp(1.6rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(185, 138, 58, 0.16), transparent 34%),
    linear-gradient(320deg, rgba(37, 68, 95, 0.11), transparent 42%);
}

.subhero h1 {
  max-width: 15ch;
}

.split-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.service-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 2rem;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(37, 68, 95, 0.09), transparent 42%),
    #f7f3ea;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.9rem 1rem 0.9rem 2.35rem;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  left: 0.95rem;
  top: 1.15rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: var(--red);
  content: "";
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  padding: 2rem clamp(1rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  background: #eeeadf;
}

.site-footer p {
  max-width: 62ch;
  margin-bottom: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-content: start;
}

@media (max-width: 900px) {
  .hero,
  .section-heading,
  .split-links,
  .service-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .guide-grid,
  .route-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 0.6rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-media {
    min-height: 360px;
  }

  .home-page .editorial > div {
    grid-template-columns: 1fr;
  }

  .home-page .editorial h2 {
    max-width: 18ch;
  }
}

@media (max-width: 620px) {
  .feature-grid,
  .guide-grid,
  .route-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.55rem, 16vw, 4.4rem);
  }

  .subhero h1 {
    width: min(100%, calc(100vw - 2rem));
    max-width: 100%;
    font-size: 2.2rem;
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .subhero > p:not(.eyebrow) {
    width: min(100%, calc(100vw - 2rem));
    overflow-wrap: anywhere;
  }

  .brand span:last-child {
    max-width: 12rem;
    line-height: 1.05;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
    background:
      linear-gradient(180deg, rgba(21, 19, 15, 0.96), rgba(21, 19, 15, 0.78) 68%, rgba(21, 19, 15, 0.52)),
      url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1200&q=78") center / cover;
  }

  .hero-media {
    min-height: 280px;
  }

  .hero-proof {
    gap: 0.4rem;
  }

  .hero-proof span {
    font-size: 0.72rem;
    padding: 0.4rem 0.55rem;
  }

  .route-card {
    min-height: 150px;
  }

  .hero-media::after {
    font-size: 0.7rem;
    line-height: 1.45;
  }
}
