@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 900;
  font-stretch: 75% 125%;
  font-display: swap;
  src: url("/assets/sunflower/fonts/archivo-latin-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/sunflower/fonts/libre-baskerville-latin-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Libre Baskerville";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/sunflower/fonts/libre-baskerville-latin-italic.woff2") format("woff2");
}

:root {
  --sf-yellow: #f2cf31;
  --sf-red: #c9472d;
  --sf-blue: #194b70;
  --sf-ink: #171914;
  --sf-paper: #f7f2e8;
  --sf-sand: #efe4d3;
  --sf-white: #fffdf7;
  --sf-line: 2px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--sf-ink);
  background: var(--sf-paper);
  font-family: "Archivo", Arial, sans-serif;
  font-variation-settings: "wdth" 96;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 5px;
}

.sf-skip {
  position: fixed;
  z-index: 100;
  top: -10rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  color: var(--sf-white);
  background: var(--sf-ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sf-skip:focus {
  top: 1rem;
}

.sf-hero {
  overflow: hidden;
  padding: 1.55rem 3vw 0;
  background: var(--sf-yellow);
}

.sf-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-bottom: 1.1rem;
  border-bottom: var(--sf-line) solid var(--sf-ink);
  font-size: clamp(0.62rem, 0.75vw, 0.75rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sf-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-block: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
}

.sf-brand__mark {
  width: 1.75rem;
  height: 1.75rem;
  overflow: visible;
  fill: var(--sf-ink);
}

.sf-nav__link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-self: end;
  padding-block: 0.85rem;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 180ms ease;
}

.sf-nav__link:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}

.sf-masthead {
  margin: clamp(3.8rem, 5vw, 6.5rem) 0 0 -0.018em;
  font-size: clamp(6.6rem, 19.2vw, 20rem);
  font-weight: 900;
  font-variation-settings: "wdth" 80;
  letter-spacing: -0.09em;
  line-height: 0.68;
  text-transform: uppercase;
  white-space: nowrap;
}

.sf-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr 1.2fr;
  gap: clamp(0.75rem, 1.25vw, 1.5rem);
  align-items: end;
  padding: clamp(2.75rem, 4.5vw, 5rem) 0 clamp(4rem, 5vw, 6rem);
}

.sf-hero__copy {
  align-self: end;
  padding: 0 clamp(0rem, 1.7vw, 2rem) 1.5rem 0;
}

.sf-eyebrow,
.sf-kicker {
  margin: 0;
  font-size: clamp(0.64rem, 0.7vw, 0.76rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.sf-hero__copy h1 {
  margin: 1.2rem 0 1.6rem;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 900;
  font-variation-settings: "wdth" 82;
  letter-spacing: -0.07em;
  line-height: 0.84;
  text-transform: uppercase;
}

.sf-hero__intro,
.sf-stay__description {
  max-width: 31rem;
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.6;
}

.sf-text-link {
  display: inline-flex;
  min-height: 2.75rem;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sf-hero__portrait,
.sf-hero__landscape {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #b59e70;
}

.sf-hero__portrait {
  height: clamp(26rem, 39vw, 38rem);
  border-radius: 50vw 50vw 0 0;
}

.sf-hero__landscape {
  height: clamp(20rem, 28vw, 28rem);
}

.sf-hero__portrait img,
.sf-hero__landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.sf-hero__portrait img {
  object-position: 50% 45%;
}

.sf-hero__landscape img {
  object-position: 55% 50%;
}

.sf-hero__portrait:hover img,
.sf-hero__landscape:hover img {
  transform: scale(1.025);
}

.sf-hero__portrait figcaption {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  display: grid;
  width: clamp(5.75rem, 8vw, 7.25rem);
  aspect-ratio: 1;
  place-content: center;
  border-radius: 50%;
  color: var(--sf-white);
  background: var(--sf-red);
  font-size: clamp(0.55rem, 0.65vw, 0.67rem);
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.sf-ticker {
  overflow: hidden;
  padding: 1rem 0;
  color: var(--sf-paper);
  background: var(--sf-ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sf-ticker div {
  width: max-content;
  animation: sf-marquee 24s linear infinite;
}

.sf-ticker span {
  padding: 0 1.8rem;
  color: var(--sf-yellow);
}

@keyframes sf-marquee {
  to { transform: translateX(-50%); }
}

.sf-intro {
  display: grid;
  grid-template-columns: minmax(12rem, 0.7fr) 2fr;
  gap: 7vw;
  padding: clamp(6rem, 9vw, 9rem) 5vw;
}

.sf-kicker {
  padding-top: 0.8rem;
}

.sf-intro h2 {
  margin: 0;
  font-size: clamp(3.2rem, 7.2vw, 7.25rem);
  font-weight: 900;
  font-variation-settings: "wdth" 83;
  letter-spacing: -0.068em;
  line-height: 0.86;
  text-transform: uppercase;
}

.sf-intro h2 em {
  color: var(--sf-red);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 0.88em;
  font-weight: 400;
  letter-spacing: -0.07em;
  text-transform: none;
}

.sf-stays {
  border-top: var(--sf-line) solid var(--sf-ink);
}

.sf-stay {
  display: grid;
  grid-template-columns: clamp(3.75rem, 6vw, 5.75rem) minmax(0, 1fr) minmax(0, 1fr);
  min-height: min(50rem, 92vh);
  border-bottom: var(--sf-line) solid var(--sf-ink);
}

.sf-stay__index {
  padding: 2rem 1.8rem;
  border-right: var(--sf-line) solid var(--sf-ink);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.sf-stay__image {
  padding: clamp(1rem, 2vw, 2rem);
  border-right: var(--sf-line) solid var(--sf-ink);
}

.sf-stay__image img {
  width: 100%;
  height: 100%;
  min-height: 37rem;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.03);
}

.sf-stay--fire {
  background: var(--sf-sand);
}

.sf-stay--fire .sf-stay__image img {
  object-position: 48% center;
}

.sf-stay--hyak {
  color: var(--sf-white);
  background: var(--sf-blue);
}

.sf-stay--hyak .sf-stay__image img {
  object-position: center;
}

.sf-stay__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2.6rem, 4vw, 4.5rem);
}

.sf-stay__copy h2 {
  margin: clamp(1.5rem, 2vw, 2rem) 0;
  font-size: clamp(4rem, 7.7vw, 8rem);
  font-weight: 900;
  font-variation-settings: "wdth" 80;
  letter-spacing: -0.08em;
  line-height: 0.77;
  text-transform: uppercase;
}

.sf-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: clamp(2rem, 3vw, 3rem) 0 0;
  padding: 0;
  list-style: none;
}

.sf-facts li {
  padding: 0.58rem 0.75rem;
  border: 1px solid currentColor;
  border-radius: 10rem;
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sf-visit {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
  padding: 1rem 0 0.75rem;
  border-bottom: 5px solid;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: padding 180ms ease;
}

.sf-visit span:last-child {
  font-size: 1.75em;
  line-height: 1;
}

.sf-visit:hover {
  padding-right: 0.65rem;
}

.sf-stay--hyak .sf-visit {
  color: var(--sf-yellow);
}

.sf-footer {
  padding: clamp(6rem, 8vw, 9rem) 4vw 3.25rem;
  color: var(--sf-white);
  background: var(--sf-red);
}

.sf-footer h2 {
  margin: 0;
  font-size: clamp(5rem, 13vw, 13rem);
  font-weight: 900;
  font-variation-settings: "wdth" 80;
  letter-spacing: -0.078em;
  line-height: 0.73;
  text-transform: uppercase;
}

.sf-footer__bottom {
  display: flex;
  gap: 3rem;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: clamp(4rem, 7vw, 7rem);
  padding-top: 1.4rem;
  border-top: var(--sf-line) solid currentColor;
}

.sf-footer__bottom p {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1rem, 1.6vw, 1.45rem);
}

.sf-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-end;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sf-footer__links a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  border-bottom: 1px solid transparent;
}

.sf-footer__links a:hover {
  border-color: currentColor;
}

.sf-not-found {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 4vw, 4rem);
  background: var(--sf-yellow);
}

.sf-not-found > div {
  max-width: 54rem;
}

.sf-not-found h1 {
  margin: 1.5rem 0 2rem;
  font-size: clamp(5rem, 15vw, 13rem);
  font-weight: 900;
  font-variation-settings: "wdth" 80;
  letter-spacing: -0.08em;
  line-height: 0.72;
  text-transform: uppercase;
}

.sf-not-found p:not(.sf-eyebrow) {
  max-width: 36rem;
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1rem;
  line-height: 1.6;
}

.sf-not-found .sf-visit {
  max-width: 36rem;
}

@media (max-width: 900px) {
  .sf-masthead {
    font-size: 19.5vw;
  }

  .sf-hero__grid {
    grid-template-columns: 1fr 1fr;
  }

  .sf-hero__copy {
    grid-column: 1 / -1;
    max-width: 42rem;
  }

  .sf-hero__portrait {
    height: 31rem;
  }

  .sf-hero__landscape {
    height: 23rem;
  }

  .sf-stay {
    grid-template-columns: 3.25rem minmax(0, 1fr);
  }

  .sf-stay__index {
    grid-row: 1 / 3;
    padding: 1.5rem 1rem;
  }

  .sf-stay__image,
  .sf-stay__copy {
    grid-column: 2;
  }

  .sf-stay__image {
    border-right: 0;
    border-bottom: var(--sf-line) solid var(--sf-ink);
  }

  .sf-stay__image img {
    min-height: 32rem;
    max-height: 42rem;
  }
}

@media (max-width: 620px) {
  .sf-hero {
    padding-inline: 1rem;
  }

  .sf-nav {
    grid-template-columns: 1fr auto;
  }

  .sf-nav__place {
    display: none;
  }

  .sf-brand {
    justify-self: start;
    font-size: 0.76rem;
  }

  .sf-brand__mark {
    width: 1.5rem;
  }

  .sf-nav__link {
    font-size: 0.75rem;
  }

  .sf-masthead {
    margin-top: 3.2rem;
    font-size: 19.3vw;
  }

  .sf-hero__grid {
    gap: 0.6rem;
    padding-top: 2.5rem;
  }

  .sf-hero__copy h1 {
    margin-top: 1rem;
    font-size: clamp(3.1rem, 15vw, 4.6rem);
  }

  .sf-hero__intro {
    font-size: 1rem;
  }

  .sf-text-link {
    margin-top: 1.5rem;
  }

  .sf-hero__portrait {
    height: 19rem;
  }

  .sf-hero__landscape {
    height: 14rem;
  }

  .sf-hero__portrait figcaption {
    right: 0.7rem;
    bottom: 0.7rem;
    width: 4.9rem;
    font-size: 0.48rem;
  }

  .sf-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 5rem 1.25rem;
  }

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

  .sf-stay {
    grid-template-columns: 2.7rem minmax(0, 1fr);
  }

  .sf-stay__index {
    padding: 1.25rem 0.8rem;
    font-size: 0.58rem;
  }

  .sf-stay__image {
    padding: 0.85rem;
  }

  .sf-stay__image img {
    min-height: 23rem;
    max-height: 30rem;
  }

  .sf-stay__copy {
    padding: 2.6rem 1.25rem 3.2rem;
  }

  .sf-stay__copy h2 {
    font-size: clamp(3.7rem, 19vw, 5.6rem);
  }

  .sf-stay__description {
    font-size: 1rem;
  }

  .sf-footer {
    padding-inline: 1.25rem;
  }

  .sf-footer h2 {
    font-size: clamp(4.4rem, 21vw, 7rem);
  }

  .sf-footer__bottom {
    display: block;
  }

  .sf-footer__links {
    justify-content: flex-start;
    margin-top: 2rem;
  }
}

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

  .sf-ticker div {
    animation: none;
  }

  .sf-nav__link,
  .sf-hero__portrait img,
  .sf-hero__landscape img,
  .sf-visit {
    transition: none;
  }
}
