:root {
  --cream: #f5ead5;
  --paper: #fffaf0;
  --navy: #173753;
  --red-on-light: #b33f31;
  --pink-on-dark: #ef9d8d;
  --chrome: #9aa3a8;
  --ink: #2a2621;
  --muted: #665f56;
  --line: #c8bda9;
  --display: Georgia, "Times New Roman", serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--red-on-light);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.25rem, 4vw, 4rem);
  background: rgba(245, 234, 213, 0.97);
  border-bottom: 4px double var(--red-on-light);
}

.brand {
  font: 800 1.35rem/1 var(--display);
  text-transform: uppercase;
  text-decoration: none;
}

.site-header nav {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
}

.site-header nav a,
.button {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header nav a {
  min-width: 2.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  min-height: 82svh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--cream);
}

.hero-copy {
  align-self: center;
  padding: clamp(3rem, 7vw, 7rem);
}

.eyebrow { color: var(--red-on-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--display);
}

h1 {
  margin: 1rem 0;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.88;
  text-transform: uppercase;
}

h2 {
  margin: 0.7rem 0 1.5rem;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.96;
}

p {
  line-height: 1.7;
}

.button {
  margin-top: 1rem;
  padding: 0.8rem 1.1rem;
  background: var(--navy);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.portfolio-return {
  display: inline-flex;
  align-items: center;
  min-block-size: 2.75rem;
  padding-block: 0.55rem;
  padding-inline: 0.75rem;
  border: 1px solid currentColor;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-header .portfolio-return {
  margin-inline-start: auto;
}

.section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 7vw, 7rem);
  scroll-margin-top: 6rem;
}

.story,
.room {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.story img,
.room img {
  min-height: 32rem;
}

.menu {
  color: var(--cream);
  background: var(--navy);
  border-block: 8px double var(--red-on-light);
}

.menu .eyebrow, .menu-grid span { color: var(--pink-on-dark);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.menu-grid article {
  padding: 2rem;
  border: 1px solid rgba(245, 234, 213, 0.3);
}

.menu-grid span {
  font-weight: 800;
  text-transform: uppercase;
}

.visit dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 18rem));
  gap: 1rem;
}

.visit dl div {
  padding-top: 1rem;
  border-top: 4px double var(--red-on-light);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 4rem);
  background: var(--navy);
  color: var(--cream);
}

@media (max-width: 48rem) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header .portfolio-return {
    margin-inline-start: 0;
  }

  .section {
    scroll-margin-top: 8rem;
  }

  .hero-copy {
    min-width: 0;
    padding: 3rem clamp(1.25rem, 6vw, 2rem);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 12vw, 3rem);
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero,
  .story,
  .room {
    grid-template-columns: 1fr;
  }

  .hero img {
    min-height: 22rem;
  }

  .menu-grid,
  .visit dl {
    grid-template-columns: 1fr;
  }

  .story img,
  .room img {
    min-height: 22rem;
  }

  footer {
    flex-direction: column;
  }
}

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

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