:root {
  --paper: #eee8dc;
  --paper-deep: #ded4c3;
  --ink: #f7f0e4;
  --charcoal: #1d201b;
  --charcoal-soft: #292d25;
  --olive: #3b412c;
  --olive-deep: #202719;
  --sage: #9c9c75;
  --gold: #b49655;
  --line: rgba(247, 240, 228, 0.28);
  --serif: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --jp: "Yu Mincho", "Hiragino Mincho ProN", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 18% 24%, rgba(180, 150, 85, 0.08), transparent 28rem),
    linear-gradient(135deg, #f0eadf 0%, #e3d9c9 45%, #24271f 45%, #1a1c18 100%);
  font-family: var(--jp);
  letter-spacing: 0;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  padding-right: 13.5rem;
  position: relative;
}

.brand-panel {
  align-items: flex-start;
  display: flex;
  gap: clamp(2rem, 5vw, 5rem);
  left: clamp(1.5rem, 4vw, 4rem);
  pointer-events: none;
  position: absolute;
  top: 3rem;
  z-index: 20;
}

.brand,
.top-nav {
  pointer-events: auto;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  flex-direction: column;
  font-family: var(--serif);
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.brand svg {
  fill: none;
  height: 5.3rem;
  margin-bottom: 0.6rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  width: 5.3rem;
}

.brand span {
  font-size: 1.45rem;
  letter-spacing: 0.18em;
}

.brand small {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  margin-top: 0.22rem;
}

.brand::after {
  background: currentColor;
  content: "";
  height: 1px;
  margin-top: 1rem;
  opacity: 0.8;
  width: 1.35rem;
}

.top-nav {
  display: flex;
  gap: 2.2rem;
  padding-top: 0.4rem;
}

.top-nav a {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding-bottom: 0.35rem;
  position: relative;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.top-nav a::after {
  background: currentColor;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
  width: 100%;
}

.top-nav a:hover::after,
.top-nav a.is-active::after {
  transform: scaleX(1);
}

.side-rail {
  align-items: center;
  background:
    linear-gradient(rgba(31, 38, 25, 0.94), rgba(31, 38, 25, 0.96)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 5px);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  padding: 2.6rem 2rem;
  position: fixed;
  right: 0;
  top: 0;
  width: 13.5rem;
  z-index: 30;
}

.menu-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  height: 2.5rem;
  position: absolute;
  right: 3.6rem;
  top: 3.4rem;
  width: 2.5rem;
}

.menu-button span {
  background: var(--ink);
  display: block;
  height: 1px;
  margin: 0.43rem 0;
  transition: transform 240ms ease, opacity 240ms ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(0.43rem) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-0.43rem) rotate(-45deg);
}

.rail-nav {
  display: grid;
  gap: clamp(2.5rem, 7vh, 4.6rem);
  text-align: center;
}

.rail-nav a {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  opacity: 0.82;
  transition: color 240ms ease, opacity 240ms ease, transform 240ms ease;
}

.rail-nav a:hover,
.rail-nav a.is-active {
  color: var(--gold);
  opacity: 1;
  transform: translateY(-2px);
}

.rail-nav svg {
  fill: none;
  height: 2.4rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
  width: 2.4rem;
}

.rail-nav span {
  font-family: var(--serif);
  font-size: 1.08rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

main {
  overflow: hidden;
}

.hero {
  min-height: 47rem;
  position: relative;
}

.hero > img {
  height: 100vh;
  max-height: 55rem;
  min-height: 47rem;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 12, 9, 0.62) 0%, rgba(10, 12, 9, 0.14) 45%, rgba(10, 12, 9, 0.34) 100%),
    linear-gradient(0deg, rgba(10, 12, 9, 0.4), transparent 38%);
  inset: 0;
  position: absolute;
}

.hero-copy {
  bottom: clamp(3rem, 9vh, 6rem);
  color: var(--ink);
  left: clamp(1.6rem, 4vw, 4.1rem);
  max-width: 38rem;
  position: absolute;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.42);
}

.eyebrow {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7.6rem);
  font-weight: 500;
  line-height: 0.9;
  margin: 0;
}

.lead {
  font-size: clamp(0.95rem, 1.4vw, 1.16rem);
  letter-spacing: 0.12em;
  margin: 1.7rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border: 1px solid rgba(247, 240, 228, 0.55);
  display: inline-flex;
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.18em;
  min-height: 2.9rem;
  padding: 0 1.25rem;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

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

.button.primary {
  background: var(--ink);
  color: var(--charcoal);
}

.button.ghost {
  color: var(--ink);
}

.season-note {
  border-left: 1px solid rgba(247, 240, 228, 0.44);
  bottom: 3rem;
  color: var(--ink);
  display: grid;
  gap: 0.2rem;
  padding-left: 1rem;
  position: absolute;
  right: 2.8rem;
}

.season-note span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.season-note strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.events,
.cafe,
.stay,
.access,
.reserve {
  display: grid;
  position: relative;
}

.events {
  background:
    linear-gradient(rgba(238, 232, 220, 0.94), rgba(238, 232, 220, 0.94)),
    repeating-linear-gradient(45deg, rgba(29, 32, 27, 0.04) 0 1px, transparent 1px 7px);
  grid-template-columns: minmax(12rem, 19rem) 1fr;
  gap: clamp(1.2rem, 3vw, 3rem);
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.3rem, 5vw, 4.3rem);
}

.section-intro {
  align-self: center;
  color: var(--charcoal);
  display: grid;
  gap: 1.3rem;
  justify-items: start;
}

.botanical {
  fill: none;
  height: 5.5rem;
  opacity: 0.48;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.1;
  width: 5.5rem;
}

.section-intro p,
.dark-intro h2 {
  font-family: var(--serif);
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.7;
  margin: 0;
  text-transform: uppercase;
}

.section-intro a {
  border-bottom: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  display: block;
  height: 1.8rem;
  margin-top: 0.3rem;
  position: relative;
  width: 4.4rem;
}

.section-intro a::after {
  border-right: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  content: "";
  height: 0.5rem;
  position: absolute;
  right: 0;
  top: 1.46rem;
  transform: rotate(45deg);
  width: 0.5rem;
}

.event-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-card {
  aspect-ratio: 1;
  background: var(--charcoal);
  color: var(--ink);
  overflow: hidden;
  position: relative;
}

.image-card img,
.menu-feature img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.image-card::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 45%);
  content: "";
  inset: 0;
  position: absolute;
}

.image-card:hover img,
.menu-feature:hover img {
  transform: scale(1.045);
}

.image-card div {
  bottom: 1rem;
  left: 1rem;
  position: absolute;
  right: 1rem;
  z-index: 1;
}

.image-card time,
.image-card h2 {
  font-family: var(--serif);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  margin: 0;
  text-transform: uppercase;
}

.image-card h2 {
  margin-top: 0.25rem;
}

.cafe {
  background:
    linear-gradient(90deg, #1f201b, #262720),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 6px);
  color: var(--ink);
  gap: 2rem;
  grid-template-columns: minmax(12rem, 20rem) minmax(17rem, 33rem) minmax(12rem, 1fr);
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.3rem, 5vw, 4.3rem);
}

.dark-intro {
  align-self: start;
}

.dark-intro span {
  background: var(--gold);
  display: block;
  height: 1px;
  margin-top: 1.35rem;
  width: 3.2rem;
}

.menu-feature {
  display: grid;
  gap: 1.4rem;
}

.menu-feature img {
  aspect-ratio: 1.18;
}

.menu-feature p {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
}

.menu-feature h3 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
  margin: 0;
}

.menu-feature a {
  color: var(--gold);
  display: inline-flex;
  font-family: var(--serif);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-top: 1rem;
  text-transform: uppercase;
}

.cafe-list {
  align-self: end;
  border-top: 1px solid rgba(247, 240, 228, 0.2);
  display: grid;
}

.cafe-list p {
  align-items: center;
  border-bottom: 1px solid rgba(247, 240, 228, 0.16);
  display: flex;
  font-family: var(--serif);
  justify-content: space-between;
  letter-spacing: 0.08em;
  margin: 0;
  padding: 1rem 0;
}

.cafe-list strong {
  color: var(--gold);
  font-weight: 500;
}

.stay {
  background: var(--olive);
  color: var(--ink);
  grid-template-columns: minmax(18rem, 0.9fr) 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.3rem, 5vw, 4.3rem);
}

.stay-copy h2,
.access h2,
.reserve h2 {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.2vw, 4.5rem);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
}

.stay-copy p:not(.eyebrow) {
  color: rgba(247, 240, 228, 0.78);
  line-height: 2.15;
  margin: 1.6rem 0 0;
  max-width: 38rem;
}

.stay-plans {
  display: grid;
  gap: 1px;
}

.stay-plans article {
  border-top: 1px solid rgba(247, 240, 228, 0.18);
  display: grid;
  gap: 0.6rem;
  grid-template-columns: 3rem 1fr;
  padding: 1.55rem 0;
}

.stay-plans span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.stay-plans h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin: 0;
}

.stay-plans p {
  color: rgba(247, 240, 228, 0.72);
  grid-column: 2;
  line-height: 1.9;
  margin: 0;
}

.access {
  background: var(--paper);
  gap: 2rem;
  grid-template-columns: minmax(18rem, 1fr) minmax(18rem, 0.9fr);
  padding: clamp(3.3rem, 7vw, 5.8rem) clamp(1.3rem, 5vw, 4.3rem);
}

.access dl {
  border-top: 1px solid rgba(29, 32, 27, 0.2);
  margin: 0;
}

.access dl div {
  border-bottom: 1px solid rgba(29, 32, 27, 0.18);
  display: grid;
  gap: 1rem;
  grid-template-columns: 8rem 1fr;
  padding: 1.15rem 0;
}

.access dt {
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.access dd {
  line-height: 1.8;
  margin: 0;
}

.reserve {
  background: var(--charcoal);
  color: var(--ink);
  gap: 2rem;
  justify-items: center;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.3rem, 5vw, 4.3rem);
  text-align: center;
}

.reserve h2 {
  max-width: 50rem;
}

form {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 58rem;
  width: 100%;
}

label {
  border: 1px solid rgba(247, 240, 228, 0.2);
  display: grid;
  gap: 0.35rem;
  padding: 0.8rem 0.9rem;
  text-align: left;
}

label span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

input,
select {
  background: transparent;
  border: 0;
  color: var(--ink);
  min-width: 0;
  outline: 0;
}

select option {
  color: var(--charcoal);
}

form button {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--charcoal);
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 0 1rem;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease;
}

form button:hover {
  background: var(--ink);
  color: var(--charcoal);
}

.section-observe {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1080px) {
  .site-shell {
    padding-right: 0;
  }

  .side-rail {
    height: auto;
    min-height: 5rem;
    padding: 1rem 1.4rem;
    width: 100%;
  }

  .menu-button {
    right: 1.5rem;
    top: 1.2rem;
  }

  .rail-nav {
    background: rgba(31, 38, 25, 0.98);
    gap: 0;
    grid-template-columns: repeat(4, 1fr);
    left: 0;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 100%;
    transition: max-height 280ms ease;
  }

  .rail-nav.is-open {
    max-height: 8rem;
  }

  .rail-nav a {
    padding: 1rem 0.4rem;
  }

  .rail-nav svg {
    height: 1.7rem;
    width: 1.7rem;
  }

  .rail-nav span {
    font-size: 0.75rem;
  }

  .hero > img {
    height: 100vh;
  }
}

@media (max-width: 820px) {
  .brand-panel {
    gap: 1.3rem;
    left: 1.1rem;
    top: 1.15rem;
  }

  .brand svg {
    height: 3.6rem;
    width: 3.6rem;
  }

  .brand span {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .top-nav {
    display: none;
  }

  .hero {
    min-height: 43rem;
  }

  .hero > img {
    min-height: 43rem;
  }

  .hero-copy {
    bottom: 5.5rem;
    left: 1.25rem;
    right: 1.25rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.4rem);
  }

  .season-note {
    bottom: 1.4rem;
    left: 1.25rem;
    right: auto;
  }

  .events,
  .cafe,
  .stay,
  .access {
    grid-template-columns: 1fr;
  }

  .event-grid {
    grid-template-columns: 1fr;
  }

  .image-card {
    aspect-ratio: 1.26;
  }

  .cafe {
    gap: 2.5rem;
  }

  .stay-plans article,
  .access dl div {
    grid-template-columns: 1fr;
  }

  .stay-plans p {
    grid-column: auto;
  }

  form {
    grid-template-columns: 1fr;
  }

  form button {
    min-height: 3.5rem;
  }
}

@media (max-width: 460px) {
  .hero-actions {
    display: grid;
  }

  .rail-nav span {
    font-size: 0.62rem;
  }
}
