@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/BarlowCondensed-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-weight: 600;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/BarlowCondensed-Bold.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("assets/fonts/NunitoSans.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Yellowtail";
  src: url("assets/fonts/Yellowtail.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Zilla Slab";
  src: url("assets/fonts/ZillaSlab-Bold.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
}

:root {
  --navy: #07364b;
  --navy-deep: #062d40;
  --cream: #f6f3e7;
  --cream-green: #edf4e7;
  --ink: #07364b;
  --white: #fffdf5;
  --green: #84b748;
  --orange: #e87446;
  --blue: #2e7392;
  --charcoal: #292d2a;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--charcoal);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.gtm-noscript {
  display: none;
  visibility: hidden;
}

.wrap {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.hero {
  min-height: 1000px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 41, 58, .97) 0%, rgba(3, 41, 58, .91) 36%, rgba(3, 41, 58, .4) 69%, rgba(3, 41, 58, .12) 100%),
    linear-gradient(0deg, rgba(3, 41, 58, .62), transparent 38%),
    url("assets/hero.webp") center / cover no-repeat;
}

.site-nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .34);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .025em;
}

.nav-links a {
  text-decoration: none;
  padding-block: 10px;
}

.nav-links a:hover,
.nav-links a:focus-visible { text-decoration: underline; text-underline-offset: 5px; }

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 74px;
}

.eyebrow,
.card-number,
.address,
dt {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: .77rem;
}

.eyebrow.light { color: rgba(255, 255, 255, .83); }

.hero h1 {
  margin: 0;
  max-width: 700px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(5.2rem, 8.25vw, 8.65rem);
  font-weight: 700;
  line-height: .77;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.script {
  color: var(--green);
  font-family: "Yellowtail", cursive;
  font-size: .74em;
  font-weight: 400;
  line-height: .72;
  text-transform: none;
}

.hero-copy {
  max-width: 625px;
  margin: 42px 0 36px;
  font-size: 1.08rem;
  line-height: 1.7;
}

.event-facts {
  width: min(620px, 100%);
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, .3);
  border-left: 1px solid rgba(255, 255, 255, .3);
}

.event-facts div {
  padding: 17px 20px 18px;
  border-right: 1px solid rgba(255, 255, 255, .3);
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.event-facts dt {
  font-size: .62rem;
  color: rgba(255, 255, 255, .7);
}

.event-facts dd {
  margin: 3px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 22px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .015em;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); }

.button.green { color: var(--navy); background: var(--green); }
.button.green:hover,
.button.green:focus-visible { background: #9ccc5c; }

.button.outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .85);
  background: rgba(6, 45, 64, .16);
}

.button.outline-light:hover,
.button.outline-light:focus-visible { color: var(--navy); background: var(--white); }

.button.navy { color: var(--white); background: var(--navy); }

.address {
  margin: 16px 0 0;
  font-size: .68rem;
}

.photo-credit {
  position: absolute;
  right: 30px;
  bottom: 20px;
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: .62rem;
}

.intro {
  background: var(--cream);
  padding: 118px 0 124px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(300px, .95fr);
  gap: 98px;
  align-items: start;
}

h2,
h3 { text-wrap: balance; }

.intro h2,
.plan h2,
.section-heading h2,
.getaway h2,
.closing-card h2 {
  margin: 0;
  font-family: "Zilla Slab", Georgia, serif;
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.025em;
}

.intro h2 { font-size: clamp(3rem, 5vw, 5rem); }

.intro-copy {
  padding-top: 12px;
  font-size: 1rem;
  line-height: 1.72;
}

.intro-copy .rule {
  display: block;
  width: 100%;
  height: 5px;
  margin-bottom: 34px;
  background: var(--green);
}

.intro-copy p { margin: 0 0 20px; }

.experience {
  color: var(--white);
  background: var(--navy);
  padding: 110px 0 128px;
}

.section-heading {
  display: grid;
  grid-template-columns: .72fr 1.4fr;
  gap: 54px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading .eyebrow { margin-bottom: 10px; color: #77bada; }
.section-heading h2 { font-size: clamp(3.3rem, 5.8vw, 5.7rem); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.experience-card {
  min-width: 0;
  background: #0c425b;
}

.experience-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.16;
  object-fit: cover;
}

.experience-card:nth-child(1) img { object-position: 22% center; }
.experience-card:nth-child(2) img { object-position: 45% 48%; }
.experience-card:nth-child(3) img { object-position: 46% center; }

.card-body { padding: 28px 28px 34px; }
.card-number { margin: 0 0 10px; color: #6db9dc; font-size: .7rem; }
.card-body h3 {
  margin: 0 0 12px;
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 1.85rem;
  line-height: 1.02;
}
.card-body p:last-child { margin: 0; color: rgba(255, 255, 255, .76); font-size: .91rem; }

.plan {
  background: var(--cream-green);
  padding: 116px 0 122px;
}

.plan-grid {
  display: grid;
  grid-template-columns: .72fr 1.35fr;
  gap: 96px;
  align-items: center;
}

.pawpaw-block {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  padding: 7% 8%;
  color: var(--white);
  background: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(5.5rem, 10vw, 9.7rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .69;
  text-transform: uppercase;
}

.pawpaw-block span { position: relative; z-index: 1; display: block; }
.pawpaw-block i {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  right: -29%;
  bottom: -33%;
  border-radius: 50%;
  background: var(--green);
}

.plan h2 { margin-bottom: 42px; font-size: clamp(3rem, 5vw, 4.8rem); }

.plan-list { margin: 0 0 34px; border-top: 1px solid rgba(7, 54, 75, .25); }
.plan-list div {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(7, 54, 75, .25);
}
.plan-list dt { font-size: .65rem; }
.plan-list dd { margin: 0; font-size: .94rem; font-weight: 700; }

.dark-buttons { gap: 22px; }
.text-link {
  font-family: "Barlow Condensed", sans-serif;
  font-size: .86rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.fine-print { margin: 22px 0 0; color: rgba(7, 54, 75, .67); font-size: .72rem; }

.getaway {
  color: var(--white);
  background: var(--blue);
  padding: 118px 0;
}

.getaway-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 110px;
  align-items: center;
}

.getaway h2 { font-size: clamp(3.5rem, 5.4vw, 5.7rem); }
.blue-script { color: #63bde7; }
.getaway-grid > div p { max-width: 520px; margin: 0 0 30px; font-size: 1.02rem; line-height: 1.7; }

.closing {
  color: var(--white);
  background: var(--charcoal);
  padding: 108px 0 38px;
}

.closing-card {
  width: min(980px, calc(100% - 64px));
  min-height: 380px;
  margin: 0 auto 78px;
  padding: 68px 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
}

.closing-card .script { font-size: 5.2rem; }
.closing-card h2 { margin: 12px 0 34px; font-size: clamp(3.2rem, 6vw, 5.8rem); text-transform: uppercase; }
.closing-card p {
  margin: 0;
  color: #65b6da;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.footer {
  min-height: 118px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .24);
}

.footer > *:last-child { justify-self: end; }
.footer img { display: block; object-fit: contain; }
.footer-vnwil { width: 92px; height: 66px; object-position: left center; }
.footer-enjoy { width: 124px; height: 68px; object-position: right center; }
.footer-link {
  justify-self: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-underline-offset: 5px;
}

.presented { margin: 22px 0 0; text-align: center; color: rgba(255, 255, 255, .45); font-size: .65rem; }

@media (max-width: 900px) {
  .wrap { width: min(100% - 40px, 700px); }
  .hero {
    min-height: 1100px;
    background:
      linear-gradient(0deg, rgba(3, 41, 58, .98) 0%, rgba(3, 41, 58, .91) 48%, rgba(3, 41, 58, .32) 100%),
      url("assets/hero.webp") 66% top / auto 49% no-repeat,
      var(--navy);
  }
  .site-nav { align-items: flex-start; height: auto; padding: 22px 0; }
  .nav-links { display: none; }
  .brand { font-size: .82rem; }
  .brand img { width: 36px; height: 36px; }
  .hero-content { padding-top: 275px; }
  .hero h1 { font-size: clamp(4.8rem, 19vw, 7.6rem); }
  .hero-copy { margin-top: 34px; }
  .intro-grid,
  .plan-grid,
  .getaway-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 52px; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .card-grid { grid-template-columns: 1fr; gap: 24px; }
  .experience-card img { aspect-ratio: 1.35; }
  .plan-grid { gap: 64px; }
  .pawpaw-block { width: min(460px, 100%); font-size: clamp(6.4rem, 31vw, 10rem); }
  .getaway-grid { gap: 44px; }
}

@media (max-width: 560px) {
  .wrap { width: calc(100% - 36px); }
  .hero { min-height: 1230px; }
  .hero-content { padding-top: 250px; }
  .hero h1 { font-size: clamp(4rem, 20.3vw, 5.7rem); }
  .hero-copy { font-size: .98rem; line-height: 1.62; }
  .event-facts { grid-template-columns: 1fr; }
  .event-facts div { padding: 13px 16px 14px; }
  .button-row .button { width: 100%; }
  .photo-credit { right: 16px; bottom: 10px; }
  .intro,
  .experience,
  .plan,
  .getaway { padding: 82px 0; }
  .intro h2 { font-size: 3rem; }
  .intro-grid { gap: 38px; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2 { font-size: 3.25rem; }
  .experience-card img { aspect-ratio: 1.14; }
  .card-body { padding: 24px; }
  .plan-grid { gap: 46px; }
  .plan h2 { font-size: 3.25rem; }
  .plan-list div { grid-template-columns: 1fr; gap: 2px; }
  .dark-buttons { align-items: flex-start; }
  .getaway h2 { font-size: 3.45rem; }
  .closing { padding-top: 64px; }
  .closing-card {
    width: calc(100% - 36px);
    min-height: 0;
    margin-bottom: 58px;
    padding: 54px 28px;
  }
  .closing-card .script { font-size: 3.8rem; }
  .closing-card h2 { font-size: 2.8rem; }
  .closing-card p { font-size: 1.05rem; }
  .footer { grid-template-columns: 1fr 1fr; gap: 18px; padding: 24px 0; }
  .footer .footer-link { grid-column: 1 / -1; grid-row: 1; }
  .footer > *:last-child { justify-self: end; }
  .footer-vnwil { width: 74px; }
  .footer-enjoy { width: 100px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
