:root {
  --ink: #1c1d17;
  --muted: #5f5e4b;
  --soft: #7a7862;
  --paper: #f2ece0;
  --panel: #fbf6ea;
  --panel-2: #ece2cc;
  --line: rgba(28, 29, 23, 0.12);
  --line-soft: rgba(28, 29, 23, 0.06);
  --green: #263126;
  --green-deep: #1a231b;
  --olive: #6f7752;
  --brick: #7f3a2a;
  --brick-deep: #67281c;
  --gold: #b89154;
  --gold-soft: #d4b071;
  --cream: #f6ecd6;
  --radius: 6px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --shadow-sm: 0 1px 2px rgba(22, 24, 17, 0.06);
  --shadow-md: 0 14px 32px rgba(22, 24, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 10px clamp(16px, 4vw, 42px);
  color: var(--cream);
  background: rgba(25, 34, 26, 0.95);
  backdrop-filter: blur(12px);
}

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

.mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(184, 145, 84, 0.78);
  border-radius: 50%;
  color: #e2c180;
  font-family: var(--serif);
  font-size: 14px;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 245, 223, 0.74);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 28px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

.nav .phone {
  padding: 9px 14px;
  border: 1px solid rgba(255, 245, 223, 0.35);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brick), var(--brick-deep));
  letter-spacing: 0;
  text-transform: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1.16fr);
  min-height: calc(100vh - 64px);
  background: var(--green-deep);
}

.hero-copy {
  align-self: center;
  padding: clamp(30px, 5vw, 68px);
  color: var(--cream);
}

.hero-photo {
  min-height: 520px;
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: clamp(31px, 3vw, 42px);
  line-height: 1.09;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.15;
}

h3 {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.25;
}

.intro {
  max-width: 560px;
  color: rgba(255, 245, 223, 0.84);
  font-size: 16.5px;
}

.actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.btn.primary {
  color: #fffaf0;
  background: linear-gradient(180deg, var(--brick), var(--brick-deep));
}

.btn.secondary {
  color: inherit;
  border-color: currentColor;
  background: transparent;
}

.btn.wide {
  width: 100%;
  margin-top: 8px;
}

.quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.quick > * {
  padding: 18px clamp(16px, 3vw, 32px);
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.quick span,
.visit-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.quick strong,
.visit-card strong {
  display: block;
  margin-top: 4px;
  font-size: 15.5px;
  line-height: 1.28;
}

.section {
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 670px;
  margin-bottom: 28px;
}

.split,
.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.copy p,
.visit p {
  color: var(--muted);
  font-size: 17px;
}

.photo-pair {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 14px;
  align-items: end;
}

.photo-pair img,
.menu-grid article,
.visit-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.photo-pair img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.photo-pair img:nth-child(2) {
  aspect-ratio: 4 / 3;
}

.menu {
  background: var(--panel-2);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.menu-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
}

.menu-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.menu-grid div {
  padding: 17px 17px 19px;
}

.menu-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.booking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--cream);
  background: linear-gradient(135deg, var(--green-deep), var(--green));
}

.booking h2 {
  max-width: 620px;
  margin-bottom: 0;
}

.booking .btn.secondary {
  color: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 1fr;
  grid-auto-rows: 220px;
  gap: 10px;
}

.gallery-grid img {
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.gallery-grid img:nth-child(2) {
  object-position: center 35%;
}

.gallery-grid img:nth-child(4),
.gallery-grid img:nth-child(6) {
  object-position: center 58%;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.gallery-grid img:nth-child(2) {
  grid-column: span 2;
}

.visit {
  background: var(--panel);
}

.visit-card {
  padding: 24px;
}

.visit-card p {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

footer {
  padding: 28px clamp(18px, 5vw, 72px) 86px;
  color: var(--muted);
  background: #e8dccb;
  font-size: 13px;
}

footer p {
  max-width: 850px;
  margin: 0;
}

.mobile-actions {
  position: fixed;
  z-index: 30;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 7px;
  box-shadow: var(--shadow-md);
}

.mobile-actions a {
  min-height: 48px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--green-deep);
  font-weight: 900;
  text-decoration: none;
}

.mobile-actions a:nth-child(2) {
  background: var(--brick);
}

.mobile-actions a:nth-child(3) {
  background: var(--green);
}

@media (max-width: 900px) {
  .nav a:not(.phone) {
    display: none;
  }

  .hero,
  .split,
  .visit {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-photo {
    min-height: 390px;
    order: -1;
  }

  .hero-copy {
    padding: 28px 18px 34px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

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

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }

  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .topbar {
    min-height: 62px;
    padding: 9px 13px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 10px;
  }

  .mark {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .nav .phone {
    min-height: 34px;
    padding: 7px 11px;
    font-size: 12px;
  }

  .hero-photo {
    min-height: 300px;
  }

  h1 {
    max-width: 360px;
    font-size: 29px;
  }

  h2 {
    font-size: 25px;
  }

  .intro {
    font-size: 16px;
  }

  .actions .btn {
    flex: 1 1 150px;
  }

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

  .quick > * {
    padding: 15px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 42px 18px;
  }

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

  .booking {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-actions .btn {
    flex: 1 1 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .mobile-actions {
    display: grid;
  }
}
