:root {
  --ink: #211713;
  --muted: #6f5b4f;
  --paper: #f5ecdf;
  --paper-strong: #fff8ee;
  --salmon: #ee765f;
  --teal: #0d6f79;
  --teal-dark: #07454c;
  --line: rgba(33, 23, 19, 0.18);
  --shadow: 0 18px 45px rgba(33, 23, 19, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Work Sans", Arial, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(245, 236, 223, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 134px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

.nav a[aria-current="page"] {
  color: var(--teal);
}

.button,
.nav .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper-strong);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button.teal {
  border-color: var(--teal);
  background: var(--teal);
}

.hero .button.secondary {
  border-color: rgba(255, 248, 238, 0.62);
  background: rgba(255, 248, 238, 0.08);
  color: var(--paper-strong);
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: end;
  padding: clamp(90px, 14vw, 180px) clamp(20px, 5vw, 72px) clamp(30px, 6vw, 72px);
  background:
    linear-gradient(180deg, rgba(12, 8, 7, 0.16), rgba(12, 8, 7, 0.82)),
    var(--hero-image) center / cover no-repeat;
  color: #fff8ee;
}

.hero.compact {
  min-height: 54svh;
}

.hero-inner {
  max-width: 920px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--salmon);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: clamp(3.4rem, 12vw, 8.8rem);
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(2rem, 6vw, 4.8rem);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.25rem, 2.6vw, 2rem);
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.quick-info div {
  min-height: 118px;
  padding: clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info strong,
.detail-label {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-info p,
.feature p,
.copy-block p,
.offer p,
.notice p,
.site-footer p {
  margin: 0;
}

.section {
  padding: clamp(58px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.section.tight {
  padding-top: clamp(34px, 6vw, 72px);
  padding-bottom: clamp(34px, 6vw, 72px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

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

.feature {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  background: var(--paper-strong);
}

.feature h3 {
  margin-bottom: 12px;
}

.feature .price {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--teal);
  font-weight: 800;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.photo-grid img,
.image-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.image-card.tall img {
  min-height: 560px;
}

.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--teal-dark);
  color: var(--paper-strong);
}

.split-band > div {
  padding: clamp(42px, 7vw, 92px);
}

.split-band img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.menu-tabs a {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-strong);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-section {
  margin-top: clamp(42px, 7vw, 84px);
}

.menu-section h2 {
  padding-bottom: 18px;
  border-bottom: 3px solid var(--ink);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
  margin-top: 16px;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item h3 {
  font-size: 1.08rem;
  line-height: 1.2;
}

.menu-item p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.menu-item .price {
  color: var(--teal-dark);
  font-weight: 800;
  white-space: nowrap;
}

.notice {
  margin-top: 38px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 238, 0.72);
  color: var(--muted);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.copy-block {
  display: grid;
  gap: 22px;
  font-size: 1.04rem;
}

.copy-block h2 {
  margin-top: 28px;
}

.location-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: var(--paper-strong);
}

.location-panel > div {
  padding: clamp(24px, 5vw, 54px);
}

.location-panel > div:first-child {
  border-right: 1px solid var(--line);
}

.map-link {
  display: grid;
  min-height: 430px;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(rgba(7, 69, 76, 0.72), rgba(7, 69, 76, 0.72)),
    url("/assets/front-room.webp") center / cover no-repeat;
  color: var(--paper-strong);
  text-align: center;
  text-decoration: none;
}

.map-link strong {
  display: block;
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: clamp(34px, 5vw, 58px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper-strong);
}

.site-footer img {
  width: 126px;
  margin-bottom: 16px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--paper-strong);
}

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

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

  .hero {
    min-height: 78svh;
  }

  .quick-info,
  .grid-2,
  .grid-3,
  .split-band,
  .menu-list,
  .story,
  .location-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quick-info div,
  .location-panel > div:first-child {
    border-right: 0;
  }

  .quick-info div {
    border-bottom: 1px solid var(--line);
  }

  .quick-info div:last-child {
    border-bottom: 0;
  }

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

  .photo-grid img,
  .image-card img,
  .image-card.tall img {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 118px;
  }

  .nav {
    gap: 8px 12px;
    font-size: 0.72rem;
  }

  .nav .button {
    min-height: 38px;
    padding: 8px 12px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }
}
