:root {
  --red: #e71922;
  --dark: #111315;
  --black: #0a0b0c;
  --paper: #fffdf8;
  --muted: #6a6a6a;
  --gold: #d7b16b;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #181818;
  background: #fff;
  font-family: Inter, Arial, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 6vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, #111 0%, #171a1c 58%, #111 100%);
}

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

.site-nav,
.nav {
  display: flex;
  gap: 34px;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.nav-link,
.nav a {
  color: var(--red);
  padding: 27px 0 22px;
  border-bottom: 3px solid transparent;
}

.nav-link.active,
.nav-link:hover,
.nav a.active,
.nav a:hover {
  color: #fff;
  border-color: var(--red);
}

.order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 10px 25px rgba(231, 25, 34, 0.35);
  font-weight: 800;
}

.site-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  background: transparent;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: center;
  gap: 40px;
  min-height: 430px;
  padding: 38px 6vw 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.09), transparent 30%),
    linear-gradient(105deg, #111 0%, #161718 43%, #27180f 100%);
}

.hero::after,
.about-hero-page::after {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 470px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1,
.about-hero-copy h1,
.menu-hero-copy h1,
.contact-hero-copy h1 {
  margin: 0 0 20px;
  color: #f4f4f4;
  font-family: Montserrat, sans-serif;
  font-size: 74px;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-text,
.about-hero-copy p:not(.eyebrow),
.menu-hero-copy p,
.contact-hero-copy p:not(.eyebrow):not(.contact-lead) {
  color: #fff;
  font-size: 17px;
  line-height: 1.45;
}

.hero-text {
  max-width: 390px;
  margin: 0 0 24px;
}

.hero-actions,
.cta-actions,
.menu-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-radius: 999px;
  padding: 15px 28px;
  font-weight: 800;
}

.btn.primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(231, 25, 34, 0.35);
}

.btn.ghost {
  color: #fff;
  border: 1px solid rgba(215, 177, 107, 0.8);
  background: rgba(0, 0, 0, 0.25);
}

.btn.outline-red {
  color: var(--red);
  border: 1px solid var(--red);
  background: #fff;
}

.btn.light-pill {
  color: #111;
  background: #fff;
  border-color: #fff;
}

.btn.ghost-light {
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  transform: none;
  filter: drop-shadow(0 24px 45px rgba(0, 0, 0, 0.45));
}

.section {
  padding: 30px 6vw 25px;
}

.section-title h2,
.story-copy h2,
.team-copy h2,
.cta-band h2,
.menu-heading h2,
.message-box h2,
.map-box h2,
.visit-copy h2 {
  margin: 0;
  color: #202020;
  font-family: Montserrat, sans-serif;
  font-size: 38px;
  line-height: 1;
}

.section-title.center {
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1040px;
  margin: 16px auto 0;
}

.product-card {
  position: relative;
  overflow: hidden;
  padding: 7px 8px 14px;
  border: 1px solid #ddd;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 150px;
  border-radius: 7px;
  object-fit: cover;
}

.product-card h3 {
  margin: 9px 0 4px;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
}

.product-card p {
  max-width: 290px;
  margin: 0 auto 8px;
  color: #555;
  font-size: 13px;
  line-height: 1.25;
}

.product-card strong {
  color: var(--red);
  font-family: Montserrat, sans-serif;
  font-size: 22px;
}

.why-section,
.values-section {
  padding: 28px 6vw;
  background: linear-gradient(90deg, #f8f5ef, #fff, #f7f1e8);
}

.why-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 12px;
}

.why-item,
.value-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 22px;
  border-right: 1px solid #d9d2c5;
}

.why-item:last-child,
.value-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.why-item span,
.value-item span {
  display: grid;
  min-width: 66px;
  height: 66px;
  place-items: center;
  border: 3px solid #f3e7d4;
  border-radius: 50%;
  color: #e2c178;
  background: #171717;
  font-size: 34px;
}

.why-item h3,
.value-item h3,
.promise-item h3 {
  margin: 0 0 4px;
  font-family: Montserrat, sans-serif;
  font-size: 17px;
}

.why-item p,
.value-item p {
  margin: 0;
  color: #4f4f4f;
  font-size: 13px;
  line-height: 1.35;
}

.about-section,
.team-section {
  position: relative;
  display: grid;
  align-items: center;
  gap: 34px;
  padding: 52px 6vw;
  color: #fff;
  background: #111 url("../images/hero-food.jpg") center/cover fixed;
}

.about-section {
  grid-template-columns: 0.9fr 1.45fr;
}

.team-section {
  grid-template-columns: 0.9fr 1.15fr 0.9fr;
  gap: 38px;
  padding: 42px 6vw;
}

.about-section::before,
.team-section::before {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 7, 0.86);
  content: "";
}

.team-section::before {
  background: rgba(5, 6, 7, 0.88);
}

.about-section > *,
.team-section > * {
  position: relative;
}

.about-copy h2,
.team-copy h2 {
  color: #fff;
  font-size: 32px;
  line-height: 1.05;
}

.about-copy > p:not(.eyebrow),
.team-copy p {
  color: #e9e9e9;
  line-height: 1.55;
}

.line {
  padding-left: 12px;
  border-left: 4px solid var(--red);
}

.contact-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.contact-mini div {
  padding: 0 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.contact-mini div:last-child {
  border-right: 0;
}

.contact-mini b {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 27px;
}

.contact-mini span {
  font-size: 13px;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 12px;
}

.about-gallery img {
  width: 100%;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  object-fit: cover;
}

.drinks-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
  align-items: center;
  padding: 26px 6vw;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  color: #fff;
  background:
    linear-gradient(rgba(10, 11, 12, 0.82), rgba(10, 11, 12, 0.82)),
    url("../images/hero-food.jpg") center/cover;
}

.drinks-copy {
  display: flex;
  align-items: center;
  gap: 20px;
}

.drinks-copy h2 {
  color: #fff;
  font-size: 28px;
  line-height: 1.08;
}

.drinks-copy h2::after {
  display: block;
  width: 66px;
  height: 3px;
  margin-top: 12px;
  background: var(--red);
  content: "";
}

.location-copy {
  max-width: 320px;
  margin: 0 0 18px;
  color: #e8e8e8;
  font-size: 15px;
  line-height: 1.5;
}

.drinks-copy .btn.light-pill {
  flex-shrink: 0;
  min-width: max-content;
  white-space: nowrap;
}

.drinks-copy img {
  width: 260px;
}

.price-box {
  padding: 18px 28px;
  border: 1px solid rgba(215, 177, 107, 0.65);
  border-radius: 10px;
  background: #141718;
  box-shadow: var(--shadow);
}

.price-box h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-list {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 8px 16px;
  font-size: 14px;
}

.price-list span {
  padding-bottom: 3px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.45);
}

.price-list b {
  color: #fff;
}

.home-map-box {
  padding: 18px 28px;
  border: 1px solid rgba(215, 177, 107, 0.65);
  border-radius: 10px;
  background: #141718;
  box-shadow: var(--shadow);
}

.home-map-box h3 {
  margin: 0 0 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.drinks-section .map-frame {
  overflow: hidden;
  border: 1px solid rgba(215, 177, 107, 0.26);
  border-radius: 12px;
  background: #0f1112;
}

.drinks-section .map-frame iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

.about-hero-page,
.contact-hero {
  position: relative;
  display: grid;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  color: #fff;
}

.about-hero-page {
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 350px;
  padding: 44px 6vw 48px;
  background:
    radial-gradient(circle at 16% 30%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(105deg, #101112 0%, #151719 44%, #24150f 100%);
}

.about-hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 510px;
}

.about-hero-copy p:not(.eyebrow) {
  margin: 0 0 12px;
  color: #f2f2f2;
  font-size: 15.5px;
}

.about-hero-photo {
  position: relative;
  z-index: 1;
  margin: -44px -6vw -48px 0;
}

.about-hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 17, 18, 0.92) 0%, rgba(16, 17, 18, 0.22) 28%, rgba(16, 17, 18, 0.05) 100%);
  content: "";
}

.about-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-section {
  display: grid;
  grid-template-columns: 0.9fr 1.45fr;
  gap: 64px;
  align-items: center;
  padding: 36px 6vw 28px;
  background: #fff;
}

.story-copy h2 {
  font-size: 32px;
  line-height: 1.05;
}

.story-copy p:not(.eyebrow) {
  color: #202020;
  font-size: 14px;
  line-height: 1.55;
}

.promise-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 30px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, #151819, #0d0f10);
  box-shadow: var(--shadow);
  color: #fff;
}

.promise-item {
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.promise-item:last-child {
  border-right: 0;
}

.promise-item span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin: 0 auto 20px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 40px;
}

.promise-item p {
  margin: 0;
  color: #e8e8e8;
  font-size: 14px;
  line-height: 1.4;
}

.team-copy h2 {
  margin: 0 0 13px;
  font-size: 31px;
}

.team-copy p {
  margin-bottom: 26px;
}

.team-photo img {
  width: 100%;
  height: 230px;
  border-right: 7px solid var(--red);
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.35);
}

.team-list {
  display: grid;
  gap: 24px;
}

.team-list div {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.team-list b {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 24px;
}

.team-list span {
  display: block;
  color: #eee;
  line-height: 1.35;
}

.team-list strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-family: Montserrat, sans-serif;
}

.center-text {
  text-align: center;
}

.gallery-section {
  padding: 0 6vw 16px;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.gallery-grid img {
  width: 100%;
  height: 145px;
  border: 1px solid #e3e3e3;
  border-radius: 7px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.cta-band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin: 0 4vw 10px;
  padding: 24px 34px;
  border: 2px solid #fff;
  border-radius: 16px;
  background: linear-gradient(135deg, #151819, #0d0f10);
  box-shadow: 0 0 0 1px #222, var(--shadow);
  color: #fff;
}

.cta-icon {
  color: var(--red);
  font-size: 54px;
  line-height: 1;
}

.cta-band h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 27px;
}

.cta-band p {
  margin: 0;
  color: #e8e8e8;
  line-height: 1.4;
}

.menu-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.38fr;
  gap: 24px;
  align-items: center;
  padding: 34px 4.5vw 30px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 30%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(90deg, #111315 0%, #151819 34%, #3b281a 100%);
}

.menu-hero-copy h1 {
  margin: 0 0 10px;
  font-size: 82px;
  letter-spacing: -0.05em;
}

.hero-divider {
  width: 64px;
  height: 4px;
  margin: 10px 0 18px;
  border-radius: 3px;
  background: var(--red);
}

.menu-hero-copy h2 {
  margin: 0 0 14px;
  color: #ff3838;
  font-family: Montserrat, sans-serif;
  font-size: 19px;
}

.menu-hero-copy p {
  max-width: 480px;
  margin: 0 0 22px;
  color: #efefef;
  font-size: 15px;
  line-height: 1.55;
}

.menu-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 14px;
}

.menu-point {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-point span {
  display: grid;
  min-width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid rgba(226, 193, 120, 0.9);
  border-radius: 50%;
  color: #ead39e;
  background: rgba(0, 0, 0, 0.22);
  font-size: 30px;
}

.menu-point strong {
  display: block;
  margin-bottom: 2px;
  font-family: Montserrat, sans-serif;
  font-size: 17px;
}

.menu-point small {
  display: block;
  color: #e8e8e8;
  font-size: 13px;
  line-height: 1.3;
}

.menu-hero-gallery {
  display: flex;
  align-items: stretch;
  padding: 28px 30px;
  border: 1px solid rgba(226, 193, 120, 0.24);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.menu-hero-gallery .menu-points {
  width: 100%;
  height: 100%;
  margin-top: 0;
}

.menu-hero-gallery .menu-point {
  min-height: 100%;
  padding: 12px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  align-items: flex-start;
}

.menu-hero-gallery .menu-point:first-child {
  padding-left: 0;
}

.menu-hero-gallery .menu-point:last-child {
  padding-right: 0;
  border-right: 0;
}

.menu-hero-gallery .menu-point span {
  min-width: 62px;
  height: 62px;
}

.menu-hero-gallery .menu-point strong {
  margin-bottom: 4px;
  font-size: 20px;
}

.menu-hero-gallery .menu-point small {
  font-size: 14px;
  line-height: 1.45;
}

.menu-hero-item {
  min-height: 285px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.menu-hero-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-hero-item.plate-item {
  min-height: 240px;
  background: none;
}

.menu-hero-item.plate-item img {
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.45));
}

.menu-list-section,
.beverage-section {
  color: #fff;
  background: linear-gradient(90deg, #0e1011, #131619, #19100c);
}

.menu-list-section {
  padding: 26px 4.5vw 16px;
}

.beverage-section {
  padding: 10px 4.5vw 20px;
}

.menu-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.menu-heading-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 22px;
}

.menu-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.menu-card {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.menu-card img {
  width: 112px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  object-fit: cover;
}

.menu-card-copy h3 {
  margin: 0 0 8px;
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  line-height: 1.25;
}

.menu-card-copy p {
  margin: 0;
  color: #d7d7d7;
  font-size: 13px;
  line-height: 1.35;
}

.menu-card-price {
  position: relative;
  padding-left: 12px;
  color: var(--red);
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-card-price::before {
  position: absolute;
  top: 50%;
  right: 100%;
  left: -66px;
  height: 1px;
  border-bottom: 2px dotted rgba(255, 255, 255, 0.45);
  transform: translateY(-50%);
  content: "";
}

.extra-info-box {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px 18px 14px;
  border: 1px solid rgba(255, 0, 0, 0.35);
  border-radius: 14px;
}

.extra-info-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.extra-info-main span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 700;
}

.extra-info-main strong {
  display: block;
  margin-bottom: 4px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
}

.extra-info-main p {
  margin: 0;
  color: #d6d6d6;
  font-size: 14px;
}

.extra-info-prices {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.extra-info-prices div {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.extra-info-prices div:first-child {
  padding-left: 0;
  border-left: 0;
}

.extra-info-prices b,
.extra-info-prices span {
  display: block;
}

.extra-info-prices b {
  margin-bottom: 6px;
  color: #fff;
  font-size: 14px;
}

.extra-info-prices span {
  color: #d8d8d8;
  font-size: 13px;
}

.extra-info-prices strong {
  color: var(--red);
}

.beverage-box {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 16px;
  align-items: stretch;
}

.beverage-photo,
.beverage-prices {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.beverage-photo {
  padding: 18px 18px 12px;
}

.beverage-photo img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: contain;
}

.beverage-prices {
  padding: 22px 24px;
}

.beverage-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.beverage-column div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.28);
}

.beverage-column div:last-child {
  border-bottom: 0;
}

.beverage-column span {
  color: #f2f2f2;
  font-size: 15px;
}

.beverage-column b {
  color: var(--red);
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  white-space: nowrap;
}

.menu-cta-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  margin: 18px 4.5vw;
  padding: 18px 24px;
  border-radius: 14px;
  background: linear-gradient(90deg, #b30e12, #eb171c);
  color: #fff;
  box-shadow: var(--shadow);
}

.menu-cta-copy {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-cta-copy span {
  font-size: 40px;
}

.menu-cta-copy h2 {
  margin: 0 0 4px;
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
}

.menu-cta-copy p {
  margin: 0;
  color: #ffeaea;
}

.contact-hero {
  grid-template-columns: 1fr;
  background:
    radial-gradient(circle at 10% 30%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(90deg, #101112 0%, #151719 55%, #2a1c12 100%);
}

.contact-hero-copy {
  align-self: center;
  max-width: 720px;
  padding: 56px 6vw 48px;
}

.contact-hero-copy h1 {
  margin: 0 0 14px;
  color: #f7f7f7;
}

.contact-lead {
  margin: 0 0 16px !important;
  color: #fff !important;
  font-family: Montserrat, sans-serif;
  font-size: 20px !important;
  line-height: 1.25 !important;
}

.contact-hero-photo {
  position: relative;
  min-height: 380px;
}

.contact-hero-photo::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 17, 18, 0.88) 0%, rgba(16, 17, 18, 0.18) 24%, rgba(16, 17, 18, 0.02) 100%);
  content: "";
}

.contact-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-cards-wrap,
.contact-main-grid,
.visit-section {
  background: #f8f6f2;
}

.contact-cards-wrap {
  padding: 0 4vw;
}

.contact-cards {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: -22px;
}

.contact-card {
  display: grid;
  grid-template-columns: 66px 1fr;
  column-gap: 16px;
  align-items: start;
  padding: 22px 18px 18px;
  border: 1px solid #e7e3db;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.contact-card span {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  grid-row: 1 / span 3;
  margin: 0;
  border: 2px solid #ede6da;
  border-radius: 50%;
  color: var(--red);
  background: #161616;
  font-size: 32px;
}

.contact-card h3 {
  margin: 6px 0 10px;
  color: #1c1c1c;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
}

.contact-card p {
  margin: 0 0 14px;
  color: #4b4b4b;
  font-size: 14px;
  line-height: 1.5;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
}

.contact-card a b {
  font-size: 18px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 18px;
  padding: 18px 4vw 20px;
}

.message-box,
.map-box,
.visit-copy,
.visit-gallery {
  border: 1px solid #e7e3db;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.message-box,
.map-box {
  padding: 24px 22px;
  background: #fff;
}

.message-box {
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08), transparent 25%),
    linear-gradient(115deg, #161819, #0c0d0e);
}

.message-box h2,
.map-box h2,
.visit-copy h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.05;
}

.message-box h2 {
  color: #fff;
}

.message-box p {
  margin: 0 0 18px;
  color: #e7e7e7;
  font-size: 14px;
  line-height: 1.45;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
  font-family: Inter, sans-serif;
  font-size: 14px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b7b7b7;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.48);
}

.full-btn {
  justify-content: center;
  width: 100%;
  margin-top: 4px;
}

.message-box small {
  display: block;
  margin-top: 12px;
  color: #cfcfcf;
  font-size: 12px;
}

.form-success {
  display: none;
  padding: 12px 14px;
  border: 1px solid rgba(98, 201, 147, 0.4);
  border-radius: 10px;
  color: #d7ffe8;
  background: rgba(98, 201, 147, 0.14);
  font-size: 14px;
}

.form-success.is-visible {
  display: block;
}

.map-box > p {
  margin: 0 0 14px;
  color: #666;
}

.map-frame {
  overflow: hidden;
  border: 1px solid #e6e2da;
  border-radius: 14px;
  background: #f3f1ee;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 365px;
  border: 0;
}

.visit-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 20px;
  padding: 0 4vw 24px;
}

.visit-copy,
.visit-gallery {
  background: #fff;
}

.visit-copy {
  padding: 24px 24px 26px;
}

.visit-copy p:not(.eyebrow) {
  color: #484848;
  line-height: 1.55;
}

.visit-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 24px;
  list-style: none;
}

.visit-list li {
  position: relative;
  padding-left: 28px;
  color: #383838;
}

.visit-list li::before {
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--red);
  font-size: 14px;
  content: "●";
}

.visit-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
  padding: 18px;
}

.visit-gallery img {
  width: 100%;
  height: 230px;
  border: 1px solid #e6e2da;
  border-radius: 10px;
  object-fit: cover;
}

.footer {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1.3fr 0.8fr;
  gap: 46px;
  padding: 34px 6vw 26px;
  color: #fff;
  background: linear-gradient(90deg, #151819, #111);
}

.footer img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.footer p {
  color: #ddd;
  font-size: 13px;
  line-height: 1.5;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact p:first-of-type {
  align-items: flex-start;
}

.footer-contact p i {
  flex: 0 0 auto;
  margin-top: 2px;
}

.footer-contact p a {
  display: inline;
  margin-bottom: 0;
}

.footer h4 {
  margin: 0 0 12px;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-links a,
.footer a {
  display: block;
  margin-bottom: 7px;
  color: #f4f4f4;
  font-size: 13px;
}

.footer-links a.active,
.footer a.active {
  color: #fff;
}

.socials {
  display: flex;
  gap: 18px;
}

.socials a {
  font-size: 25px;
  font-weight: 800;
}

.copyright {
  padding: 10px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  color: #fff !important;
  background: #25d366;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
  font-weight: 800;
}

.whatsapp-float i {
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 1100px) {
  .menu-hero,
  .contact-hero,
  .contact-cards,
  .contact-main-grid,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    margin-top: 18px;
  }

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

  .contact-hero-copy {
    max-width: none;
  }

  .contact-hero-photo {
    min-height: 320px;
  }

  .menu-hero-copy h1 {
    font-size: 64px;
  }

  .menu-points,
  .menu-grid,
  .beverage-box,
  .menu-cta-section,
  .extra-info-box {
    grid-template-columns: 1fr;
  }

  .menu-hero-gallery {
    padding: 24px;
  }

  .menu-hero-gallery .menu-point {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .menu-hero-gallery .menu-point:first-child {
    padding-left: 0;
  }

  .menu-hero-gallery .menu-point:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

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

  .beverage-columns,
  .about-hero-page,
  .story-section,
  .team-section,
  .values-grid,
  .gallery-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .about-hero-copy h1 {
    font-size: 55px;
  }

  .about-hero-photo {
    margin: 0;
  }

  .about-hero-photo img {
    min-height: 250px;
  }

  .promise-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .promise-item {
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .promise-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .value-item {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid #ddd;
  }

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

  .cta-actions,
  .menu-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 950px) {
  .site-header {
    flex-wrap: wrap;
    height: auto;
    gap: 14px;
    padding: 14px 5vw;
  }

  .brand img {
    width: 170px;
  }

  .site-menu-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .site-nav,
  .nav {
    order: 3;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  body.menu-open .site-nav,
  body.menu-open .nav {
    max-height: 240px;
  }

  .nav-link,
  .nav a {
    width: 100%;
    padding: 10px 0;
  }

  .order-btn {
    order: 4;
    width: 100%;
    padding: 12px 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .cards,
  .why-grid,
  .about-section,
  .drinks-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .cards {
    gap: 24px;
  }

  .why-item {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid #ddd;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }

  .about-gallery img {
    height: 210px;
  }

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

  .drinks-copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-mini {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-heading h2 {
    font-size: 24px;
  }

  .menu-card {
    grid-template-columns: 92px 1fr;
    grid-template-areas:
      "image copy"
      "image price";
  }

  .menu-card img {
    grid-area: image;
    width: 92px;
    height: 82px;
  }

  .menu-card-copy {
    grid-area: copy;
  }

  .menu-card-price {
    grid-area: price;
    padding-left: 0;
  }

  .menu-card-price::before {
    display: none;
  }

  .menu-point {
    align-items: flex-start;
  }

  .menu-points,
  .form-grid-2,
  .visit-gallery {
    grid-template-columns: 1fr;
  }

  .extra-info-prices {
    grid-template-columns: 1fr;
  }

  .extra-info-prices div {
    padding-top: 12px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .extra-info-prices div:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .menu-cta-copy {
    align-items: flex-start;
  }

  .contact-hero-copy h1 {
    font-size: 54px;
  }

  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }

  .contact-card p {
    min-height: auto;
  }

  .map-frame iframe {
    height: 280px;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 44px;
  }

  .section-title h2 {
    font-size: 31px;
  }

  .hero-actions,
  .cta-actions,
  .menu-cta-actions {
    display: grid;
  }

  .btn {
    justify-content: center;
  }

  .product-card img {
    height: 190px;
  }

  .hero-image img {
    transform: none;
  }

  .cards {
    margin-top: 24px;
  }

  .footer {
    gap: 20px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 13px 15px;
  }

  .whatsapp-float span {
    display: none;
  }

  .price-box {
    padding: 16px;
  }

  .drinks-copy img {
    width: 100%;
  }

  .about-hero-copy h1 {
    font-size: 42px;
  }

  .story-copy h2,
  .team-copy h2 {
    font-size: 28px;
  }

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

  .gallery-grid img {
    height: 190px;
  }

  .cta-band {
    margin: 0 3vw 12px;
    padding: 20px;
  }

  .about-hero-page {
    padding-top: 32px;
  }

  .menu-hero-copy h1 {
    font-size: 52px;
  }

  .beverage-photo img {
    height: 160px;
  }

  .menu-cta-section {
    padding: 18px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-hero-copy {
    padding: 38px 6vw 30px;
  }

  .contact-lead {
    font-size: 18px !important;
  }

  .message-box,
  .map-box,
  .visit-copy,
  .visit-gallery {
    padding: 18px;
  }

  .message-box h2,
  .map-box h2,
  .visit-copy h2 {
    font-size: 24px;
  }
}
