:root {
  color-scheme: light;
  --ink: #12100d;
  --black-green: #17251c;
  --paper: #fff2dc;
  --porcelain: #fffaf1;
  --smoke: #e9ddc9;
  --red: #b73925;
  --green: #385f3d;
  --blue: #0e6373;
  --gold: #d4a43a;
  --muted: #63594d;
  --line: rgba(18, 16, 13, 0.14);
  --deep-shadow: 0 30px 80px rgba(18, 16, 13, 0.32);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  font-family:
    "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(18, 16, 13, 0.045) 1px, transparent 1px),
    linear-gradient(var(--paper), var(--porcelain) 46%, var(--paper));
  background-size: 72px 72px, auto;
  color: var(--ink);
  overflow-x: hidden;
}

body.nav-open-active {
  overflow: hidden;
}

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

a {
  color: inherit;
}

::selection {
  background: var(--red);
  color: #fff;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 16px 12px 18px;
  color: #fffaf1;
  background: rgba(18, 16, 13, 0.82);
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  animation: headerDrop 780ms var(--ease-out) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 164px;
  min-width: 132px;
}

.brand img {
  width: 100%;
  height: auto;
  filter: invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links a {
  opacity: 0.82;
  text-decoration: none;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
  opacity: 1;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.08);
  color: #fffaf1;
  cursor: pointer;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    transform 240ms var(--ease-out);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 250, 241, 0.16);
  border-color: rgba(255, 250, 241, 0.44);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition:
    opacity 220ms ease,
    transform 260ms var(--ease-out);
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: stretch;
  padding: 118px 56px 42px;
  color: #fffaf1;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/mpougatsa3.jpg");
  background-position: center;
  background-size: cover;
  transform: translate3d(0, var(--hero-scroll, 0px), 0) scale(1.06);
  transition: transform 140ms linear;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 16, 13, 0.94) 0%, rgba(18, 16, 13, 0.74) 48%, rgba(18, 16, 13, 0.22) 100%),
    linear-gradient(180deg, rgba(18, 16, 13, 0.25) 0%, rgba(18, 16, 13, 0.82) 100%),
    repeating-linear-gradient(90deg, rgba(255, 250, 241, 0.04) 0 1px, transparent 1px 72px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
}

.hero-copy-block {
  max-width: 940px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p,
a,
strong {
  overflow-wrap: anywhere;
}

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

h1 {
  font-size: 6.8rem;
  font-weight: 700;
  line-height: 0.86;
}

h1 span {
  display: block;
  animation: titleRise 900ms var(--ease-out) both;
}

h1 span:nth-child(2) {
  animation-delay: 120ms;
}

h2 {
  font-size: 4.2rem;
  line-height: 0.98;
}

h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(255, 250, 241, 0.84);
  font-size: 1.2rem;
  line-height: 1.65;
  animation: softRise 860ms var(--ease-out) 220ms both;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-actions {
  animation: softRise 820ms var(--ease-out) 340ms both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 260ms var(--ease-out),
    background 260ms ease,
    border-color 260ms ease,
    color 260ms ease,
    box-shadow 260ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button.primary {
  background: var(--red);
  color: white;
  box-shadow: 0 14px 34px rgba(183, 57, 37, 0.28);
}

.button.ghost {
  border-color: rgba(255, 250, 241, 0.52);
  color: #fffaf1;
}

.button.light {
  background: #fffaf1;
  color: var(--ink);
}

.button.outline {
  border-color: var(--ink);
  color: var(--ink);
}

.ticket-label {
  display: block;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

[data-reveal] {
  --reveal-delay: 0ms;
  --reveal-transform: translate3d(0, 38px, 0) scale(0.985);
  --reveal-final-transform: none;
  opacity: 0;
  filter: blur(8px);
  transform: var(--reveal-transform);
  transition:
    opacity 860ms var(--ease-out) var(--reveal-delay),
    filter 860ms var(--ease-out) var(--reveal-delay),
    transform 860ms var(--ease-out) var(--reveal-delay);
  will-change: opacity, filter, transform;
}

[data-reveal="image"] {
  --reveal-transform: translate3d(0, 52px, 0) scale(0.97);
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: var(--reveal-final-transform);
}

.editorial-section,
.gallery-section,
.visit-section {
  padding: 104px 56px;
}

.section-intro,
.gallery-heading {
  max-width: 920px;
  margin-bottom: 42px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-auto-rows: minmax(280px, auto);
  gap: 18px;
  align-items: stretch;
}

.image-panel,
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--smoke);
}

.image-panel img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 820ms var(--ease-out),
    filter 820ms var(--ease-out);
}

.image-panel:hover img,
.gallery-item:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.02);
}

.hero-panel {
  grid-row: span 2;
  min-height: 640px;
}

.image-panel figcaption,
.gallery-item figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 10px;
  background: rgba(18, 16, 13, 0.78);
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 6px;
  color: #fffaf1;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  transform: translateY(0);
  transition:
    transform 320ms var(--ease-out),
    background 320ms ease;
}

.image-panel:hover figcaption,
.gallery-item:hover figcaption {
  background: rgba(18, 16, 13, 0.88);
  transform: translateY(-3px);
}

.text-panel {
  display: grid;
  align-content: end;
  gap: 18px;
  min-height: 304px;
  padding: 30px;
  background: var(--ink);
  border-radius: 8px;
  color: #fffaf1;
}

.text-panel.green {
  background: var(--green);
}

.panel-number {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 950;
}

.text-panel p,
.menu-copy p,
.visit-copy p {
  margin: 0;
  color: rgba(255, 250, 241, 0.76);
  font-size: 1.02rem;
  line-height: 1.7;
}

.menu-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 76px;
  align-items: start;
  min-height: 118svh;
  padding: 98px 56px;
  background:
    linear-gradient(90deg, rgba(183, 57, 37, 0.92), rgba(18, 16, 13, 0.96)),
    url("assets/mpougatsa.jpg");
  background-position: center;
  background-size: cover;
  color: #fffaf1;
}

.menu-copy {
  max-width: 760px;
  padding-top: 44px;
}

.menu-copy h2 {
  max-width: 760px;
}

.menu-copy p {
  max-width: 620px;
  margin-top: 24px;
}

.menu-ticket {
  --reveal-transform: translate3d(0, 58px, 0) scale(0.96);
  --reveal-final-transform: none;
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
  width: min(100%, 390px);
  padding: 18px;
  background: linear-gradient(180deg, #fffaf1, #f6ead5);
  border: 1px solid rgba(18, 16, 13, 0.12);
  border-radius: 8px;
  color: var(--ink);
  box-shadow: var(--deep-shadow);
  text-align: center;
  text-decoration: none;
  justify-self: end;
  transform: var(--reveal-transform);
  transition:
    opacity 860ms var(--ease-out) var(--reveal-delay),
    filter 860ms var(--ease-out) var(--reveal-delay),
    transform 860ms var(--ease-out) var(--reveal-delay),
    box-shadow 520ms ease;
}

.menu-ticket:hover,
.menu-ticket:focus-visible {
  box-shadow: 0 34px 90px rgba(18, 16, 13, 0.42);
  transform: translateY(-4px);
}

.menu-ticket img {
  width: 100%;
  height: auto;
  aspect-ratio: 1063 / 1179;
  object-fit: contain;
}

.menu-ticket strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  letter-spacing: 0;
}

.gallery-section {
  background: var(--porcelain);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.95fr;
  grid-auto-rows: 255px;
  gap: 16px;
}

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

.gallery-item.portrait {
  grid-row: span 2;
}

.gallery-item.dark-card {
  display: grid;
  place-items: center;
  padding: 34px;
  background: var(--ink);
}

.gallery-item.dark-card img {
  height: auto;
  filter: invert(1);
  object-fit: contain;
}

.visit-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  background:
    linear-gradient(90deg, rgba(255, 242, 220, 0.9), rgba(216, 230, 234, 0.78)),
    repeating-linear-gradient(0deg, rgba(18, 16, 13, 0.08) 0 1px, transparent 1px 42px);
}

.visit-copy {
  max-width: 820px;
}

.visit-copy p {
  margin-top: 22px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 56px;
  background: var(--ink);
  color: #fffaf1;
}

.site-footer img {
  width: 156px;
  height: auto;
  aspect-ratio: 2170 / 725;
  object-fit: contain;
  flex: 0 0 auto;
  filter: invert(1);
}

.site-footer p {
  max-width: 100%;
  margin: 0;
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.5;
  text-transform: uppercase;
}

@media (min-width: 1300px) {
  h1 {
    font-size: 8.1rem;
  }

  h2 {
    font-size: 5rem;
  }

  .hero-copy {
    font-size: 1.3rem;
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 12px;
    right: 12px;
    left: 12px;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    padding: 10px 12px;
  }

  .brand {
    position: relative;
    z-index: 2;
    width: 148px;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    z-index: 1;
    inset: 0;
    width: auto;
    min-height: 100dvh;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 110px 32px 36px;
    background:
      linear-gradient(145deg, rgba(56, 95, 61, 0.28), transparent 54%),
      var(--ink);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 260ms ease,
      transform 360ms var(--ease-out),
      visibility 0s linear 360ms;
  }

  .site-header.nav-open .nav-links {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 260ms ease,
      transform 360ms var(--ease-out),
      visibility 0s;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 78px;
    border-top: 1px solid rgba(255, 250, 241, 0.18);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 700;
    opacity: 1;
  }

  .nav-links a:last-child {
    border-bottom: 1px solid rgba(255, 250, 241, 0.18);
  }

  .hero {
    min-height: auto;
    padding: 148px 22px 28px;
  }

  .hero-grid,
  .editorial-grid,
  .menu-stage,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  .hero-grid {
    align-items: start;
  }

  .editorial-section,
  .gallery-section,
  .visit-section,
  .menu-stage {
    min-height: auto;
    padding-right: 22px;
    padding-left: 22px;
  }

  .menu-copy {
    padding-top: 0;
  }

  .menu-ticket {
    --reveal-final-transform: none;
    position: static;
    justify-self: start;
    transform: none;
  }

  .hero-panel {
    grid-row: auto;
    min-height: 420px;
  }

  .gallery-item.wide,
  .gallery-item.portrait {
    grid-column: auto;
    grid-row: auto;
  }

  .visit-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translate3d(0, -16px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes titleRise {
  from {
    opacity: 0;
    transform: translate3d(0, 46px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes softRise {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .hero-media {
    transform: scale(1.03);
  }
}

@media (max-width: 620px) {
  .site-header {
    right: 12px;
    left: 12px;
  }

  .brand {
    width: 142px;
  }

  .nav-links {
    padding: 96px 20px 28px;
  }

  .nav-links a {
    min-height: 64px;
    font-size: 1.55rem;
  }

  .hero {
    min-height: auto;
    padding-top: 154px;
  }

  h1 {
    font-size: 3.35rem;
    line-height: 0.92;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero-actions,
  .visit-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .editorial-section,
  .gallery-section,
  .visit-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .text-panel {
    padding: 24px;
  }

  .menu-stage {
    gap: 34px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 10px 12px;
  }

  .brand {
    width: 128px;
    min-width: 128px;
  }

  .hero {
    padding: 144px 16px 28px;
  }

  h1 {
    font-size: 2.82rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.28rem;
  }

  .hero-copy,
  .text-panel p,
  .menu-copy p,
  .visit-copy p {
    font-size: 0.98rem;
  }

  .editorial-section,
  .gallery-section,
  .visit-section,
  .menu-stage {
    padding-right: 16px;
    padding-left: 16px;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .menu-ticket {
    padding: 14px;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 2.48rem;
  }

  h2 {
    font-size: 2.02rem;
  }

  .hero {
    padding-top: 138px;
  }
}
