:root {
  color-scheme: dark;
  --ink: #f4efe5;
  --muted: #b7c1bd;
  --paper: #ede2cf;
  --charcoal: #0e1110;
  --deep: #151b1a;
  --forest: #18332f;
  --sea: #2d6f74;
  --amber: #d59a45;
  --line: rgba(244, 239, 229, 0.18);
  --shadow: rgba(0, 0, 0, 0.32);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--ink);
  letter-spacing: 0;
}

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

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

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 22px clamp(20px, 4vw, 56px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}

.site-header.solid {
  background: rgba(14, 17, 16, 0.92);
  border-bottom: 1px solid var(--line);
  position: sticky;
}

.brand,
.nav {
  align-items: center;
  display: flex;
}

.brand {
  font-weight: 760;
  gap: 12px;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  color: var(--charcoal);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.nav {
  gap: 22px;
  color: rgba(244, 239, 229, 0.78);
  font-size: 14px;
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--ink);
}

.hero {
  min-height: 92svh;
  overflow: hidden;
  position: relative;
}

.hero > img {
  height: 100%;
  min-height: 92svh;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 10, 10, 0.88), rgba(7, 10, 10, 0.36) 54%, rgba(7, 10, 10, 0.14)),
    linear-gradient(0deg, var(--charcoal), rgba(14, 17, 16, 0) 30%);
  inset: 0;
  position: absolute;
}

.hero-copy {
  max-width: 760px;
  padding: 190px clamp(20px, 7vw, 96px) 110px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--amber);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.14em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 8vw, 118px);
  font-weight: 500;
  line-height: 0.92;
  margin-bottom: 24px;
}

.hero-copy p:not(.eyebrow) {
  color: rgba(244, 239, 229, 0.82);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid rgba(244, 239, 229, 0.32);
  display: inline-flex;
  font-weight: 720;
  min-height: 48px;
  padding: 0 20px;
}

.button.primary {
  background: var(--ink);
  color: var(--charcoal);
}

.button.secondary {
  background: rgba(14, 17, 16, 0.32);
}

.section {
  padding: clamp(56px, 8vw, 108px) clamp(20px, 6vw, 82px);
}

.intro {
  background: var(--charcoal);
}

.intro-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.intro h2,
.split-copy h2,
.list-heading h2,
.page-hero h1,
.route-banner h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 500;
  line-height: 1;
}

.intro p,
.split-copy p,
.route-banner p,
.page-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.feature-grid {
  background: var(--deep);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.route-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px var(--shadow);
  padding: 28px;
}

.feature-card {
  background: rgba(244, 239, 229, 0.04);
  min-height: 260px;
}

.feature-number {
  color: var(--sea);
  display: block;
  font-weight: 800;
  margin-bottom: 52px;
}

.feature-card h3,
.route-card h2 {
  font-size: 24px;
  line-height: 1.15;
}

.feature-card p,
.route-card p,
.route-card li,
.list-row p {
  color: var(--muted);
  line-height: 1.65;
}

.split,
.route-banner {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
}

.split-media img,
.route-banner img {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.split-copy {
  max-width: 620px;
}

.text-link {
  border-bottom: 1px solid var(--amber);
  color: var(--ink);
  display: inline-flex;
  font-weight: 760;
  margin-top: 12px;
  padding-bottom: 4px;
}

.tasting-list {
  background: var(--paper);
  color: #141817;
}

.tasting-list .section-kicker {
  color: #8e5c1d;
}

.list-heading {
  margin-bottom: 30px;
}

.list-row {
  border-top: 1px solid rgba(20, 24, 23, 0.18);
  display: grid;
  gap: 24px;
  grid-template-columns: 180px minmax(0, 1fr);
  padding: 24px 0;
}

.list-row span {
  color: var(--forest);
  font-size: 22px;
  font-weight: 800;
}

.list-row p {
  color: #44504c;
  font-size: 18px;
  margin-bottom: 0;
}

.page-hero {
  background:
    linear-gradient(130deg, rgba(24, 51, 47, 0.95), rgba(14, 17, 16, 0.98)),
    url("/assets/hero-island-whisky.png") center / cover;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  padding: clamp(96px, 14vw, 160px) clamp(20px, 6vw, 82px) clamp(58px, 8vw, 90px);
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p {
  align-self: end;
}

.route-layout {
  background: var(--charcoal);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: clamp(46px, 6vw, 82px) clamp(20px, 6vw, 82px);
}

.route-card {
  background: rgba(244, 239, 229, 0.95);
  color: #151817;
}

.route-card.dark {
  background: var(--forest);
  color: var(--ink);
}

.route-card.dark p,
.route-card.dark li {
  color: rgba(244, 239, 229, 0.72);
}

.route-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}

.route-top span {
  color: var(--sea);
  font-weight: 800;
}

.route-card.dark .route-top span {
  color: var(--amber);
}

.route-top strong {
  font-size: 14px;
  text-transform: uppercase;
}

.route-card ul {
  margin: 28px 0 0;
  padding-left: 20px;
}

.route-banner {
  background: #111514;
}

.footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: rgba(244, 239, 229, 0.66);
  display: flex;
  font-size: 14px;
  gap: 20px;
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 82px);
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    gap: 16px;
    position: absolute;
  }

  .site-header.solid {
    position: sticky;
  }

  .brand {
    font-size: 14px;
  }

  .nav {
    gap: 14px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero > img {
    min-height: 88svh;
  }

  .hero-copy {
    padding-top: 150px;
  }

  .intro-grid,
  .feature-grid,
  .split,
  .page-hero,
  .route-layout,
  .route-banner {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 220px;
  }

  .list-row {
    grid-template-columns: 1fr;
  }

  .route-top {
    margin-bottom: 42px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .site-header {
    flex-direction: column;
  }

  h1 {
    font-size: 50px;
  }

  .hero-copy {
    padding-bottom: 80px;
  }

  .button {
    justify-content: center;
    width: 100%;
  }
}
