:root {
  --font-body: "work-sans", Inter, Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-block: "proxima-soft-extra-condensed", sans-serif;
  --font-script: "eds-market-main-script", cursive;
  --font-fat-script: "shrikhand", serif;

  --bg: #fffdf6;
  --paper: rgba(255, 253, 246, 0.9);
  --ink: #45484a;
  --blue: #164b85;
  --blue-dark: #0d315b;
  --yellow: #f5c93b;
  --green: #747b4b;
  --white: #ffffff;

  --page-width: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
}

a {
  color: inherit;
}

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

/* Fixed lemon */

.corner-lemon {
  position: fixed;
  top: -72px;
  left: -58px;
  width: clamp(330px, 40vw, 610px);
  height: auto;
  z-index: 50;
  pointer-events: none;
}

/* Tile field */

.page-shell {
  min-height: 100vh;
  padding-top: clamp(92px, 10vw, 138px);
  background-image: url("images/background.png");
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100% auto;
}

.page {
  position: relative;
  z-index: 2;
  width: min(var(--page-width), calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 34px;
  background: transparent;
}

/* Header / navigation */

.site-header {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0;
  padding: 0;
}

.brand {
  display: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: fit-content;
  max-width: calc(100vw - 48px);
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-block);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 0 rgba(22, 75, 133, 0.35);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  color: var(--ink);
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--blue);
  color: var(--white);
}

/* Cover */

.cover-section {
  display: flex;
  justify-content: center;
  padding: 0 0 58px;
}

.cover-poster {
  position: relative;
  width: 100%;
  height: clamp(860px, 132vw, 1190px);
  background-image: url("images/sicily.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

.wander-logo {
  position: absolute;
  top: 7.8%;
  left: 75%;
  transform: translateX(-50%);
  width: 36%;
  max-width: 300px;
  min-width: 220px;
  height: auto;
  z-index: 3;
}

.cover-kicker {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-block);
  font-size: clamp(40px, 5.5vw, 58px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 3;
}

.cover-title {
  margin: 0;
}

.cover-sicily {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--yellow);
  font-family: var(--font-script);
  font-size: clamp(170px, 24vw, 265px);
  font-weight: 400;
  line-height: 0.68;
  letter-spacing: -0.04em;
  text-shadow: 0.026em 0.034em 0 rgba(22, 75, 133, 0.35);
  z-index: 3;
}

.cover-year {
  position: absolute;
  bottom: 18%;
  left: 45%;
  transform: translateX(-60%);
  color: var(--blue);
  font-family: var(--font-fat-script);
  font-size: clamp(50px, 13vw, 85px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.03em;
  z-index: 3;
}

.cover-date {
  position: absolute;
  left: 50%;
  bottom: 5.8%;
  transform: translateX(-50%);
  width: max-content;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-block);
  font-size: clamp(42px, 5.8vw, 62px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 3;
}

/* Paper panels */

.content-panel,
.site-footer {
  background:
    linear-gradient(rgba(255, 253, 246, 0.9), rgba(255, 253, 246, 0.9)),
    url("images/background.png");
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100% auto;
}

.yellow-label {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 22px;
  padding: 8px 18px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-block);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.centered-label {
  margin-left: auto;
  margin-right: auto;
}
.itinerary-label {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
/* Itinerary */

.itinerary-section {
  display: grid;
  justify-items: stretch;
  padding: 54px 86px 38px;
}

.itinerary-section .yellow-label {
  justify-self: end;
  width: max-content;
  max-width: 100%;
  margin: 0 0 34px 0;
  white-space: nowrap;
}

.destination-lines {
  display: grid;
  gap: 8px;	
  width: fit-content;
  max-width: none;
  margin-left: auto;
  margin-right: 140px;
}

.destination-lines article {
  display: grid;
  grid-template-columns: 155px max-content;
  gap: 16px;
  align-items: baseline;
}

.destination-lines span {
  color: var(--ink);
  font-family: var(--font-block);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: right;
  text-transform: uppercase;
}

.destination-lines strong {
  color: var(--yellow);
  font-family: var(--font-script);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-shadow: 0.035em 0.045em 0 rgba(22, 75, 133, 0.58);
}

/* Lists */

.list-section {
  display: grid;
  gap: 34px;
  padding: 28px 86px 46px;
}

.list-section article {
  margin: 0;
  padding: 0;
}

.list-section .yellow-label {
  margin-bottom: 22px;
}

.list-section ul {
  margin: 0;
  padding-left: 24px;
}

.list-section li {
  margin-bottom: 7px;
  color: var(--green);
  font-family: var(--font-block);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.list-section a {
  color: var(--green);
  font-family: var(--font-block);
  font-weight: 800;
  text-decoration: underline;
}

/* Pricing */

.price-card {
  margin-top: 10px;
  padding: 0;
}

.blue-label {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 440px;
  margin: 0 auto 24px;
  padding: 7px 18px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-block);
  font-size: 26px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.price-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  max-width: 620px;
  margin: 0 auto 14px;
}

.price-tier {
  min-width: 0;
}

.price-row h2 {
  margin: 0;
  color: var(--yellow);
  font-family: var(--font-script);
  font-size: 50px;
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.03em;
  text-shadow: 0.035em 0.045em 0 rgba(22, 75, 133, 0.58);
}

.price-row p {
  margin: 4px 0 0;
  color: var(--green);
  font-family: var(--font-block);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-row strong {
  display: block;
  color: var(--blue);
  font-family: var(--font-fat-script);
  font-size: 54px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.price-row strong span {
  display: block;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
}

.fine-print {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--green);
  font-family: var(--font-block);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Contact */

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: center;
  padding: 12px 12px;
  background: var(--yellow);
}

.contact-card p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-block);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--blue-dark);
  font-family: var(--font-body);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}

.amuni {
  margin: 12px 0 0 auto;
  color: var(--yellow);
  font-family: var(--font-script);
  font-size: clamp(40px, 8.5vw, 75px);
  line-height: 0.9;
  text-align: right;
  text-shadow: 0.035em 0.045em 0 rgba(22, 75, 133, 0.58);
}

/* Hotels */

.hotels-section {
  margin-top: 64px;
  padding: clamp(46px, 6vw, 62px) clamp(36px, 6vw, 72px);
}

.hotels-title {
  margin: 0 0 26px;
  color: var(--blue);
  font-family: var(--font-fat-script);
  font-size: clamp(50px, 10vw, 80px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.03em;
  justify-self: center;
}

.hotel-list {
  display: grid;
  gap: 26px;
}

.hotel-list article {
  display: grid;
  gap: 2px;
  margin-left: 10%;
}

.hotel-list span {
  color: var(--ink);
  font-family: var(--font-block);
  font-size: clamp(18px, 4vw, 30px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hotel-list strong {
  color: var(--yellow);
  font-family: var(--font-script);
  font-size: clamp(32px, 8vw, 60px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.03em;
  text-shadow: 0.035em 0.045em 0 rgba(22, 75, 133, 0.58);
}

/* Footer */

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(36px, 6vw, 72px);
  color: var(--blue-dark);
  font-family: var(--font-block);
  font-size: clamp(15px, 1.9vw, 19px);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--yellow);
}

/* Responsive */

@media (max-width: 900px) {
  .corner-lemon {
    top: -46px;
    left: -42px;
    width: clamp(260px, 46vw, 440px);
  }

  .page {
    width: min(820px, calc(100% - 32px));
  }
}

@media (max-width: 700px) {
  .site-header {
    top: 16px;
    right: 14px;
    left: 14px;
    justify-content: flex-end;
  }

  .site-nav {
    font-size: 14px;
  }

  .site-nav a {
    min-height: 34px;
    padding: 7px 10px;
  }

  .page-shell {
    padding-top: 86px;
  }

  .page {
    width: min(100% - 28px, 760px);
  }

  .cover-poster {
    height: 760px;
  }

  .itinerary-panel {
    padding: 42px 32px 34px;
  }

  .itinerary-panel .yellow-label {
    justify-self: center;
    white-space: normal;
    text-align: center;
  }

  .destination-lines {
    max-width: 420px;
  }

  .destination-lines article {
    grid-template-columns: 120px 1fr;
    gap: 12px;
  }

  .destination-lines span {
    font-size: 24px;
  }

  .destination-lines strong {
    font-size: 52px;
  }

  .list-section {
    padding: 28px 32px 42px;
  }

  .price-row,
  .contact-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .price-row strong {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .corner-lemon {
    top: -30px;
    left: -34px;
    width: 250px;
  }

  .cover-poster {
    height: 620px;
  }

  .itinerary-panel,
  .list-section,
  .hotels-section,
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .destination-lines article {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .destination-lines span {
    text-align: left;
  }

  .destination-lines strong {
    font-size: 58px;
  }
}