:root {
  --ink: #241d18;
  --muted: #66584d;
  --paper: #fbf5ec;
  --plaster: #efe2d1;
  --stone: #c8b196;
  --olive: #5f6b3d;
  --raspberry: #a63d55;
  --gold: #c68a3d;
  --line: rgba(36, 29, 24, 0.16);
  --shadow: 0 24px 60px rgba(36, 29, 24, 0.18);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  background: var(--ink);
  color: white;
  padding: 0.7rem 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  background: rgba(251, 245, 236, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.primary-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem 1rem;
}

.primary-nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.primary-nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--raspberry);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.35rem);
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
}

.eyebrow {
  color: var(--raspberry);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(760px, 92vh);
  display: grid;
  align-items: end;
  padding: clamp(1rem, 4vw, 3rem);
  overflow: hidden;
  background: var(--ink);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 14, 11, 0.86), rgba(19, 14, 11, 0.28) 58%, rgba(19, 14, 11, 0.1));
}

.hero-panel {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: white;
  padding: clamp(1rem, 2vw, 1.5rem) 0;
}

.hero-panel .eyebrow {
  color: #f2b463;
}

.hero-copy {
  max-width: 620px;
  margin-top: 1.2rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.status-banner {
  display: inline-flex;
  margin-top: 1.35rem;
  padding: 0.75rem 1rem;
  background: rgba(251, 245, 236, 0.94);
  color: var(--ink);
  font-weight: 800;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid currentColor;
  font-weight: 800;
}

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

.button.secondary {
  color: white;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--plaster);
}

.stats-band div {
  padding: 1.1rem clamp(1rem, 3vw, 2rem);
  border-right: 1px solid var(--line);
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
}

.stats-band span {
  color: var(--muted);
  font-size: 0.9rem;
}

.split-section,
.page-hero,
.content-section,
.quote-band,
.list-page {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 4.5rem);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.text-link {
  color: var(--olive);
  font-weight: 800;
}

.preview-grid,
.card-grid,
.menu-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.preview-grid article,
.content-card,
.menu-card,
.gallery-card {
  background: var(--paper);
}

.preview-grid article {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
}

.preview-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.preview-grid p,
.content-card p,
.menu-card p,
.gallery-card p {
  color: var(--muted);
}

.preview-grid a,
.content-card a {
  color: var(--olive);
  font-weight: 800;
}

.quote-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  background: var(--ink);
  color: var(--paper);
}

.quote-list {
  display: grid;
  gap: 1rem;
}

blockquote {
  margin: 0;
  padding: 1rem 0 1rem 1.25rem;
  border-left: 2px solid var(--gold);
}

blockquote p {
  font-family: "Fraunces", serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
}

cite {
  display: block;
  margin-top: 0.75rem;
  color: #d8c7b5;
  font-style: normal;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 210px;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.55fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  background: var(--plaster);
}

.page-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.content-card,
.menu-card,
.gallery-card {
  padding: clamp(1rem, 3vw, 2rem);
}

.content-card {
  min-height: 240px;
}

.content-card .meta,
.menu-card .meta {
  color: var(--raspberry);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.menu-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.menu-card li {
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
}

.review-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.review-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  background: var(--paper);
}

.stars {
  color: var(--gold);
  font-weight: 900;
}

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

.gallery-card {
  padding: 0;
}

.gallery-card img {
  width: 100% !important;
  aspect-ratio: 1;
  object-fit: cover;
  height: 100% !important;
}

.gallery-card p {
  padding: 1rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.contact-panel > div {
  background: var(--paper);
  padding: clamp(1rem, 4vw, 3rem);
}

.detail-list {
  display: grid;
  gap: 1rem;
}

.detail-list dt {
  color: var(--raspberry);
  font-weight: 800;
}

.detail-list dd {
  margin: 0;
  color: var(--muted);
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.service-chips span {
  border: 1px solid var(--line);
  padding: 0.45rem 0.7rem;
  background: #fff9f0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 1.5rem;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 4.5rem);
  background: var(--ink);
  color: var(--paper);
}

.site-footer p,
.site-footer small {
  color: #d8c7b5;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.6rem;
  justify-items: end;
}

@media (max-width: 880px) {
  .site-header,
  .site-footer,
  .split-section,
  .quote-band,
  .page-hero,
  .contact-panel,
  .review-item {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
  }

  .primary-nav {
    justify-content: flex-start;
  }

  .stats-band,
  .preview-grid,
  .card-grid,
  .menu-grid,
  .gallery-grid,
  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
  }

  .stats-band,
  .preview-grid,
  .card-grid,
  .menu-grid,
  .gallery-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 720px;
  }
}
