:root {
  --cream: #fbf7ef;
  --ivory: #fffdf8;
  --sand: #e8dccb;
  --charcoal: #181715;
  --muted: #6c665e;
  --olive: #5d6849;
  --blue: #45768d;
  --rose: #c9857b;
  --tomato: #b64c3c;
  --custard: #edc96b;
  --line: rgba(24, 23, 21, 0.12);
  --shadow: 0 24px 60px rgba(47, 38, 28, 0.16);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  letter-spacing: 0;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  align-items: center;
  color: var(--ivory);
  display: grid;
  gap: 22px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 26px clamp(22px, 4vw, 72px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.4rem);
  letter-spacing: 0.08em;
  line-height: 1;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2.2vw, 34px);
  justify-content: center;
}

.main-nav a,
.header-actions a,
.section-heading a,
.eyebrow,
.destination-card span,
.pick-card span,
.guide-grid span,
.product-grid span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.icon-button {
  align-items: center;
  background: rgba(255, 253, 248, 0.14);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 50%;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.icon-button svg {
  height: 18px;
  width: 18px;
}

.pill-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.14em;
  min-height: 46px;
  padding: 0 28px;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.pill-button:hover {
  transform: translateY(-2px);
}

.pill-button.light,
.pill-button.cream {
  background: var(--ivory);
  color: var(--charcoal);
}

.pill-button.glass {
  background: rgba(255, 253, 248, 0.14);
  border-color: rgba(255, 253, 248, 0.35);
  color: var(--ivory);
}

.pill-button.dark {
  background: var(--charcoal);
  color: var(--ivory);
}

.pill-button.full {
  width: 100%;
}

.hero {
  color: var(--ivory);
  min-height: 760px;
  overflow: hidden;
  position: relative;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1533105079780-92b9be482077?auto=format&fit=crop&w=2200&q=86");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 16, 13, 0.72), rgba(18, 16, 13, 0.24) 52%, rgba(18, 16, 13, 0.54)),
    linear-gradient(180deg, rgba(18, 16, 13, 0.28), rgba(18, 16, 13, 0.2) 60%, rgba(18, 16, 13, 0.6));
  inset: 0;
  position: absolute;
}

.hero-content {
  max-width: 780px;
  padding: 190px clamp(22px, 4vw, 72px) 140px;
  position: relative;
  z-index: 2;
}

.kicker {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.club-section h2,
.newsletter h2,
.match-card h2,
.maps-copy h2,
.split-copy h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(4rem, 7vw, 8rem);
  line-height: 0.93;
  margin: 0 0 28px;
  max-width: 840px;
}

.hero-copy {
  font-size: clamp(1.08rem, 1.6vw, 1.42rem);
  line-height: 1.8;
  margin: 0 0 34px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-match {
  bottom: 56px;
  max-width: 380px;
  position: absolute;
  right: clamp(22px, 4vw, 72px);
  z-index: 3;
}

.match-card {
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(255, 253, 248, 0.55);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--charcoal);
  padding: 26px;
}

.match-card h2 {
  font-size: 2.5rem;
  line-height: 1;
  margin: 0 0 12px;
}

.match-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 18px;
}

.match-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 18px;
}

.match-grid button {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--charcoal);
  cursor: pointer;
  min-height: 38px;
}

.feature-strip {
  background: var(--ivory);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
  padding: 34px clamp(22px, 4vw, 72px);
}

.feature-strip article {
  align-items: center;
  display: flex;
  gap: 16px;
  min-width: 0;
}

.feature-strip svg {
  color: var(--olive);
  height: 30px;
  width: 30px;
}

.feature-strip h2 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin: 0 0 7px;
  text-transform: uppercase;
}

.feature-strip p {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
}

.section {
  padding: 58px clamp(22px, 4vw, 72px);
}

.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 26px;
}

.eyebrow {
  color: var(--tomato);
  margin: 0 0 10px;
}

.section h2 {
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  line-height: 0.98;
  margin: 0;
}

.section-heading a {
  color: var(--charcoal);
  white-space: nowrap;
}

.category-section {
  padding-bottom: 18px;
}

.category-bar {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(9, 1fr);
}

.category-bar a {
  align-items: center;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 112px;
  justify-content: center;
  padding: 14px 8px;
  text-align: center;
}

.category-bar svg {
  color: var(--blue);
  height: 26px;
  width: 26px;
}

.category-bar span {
  font-size: 0.76rem;
  font-weight: 750;
}

.destination-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.destination-card {
  align-items: end;
  aspect-ratio: 0.82;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.68)), var(--img);
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  color: var(--ivory);
  display: flex;
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.destination-card.tall {
  grid-row: span 1;
}

.destination-card button,
.pick-card button {
  align-items: center;
  background: rgba(24, 23, 21, 0.16);
  border: 1px solid rgba(255, 253, 248, 0.52);
  border-radius: 50%;
  color: var(--ivory);
  cursor: pointer;
  display: flex;
  height: 38px;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 38px;
  z-index: 2;
}

.destination-card h3,
.pick-card h3,
.guide-grid h3,
.product-grid h3 {
  font-size: clamp(1.15rem, 1.4vw, 1.55rem);
  letter-spacing: 0.08em;
  line-height: 1.1;
  margin: 8px 0 4px;
  text-transform: uppercase;
}

.destination-card p {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.tabs button {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  min-height: 40px;
  padding: 0 28px;
  text-transform: uppercase;
}

.tabs button.active {
  background: var(--charcoal);
  color: var(--ivory);
}

.editor-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.1fr 1fr 1fr;
}

.pick-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.pick-card img {
  aspect-ratio: 1.45;
  object-fit: cover;
  width: 100%;
}

.pick-content {
  padding: 22px;
}

.pick-content p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.accent-rose {
  background: #fff4f1;
}

.accent-blue {
  background: #f0f8fa;
}

.maps-section {
  align-items: center;
  background: #eef3ec;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: 1fr minmax(360px, 520px);
}

.maps-copy p:not(.eyebrow),
.split-copy p,
.newsletter p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
  max-width: 620px;
}

.map-features {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 26px 0;
}

.map-features span {
  align-items: center;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(93, 104, 73, 0.16);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
}

.map-features svg {
  color: var(--olive);
  height: 18px;
  width: 18px;
}

.map-ui {
  background: var(--ivory);
  border: 1px solid rgba(24, 23, 21, 0.1);
  border-radius: 30px;
  box-shadow: var(--shadow);
  margin-inline: auto;
  max-width: 430px;
  padding: 18px;
  width: 100%;
}

.map-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 8px 8px 16px;
}

.map-header span {
  font-family: var(--serif);
  font-size: 2rem;
}

.map-header button {
  align-items: center;
  background: var(--charcoal);
  border: 0;
  border-radius: 50%;
  color: var(--ivory);
  display: flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.map-canvas {
  background:
    linear-gradient(145deg, rgba(69, 118, 141, 0.16), rgba(237, 201, 107, 0.18)),
    url("https://images.unsplash.com/photo-1523906834658-6e24ef2386f9?auto=format&fit=crop&w=900&q=82");
  background-position: center;
  background-size: cover;
  border-radius: 22px;
  height: 370px;
  position: relative;
}

.pin {
  align-items: center;
  background: var(--tomato);
  border: 2px solid var(--ivory);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  color: var(--ivory);
  display: flex;
  height: 46px;
  justify-content: center;
  position: absolute;
  width: 46px;
}

.pin svg {
  height: 18px;
  width: 18px;
}

.p1 { left: 18%; top: 25%; }
.p2 { right: 21%; top: 18%; background: var(--blue); }
.p3 { left: 42%; bottom: 28%; background: var(--olive); }
.p4 { right: 28%; bottom: 14%; background: var(--rose); }

.place-drawer {
  align-items: center;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  gap: 14px;
  margin: -54px 18px 0;
  padding: 12px;
  position: relative;
}

.place-drawer img {
  border-radius: 12px;
  height: 82px;
  object-fit: cover;
  width: 96px;
}

.place-drawer p {
  color: var(--tomato);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.place-drawer h3 {
  margin: 5px 0;
}

.place-drawer span {
  color: var(--muted);
}

.split-section {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  grid-template-columns: 0.8fr 1.2fr;
}

.guide-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-grid article {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 210px;
  padding: 24px;
}

.guide-grid article:nth-child(2) {
  background: #fff7db;
}

.guide-grid article:nth-child(3) {
  background: #edf7f8;
}

.guide-grid article:nth-child(4) {
  background: #f5ece6;
}

.guide-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid article {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.product-grid img {
  aspect-ratio: 0.95;
  object-fit: cover;
  width: 100%;
}

.product-grid span,
.product-grid h3 {
  display: block;
  margin-left: 18px;
  margin-right: 18px;
}

.product-grid span {
  color: var(--blue);
  margin-top: 18px;
}

.product-grid h3 {
  margin-bottom: 18px;
}

.club-section {
  align-items: center;
  background: var(--charcoal);
  color: var(--ivory);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1.2fr auto;
  padding: 58px clamp(22px, 4vw, 72px);
}

.club-section h2 {
  font-size: clamp(2.1rem, 3vw, 4rem);
  line-height: 1;
  margin: 0;
}

.club-section ul {
  columns: 2;
  line-height: 2;
  margin: 0;
  padding-left: 20px;
}

.newsletter {
  align-items: end;
  background: var(--ivory);
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr minmax(340px, 520px);
  padding: 58px clamp(22px, 4vw, 72px);
}

.newsletter form {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto;
  padding: 10px;
}

.newsletter label {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.newsletter input {
  background: transparent;
  border: 0;
  min-height: 48px;
  min-width: 0;
  outline: 0;
  padding: 0 12px;
}

.site-footer {
  align-items: center;
  background: #f5eadc;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto auto;
  padding: 42px clamp(22px, 4vw, 72px);
}

.site-footer .brand {
  color: var(--charcoal);
  display: inline-block;
  margin-bottom: 14px;
}

.site-footer p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  max-width: 460px;
}

.site-footer nav,
.socials {
  display: flex;
  gap: 18px;
}

.site-footer nav a {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.socials a {
  align-items: center;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    justify-content: end;
  }

  .hero {
    min-height: 880px;
  }

  .hero-content {
    padding-bottom: 330px;
  }

  .hero-match {
    left: clamp(22px, 4vw, 72px);
    right: auto;
  }

  .feature-strip,
  .category-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .destination-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: start;
  }

  .header-actions .icon-button {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 18vw, 5.2rem);
  }

  .hero-content {
    padding-top: 145px;
  }

  .feature-strip,
  .category-bar,
  .destination-grid,
  .editor-grid,
  .maps-section,
  .split-section,
  .guide-grid,
  .product-grid,
  .club-section,
  .newsletter,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-strip article {
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
  }

  .section-heading {
    align-items: start;
    gap: 18px;
  }

  .destination-card {
    aspect-ratio: 1.15;
  }

  .map-features {
    grid-template-columns: 1fr;
  }

  .club-section ul {
    columns: 1;
  }

  .newsletter form {
    grid-template-columns: 1fr;
  }
}
