:root {
  --ink: #30415f;
  --ink-deep: #1e2a3e;
  --ink-mid: #3d5275;
  --paper: #f4efe6;
  --paper-2: #ebe4d6;
  --cream: #faf7f1;
  --wax: #c4a07a;
  --text: #1c2433;
  --muted: #5a6474;
  --white: #fff;
  --line: rgba(48, 65, 95, 0.16);
  --max: 1160px;
  --display: "Instrument Serif", serif;
  --sans: "Figtree", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font-family: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.kicker {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
}

p {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-ink {
  background: var(--ink);
  color: var(--paper);
}

.btn-ink:hover {
  background: var(--ink-deep);
}

.btn-paper {
  background: var(--paper);
  color: var(--ink);
}

.btn-paper:hover {
  background: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(244, 239, 230, 0.45);
}

.btn-ghost:hover {
  background: rgba(244, 239, 230, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.45rem;
  color: var(--ink);
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav {
  display: flex;
  gap: 22px;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}

.nav a:hover,
.nav a.is-active {
  color: var(--ink);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  padding: 10px 9px;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(88vh, 860px);
}

.hero-photo {
  height: min(88vh, 860px);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
}

.hero-panel {
  position: absolute;
  left: max(20px, calc((100% - var(--max)) / 2));
  bottom: 36px;
  width: min(560px, calc(100% - 40px));
  padding: 36px 34px 32px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 18px 18px 0 rgba(196, 160, 122, 0.35);
}

.hero-panel .kicker,
.hero-panel h1 {
  color: var(--paper);
}

.hero-panel h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 16px;
}

.lead {
  color: rgba(244, 239, 230, 0.82);
  max-width: 42ch;
}

.lead em {
  font-style: normal;
  color: var(--wax);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.stats {
  background: var(--ink);
  color: var(--paper);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px 0;
}

.stats-row strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
}

.stats-row span {
  font-size: 0.86rem;
  opacity: 0.72;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  padding: 96px 0 80px;
}

.story-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.story-copy p {
  color: var(--muted);
  margin-bottom: 14px;
}

blockquote {
  margin: 28px 0 0;
  padding: 20px 22px;
  background: var(--paper);
  border-left: 3px solid var(--ink);
  font-family: var(--display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink);
}

blockquote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.story-visual {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 14px;
  align-items: end;
}

.story-main {
  width: 100%;
  height: 440px;
  object-fit: cover;
  grid-column: 2;
}

.story-side {
  width: 100%;
  height: 240px;
  object-fit: cover;
  grid-column: 1;
}

.story-stamp {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 92px;
  height: 92px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: rotate(-12deg);
}

.rooms {
  background: var(--paper);
  padding: 88px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-head p {
  max-width: 36ch;
  color: var(--muted);
}

.room-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.room-list li {
  display: grid;
  grid-template-columns: 72px 1fr 180px;
  gap: 22px;
  align-items: center;
  padding: 18px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.room-num {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--ink);
}

.room-list h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.room-list p {
  color: var(--muted);
  font-size: 0.95rem;
}

.room-list img {
  width: 180px;
  height: 110px;
  object-fit: cover;
}

.menu {
  padding: 92px 0;
}

.menu-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.menu-intro h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 8px 0 14px;
}

.menu-intro p {
  color: var(--muted);
  margin-bottom: 22px;
}

.menu-sheet {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 28px;
}

.menu-sheet article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line);
}

.menu-sheet article:last-child {
  border-bottom: 0;
}

.menu-sheet h3 {
  font-size: 1.28rem;
}

.menu-sheet p {
  color: var(--muted);
  font-size: 0.92rem;
}

.menu-sheet span {
  font-weight: 700;
  color: var(--ink);
}

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.15fr 1fr;
  gap: 8px;
  padding: 0 8px 8px;
}

.gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.news {
  padding: 88px 0 40px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.news-grid article {
  background: var(--white);
  border: 1px solid var(--line);
}

.news-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-grid time,
.news-grid h3,
.news-grid p {
  display: block;
  padding-inline: 18px;
}

.news-grid time {
  padding-top: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.news-grid h3 {
  font-size: 1.4rem;
  margin: 8px 0 8px;
}

.news-grid p {
  color: var(--muted);
  padding-bottom: 20px;
}

.visit {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 0;
}

.visit .kicker,
.visit h2 {
  color: var(--paper);
}

.visit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.visit h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.visit p {
  color: rgba(244, 239, 230, 0.8);
}

.hours {
  margin: 26px 0;
  max-width: 420px;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.16);
}

.visit-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.letter {
  padding: 56px 0 80px;
}

.letter form {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding: 28px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.letter h2 {
  font-size: 2rem;
}

.letter-row {
  display: flex;
  gap: 10px;
  width: min(460px, 100%);
}

.letter input {
  flex: 1;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0 14px;
  color: var(--text);
}

.site-footer {
  background: var(--ink-deep);
  color: var(--paper);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
}

.site-footer .logo {
  color: var(--paper);
}

.site-footer p,
.site-footer li {
  color: rgba(244, 239, 230, 0.72);
}

.site-footer h3 {
  color: var(--paper);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 6px;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  font-size: 0.86rem;
  color: rgba(244, 239, 230, 0.55);
}

.toast {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 960px) {
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 16px 20px 22px;
    gap: 12px;
  }

  .nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .stats-row,
  .story,
  .menu-layout,
  .news-grid,
  .visit-grid,
  .footer-grid,
  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .story,
  .menu-layout,
  .visit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .room-list li {
    grid-template-columns: 56px 1fr;
  }

  .room-list img {
    display: none;
  }

  .letter form,
  .copyright,
  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .letter-row {
    width: 100%;
  }

  .hero-panel {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    box-shadow: none;
  }

  .hero-photo {
    height: 52vh;
  }
}

@media (max-width: 640px) {
  .stats-row,
  .news-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 28px 22px;
  }

  .story-visual {
    grid-template-columns: 1fr;
  }

  .story-main {
    grid-column: 1;
    height: 280px;
  }

  .story-side {
    display: none;
  }
}
