@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600;1,700&family=Manrope:wght@400;500;600;700;800&display=swap');
:root{--font-display:"Cormorant Garamond";--font-sans:"Manrope";}
:root {
  --coal: #0b0b0a;
  --coal-soft: #12110f;
  --charcoal: #1a1815;
  --ink: #27231e;
  --bone: #f1ece3;
  --bone-strong: #fffaf1;
  --muted: #a49d92;
  --copper: #c47a2c;
  --copper-deep: #9b571d;
  --line-dark: rgba(241, 236, 227, 0.15);
  --line-light: rgba(39, 35, 30, 0.18);
  --shell: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  background: var(--coal);
  color: var(--bone);
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::selection {
  background: var(--copper);
  color: var(--coal);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 5px;
}

.shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(3rem, 5vw, 5.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.button {
  align-items: center;
  background: var(--copper);
  border: 1px solid var(--copper);
  border-radius: 2px;
  color: var(--coal);
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.12em;
  min-height: 54px;
  padding: 0 28px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: #d98b39;
  border-color: #d98b39;
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding-inline: 20px;
}

.button-dark {
  background: var(--coal);
  border-color: var(--coal);
  color: var(--bone);
}

.button-dark:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.text-link {
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: inherit;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 750;
  gap: 14px;
  letter-spacing: 0.1em;
  padding-bottom: 6px;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.text-link span {
  color: var(--copper);
  font-size: 1rem;
}

.text-link:hover {
  color: var(--copper);
}

/* Header */
.site-header {
  background: rgba(11, 11, 10, 0.96);
  position: sticky;
  top: 0;
  z-index: 100;
}

.utility-bar {
  border-bottom: 1px solid var(--line-dark);
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.utility-inner {
  align-items: center;
  display: flex;
  height: 32px;
  justify-content: space-between;
}

.nav-bar {
  border-bottom: 1px solid var(--line-dark);
}

.nav-inner {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: auto 1fr auto;
  height: 82px;
}

.brand img {
  height: 52px;
  object-fit: contain;
  width: auto;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 36px;
  justify-content: flex-end;
}

.desktop-nav a {
  color: #d2ccc3;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  position: relative;
  text-transform: uppercase;
}

.desktop-nav a::after {
  background: var(--copper);
  bottom: -10px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  cursor: pointer;
  display: grid;
  gap: 5px;
  list-style: none;
  padding: 10px;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  background: var(--bone);
  display: block;
  height: 1px;
  width: 27px;
}

.mobile-menu nav {
  background: var(--coal-soft);
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: min(320px, calc(100vw - 32px));
  padding: 14px;
  position: absolute;
  right: 0;
  top: 48px;
}

.mobile-menu nav > a:not(.button) {
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 16px 10px;
  text-transform: uppercase;
}

.mobile-menu nav .button {
  margin-top: 14px;
}

/* Home hero */
.home-hero {
  align-items: center;
  background-image: url("./assets/wolowina-hero.webp");
  background-position: center;
  background-size: cover;
  display: flex;
  min-height: calc(100svh - 114px);
  overflow: hidden;
  position: relative;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.98) 0%, rgba(7, 7, 6, 0.82) 37%, rgba(7, 7, 6, 0.24) 70%, rgba(7, 7, 6, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 7, 6, 0.78) 0%, transparent 34%);
  inset: 0;
  position: absolute;
}

.hero-content {
  padding: 70px 0 110px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  animation: fade-up 700ms ease both;
}

.home-hero h1 {
  animation: fade-up 700ms 90ms ease both;
  color: var(--bone-strong);
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(4.6rem, 8.4vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.78;
  margin: 0;
  max-width: 830px;
}

.home-hero h1 span {
  color: var(--copper);
  font-style: italic;
}

.hero-lead {
  animation: fade-up 700ms 180ms ease both;
  color: #c8c0b6;
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 38px 0 0;
  max-width: 590px;
}

.hero-actions {
  align-items: center;
  animation: fade-up 700ms 260ms ease both;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 42px;
}

.hero-scroll {
  align-items: center;
  bottom: 33px;
  color: #b2aba0;
  display: flex;
  font-size: 0.65rem;
  font-weight: 700;
  gap: 14px;
  left: 50%;
  letter-spacing: 0.18em;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll span {
  border: 1px solid rgba(241, 236, 227, 0.4);
  height: 38px;
  position: relative;
  width: 22px;
}

.hero-scroll span::after {
  animation: scroll-dot 1.8s ease infinite;
  background: var(--copper);
  content: "";
  height: 5px;
  left: 8px;
  position: absolute;
  top: 7px;
  width: 4px;
}

.facts-strip {
  background: var(--coal-soft);
  border-bottom: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
}

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

.facts-grid > div {
  align-items: center;
  border-left: 1px solid var(--line-dark);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr;
  min-height: 134px;
  padding: 26px 38px;
}

.facts-grid > div:last-child {
  border-right: 1px solid var(--line-dark);
}

.fact-number {
  color: var(--copper);
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.7rem;
  font-style: italic;
}

.facts-grid p {
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.55;
  margin: 0;
}

.facts-grid strong {
  color: var(--bone);
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

/* Home sections */
.intro-section {
  background: var(--coal);
}

.intro-grid {
  display: grid;
  gap: clamp(50px, 9vw, 150px);
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
}

.intro-copy {
  align-self: end;
  color: var(--muted);
  font-size: 1rem;
}

.intro-copy p:first-child {
  color: var(--bone);
  font-size: 1.15rem;
}

.intro-copy p {
  margin: 0 0 20px;
}

.intro-copy .text-link {
  color: var(--bone);
  margin-top: 18px;
}

.story-section {
  background: var(--bone);
  color: var(--ink);
}

.story-grid {
  align-items: center;
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.image-frame {
  position: relative;
}

.image-frame::before {
  border: 1px solid var(--copper);
  content: "";
  inset: -16px 16px 16px -16px;
  pointer-events: none;
  position: absolute;
}

.image-frame img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.story-image {
  aspect-ratio: 4 / 5;
}

.image-index {
  background: var(--coal);
  bottom: 0;
  color: var(--bone);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  padding: 14px 18px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
}

.story-content > p:not(.eyebrow) {
  color: #625b52;
  margin: 28px 0 34px;
  max-width: 600px;
}

.feature-list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}

.feature-list li {
  align-items: center;
  border-top: 1px solid var(--line-light);
  display: flex;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 22px;
  letter-spacing: 0.04em;
  padding: 16px 0;
}

.feature-list li:last-child {
  border-bottom: 1px solid var(--line-light);
}

.feature-list span {
  color: var(--copper);
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.15rem;
}

.featured-section {
  background: var(--coal-soft);
}

.section-heading-row {
  align-items: end;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 70px;
}

.dish-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}

.dish-card {
  border-top: 1px solid var(--line-dark);
  padding-top: 14px;
}

.dish-card-raised {
  transform: translateY(56px);
}

.dish-image {
  aspect-ratio: 4 / 5;
  background: var(--charcoal);
  overflow: hidden;
}

.dish-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2,.7,.2,1);
  width: 100%;
}

.dish-card:hover .dish-image img {
  transform: scale(1.045);
}

.dish-meta {
  color: var(--copper);
  display: flex;
  font-size: 0.65rem;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.16em;
  margin-top: 24px;
  text-transform: uppercase;
}

.dish-card h3 {
  font-family: var(--font-display), Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  margin: 10px 0 13px;
}

.dish-card p {
  color: var(--muted);
  font-size: 0.83rem;
  margin: 0;
  max-width: 340px;
}

.rating-section {
  background: var(--copper);
  color: var(--coal);
  padding: 72px 0;
}

.rating-grid {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: auto 1fr auto;
}

.rating-number {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(4rem, 8vw, 7.6rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.75;
}

.rating-grid .eyebrow {
  color: rgba(11, 11, 10, 0.62);
  margin-bottom: 7px;
}

.rating-grid h2 {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(2rem, 3.7vw, 3.7rem);
  font-weight: 600;
  line-height: 1;
  margin: 0;
  max-width: 670px;
}

.rating-grid .text-link span {
  color: var(--coal);
}

.atmosphere-section {
  align-items: center;
  display: flex;
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.atmosphere-section > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.atmosphere-overlay {
  background: linear-gradient(90deg, rgba(7, 7, 6, 0.92) 0%, rgba(7, 7, 6, 0.45) 54%, rgba(7, 7, 6, 0.22) 100%);
  inset: 0;
  position: absolute;
}

.atmosphere-content {
  position: relative;
  z-index: 1;
}

.atmosphere-content h2 {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(3.7rem, 7vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.88;
  margin: 0 0 40px;
  max-width: 900px;
}

.reservation-cta,
.gallery-cta {
  background: var(--coal);
}

.reservation-grid {
  align-items: end;
  display: grid;
  gap: clamp(50px, 10vw, 180px);
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.7fr);
}

.reservation-grid > div:last-child p {
  color: var(--muted);
  margin: 0 0 28px;
}

/* Footer */
.site-footer {
  background: #080807;
  border-top: 1px solid var(--line-dark);
  color: var(--muted);
  padding: 76px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: 1.4fr 1fr 1fr 0.7fr;
}

.footer-brand img {
  height: 54px;
  margin-bottom: 24px;
  object-fit: contain;
  width: auto;
}

.footer-brand p {
  font-size: 0.82rem;
  margin: 0;
  max-width: 300px;
}

.footer-label {
  color: var(--copper);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.site-footer address {
  font-style: normal;
}

.site-footer a {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 9px;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--bone);
}

.site-footer .footer-phone {
  color: var(--bone);
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 15px;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid var(--line-dark);
  display: flex;
  font-size: 0.68rem;
  justify-content: space-between;
  margin-top: 62px;
  padding-top: 24px;
}

.footer-bottom div {
  display: flex;
  gap: 26px;
}

.footer-bottom a {
  margin: 0;
}

.mobile-actions {
  display: none;
}

/* Inner page heroes */
.page-hero {
  align-items: end;
  background-position: center;
  background-size: cover;
  display: flex;
  min-height: 600px;
  overflow: hidden;
  position: relative;
}

.menu-hero {
  background-image: url("./assets/wolowina-hero.webp");
}

.about-hero {
  background-image: url("./assets/wolowina-interior.webp");
}

.contact-hero {
  background-image: url("./assets/wolowina-tartare.webp");
}

.page-hero-shade {
  background: linear-gradient(90deg, rgba(7, 7, 6, 0.94) 0%, rgba(7, 7, 6, 0.55) 55%, rgba(7, 7, 6, 0.2) 100%), linear-gradient(0deg, rgba(7,7,6,.8), transparent 52%);
  inset: 0;
  position: absolute;
}

.page-hero-content {
  padding-bottom: 86px;
  position: relative;
  z-index: 1;
}

.page-hero h1,
.gallery-heading h1 {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(4.2rem, 9vw, 8.5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.84;
  margin: 0;
}

.page-hero-content > p:last-child {
  color: #c5bdb2;
  margin: 28px 0 0;
  max-width: 620px;
}

/* Menu page */
.category-nav {
  background: rgba(11, 11, 10, 0.97);
  border-bottom: 1px solid var(--line-dark);
  position: sticky;
  top: 114px;
  z-index: 40;
}

.category-scroll {
  display: flex;
  gap: 34px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-scroll a {
  color: var(--muted);
  flex: 0 0 auto;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  padding: 20px 0 18px;
  text-transform: uppercase;
}

.category-scroll a:hover {
  color: var(--copper);
}

.menu-page {
  padding-bottom: 130px;
}

.menu-note {
  align-items: center;
  background: var(--copper);
  color: var(--coal);
  display: grid;
  gap: 30px;
  grid-template-columns: auto 1fr;
  margin: 72px 0 12px;
  padding: 26px 32px;
}

.menu-note span {
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.menu-note p {
  font-size: 0.78rem;
  margin: 0;
}

.menu-section {
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  gap: 64px;
  grid-template-columns: 280px 1fr;
  padding: 104px 0;
}

.menu-section-title > span {
  color: var(--copper);
  display: block;
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 36px;
}

.menu-section-title .eyebrow {
  margin-bottom: 10px;
}

.menu-section-title h2 {
  font-family: var(--font-display), Georgia, serif;
  font-size: 3.7rem;
  font-weight: 600;
  line-height: 0.9;
  margin: 0;
}

.menu-items {
  display: grid;
  column-gap: 48px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-item {
  border-top: 1px solid var(--line-dark);
  padding: 25px 0 28px;
  position: relative;
}

.menu-item-head {
  align-items: baseline;
  display: flex;
  gap: 13px;
}

.menu-item h3 {
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
}

.menu-item-head strong {
  color: var(--copper);
  flex: 0 0 auto;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}

.menu-dots {
  border-bottom: 1px dotted rgba(241, 236, 227, 0.25);
  flex: 1;
  min-width: 12px;
}

.menu-item p {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.6;
  margin: 10px 50px 0 0;
}

.weight {
  color: #706a61;
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 10px;
  text-transform: uppercase;
}

.allergen-note {
  border: 1px solid var(--line-dark);
  margin-top: 70px;
  padding: 34px;
}

.allergen-note p {
  color: var(--muted);
  margin: 0;
}

.allergen-note .eyebrow {
  color: var(--copper);
  margin-bottom: 9px;
}

/* About page */
.about-intro {
  background: var(--coal);
}

.origin-section {
  background: var(--bone);
  color: var(--ink);
}

.origin-grid {
  align-items: center;
  display: grid;
  gap: clamp(60px, 10vw, 160px);
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
}

.origin-copy > p:not(.eyebrow) {
  color: #625b52;
  margin: 30px 0 38px;
}

.about-stone-image {
  aspect-ratio: 4 / 5;
}

.values-section {
  background: var(--coal-soft);
  padding: 100px 0;
}

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

.values-grid article {
  border-left: 1px solid var(--line-dark);
  padding: 10px 50px 28px;
}

.values-grid article:last-child {
  border-right: 1px solid var(--line-dark);
}

.values-grid span {
  color: var(--copper);
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
}

.values-grid h3 {
  font-family: var(--font-display), Georgia, serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  margin: 44px 0 18px;
}

.values-grid p {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
}

.about-wide-image {
  height: 700px;
  overflow: hidden;
  position: relative;
}

.about-wide-image > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-wide-image::after {
  background: linear-gradient(0deg, rgba(7,7,6,.85), transparent 62%);
  content: "";
  inset: 0;
  position: absolute;
}

.about-wide-copy {
  bottom: 80px;
  left: max(32px, calc((100vw - var(--shell)) / 2));
  position: absolute;
  z-index: 1;
}

.about-wide-copy h2 {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 0.9;
  margin: 0;
}

/* Gallery */
.gallery-heading {
  background: var(--coal);
  padding-bottom: 80px;
}

.gallery-heading > .shell > p:last-child {
  color: var(--muted);
  margin: 28px 0 0;
}

.gallery-grid {
  display: grid;
  gap: 24px;
  grid-auto-rows: 290px;
  grid-template-columns: repeat(12, 1fr);
  padding-bottom: 120px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.gallery-grid figure::after {
  background: linear-gradient(0deg, rgba(7,7,6,.8), transparent 55%);
  content: "";
  inset: 0;
  position: absolute;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 750ms cubic-bezier(.2,.7,.2,1);
  width: 100%;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-grid figcaption {
  align-items: center;
  bottom: 25px;
  display: flex;
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.55rem;
  gap: 14px;
  left: 25px;
  position: absolute;
  z-index: 1;
}

.gallery-grid figcaption span {
  color: var(--copper);
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.gallery-wide {
  grid-column: span 8;
}

.gallery-standard {
  grid-column: span 4;
}

.gallery-tall {
  grid-column: span 4;
  grid-row: span 2;
}

/* Contact */
.contact-main {
  background: var(--bone);
  color: var(--ink);
}

.contact-grid {
  display: grid;
  gap: clamp(60px, 10vw, 160px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
}

.booking-panel {
  border: 1px solid var(--line-light);
  padding: clamp(34px, 5vw, 72px);
  position: relative;
}

.booking-panel::before {
  background: var(--copper);
  content: "";
  height: 6px;
  left: -1px;
  position: absolute;
  right: -1px;
  top: -1px;
}

.booking-panel h2 {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0 0 25px;
}

.booking-panel > p:not(.eyebrow) {
  color: #625b52;
  max-width: 540px;
}

.booking-phone {
  color: var(--copper-deep);
  display: block;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 45px 0 10px;
}

.booking-panel > span {
  color: #777067;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details > div {
  border-bottom: 1px solid var(--line-light);
  padding: 0 0 35px;
}

.contact-details h3 {
  font-family: var(--font-display), Georgia, serif;
  font-size: 2.05rem;
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 24px;
}

.contact-email {
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.45rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.social-row a {
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hours-section {
  background: var(--coal-soft);
  padding: 110px 0;
}

.hours-grid {
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.hours-grid > div {
  border-left: 1px solid var(--line-dark);
  min-height: 130px;
  padding: 24px 18px;
}

.hours-grid > div:last-child {
  border-right: 1px solid var(--line-dark);
}

.hours-grid span {
  color: var(--copper);
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.hours-grid strong {
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.location-banner {
  align-items: center;
  display: flex;
  min-height: 660px;
  overflow: hidden;
  position: relative;
}

.location-banner > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.location-shade {
  background: linear-gradient(90deg, rgba(7,7,6,.93), rgba(7,7,6,.35));
  inset: 0;
  position: absolute;
}

.location-copy {
  position: relative;
  z-index: 1;
}

.location-copy h2 {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.85;
  margin: 0 0 42px;
}

/* Motion */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(17px); }
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 22px;
  }

  .nav-inner {
    gap: 24px;
  }

  .facts-grid > div {
    padding-inline: 24px;
  }

  .menu-section {
    grid-template-columns: 220px 1fr;
  }

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

  .hours-grid > div:nth-child(4),
  .hours-grid > div:last-child {
    border-right: 1px solid var(--line-dark);
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 82px;
  }

  .shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .section {
    padding: 88px 0;
  }

  .utility-bar,
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .site-header {
    height: 78px;
  }

  .nav-inner {
    display: flex;
    height: 78px;
    justify-content: space-between;
  }

  .brand img {
    height: 48px;
  }

  .mobile-menu {
    display: block;
  }

  .home-hero {
    min-height: calc(100svh - 78px);
  }

  .hero-content {
    padding-top: 45px;
  }

  .home-hero h1 {
    font-size: clamp(4rem, 13vw, 6.5rem);
  }

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

  .facts-grid > div {
    border-left: 1px solid var(--line-dark);
    border-right: 1px solid var(--line-dark);
    min-height: 105px;
  }

  .facts-grid > div:not(:last-child) {
    border-bottom: 1px solid var(--line-dark);
  }

  .intro-grid,
  .story-grid,
  .origin-grid,
  .contact-grid,
  .reservation-grid {
    grid-template-columns: 1fr;
  }

  .story-image,
  .about-stone-image {
    max-width: 620px;
    width: 92%;
  }

  .dish-grid {
    gap: 62px;
    grid-template-columns: 1fr;
  }

  .dish-card,
  .dish-card-raised {
    transform: none;
  }

  .dish-image {
    aspect-ratio: 16 / 11;
  }

  .rating-grid {
    grid-template-columns: auto 1fr;
  }

  .rating-grid .text-link {
    grid-column: 2;
    justify-self: start;
  }

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

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

  .category-nav {
    top: 78px;
  }

  .menu-section {
    gap: 45px;
    grid-template-columns: 1fr;
  }

  .menu-section-title > span {
    margin-bottom: 20px;
  }

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

  .values-grid article,
  .values-grid article:last-child {
    border-bottom: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
    border-right: 1px solid var(--line-dark);
    padding: 34px;
  }

  .values-grid h3 {
    margin-top: 20px;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-wide,
  .gallery-standard,
  .gallery-tall {
    grid-column: span 1;
  }

  .gallery-wide {
    grid-column: span 2;
  }

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

  .hours-grid > div:nth-child(even),
  .hours-grid > div:last-child {
    border-right: 1px solid var(--line-dark);
  }

  .hours-grid > div:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 62px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section {
    padding: 74px 0;
  }

  .section-title {
    font-size: 3.25rem;
  }

  .home-hero {
    background-position: 64% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(7,7,6,.94), rgba(7,7,6,.56)), linear-gradient(0deg, rgba(7,7,6,.84), transparent 50%);
  }

  .hero-content {
    padding-bottom: 105px;
  }

  .home-hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.1rem);
    line-height: 0.84;
  }

  .hero-lead {
    font-size: 0.93rem;
    margin-top: 28px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
  }

  .hero-scroll {
    bottom: 18px;
    font-size: 0.58rem;
  }

  .facts-grid > div {
    padding: 20px 24px;
  }

  .image-frame::before {
    inset: -10px 10px 10px -10px;
  }

  .story-image,
  .about-stone-image {
    width: 96%;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 46px;
  }

  .dish-image {
    aspect-ratio: 4 / 3;
  }

  .rating-section {
    padding: 58px 0;
  }

  .rating-grid {
    gap: 26px 20px;
    grid-template-columns: 1fr;
  }

  .rating-grid .text-link {
    grid-column: 1;
  }

  .atmosphere-section {
    min-height: 600px;
  }

  .atmosphere-content h2 {
    font-size: 4rem;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .mobile-actions {
    background: rgba(11, 11, 10, 0.98);
    border-top: 1px solid var(--line-dark);
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    left: 0;
    position: fixed;
    right: 0;
    z-index: 120;
  }

  .site-footer .mobile-actions a {
    align-items: center;
    border-right: 1px solid var(--line-dark);
    color: var(--bone);
    display: flex;
    font-size: 0.66rem;
    font-weight: 800;
    justify-content: center;
    letter-spacing: 0.1em;
    margin: 0;
    min-height: 62px;
    text-transform: uppercase;
  }

  .site-footer .mobile-actions a:nth-child(2) {
    background: var(--copper);
    color: var(--coal);
  }

  .page-hero {
    min-height: 470px;
  }

  .page-hero-content {
    padding-bottom: 58px;
  }

  .page-hero h1,
  .gallery-heading h1 {
    font-size: clamp(4rem, 18vw, 5.4rem);
  }

  .category-scroll {
    gap: 24px;
  }

  .menu-note {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .menu-section {
    padding: 72px 0;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .menu-item p {
    margin-right: 0;
  }

  .menu-section-title h2 {
    font-size: 3.2rem;
  }

  .about-wide-image {
    height: 570px;
  }

  .about-wide-copy {
    bottom: 50px;
    left: 16px;
    right: 16px;
  }

  .about-wide-copy h2 {
    font-size: 3.8rem;
  }

  .gallery-grid {
    gap: 14px;
    grid-auto-rows: 250px;
    grid-template-columns: 1fr;
    padding-bottom: 80px;
  }

  .gallery-wide,
  .gallery-standard,
  .gallery-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-grid figure:nth-child(3) {
    grid-row: span 2;
  }

  .booking-panel {
    padding: 42px 24px;
  }

  .booking-phone {
    font-size: 2.8rem;
  }

  .contact-email {
    font-size: 1.05rem;
    overflow-wrap: anywhere;
  }

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

  .hours-grid > div,
  .hours-grid > div:nth-child(even),
  .hours-grid > div:last-child {
    border-left: 1px solid var(--line-dark);
    border-right: 1px solid var(--line-dark);
    grid-column: span 1;
    min-height: 96px;
  }

  .hours-grid span {
    margin-bottom: 10px;
  }

  .location-banner {
    min-height: 590px;
  }

  .location-copy h2 {
    font-size: 4.4rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* Aktualności */
.news-section {
  background: var(--bone);
  color: var(--ink);
}

.news-heading {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: 0.55fr 1.45fr;
  margin-bottom: 56px;
}

.news-heading .eyebrow {
  margin-bottom: 8px;
}

.news-heading .section-title {
  font-size: clamp(3.2rem, 5vw, 5.8rem);
}

.news-card {
  border-bottom: 1px solid var(--line-light);
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: 48px;
  grid-template-columns: 0.35fr 1.35fr 0.75fr;
  padding: 48px 0;
}

.news-card-index {
  color: var(--copper);
  font-family: var(--font-display), Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.news-card-copy {
  font-size: 1.05rem;
  max-width: 650px;
}

.news-card-copy p {
  margin: 0 0 18px;
}

.news-card-copy p:last-child {
  margin-bottom: 0;
}

.news-card-action {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.news-card-action > span {
  color: #746d63;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .news-heading,
  .news-card {
    grid-template-columns: 1fr;
  }

  .news-heading {
    gap: 8px;
    margin-bottom: 38px;
  }

  .news-card {
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .news-heading .section-title {
    font-size: 3.1rem;
  }

  .news-card {
    padding: 34px 0;
  }

  .news-card-index {
    font-size: 2.25rem;
  }

  .news-card-copy {
    font-size: 0.95rem;
  }

  .news-card-action .button {
    width: 100%;
  }
}
