:root {
  color-scheme: light;
  --paper: #f7f1e7;
  --paper-soft: #fffaf2;
  --ink: #2a1c16;
  --muted: #6f5a4b;
  --brick: #8b3f2d;
  --leaf: #4f6f4a;
  --pool: #65afc1;
  --glow: #d99b45;
  --dark: #1f1712;
  --line: rgba(42, 28, 22, 0.16);
  --shadow: 0 18px 46px rgba(42, 28, 22, 0.16);
  --radius: 8px;
  --page-pad: 20px;
  --section-gap: 76px;
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 30;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--paper-soft);
  color: var(--ink);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px var(--page-pad);
  color: #fffaf2;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(42, 28, 22, 0.12);
  background: rgba(247, 241, 231, 0.92);
  box-shadow: 0 8px 28px rgba(42, 28, 22, 0.08);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
  font-weight: 700;
}

.brand__mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 18px;
  line-height: 1;
}

.brand__text {
  font-size: 15px;
}

.site-nav {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  font-size: 14px;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  padding: 5px 0;
  border-bottom: 1px solid transparent;
  opacity: 0.9;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: currentColor;
  opacity: 1;
}

.hero {
  position: relative;
  display: grid;
  min-height: 82vh;
  overflow: hidden;
  background: var(--dark);
}

.hero__image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-position: center 42%;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 23, 18, 0.24), rgba(31, 23, 18, 0.12) 36%, rgba(31, 23, 18, 0.72)),
    linear-gradient(90deg, rgba(31, 23, 18, 0.5), rgba(31, 23, 18, 0.08) 70%);
}

.hero__content {
  position: relative;
  align-self: end;
  width: min(100%, 620px);
  padding: 120px var(--page-pad) 86px;
  color: #fffaf2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brick);
  font-size: 13px;
  font-weight: 700;
}

.hero .eyebrow,
.visit-panel .eyebrow {
  color: #f4c879;
}

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

h1,
h2,
h3 {
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 52px;
}

h2 {
  margin-bottom: 18px;
  font-size: 32px;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.hero__lead {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: 17px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 250, 242, 0.56);
  border-radius: 6px;
  background: rgba(255, 250, 242, 0.1);
  color: #fffaf2;
  font-size: 13px;
  line-height: 1.4;
  backdrop-filter: blur(8px);
}

.scroll-cue {
  position: absolute;
  right: var(--page-pad);
  bottom: 24px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, 0.64);
  border-radius: 50%;
  color: #fffaf2;
}

.scroll-cue span {
  width: 9px;
  height: 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translate(-1px, -2px);
}

.section {
  padding: var(--section-gap) var(--page-pad) 0;
}

.intro {
  padding-top: 54px;
}

.intro__inner,
.section-heading,
.space-grid,
.detail-strip,
.cats,
.drink-grid,
.outside__grid,
.visit-panel {
  width: min(100%, var(--content));
  margin-inline: auto;
}

.intro__inner {
  padding: 26px 0 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro__lead {
  margin-bottom: 0;
  max-width: 820px;
  color: var(--ink);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
  font-size: 25px;
  line-height: 1.65;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading--center {
  text-align: left;
}

.section-heading h2,
.cats__copy h2,
.outside__copy h2,
.visit-panel h2 {
  color: var(--ink);
}

.section-heading p:not(.eyebrow),
.cats__copy p,
.outside__copy p {
  color: var(--muted);
}

.space-grid {
  display: grid;
  gap: 14px;
}

.photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dac9b7;
  box-shadow: var(--shadow);
}

.photo img {
  height: 100%;
  transition: transform 420ms ease;
}

.photo:hover img {
  transform: scale(1.025);
}

.photo figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: 6px;
  background: rgba(31, 23, 18, 0.62);
  color: #fffaf2;
  font-size: 13px;
  line-height: 1.55;
  backdrop-filter: blur(10px);
}

.photo--main {
  aspect-ratio: 4 / 5;
}

.space-grid .photo:not(.photo--main) {
  aspect-ratio: 3 / 2;
}

.space-grid .photo--main img {
  object-position: center 44%;
}

.space-grid .photo:nth-child(2) img {
  object-position: 34% center;
}

.space-grid .photo:nth-child(3) img {
  object-position: center center;
}

.details {
  overflow: hidden;
}

.detail-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 76%;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--brick) rgba(42, 28, 22, 0.12);
}

.detail-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(42, 28, 22, 0.12);
  border-radius: var(--radius);
  background: var(--paper-soft);
  box-shadow: 0 12px 34px rgba(42, 28, 22, 0.1);
  scroll-snap-align: start;
}

.detail-card img {
  height: auto;
  aspect-ratio: 4 / 3;
}

.detail-card div {
  padding: 16px;
}

.detail-card h3 {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 19px;
}

.detail-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.cats {
  display: grid;
  gap: 24px;
  padding-top: var(--section-gap);
}

.cats__copy {
  align-self: center;
}

.cats__copy p:last-child {
  margin-bottom: 0;
  max-width: 520px;
}

.cats__photos {
  display: grid;
  gap: 14px;
}

.cats__main {
  aspect-ratio: 3 / 2;
}

.cats__side {
  aspect-ratio: 4 / 5;
}

.cats__main img {
  object-position: center center;
}

.cats__side img {
  object-position: center 42%;
}

.drinks {
  padding-bottom: 10px;
  background:
    linear-gradient(180deg, transparent 0, transparent 72px, rgba(79, 111, 74, 0.08) 72px, rgba(79, 111, 74, 0.08) 100%);
}

.drink-grid {
  display: grid;
  gap: 16px;
}

.drink-item {
  overflow: hidden;
  border: 1px solid rgba(42, 28, 22, 0.12);
  border-radius: var(--radius);
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.drink-item img {
  height: auto;
  aspect-ratio: 3 / 4;
}

.drink-item:first-child img {
  object-position: center center;
}

.drink-item:nth-child(2) img {
  object-position: center 40%;
}

.drink-item__body {
  padding: 18px;
}

.drink-item__label {
  margin-bottom: 8px;
  color: var(--pool);
  font-size: 13px;
  font-weight: 700;
}

.drink-item:nth-child(2) .drink-item__label {
  color: var(--glow);
}

.drink-item h3 {
  margin-bottom: 0;
  font-size: 21px;
}

.outside {
  padding-bottom: var(--section-gap);
}

.outside__grid {
  display: grid;
  gap: 16px;
}

.outside__copy {
  align-self: end;
  padding: 0 0 8px;
}

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

.outside__sign {
  aspect-ratio: 3 / 4;
}

.outside__pool {
  aspect-ratio: 3 / 2;
}

.outside__sign img {
  object-position: center center;
}

.outside__pool img {
  object-position: center center;
}

.visit-panel {
  display: grid;
  gap: 22px;
  margin-top: 18px;
  padding: 26px 20px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fffaf2;
}

.visit-panel h2 {
  margin-bottom: 0;
  color: #fffaf2;
}

.visit-panel dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.visit-panel dl div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 250, 242, 0.18);
}

.visit-panel dt {
  color: rgba(255, 250, 242, 0.72);
  font-size: 13px;
}

.visit-panel dd {
  margin: 0;
  color: #fffaf2;
  font-size: 15px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 26px var(--page-pad) 34px;
  background: #15100d;
  color: rgba(255, 250, 242, 0.76);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 720px) {
  :root {
    --page-pad: 36px;
    --section-gap: 96px;
  }

  .site-header {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .site-nav {
    gap: 24px;
    font-size: 15px;
  }

  h1 {
    font-size: 72px;
  }

  h2 {
    font-size: 42px;
  }

  .hero {
    min-height: 84vh;
  }

  .hero__content {
    padding-bottom: 104px;
  }

  .hero__lead {
    font-size: 19px;
  }

  .intro__lead {
    font-size: 32px;
  }

  .space-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    grid-template-rows: repeat(2, minmax(220px, 1fr));
  }

  .photo--main {
    grid-row: span 2;
    aspect-ratio: auto;
  }

  .detail-strip {
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .cats {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
  }

  .cats__photos {
    grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.7fr);
    align-items: end;
  }

  .cats__main {
    aspect-ratio: 3 / 2;
  }

  .cats__side {
    aspect-ratio: 4 / 5;
  }

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

  .outside__grid {
    grid-template-columns: minmax(260px, 0.78fr) minmax(260px, 0.72fr) minmax(0, 1fr);
    align-items: end;
  }

  .outside__pool {
    grid-column: 2 / 4;
  }

  .visit-panel {
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
    padding: 34px;
  }

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

@media (min-width: 1080px) {
  :root {
    --page-pad: 48px;
    --section-gap: 118px;
  }

  .hero {
    min-height: 80vh;
  }

  .hero__content {
    margin-left: calc((100% - min(100%, var(--content))) / 2);
    padding-left: 0;
  }

  h1 {
    font-size: 88px;
  }

  h2 {
    font-size: 50px;
  }

  .section-heading--center {
    text-align: center;
  }

  .photo figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    font-size: 14px;
  }

  .drink-item__body {
    padding: 24px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 28px;
  }

  .intro__lead {
    font-size: 22px;
  }

  .site-nav {
    gap: 12px;
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .brand__text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .site-header {
    gap: 12px;
  }

  .site-nav {
    flex: 1;
    justify-content: flex-end;
    gap: 10px;
    font-size: 12px;
  }
}
