:root {
  color-scheme: light;

  --ink: #24231f;
  --paper: #f3efe3;
  --cream: #fbf7ec;
  --cream-2: #f9f5ea;
  --poster: #eadfc8;
  --gold: #f8c04e;
  --red: #c4472d;
  --olive: #272b24;
  --olive-2: #34382f;
  --green: #27624c;
  --blue: #365f91;

  --muted: #5d594f;
  --muted-2: #686459;
  --soft: #d6ccb8;
  --soft-2: #eee5d1;

  --max: 80rem;
  --font-sans: "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-poster: 14px 14px 0 var(--ink);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--gold);
  color: var(--ink);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration: underline;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

main {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

.font-serif {
  font-family: var(--font-serif);
}

.chicago-grid {
  background:
    linear-gradient(90deg, rgba(36, 35, 31, 0.08) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(rgba(36, 35, 31, 0.08) 1px, transparent 1px) 0 0 / 46px 46px,
    radial-gradient(circle at 72% 28%, rgba(196, 71, 45, 0.18), transparent 28rem),
    radial-gradient(circle at 10% 82%, rgba(248, 192, 78, 0.24), transparent 22rem);
}

/* Layout utilities used by index.html */

.min-h-screen { min-height: 100vh; }
.min-h-\[88vh\] { min-height: auto; }

.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.-bottom-8 { bottom: -2rem; }
.right-5 { right: 1.25rem; }

.overflow-hidden { overflow: hidden; }

.mx-auto { margin-inline: auto; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-10 { margin-bottom: 2.5rem; }

.grid { display: grid; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }

.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.place-items-center { place-items: center; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-8 { gap: 1.25rem; }
.gap-10 { gap: 1.5rem; }

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: var(--max); }

.w-full { width: 100%; }
.w-fit { width: fit-content; }
.w-24 { width: 6rem; }

.size-8 { width: 2rem; height: 2rem; }
.size-10 { width: 2.5rem; height: 2.5rem; }
.size-12 { width: 3rem; height: 3rem; }

.h-2 { height: 0.5rem; }
.h-44 { height: 8rem; }
.min-h-28 { min-height: 0; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-\[2rem_1fr_auto\] { grid-template-columns: 2rem 1fr auto; }

.rounded-full { border-radius: 9999px; }

.border { border: 1px solid currentColor; }
.border-t { border-top: 1px solid currentColor; }
.border-b { border-bottom: 1px solid currentColor; }
.border-y {
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.border-dashed { border-style: dashed; }

.border-\[\#24231f\] { border-color: #24231f; }
.border-\[\#24231f\]\/15 { border-color: rgba(36, 35, 31, 0.15); }
.border-\[\#24231f\]\/25 { border-color: rgba(36, 35, 31, 0.25); }
.border-\[\#24231f\]\/45 { border-color: rgba(36, 35, 31, 0.45); }
.border-\[\#f3efe3\]\/20 { border-color: rgba(243, 239, 227, 0.20); }
.border-\[\#f3efe3\]\/25 { border-color: rgba(243, 239, 227, 0.25); }
.border-\[\#f3efe3\]\/35 { border-color: rgba(243, 239, 227, 0.35); }

.bg-\[\#24231f\] { background-color: #24231f; }
.bg-\[\#272b24\] { background-color: #272b24; }
.bg-\[\#27624c\] { background-color: #27624c; }
.bg-\[\#34382f\] { background-color: #34382f; }
.bg-\[\#365f91\] { background-color: #365f91; }
.bg-\[\#c4472d\] { background-color: #c4472d; }
.bg-\[\#eadfc8\] { background-color: #eadfc8; }
.bg-\[\#f3efe3\] { background-color: #f3efe3; }
.bg-\[\#f8c04e\] { background-color: #f8c04e; }
.bg-\[\#f9f5ea\] { background-color: #f9f5ea; }
.bg-\[\#fbf7ec\] { background-color: #fbf7ec; }

.text-\[\#24231f\] { color: #24231f; }
.text-\[\#4b4941\] { color: #4b4941; }
.text-\[\#555147\] { color: #555147; }
.text-\[\#5d594f\] { color: #5d594f; }
.text-\[\#686459\] { color: #686459; }
.text-\[\#c4472d\] { color: #c4472d; }
.text-\[\#d6ccb8\] { color: #d6ccb8; }
.text-\[\#eee5d1\] { color: #eee5d1; }
.text-\[\#f3efe3\] { color: #f3efe3; }
.text-\[\#f8c04e\] { color: #f8c04e; }
.text-white { color: #fff; }

.object-cover { object-fit: cover; }
.mix-blend-multiply { mix-blend-mode: multiply; }

.p-4 { padding: 0.875rem; }
.p-5 { padding: 1rem; }

.px-3 { padding-inline: 0.75rem; }
.px-4 { padding-inline: 1rem; }
.px-5 { padding-inline: 1.25rem; }

.py-1 { padding-block: 0.25rem; }
.py-2 { padding-block: 0.5rem; }
.py-3 { padding-block: 0.75rem; }
.py-6 { padding-block: 1.125rem; }
.py-10 { padding-block: 1.75rem; }
.py-20 { padding-block: 2.75rem; }

.pt-5 { padding-top: 1.25rem; }
.pt-8 { padding-top: 1.25rem; }
.pb-8 { padding-bottom: 1.25rem; }
.pb-12 { padding-bottom: 1.75rem; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1rem; line-height: 1.55rem; }
.text-xl { font-size: 1.125rem; line-height: 1.5rem; }
.text-2xl { font-size: 1.35rem; line-height: 1.75rem; }
.text-4xl { font-size: 1.85rem; line-height: 2.1rem; }
.text-5xl { font-size: 2.15rem; line-height: 1.04; }
.text-\[clamp\(3\.2rem\,9vw\,8\.5rem\)\] {
  font-size: clamp(2.45rem, 12vw, 4.25rem);
}

.leading-\[0\.86\] { line-height: 0.86; }
.leading-none { line-height: 1; }
.leading-7 { line-height: 1.55rem; }
.leading-8 { line-height: 1.7rem; }

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.tracking-normal { letter-spacing: 0; }
.tracking-\[0\.14em\] { letter-spacing: 0.14em; }
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }
.uppercase { text-transform: uppercase; }

.shadow-\[6px_6px_0_\#24231f\] { box-shadow: 4px 4px 0 var(--ink); }
.shadow-\[14px_14px_0_\#24231f\] { box-shadow: 8px 8px 0 var(--ink); }

.transition {
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.tour-poster {
  transform: rotate(1.5deg);
}

.destination-card {
  min-height: 100%;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.destination-card:hover {
  background: #3c4036;
  border-color: rgba(243, 239, 227, 0.72);
  transform: translateY(-6px);
}

@media (hover: hover) {
  .hover\:-translate-y-0\.5:hover {
    transform: translateY(-0.125rem);
  }

  .hover\:-translate-y-1:hover {
    transform: translateY(-0.25rem);
  }

  .hover\:border-\[\#24231f\]:hover {
    border-color: #24231f;
  }

  .hover\:bg-\[\#c4472d\]:hover {
    background-color: #c4472d;
  }

  .hover\:bg-white:hover {
    background-color: #fff;
  }
}

@media (min-width: 48rem) {
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:h-52 { height: 13rem; }
  .md\:grid-cols-\[0\.95fr_1\.05fr\] { grid-template-columns: 0.95fr 1.05fr; }
  .md\:grid-cols-\[4rem_1fr_auto\] { grid-template-columns: 4rem 1fr auto; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-end { align-items: flex-end; }
  .md\:px-8 { padding-inline: 2rem; }
  .md\:pb-16 { padding-bottom: 2.75rem; }
  .md\:pb-20 { padding-bottom: 3.25rem; }
  .md\:text-6xl { font-size: 2.85rem; line-height: 1.02; }

  .min-h-\[88vh\] { min-height: 68vh; }
  .gap-8 { gap: 1.75rem; }
  .gap-10 { gap: 2rem; }
  .py-20 { padding-block: 3.75rem; }
  .text-5xl { font-size: 2.65rem; }
  .text-\[clamp\(3\.2rem\,9vw\,8\.5rem\)\] {
    font-size: clamp(3.25rem, 7vw, 5.75rem);
  }
  .shadow-\[6px_6px_0_\#24231f\] { box-shadow: var(--shadow-hard); }
  .shadow-\[14px_14px_0_\#24231f\] { box-shadow: 10px 10px 0 var(--ink); }
}

@media (min-width: 64rem) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-\[0\.75fr_1\.25fr\] { grid-template-columns: 0.75fr 1.25fr; }
  .lg\:grid-cols-\[1fr_1\.4fr\] { grid-template-columns: 1fr 1.4fr; }
  .lg\:px-10 { padding-inline: 2.5rem; }

  .min-h-\[88vh\] { min-height: 72vh; }
  .py-20 { padding-block: 4.5rem; }
  .text-5xl { font-size: 2.95rem; }
  .md\:text-6xl { font-size: 3.25rem; }
  .text-\[clamp\(3\.2rem\,9vw\,8\.5rem\)\] {
    font-size: clamp(3.75rem, 6.8vw, 6.75rem);
  }
  .shadow-\[14px_14px_0_\#24231f\] { box-shadow: var(--shadow-poster); }
}

@media (max-width: 760px) {
  .tour-poster {
    transform: rotate(0);
  }

  .text-\[clamp\(3\.2rem\,9vw\,8\.5rem\)\] {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }

  .absolute.-bottom-8 {
    bottom: -1.1rem;
  }

  .right-5 {
    right: 0.85rem;
  }
}
