:root {
  --black: #111111;
  --ink: #1f1d1a;
  --muted: #756f66;
  --cream: #f4efe6;
  --paper: #ffffff;
  --line: #ddd3c4;
  --gold: #d2ac67;
  --green: #273f34;
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 170px 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 82px;
  padding: 0 42px;
  color: #fff;
  background: rgba(17, 17, 17, 0.74);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 150px;
}

.brand img {
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 1.8vw, 1.8rem);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav a,
.header-reservation {
  opacity: 0.88;
}

.main-nav a:hover,
.header-reservation:hover {
  opacity: 1;
}

.header-reservation {
  border: 1px solid rgba(255, 255, 255, 0.72);
  padding: 0.82rem 1.1rem;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  padding: 34px;
  color: #fff;
  background: #111;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.85rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 9vw, 4.2rem);
  line-height: 1;
}

.mobile-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 88svh;
  color: #fff;
  background: #111;
  overflow: hidden;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.14) 58%, rgba(0, 0, 0, 0.36)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 48%, rgba(0, 0, 0, 0.5));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  min-height: 88svh;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 74px;
}

.eyebrow {
  margin: 0 0 0.95rem;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green);
}

.eyebrow.gold {
  color: var(--gold);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 2rem;
  font-size: clamp(3.6rem, 8vw, 8.5rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.96;
}

h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

p {
  color: var(--muted);
}

.hero p,
.events p {
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions a,
.text-button,
.light-button,
.reservation-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid currentColor;
  padding: 0.86rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-actions a:first-child {
  color: #111;
  background: #fff;
}

.text-button {
  margin-top: 0.7rem;
  color: var(--ink);
}

.light-button {
  color: #111;
  background: #fff;
}

.shortcuts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.shortcuts a {
  display: grid;
  gap: 0.25rem;
  min-height: 136px;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
}

.shortcuts a:hover {
  background: #faf7f1;
}

.shortcuts span,
.reason-grid span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.shortcuts strong {
  align-self: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1;
}

.shortcuts small {
  color: var(--muted);
}

.section-grid,
.section-block,
.contact,
.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
  padding: clamp(74px, 10vw, 132px) 0;
}

.section-copy {
  max-width: 660px;
}

.section-image img,
.tastes-image img,
.menu-tile img,
.reason-grid img {
  height: 100%;
  object-fit: cover;
}

.framed-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tastes {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  min-height: 640px;
  background: #fff;
}

.tastes-image {
  min-height: 520px;
}

.tastes-copy {
  display: grid;
  align-content: center;
  max-width: 620px;
  padding: clamp(2rem, 6vw, 5rem);
}

.menu-section {
  padding: clamp(74px, 10vw, 132px) 0;
  color: #fff;
  background: #111;
}

.center-heading {
  width: min(880px, calc(100% - 48px));
  margin: 0 auto 2.2rem;
  text-align: center;
}

.center-heading.narrow {
  max-width: 780px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.18);
}

.menu-tile {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #222;
}

.menu-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.72));
  content: "";
}

.menu-tile img {
  transition: transform 0.35s ease;
}

.menu-tile:hover img {
  transform: scale(1.04);
}

.menu-tile span {
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.95;
}

.section-block {
  padding: clamp(74px, 10vw, 132px) 0;
}

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

.reason-grid article {
  background: #fff;
  box-shadow: var(--shadow);
}

.reason-grid img {
  aspect-ratio: 4 / 5;
}

.reason-grid div {
  padding: 1.25rem;
}

.events {
  position: relative;
  min-height: 620px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.86), rgba(17, 17, 17, 0.56)),
    url("assets/images/tastes-keyif.jpg") center / cover;
}

.events-copy {
  display: grid;
  align-content: center;
  min-height: 620px;
  width: min(1180px, calc(100% - 48px));
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) 0;
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.reservation-form label {
  display: grid;
  gap: 0.42rem;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wide-field,
.reservation-form button,
.form-note {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.85rem;
  color: var(--ink);
  background: #fbfaf7;
}

input:focus,
textarea:focus {
  border-color: var(--black);
  outline: 2px solid rgba(17, 17, 17, 0.12);
}

textarea {
  resize: vertical;
}

.reservation-form button {
  border-color: #111;
  color: #fff;
  background: #111;
  cursor: pointer;
}

.form-note {
  min-height: 1.3rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr);
  gap: 2rem;
  align-items: start;
  padding: 0 0 clamp(74px, 10vw, 132px);
}

.contact-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.contact-list a {
  padding: 1.15rem;
  background: #fff;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer img {
  width: 130px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--ink);
  font-weight: 800;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 1rem;
  color: #fff;
  background: #1f9d56;
  box-shadow: 0 14px 34px rgba(31, 157, 86, 0.32);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 150px 1fr auto;
  }

  .main-nav,
  .header-reservation {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 74px;
    padding: 0 18px;
  }

  .brand {
    width: 126px;
  }

  .hero,
  .hero-content {
    min-height: 76svh;
  }

  .hero-content {
    width: min(100% - 32px, 1180px);
    padding-bottom: 52px;
  }

  .shortcuts,
  .section-grid,
  .tastes,
  .menu-grid,
  .reason-grid,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .shortcuts a {
    min-height: 108px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-grid,
  .section-block,
  .contact,
  .site-footer {
    width: min(100% - 32px, 1180px);
  }

  .tastes-image {
    min-height: 360px;
  }

  .menu-tile {
    min-height: 360px;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(3rem, 18vw, 5.4rem);
  }

  .hero-actions,
  .reservation-form {
    grid-template-columns: 1fr;
  }

  .hero-actions a,
  .text-button,
  .light-button {
    width: 100%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.18) 35%, rgba(0, 0, 0, 0.74));
  }
}
