:root {
  --brand: #29235c;
  --brand-deep: #181435;
  --brand-soft: #3a356f;
  --accent: #8d735f;
  --text: #3d3d3d;
  --muted: #989898;
  --line: #ddd8eb;
  --paper: #fbfbfb;
  --alt: #f7f6fb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 27px;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 20px 0;
  font-family: "Muli", sans-serif;
  line-height: 1.3em;
}

h1,
h2,
h4,
h5 {
  letter-spacing: 0.1em;
}

h3,
h6 {
  letter-spacing: 0.05em;
}

h1 {
  font-size: 70px;
  font-weight: 200;
}

h2 {
  font-size: 36px;
  font-weight: 400;
}

h3 {
  font-size: 30px;
  font-weight: 400;
}

h4 {
  font-size: 20px;
  font-weight: 400;
}

h5 {
  font-size: 15px;
  font-weight: 400;
}

h6 {
  font-size: 17px;
  font-weight: 400;
}

p {
  margin: 0;
  line-height: 1.7;
}

section[id] {
  scroll-margin-top: 6rem;
}

iframe {
  max-width: 100%;
}

.container {
  width: min(1300px, calc(100% - 3rem));
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-title-wrap {
  margin-bottom: 1.8rem;
}

.section-kicker,
.hero-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: #0fc1eb;
  font-family: "Muli", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}

.section-lead {
  margin-top: 0.9rem;
  color: var(--muted);
  max-width: 70ch;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
  transition: background 200ms ease, backdrop-filter 200ms ease;
}

.site-header.scrolled {
  background: rgba(24, 20, 53, 0.97);
  backdrop-filter: blur(8px);
}

.nav-shell {
  min-height: 4.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: var(--white);
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-main {
  font-size: clamp(1.4rem, 2.1vw, 1.8rem);
}

.brand-sub {
  margin-top: 0.2rem;
  font-family: "Muli", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.6rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-family: "Muli", sans-serif;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(24, 20, 53, 0.48), rgba(24, 20, 53, 0.2) 44%, rgba(24, 20, 53, 0.06)),
    radial-gradient(circle at 86% 28%, rgba(41, 35, 92, 0.16), transparent 56%);
}

.hero-logo-backdrop {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(190px, 23vw, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: 1;
  background: radial-gradient(
    circle,
    rgba(24, 20, 53, 0.52) 0%,
    rgba(24, 20, 53, 0.24) 38%,
    rgba(24, 20, 53, 0) 66%
  );
  filter: blur(2px);
  pointer-events: none;
}

.hero-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(220px, 27vw, 410px);
  max-width: 66vw;
  height: auto;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 16px 34px rgba(24, 20, 53, 0.5));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 0 4.5rem;
  color: var(--white);
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero h1 {
  max-width: 12.5ch;
  margin-top: 6px;
  margin-bottom: 8px;
  font-size: clamp(40px, 6.1vw, 66px);
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 300;
}

.hero-content p {
  margin-top: 1.1rem;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.92);
}

.attikos-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-self: flex-end;
  margin-right: clamp(0rem, 4vw, 4rem);
  gap: 0.5rem;
  max-width: 46rem;
}

.attikos-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  padding: 20px 40px;
  border: 1px solid var(--white);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-family: "Muli", sans-serif;
  font-size: 12px;
  line-height: 21px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.attikos-btn:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--brand);
}

.button-row {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-self: flex-end;
  margin-right: clamp(0rem, 4vw, 4rem);
  gap: 0.6rem;
}

.edgt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 22px;
  border: 1px solid var(--brand);
  color: var(--brand);
  background: transparent;
  font-family: "Muli", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  transition: background-color 180ms ease, color 180ms ease;
}

.edgt-btn:hover {
  background: var(--brand);
  color: var(--white);
}

.hero .edgt-btn {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.hero .edgt-btn:hover {
  border-color: var(--white);
  color: var(--brand);
  background: var(--white);
}

.hero-stats {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 42rem;
}

.hero-stats li {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.85rem;
}

.hero-stats span {
  display: block;
  font-family: "Muli", sans-serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1;
}

.hero-stats small {
  display: block;
  margin-top: 0.32rem;
  font-family: "Muli", sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.84);
}

.values {
  background: var(--white);
}

.values h2 {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--brand-deep);
}

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

.value-card {
  border: 1px solid var(--line);
  border-left: 3px solid #0fc1eb;
  padding: 1.45rem 1.2rem;
  background: var(--white);
}

.value-card h3 {
  color: var(--brand);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.menu-section {
  background: var(--alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-section h2 {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--brand-deep);
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

.menu-row.reverse {
  direction: rtl;
}

.menu-row.reverse > * {
  direction: ltr;
}

.menu-image img {
  height: 100%;
  min-height: 27rem;
  object-fit: cover;
  border: 1px solid var(--line);
}

.menu-column {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 1.35rem;
}

.menu-column h3,
.menu-card h3 {
  color: var(--brand);
  margin: 0 0 4px;
  font-size: 30px;
  text-transform: uppercase;
}

.zigzag {
  margin: 0.8rem 0 1.1rem;
  width: 46%;
  height: 8px;
  background-image:
    linear-gradient(-45deg, transparent 33.33%, #0fc1eb 33.33%, #0fc1eb 66.66%, transparent 66.66%),
    linear-gradient(45deg, transparent 33.33%, #0fc1eb 33.33%, #0fc1eb 66.66%, transparent 66.66%);
  background-size: 12px 8px;
  background-position: 0 0, 6px 0;
}

.rml-holder {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rml-item {
  margin-bottom: 45px;
}

.rml-item:last-child {
  margin-bottom: 0;
}

.rml-item-content {
  display: table;
  width: 100%;
}

.rml-title-holder {
  display: table-cell;
  width: 1%;
  white-space: nowrap;
  padding-right: 5px;
}

.rml-title {
  margin: 0;
  font-size: 17px;
  color: var(--brand-deep);
  text-transform: uppercase;
  line-height: 1.15em;
  overflow-wrap: anywhere;
}

.rml-line {
  height: 3px;
  border-bottom: 1px solid rgba(141, 115, 95, 0.4);
  display: table-cell;
  width: 98%;
  position: relative;
  bottom: 8px;
}

.rml-price-holder {
  display: table-cell;
  width: 1%;
  padding-left: 7px;
  white-space: nowrap;
}

.rml-price {
  margin: 0;
  font-family: "Muli", sans-serif;
  color: var(--brand);
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.rml-bottom-holder {
  position: relative;
  top: 6px;
}

.rml-text {
  margin-top: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.2em;
  overflow-wrap: anywhere;
}

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

.menu-grid > * {
  min-width: 0;
}

.menu-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 1.2rem 1.3rem;
  min-width: 0;
}

.menu-photo-plain {
  min-width: 0;
  position: relative;
  z-index: 1;
  margin-top: -4.8rem;
  margin-left: 0;
  overflow: visible;
}

.menu-photo {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(24, 20, 53, 0.24));
}

.menu-photo-peek {
  transform: scaleX(-1) rotate(-4deg);
  transform-origin: center;
  opacity: 0.22;
}

.menu-pizza-card {
  position: relative;
  z-index: 2;
}

.specials-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.special-card {
  border: 1px solid var(--line);
  border-left: 3px solid #0fc1eb;
  background: var(--white);
  padding: 1.25rem 1.3rem;
}

.special-card h3 {
  margin: 0;
  color: var(--brand);
  text-transform: uppercase;
  font-size: 26px;
}

.special-price {
  display: inline-block;
  margin: 0 0 0.7rem;
  padding: 0.24rem 0.65rem;
  border: 1px solid #0fc1eb;
  color: #0fc1eb;
  font-family: "Muli", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.special-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
}

.special-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.special-list li + li {
  margin-top: 0.55rem;
}

.events-section {
  background: var(--alt);
  border-bottom: 1px solid var(--line);
}

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

.event-card {
  border: 1px solid var(--line);
  border-left: 3px solid #0fc1eb;
  background: var(--white);
  padding: 1.25rem 1.3rem;
}

.event-card h3 {
  margin: 0 0 0.45rem;
  color: var(--brand);
  text-transform: uppercase;
  font-size: 24px;
}

.event-card p {
  color: var(--muted);
}

.rml-holder.compact .rml-item + .rml-item {
  margin-top: 0;
  padding-top: 0;
}

.quote-band {
  padding: 6rem 0;
  background:
    linear-gradient(rgba(24, 20, 53, 0.65), rgba(24, 20, 53, 0.65)),
    url("assets/social/31.jpg")
      center/cover no-repeat;
  text-align: center;
}

.quote-band h2 {
  font-size: clamp(32px, 4vw, 50px);
  color: var(--white);
  max-width: 28ch;
  margin: 0 auto;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 300;
}

.gallery {
  background: var(--white);
}

.gallery h2 {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--brand-deep);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Gallery Modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.gallery-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 90vh;
}

.modal-image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

.modal-prev,
.modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  font-size: 2rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background 150ms ease;
}

.modal-prev:hover,
.modal-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-prev {
  left: -4rem;
}

.modal-next {
  right: -4rem;
}

.modal-counter {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

@media (max-width: 760px) {
  .modal-prev,
  .modal-next {
    position: fixed;
    top: auto;
    bottom: 1rem;
    transform: none;
  }

  .modal-prev {
    left: 1rem;
  }

  .modal-next {
    right: 1rem;
  }

  .modal-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
  }

  .modal-counter {
    position: fixed;
    bottom: 1rem;
    left: 50%;
  }
}

.social {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--alt);
}

.social::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/menu/pic1.png");
  background-repeat: no-repeat;
  background-position: center 62%;
  background-size: 92% auto;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.social > .container {
  position: relative;
  z-index: 1;
}

.social h2 {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--brand-deep);
}

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

.social-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-left: 3px solid #0fc1eb;
  background: var(--white);
  padding: 1.2rem;
}

.social-head {
  display: flex;
  align-items: center;
  gap: 0.78rem;
}

.social-head img {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.social-head h3 {
  margin: 0;
  font-size: 20px;
  color: var(--brand);
  text-transform: uppercase;
}

.handle {
  margin-top: 0.12rem;
  font-family: "Muli", sans-serif;
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--muted);
}

.social-card p {
  margin-top: 0.75rem;
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.contact-panel {
  border: 1px solid var(--line);
  padding: 1.4rem 1.35rem;
}

.contact-panel h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--brand-deep);
}

.contact-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li + li {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px dashed #ddd8eb;
}

.contact-label {
  display: block;
  font-family: "Muli", sans-serif;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.66rem;
  margin-bottom: 0.16rem;
  font-weight: 700;
}

.hours-title {
  margin-top: 1rem;
  color: var(--brand);
  font-size: 20px;
  text-transform: uppercase;
}

.hours-copy {
  margin-top: 0.3rem;
  color: var(--muted);
}

.contact-section .button-row {
  justify-content: flex-start;
  margin-top: 1.1rem;
}

.contact-grid iframe {
  width: 100%;
  min-height: 24rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.site-footer {
  margin-top: 0;
}

.footer-top {
  background: var(--brand);
  color: rgba(255, 255, 255, 0.92);
  padding: 2.1rem 0;
}

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

.footer-col h5 {
  margin: 0 0 8px;
  font-size: 15px;
  margin-bottom: 0.45rem;
  color: #faf9ff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-col p {
  color: #aeadbb;
}

.footer-col p + p {
  margin-top: 0.32rem;
}

.footer-bottom {
  background: var(--brand-deep);
  color: var(--white);
  padding: 0.95rem 0;
}

.footer-bottom a {
  color: var(--white);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 430ms ease, transform 430ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .section {
    padding: 4rem 0;
  }

  .values-grid,
  .menu-row,
  .menu-grid,
  .specials-grid,
  .events-grid,
  .social-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-row.reverse {
    direction: ltr;
  }

  .menu-image img {
    min-height: 18rem;
  }

  .hero {
    min-height: 40rem;
  }

  .hero-content {
    text-align: center;
    align-items: center;
    padding: 6.5rem 0 3.8rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 16.2rem;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    right: 0.75rem;
    top: 4.5rem;
    min-width: 12rem;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(24, 20, 53, 0.97);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.38rem;
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    padding: 0.3rem 0.15rem;
  }

  .hero .attikos-actions,
  .hero .button-row {
    justify-content: center;
    align-self: center;
    margin-right: 0;
  }

  .menu-photo-plain {
    margin: 0;
  }

  .menu-photo {
    width: 100%;
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1240px, calc(100% - 1.5rem));
  }

  .hero-content {
    padding: 7rem 0 3.8rem;
    text-align: center;
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 40px);
    max-width: none;
  }

  .hero-content p {
    max-width: none;
  }

  .hero-logo {
    width: clamp(175px, 44vw, 300px);
  }

  .hero-logo-backdrop {
    width: clamp(165px, 48vw, 255px);
  }

  .attikos-actions {
    justify-content: center;
    margin-right: 0;
  }

  .hero .button-row {
    justify-content: center;
    margin-right: 0;
  }

  .attikos-btn {
    width: 100%;
  }

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

  .footer-bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  .zigzag {
    margin-left: auto;
    margin-right: auto;
  }

  .menu-card h3,
  .special-card h3,
  .event-card h3,
  .menu-column h3 {
    text-align: center;
  }

  .menu-card .zigzag,
  .special-card .zigzag,
  .menu-column .zigzag {
    width: min(180px, 70%);
    margin-left: auto;
    margin-right: auto;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .rml-item {
    margin-bottom: 1.2rem;
  }

  .rml-item-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    column-gap: 0.6rem;
    row-gap: 0.2rem;
  }

  .rml-title-holder {
    display: block;
    width: auto;
    white-space: normal;
    padding-right: 0;
  }

  .rml-line {
    display: none;
  }

  .rml-price-holder {
    display: block;
    width: auto;
    padding-left: 0;
  }

  .rml-title,
  .rml-price {
    font-size: 15px;
    line-height: 1.2em;
  }

  .rml-bottom-holder {
    top: 0;
    margin-top: 0.35rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 1rem);
  }

  .nav-shell {
    min-height: 4rem;
  }

  .hero {
    min-height: 32rem;
  }

  .hero-logo {
    width: clamp(140px, 50vw, 200px);
  }

  .hero-logo-backdrop {
    width: clamp(130px, 55vw, 190px);
  }

  .attikos-btn {
    padding: 16px 24px;
    font-size: 11px;
  }

  .edgt-btn {
    padding: 8px 16px;
    font-size: 11px;
  }

  .section {
    padding: 3rem 0;
  }

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

  .value-card,
  .social-card,
  .menu-card {
    padding: 1rem;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  .section-kicker,
  .hero-kicker {
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .site-nav {
    left: 0.5rem;
    right: 0.5rem;
    min-width: 0;
  }

  .attikos-actions {
    width: 100%;
  }

  .attikos-btn {
    padding-inline: 14px;
  }

  .modal-image {
    max-width: 95vw;
    max-height: 75vh;
  }
}
