:root {
  --paper: #fbf8f2;
  --cream: #f2ece1;
  --stone: #e4ddd1;
  --sage: #cdd5c5;
  --olive: #4f5d46;
  --olive-dark: #303b31;
  --ink: #252b26;
  --muted: #63685f;
  --white: #fffefa;
  --accent: #8a513a;
  --line: rgba(37, 43, 38, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  translate: 0 -200%;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  translate: 0;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.site-header :focus-visible,
.hero :focus-visible,
.section--olive :focus-visible {
  outline-color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--olive-dark);
  color: var(--white);
}

.site-header__inner {
  display: grid;
  gap: 0.45rem;
  padding-block: 0.65rem;
}

.brand {
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  justify-self: center;
  padding-inline: 0.5rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  line-height: 1;
  text-decoration: none;
}

.brand span {
  color: var(--sage);
  font-style: italic;
}

.nav-list {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.25rem;
  font-size: clamp(0.68rem, 3vw, 0.8rem);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav-list a:hover {
  text-decoration: underline;
  text-underline-offset: 0.35em;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: min(48rem, calc(100svh - 5.5rem));
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(205, 213, 197, 0.24) 0 14%, transparent 14.2%),
    radial-gradient(circle at 82% 26%, transparent 0 21%, rgba(205, 213, 197, 0.12) 21.2% 21.5%, transparent 21.7%),
    linear-gradient(145deg, var(--olive-dark), #455143 58%, #6b745f);
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: -5rem;
  bottom: -8rem;
  z-index: -1;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(5rem, 16vh, 9rem);
}

.hero__names {
  margin-bottom: clamp(2rem, 8vh, 5rem);
  color: var(--sage);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 4vw, 1.5rem);
  letter-spacing: 0.12em;
}

.hero h1,
.section-heading h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
}

.hero h1 {
  max-width: 9ch;
  margin-bottom: 1rem;
  font-size: clamp(3.6rem, 15vw, 8rem);
  letter-spacing: -0.045em;
}

.hero__date {
  margin-bottom: 2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__date a {
  text-underline-offset: 0.3em;
}

.hero__intro {
  max-width: 38rem;
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 4.8vw, 1.65rem);
  line-height: 1.5;
}

.arrival-note {
  max-width: 34rem;
  margin-bottom: 2rem;
  padding: 1rem 0 1rem 1rem;
  border-left: 1px solid var(--sage);
  color: rgba(255, 254, 250, 0.88);
  font-size: 0.92rem;
}

.arrival-note span {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--sage);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.5rem;
  color: var(--olive-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.4em;
}

.text-link--light {
  color: var(--white);
}

.section {
  padding-block: clamp(4.5rem, 11vw, 8rem);
  scroll-margin-top: 6rem;
}

.section--paper {
  background: var(--paper);
}

.section--stone {
  background: var(--cream);
}

.section--olive {
  background: var(--olive-dark);
  color: var(--white);
}

.section-heading {
  max-width: 43rem;
  margin-bottom: clamp(2.5rem, 7vw, 4.5rem);
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--olive);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.75rem, 10vw, 5.5rem);
  letter-spacing: -0.035em;
}

.section-heading > p:last-child,
.section-heading--split > p {
  max-width: 35rem;
  color: var(--muted);
}

.weekend {
  display: grid;
  gap: 1rem;
}

.day-card {
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid var(--line);
}

.day-card--arrival {
  align-self: start;
  background: var(--cream);
}

.day-card--wedding {
  background: var(--white);
}

.day-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.day-card__date {
  margin-bottom: 1.75rem;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.day-card__date span {
  display: block;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.day-card h3,
.location-card h3,
.hotel-card h3,
.shuttle-details h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
}

.day-card h3 {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
}

.status {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  gap: 0.35rem;
  padding: 0 0 1.75rem 1.5rem;
  border-left: 1px solid var(--stone);
}

.timeline li::before {
  position: absolute;
  top: 0.55rem;
  left: -0.3rem;
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--olive);
  content: "";
}

.timeline li:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.timeline li > span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.timeline strong,
.timeline div span {
  display: block;
}

.timeline div span {
  color: var(--muted);
  font-size: 0.9rem;
}

.planning-note {
  margin: 2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.location-grid,
.hotel-grid {
  display: grid;
  gap: 1rem;
}

.location-card {
  position: relative;
  min-height: 25rem;
  padding: clamp(1.75rem, 6vw, 3.5rem);
  overflow: hidden;
  background: var(--white);
}

.location-card--dark {
  background: var(--olive);
  color: var(--white);
}

.location-card__number {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  color: rgba(37, 43, 38, 0.08);
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 1;
}

.location-card--dark .location-card__number {
  color: rgba(255, 255, 255, 0.08);
}

.location-card h3 {
  position: relative;
  max-width: 13ch;
  margin: 2.5rem 0 2rem;
  font-size: clamp(2rem, 7vw, 3.3rem);
}

.location-card address,
.location-card__place {
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.location-card > p:not(.eyebrow, .location-card__number, .location-card__place, .planning-note) {
  max-width: 33rem;
}

.location-card--dark .eyebrow,
.section-heading--light .eyebrow {
  color: var(--sage);
}

.planning-note--dark {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.76);
}

.booking-note {
  margin-bottom: 2rem;
  padding: 1.25rem;
  border-left: 3px solid var(--olive);
  background: var(--cream);
}

.booking-note p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hotel-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(1.35rem, 4.5vw, 2.25rem);
  border: 1px solid var(--line);
  background: var(--white);
}

.hotel-card--featured {
  background: var(--cream);
}

.hotel-card__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.hotel-card__place {
  margin-bottom: 0.35rem;
  color: var(--olive);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hotel-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.55rem, 5vw, 2.1rem);
}

.price {
  flex: 0 0 auto;
  color: var(--olive);
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}

.hotel-card__intro {
  color: var(--muted);
}

.facts {
  margin: 0 0 1.25rem;
}

.facts div {
  display: grid;
  gap: 0.2rem;
  padding-block: 0.65rem;
  border-top: 1px solid var(--line);
}

.facts dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
  font-size: 0.91rem;
}

.hotel-card .text-link {
  margin-top: auto;
}

.shuttle-layout {
  display: grid;
  gap: 2.5rem;
}

.section-heading--light {
  margin-bottom: 0;
}

.section-heading--light > p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.status--light {
  margin-bottom: 1.5rem;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--sage);
}

.stops {
  margin: 0;
  padding: 0;
  list-style: none;
}

.stops li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding-block: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stops li > span {
  color: var(--sage);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.stops strong,
.stops p {
  display: block;
  margin: 0;
}

.stops p {
  color: rgba(255, 255, 255, 0.7);
}

.shuttle-details {
  padding: clamp(1.5rem, 5vw, 2.5rem);
  background: rgba(255, 255, 255, 0.08);
}

.shuttle-details h3 {
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
}

.shuttle-details ul {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
}

.shuttle-details li + li {
  margin-top: 0.65rem;
}

.shuttle-details > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.site-footer {
  padding-block: 4rem;
  background: var(--paper);
  text-align: center;
}

.site-footer__inner {
  display: grid;
  justify-items: center;
}

.site-footer__names {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3.5rem);
}

.site-footer__date {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a {
  min-height: 2.75rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-underline-offset: 0.35em;
}

@media (min-width: 48rem) {
  .shell {
    width: min(calc(100% - 4rem), var(--max-width));
  }

  .site-header__inner {
    display: flex;
    min-height: 4.5rem;
    align-items: center;
    justify-content: space-between;
    padding-block: 0;
  }

  .brand {
    justify-self: auto;
  }

  .nav-list {
    display: flex;
    gap: 1.5rem;
  }

  .nav-list a {
    padding-inline: 0.25rem;
    font-size: 0.76rem;
  }

  .hero {
    min-height: min(52rem, calc(100svh - 4.5rem));
  }

  .hero__inner {
    padding-left: 6vw;
  }

  .section-heading--split {
    display: grid;
    max-width: none;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
    gap: 3rem;
  }

  .section-heading--split h2 {
    margin-bottom: 0;
  }

  .weekend {
    grid-template-columns: minmax(14rem, 0.65fr) minmax(0, 1.35fr);
    align-items: start;
  }

  .timeline li {
    grid-template-columns: 9rem 1fr;
    gap: 1.5rem;
    padding-left: 2rem;
  }

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

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

  .hotel-card--featured {
    grid-column: span 2;
  }

  .facts div {
    grid-template-columns: 6.5rem 1fr;
    gap: 1rem;
  }

  .shuttle-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .shuttle-layout .section-heading {
    grid-column: 1 / -1;
  }
}

@media (min-width: 68rem) {
  .hotel-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .hotel-card {
    grid-column: span 3;
  }

  .hotel-card--featured {
    grid-column: span 2;
  }

  .hotel-card:nth-child(4),
  .hotel-card:nth-child(5) {
    grid-column: span 2;
  }

  .shuttle-layout {
    grid-template-columns: 0.9fr 1fr 1.1fr;
    gap: 4rem;
  }

  .shuttle-layout .section-heading {
    grid-column: auto;
  }
}

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