@font-face {
  font-family: "Amarante";
  src: url("Fonts/Amarante/Amarante-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f4f0e6;
  --paper-light: #fbf8f0;
  --ink: #173147;
  --blue: #356e9b;
  --muted: #667076;
  --line: rgba(23, 49, 71, 0.24);
  --flower-blue-stem: url("Pictures/Layout_Inspo/watercolor_images/blue-flower-drawn-with-watercolor-and-line-art-vector.jpg");
  --flower-blue-cluster: url("Pictures/Layout_Inspo/watercolor_images/colorful-flower-drawn-in-watercolor-and-outline-vector.jpg");
  --flower-pink-cluster: url("Pictures/Layout_Inspo/watercolor_images/watercolor-flowers-vector.jpg");
  --content-width: 1180px;
  --display: "Amarante", Georgia, "Times New Roman", serif;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: inherit;
}

::selection {
  background: #b9d3e2;
  color: var(--ink);
}

.site-header,
main,
.site-footer {
  width: min(calc(100% - 64px), var(--content-width));
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) 1fr;
  align-items: center;
  gap: 48px;
  min-height: 108px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  width: max-content;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  text-decoration: none;
}

.wordmark sup {
  position: relative;
  top: -0.15em;
  font-size: 0.58em;
  line-height: 0;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px clamp(18px, 3vw, 42px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.25);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a[target="_blank"] {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 0 4px;
  border-bottom: 1px solid currentColor;
  transition: color 160ms ease;
}

.site-nav a[target="_blank"]::after {
  position: static;
  display: block;
  width: auto;
  height: auto;
  background: none;
  content: "\2192";
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  opacity: 1;
  transform: none;
}

.site-nav a[target="_blank"]:hover {
  color: var(--blue);
}

.site-nav a:focus-visible,
.wordmark:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 5px;
}

/* Home */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
  column-gap: clamp(44px, 8vw, 112px);
  row-gap: 28px;
  min-height: calc(100vh - 108px);
  padding: 72px 0 92px;
}

.hero > div {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  z-index: 2;
  padding: 48px 0 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
}

.hero h1 {
  max-width: 7ch;
  margin: 0 0 30px;
  font-size: clamp(60px, 7.1vw, 104px);
  letter-spacing: -0.055em;
}

.intro {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  padding: 10px 0 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, gap 160ms ease;
}

.button::after {
  content: "\2192";
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}

.button:hover {
  gap: 34px;
  color: var(--blue);
}

.hero-image {
  grid-column: 2;
  grid-row: 1;
  display: block;
  width: min(100%, 680px);
  aspect-ratio: 1;
  justify-self: center;
  object-fit: cover;
  object-position: center 68%;
  border-radius: 50%;
  filter: saturate(0.78) contrast(0.96);
}

/* Interior pages */
main:has(.page-header) {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 10vw, 148px);
  padding: clamp(76px, 11vw, 142px) 0 112px;
}

.page-header {
  display: flex;
  flex-direction: column;
  align-self: start;
  min-height: 430px;
}

.page-header::after {
  align-self: flex-end;
  width: var(--flower-size, clamp(150px, 17vw, 230px));
  aspect-ratio: 1;
  margin-top: clamp(34px, 5vw, 64px);
  margin-right: var(--flower-right, 0);
  background: var(--page-flower, var(--flower-blue-stem)) center / contain no-repeat;
  content: "";
  mix-blend-mode: multiply;
  opacity: var(--flower-opacity, 0.62);
  pointer-events: none;
  transform: rotate(var(--flower-rotation, -10deg));
}

/* Each page gets a related, but not identical, botanical mark. */
body:has(.site-nav a[href="timeline.html"][aria-current="page"]) {
  --page-flower: var(--flower-blue-cluster);
  --flower-right: -12px;
  --flower-size: clamp(165px, 18vw, 245px);
  --flower-rotation: 3deg;
}

body:has(.site-nav a[href="faq.html"][aria-current="page"]) {
  --page-flower: var(--flower-pink-cluster);
  --flower-right: -18px;
  --flower-size: clamp(170px, 19vw, 255px);
  --flower-rotation: 7deg;
  --flower-opacity: 0.56;
}

body:has(.site-nav a[href="location.html"][aria-current="page"]) {
  --page-flower: var(--flower-blue-stem);
  --flower-right: 8px;
  --flower-rotation: -13deg;
}

body:has(.site-nav a[href="recommendations.html"][aria-current="page"]) {
  --page-flower: var(--flower-blue-cluster);
  --flower-right: -8px;
  --flower-size: clamp(165px, 18vw, 245px);
  --flower-rotation: -4deg;
  --flower-opacity: 0.58;
}

.page-header h1 {
  position: relative;
  z-index: 1;
  max-width: 7ch;
  margin: 0;
  font-size: clamp(54px, 7vw, 94px);
  letter-spacing: -0.055em;
}

body:has(.site-nav a[href="recommendations.html"][aria-current="page"]) .page-header h1 {
  max-width: 100%;
  font-size: clamp(36px, 3.7vw, 44px);
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.page-content {
  min-width: 0;
  padding-top: 16px;
}

.stay-option,
.day,
.faq-item,
.recommendation {
  position: relative;
}

.stay-option + .stay-option::before,
.day + .day::before,
.faq-item + .faq-item::before,
.recommendation + .recommendation::before {
  position: absolute;
  top: 0;
  left: 50%;
  color: var(--ink);
  content: "\2726";
  font-size: 11px;
  line-height: 1;
  opacity: 0.8;
  transform: translate(-50%, -50%);
}

.stay-option {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px 34px;
  padding: 34px 0 72px;
}

.stay-option + .stay-option {
  padding-top: 34px;
}

.stay-option img {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  filter: saturate(0.72) contrast(0.94);
}

.stay-option h2,
.day h2,
.faq-item h2,
.notice h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.recommendation p {
  margin: 0 0 12px;
  color: var(--muted);
}

.recommendation p:last-child {
  margin-bottom: 0;
}

.stay-option {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px 34px;
  padding: 34px 0 72px;
}

.stay-option + .stay-option {
  padding-top: 34px;
}

.stay-option img {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  filter: saturate(0.72) contrast(0.94);
}

.stay-option .stay-image-portrait {
  width: min(56%, 396px);
}

.recommendation {
  padding: 34px 0 56px;
}

.recommendation img {
  display: block;
  width: min(80%, 520px);
  height: auto;
  margin-bottom: 24px;
}

.recommendation .recommendation-image-portrait {
  width: min(60%, 340px);
}

.recommendation h2 {
  margin: 0 0 16px;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.stay-option h2,
.day h2,
.faq-item h2,
.notice h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.stay-option p {
  max-width: 570px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.day {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 10px 34px;
  padding: 34px 0 52px;
}

.day h2 {
  grid-column: 1 / -1;
}

.day-location {
  grid-column: 1;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.timeline {
  grid-column: 2;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 20px;
  padding: 9px 0;
}

.time {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.faq-item {
  display: grid;
  grid-template-columns: minmax(200px, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  padding: 34px 0 42px;
}

.faq-item h2 {
  font-size: 23px;
  line-height: 1.2;
}

.faq-item p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.notice {
  padding: 40px 0 48px;
}

.notice h2 {
  max-width: 14ch;
  font-size: clamp(34px, 4vw, 52px);
}

.notice p {
  margin: 20px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 28px 0;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 820px) {
  .site-header,
  main,
  .site-footer {
    width: min(calc(100% - 40px), var(--content-width));
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 0 26px;
  }

  .site-nav ul {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    row-gap: 22px;
    min-height: 0;
    padding: 54px 0 72px;
  }

  .hero > div {
    grid-column: 1;
    grid-row: 1;
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(55px, 16vw, 82px);
  }

  .hero-image {
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 680px);
  }

  main:has(.page-header) {
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 62px 0 80px;
  }

  .page-header {
    min-height: 250px;
  }

  .page-header::after {
    width: 170px;
    margin-top: 28px;
    margin-right: 4vw;
  }

  .page-content {
    padding-top: 0;
  }
}

@media (max-width: 560px) {
  .site-nav ul {
    gap: 8px 18px;
  }

  .site-nav a {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .hero h1,
  .page-header h1 {
    letter-spacing: -0.045em;
  }

  .stay-option,
  .day,
  .faq-item {
    grid-template-columns: 1fr;
  }

  .stay-option img,
  .day h2,
  .day-location,
  .timeline {
    grid-column: 1;
  }

  .timeline li {
    grid-template-columns: 105px 1fr;
  }

  .faq-item {
    gap: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
