/* ==========================================================================
   ΕΛΙΑ & ΘΑΛΑΣΣΑ — Global Stylesheet
   Palette: Aegean Night #12253D · Limestone #F3EEE4 · Marble Shadow #E7E0D2
            Olive #5B6B47 · Bronze #A8763E · Brass #A8763E · Ink #1E2420
   Fonts:   Cormorant (display) · Work Sans (body) · JetBrains Mono (prices/labels)
   ========================================================================== */

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: #A8763E;
  color: #F3EEE4;
}

::-moz-selection {
  background: #A8763E;
  color: #F3EEE4;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: #f3eee4;
  color: #1E2420;
  font-family: "Work Sans", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.main-spacer{
  height: 60px;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: "Cormorant", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: #12253D;
}

p {
  margin: 0 0 1em;
}

/* Visible focus state for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #A8763E;
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #12253D;
  color: #F3EEE4;
  padding: 12px 20px;
  z-index: 999;
  font-family: "Work Sans", sans-serif;
  font-size: 0.95rem;
}

.skip-link:focus {
  left: 0;
}

body.scroll-locked {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Reusable meander (Greek key) divider — the site's signature motif */
.meander-divider {
  height: 14px;
  width: 100%;
  background-repeat: repeat-x;
  background-size: 56px 14px;
  opacity: 0.9;
}

.meander-divider--brass {
  background-image: url("../assets/img/meander-brass.svg");
}

.meander-divider--night {
  background-image: url("../assets/img/meander-night.svg");
}

.eyebrow {
  display: inline-block;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #A8763E;
  margin-bottom: 0.9em;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-style: italic;
}

.section-heading-sm {
  font-size: clamp(1.3rem, 2.6vw, 1.875rem);
  font-style: italic;
}

#getting-here-heading, #newsletter-heading {
  color: #f3eee4;
}

.section-intro {
  max-width: 640px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border-radius: 2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn--bronze {
  background: #A8763E;
  color: #F3EEE4;
}

.btn--bronze:hover {
  background: #5A3D1B;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(18, 37, 61, 0.25);
}

.btn--outline {
  background: transparent;
  color: #F3EEE4;
  border: 1.5px solid #A8763E;
}

.btn--outline:hover {
  background: rgba(168, 118, 62, 0.15);
  transform: translateY(-2px);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  background: #F3EEE4;
  box-shadow: 0 1px 0 rgba(30, 36, 32, 0.12);
}

.header-bar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo {
  width: 150px;
}

.header-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.header-controls-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-lang-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-toggle.is-current {
  background: rgba(30, 36, 32, 0.08);
  border-color: rgba(30, 36, 32, 0.35);
  cursor: default;
  pointer-events: none;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  color: #1E2420;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.phone-link svg {
  width: 25px;
  height: 25px;
  fill: #A8763E;
  flex-shrink: 0;
  padding-top: 5px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #1E2420;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border: 1px solid rgba(30, 36, 32, 0.25);
  border-radius: 20px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.lang-toggle:hover {
  border-color: #A8763E;
  background: rgba(168, 118, 62, 0.12);
}

.lang-toggle .flag {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hamburger-box {
  position: relative;
  width: 24px;
  height: 16px;
  display: block;
}

.hamburger-box span,
.hamburger-box::before,
.hamburger-box::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1E2420;
  border-radius: 2px;
  transition: transform 0.32s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.2s ease, top 0.32s ease;
}

.hamburger-box::before {
  top: 0;
}

.hamburger-box span {
  top: 7px;
}

.hamburger-box::after {
  top: 14px;
}

.hamburger[aria-expanded="true"] .hamburger-box::before {
  top: 7px;
  transform: rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger-box span {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger-box::after {
  top: 7px;
  transform: rotate(-45deg);
}

/* ==========================================================================
   Primary navigation — slides down from top, overlay behind
   ========================================================================== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 37, 61, 0.55);
  backdrop-filter: blur(2px);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.primary-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 450;
  background: #12253D;
  border-bottom: 4px solid;
  border-image: linear-gradient(90deg, #A8763E, #5B6B47, #A8763E) 1;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.15, 1);
  padding: 100px 24px 56px;
  max-height: 100vh;
  max-height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.primary-nav.is-open {
  transform: translateY(0);
}

.nav-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #F3EEE4;
  font-size: 1.8rem;
  line-height: 1;
  border: 1px solid rgba(243, 238, 228, 0.3);
  border-radius: 50%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.nav-close:hover {
  transform: rotate(90deg);
  border-color: #A8763E;
}

.nav-list {
  max-width: 1180px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-list li {
  border-bottom: 1px solid rgba(243, 238, 228, 0.12);
}

.nav-list a {
  display: block;
  padding: 16px 4px;
  font-family: "Cormorant", serif;
  font-size: 1.7rem;
  font-style: italic;
  color: #F3EEE4;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: #A8763E;
  padding-left: 14px;
}

.nav-list .nav-cta a {
  display: inline-flex;
  font-style: normal;
  font-family: "Work Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  background: #A8763E;
  color: #F3EEE4;
  padding: 14px 30px;
  border-radius: 2px;
  margin-top: 18px;
}

.nav-list .nav-cta {
  border-bottom: none;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: #12253D;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 37, 61, 0.35) 0%, rgba(18, 37, 61, 0.55) 55%, rgba(18, 37, 61, 0.94) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 160px 24px 88px;
  max-width: 1180px;
  margin: 0 auto;
  color: #F3EEE4;
}

.hero-content .eyebrow {
  color: #fff;
}

.hero-title {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-style: italic;
  color: #F3EEE4;
  max-width: 22ch;
  line-height: 1.15;
}

.hero-subtitle {
  max-width: 46ch;
  font-size: 1.1rem;
  color: rgba(243, 238, 228, 0.85);
  margin-bottom: 2em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* ==========================================================================
   Menu
   ========================================================================== */
.menu-section {
  padding: 110px 0 90px;
  background: #F3EEE4;
}

.menu-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.text-block {
  max-width: 780px;
  margin: 40px auto;
  text-align: left;
  padding: 0 20px;
}

.text-block:last-of-type {
  margin-bottom: 0;
}

.text-block .eyebrow {
  display: block;
}

.text-block--left {
  margin-left: 0;
  text-align: left;
}

.allergy-notice {
  margin: 40px 0;
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #E7E0D2;
  border-left: 3px solid #A8763E;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.allergy-notice-icon, .menu-veg-icon, .menu-nut-icon {
  width: 22px;
  height: 22px;
  fill: #A8763E;
  flex-shrink: 0;
  margin-top: 2px;
}

.allergy-notice p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(30, 36, 32, 0.82);
}

.menu-intro .eyebrow {
  display: block;
}

.menu-categories {
  display: block;
}

.menu-category {
  margin-bottom: 64px;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category-title {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-size: 1.7rem;
  font-style: italic;
  color: #12253D;
  margin-bottom: 6px;
}

.menu-category-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, #A8763E 0 6px, transparent 6px 12px);
  transform: translateY(-4px);
}

.menu-items {
  margin-top: 26px;
  display: grid;
  gap: 26px;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
  align-items: baseline;
}

.menu-item-name {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #1E2420;
}

.menu-item-name {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #1E2420;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.menu-item-name::after {
  content: "";
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(30, 36, 32, 0.35) 0 3px, transparent 3px 8px);
  transform: translateY(-3px);
}

.menu-item-price {
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
  font-size: 1.02rem;
  color: #A8763E;
  white-space: nowrap;
  text-align: right;
}

.menu-item-desc {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.92rem;
  color: rgba(30, 36, 32, 0.72);
  font-style: italic;
  max-width: 62ch;
}

.menu-disclaimers {
  margin-top: 72px;
  padding: 26px 28px;
  background: #E7E0D2;
  border-left: 3px solid #A8763E;
  font-size: 0.83rem;
  color: rgba(30, 36, 32, 0.78);
  max-width: 780px;
}

.menu-disclaimers p {
  margin-bottom: 0.6em;
}

.menu-disclaimers p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Gallery + Lightbox triggers
   ========================================================================== */
.gallery-section {
  padding: 100px 0;
  background: #E7E0D2;
}

.gallery-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-long {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: zoom-in;
  aspect-ratio: 16 / 9;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}

.gallery-item-long img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-item-long :hoverimg {
  transform: scale(1.06);
}

.gallery-item-long:hover img {
  transform: scale(1.06);
}

.gallery-item-long:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 16px 14px;
  background: linear-gradient(180deg, rgba(18, 37, 61, 0) 0%, rgba(18, 37, 61, 0.85) 100%);
  color: #F3EEE4;
  font-size: 0.85rem;
  transform: translateY(8px);
  opacity: 0.92;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-zoom-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(18, 37, 61, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

.gallery-zoom-icon svg {
  width: 16px;
  height: 16px;
  fill: #F3EEE4;
}

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(9, 17, 28, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-stage {
  position: relative;
  width: min(92vw, 1100px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox-image-wrap {
  width: 100%;
  max-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-image-wrap img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox-image-wrap img.is-visible {
  opacity: 1;
  transform: scale(1);
}

.lightbox-caption-bar {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  color: #F3EEE4;
  padding: 0 6px;
}

.lightbox-counter {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  color: #A8763E;
  white-space: nowrap;
}

.lightbox-caption-text {
  font-size: 0.95rem;
  color: rgba(243, 238, 228, 0.88);
  font-style: italic;
  margin: 0;
}

.lightbox-close,
.lightbox-fullscreen {
  position: absolute;
  top: -54px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #F3EEE4;
  border: 1px solid rgba(243, 238, 228, 0.3);
  border-radius: 50%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.lightbox-close {
  right: 0;
}

.lightbox-fullscreen {
  right: 54px;
  font-size: 0.9rem;
}

.lightbox-close:hover {
  transform: rotate(90deg);
  border-color: #A8763E;
}

.lightbox-fullscreen:hover {
  border-color: #A8763E;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #F3EEE4;
  background: rgba(243, 238, 228, 0.08);
  border-radius: 50%;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.lightbox-prev {
  left: -8px;
}

.lightbox-next {
  right: -8px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(168, 118, 62, 0.35);
}

.lightbox-prev svg,
.lightbox-next svg,
.lightbox-close svg,
.lightbox-fullscreen svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.lightbox-close,
.lightbox-fullscreen,
.lightbox-prev,
.lightbox-next {
  z-index: 2;
}

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

/* Arrows hidden on touch / coarse-pointer devices — swipe is used instead */
@media (hover: none) and (pointer: coarse) {
  .lightbox-prev,
  .lightbox-next {
    display: none;
  }
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-section {
  padding: 100px 0;
  background: #F3EEE4;
}

.faq-list {
  margin-top: 48px;
  max-width: 840px;
}

.faq-item {
  border-bottom: 1px solid rgba(30, 36, 32, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: "Cormorant", serif;
  font-size: 1.3rem;
  font-style: italic;
  color: #12253D;
}

.faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #A8763E;
  transition: transform 0.3s ease;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 4px 24px;
  max-width: 68ch;
  color: rgba(30, 36, 32, 0.78);
}

/* ==========================================================================
   About
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background: #E7E0D2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.about-media img {
  border-radius: 2px;
}

.about-copy .eyebrow {
  display: block;
}

/* ==========================================================================
   Getting Here + Map
   ========================================================================== */
.getting-here-section {
  padding: 100px 0;
  background: #12253D;
  color: #F3EEE4;
}

.getting-here-section h2 {
  color: #F3EEE4;
}

.getting-here-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.address-block {
  display: grid;
  gap: 22px;
}

.address-card {
  padding: 22px 24px;
  background: rgba(243, 238, 228, 0.06);
  border-left: 3px solid #A8763E;
}

.address-card h3 {
  color: #F3EEE4;
  font-size: 1.1rem;
  margin-bottom: 0.35em;
}

.address-card p {
  color: rgba(243, 238, 228, 0.78);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.map-frame-fw {
  position: relative;
  margin: 60px 0 60px;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
  border: 1px solid rgba(243, 238, 228, 0.15);
}

.map-frame-fw iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) sepia(0.12) contrast(1.02);
}

@media (min-width: 701px) {
  .map-frame-fw {
    padding-top: 0;
    height: 500px;
  }
}

.map-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 62%;
  overflow: hidden;
  border: 1px solid rgba(243, 238, 228, 0.15);
}

.map-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) sepia(0.12) contrast(1.02);
}

/* ==========================================================================
   Contact / MachForm
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  background: #F3EEE4;
}

.contact-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-details {
  display: grid;
  gap: 20px;
  align-content: start;
}

.contact-detail dt {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #A8763E;
  margin-bottom: 4px;
}

.contact-detail dd {
  margin: 0;
  font-size: 1rem;
}

.machform-embed {
  background: #E7E0D2;
  padding: 28px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(30, 36, 32, 0.55);
  font-size: 0.85rem;
  border: 1px dashed rgba(30, 36, 32, 0.25);
}

/* ==========================================================================
   Newsletter
   ========================================================================== */
.newsletter-section {
  padding: 90px 0;
  background: #5B6B47;
  color: #F3EEE4;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.newsletter-inner h2 {
  color: #F3EEE4;
  margin-bottom: 0.3em;
}

.newsletter-inner p {
  color: rgba(243, 238, 228, 0.85);
  max-width: 46ch;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.newsletter-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.newsletter-form input[type="email"] {
  flex: 1 1 240px;
  padding: 15px 18px;
  border: 1px solid rgba(243, 238, 228, 0.4);
  background: rgba(243, 238, 228, 0.08);
  color: #F3EEE4;
  font-size: 0.95rem;
  border-radius: 2px;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(243, 238, 228, 0.6);
}

.newsletter-form .btn {
  flex-shrink: 0;
}

.newsletter-hp {
  position: absolute;
  left: -9999px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #12253D;
  color: rgba(243, 238, 228, 0.7);
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-link-left {
  color: rgba(243, 238, 228, 0.7);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-link-left:hover {
  color: #A8763E;
}

.footer-links-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-links-right a {
  font-size: 0.85rem;
  color: rgba(243, 238, 228, 0.7);
  transition: color 0.2s ease;
}

.footer-links-right a:hover {
  color: #A8763E;
}

/* ==========================================================================
   Breakpoints — custom per component
   ========================================================================== */

/* Header / nav: collapse phone label at narrow widths */
@media (max-width: 560px) {
  .phone-link .phone-text {
    display: none;
  }

  .lang-toggle .lang-text {
    display: none;
  }
}

/* Menu: below 500px, stack name then description then price last —
   not price between name and description. align-items is switched
   to start so baseline alignment doesn't add extra space under the
   italic description before the price. */
@media (max-width: 500px) {
  .menu-item {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2px 0;
  }

  .menu-item-name {
    order: 1;
  }

  .menu-item-desc {
    order: 2;
  }

  .menu-item-price {
    order: 3;
    white-space: normal;
    text-align: left;
    margin-top: 0;
  }

.menu-item-name::after {
    content: none;
  }
}

@media (min-width: 640px) {
  .nav-list a {
    font-size: 2rem;
  }
}

/* Hero */
@media (min-width: 780px) {
  .hero-actions {
    align-items: center;
  }
}

/* Menu stays single column at every width — categories hold different
   numbers of items, and any multi-column split leaves mismatched
   whitespace beside the shorter ones */

/* Gallery: single column on small phones, four columns from tablet upward —
   matches the number of thumbnails (8) so every row fills completely */
@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* About: side-by-side from tablet-landscape */
@media (min-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid.reverse .about-media {
    order: 2;
  }
}

/* Getting here: two columns on desktop */
@media (min-width: 900px) {
  .getting-here-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

/* Contact: form beside details on desktop */
@media (min-width: 880px) {
  .contact-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

/* Newsletter: label + form side by side */
@media (min-width: 760px) {
  .newsletter-inner {
    grid-template-columns: 1fr auto;
  }

  .newsletter-form {
    flex-wrap: nowrap;
  }
}

/* Footer: left link and right links on one row from tablet up */
@media (min-width: 620px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-links-right {
    flex-direction: row;
    gap: 26px;
  }
}

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

.menu-item-veg {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.4em;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1em;
  text-align: center;
  background-color: #e8f0e4;
  color: #4a7c3a;
  border: 1px solid #4a7c3a;
  vertical-align: middle;
}

.menu-legend p {
  display: flex;
  align-items: center;
  gap: 0.4em;
}

.hours-status {
  max-width: 100%;
}

.hours-toggle {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #E7E0D2;
  border: 1px solid rgba(30, 36, 32, 0.12);
  border-left: 3px solid #A8763E;
  border-radius: 2px;
  color: #1E2420;
  text-align: left;
  transition: background-color 0.25s ease;
}

.hours-toggle:hover {
  background: #ded5c2;
}

.hours-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5B6B47;
  color: #5B6B47;
  flex-shrink: 0;
  position: relative;
  margin-right: 10px;
}

.hours-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.7;
  animation: hours-pulse 2.4s ease-out infinite;
}

.hours-status[data-state="closed"] .hours-dot {
  background: #5A3D1B;
  color: #5A3D1B;
}

@keyframes hours-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.hours-text {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hours-state {
  font-family: "Work Sans", "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.hours-detail {
  font-family: "Work Sans", "Noto Sans", sans-serif;
  font-size: 0.82rem;
  color: rgba(30, 36, 32, 0.65);
}

.hours-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #A8763E;
  transition: transform 0.3s ease;
}

.hours-toggle[aria-expanded="true"] .hours-chevron {
  transform: rotate(180deg);
}

.hours-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hours-list {
  margin-top: 10px;
  padding: 14px 20px;
  background: rgba(231, 224, 210, 0.5);
  border-left: 3px solid transparent;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 0;
  font-family: "Work Sans", "Noto Sans", sans-serif;
  font-size: 0.9rem;
  color: rgba(30, 36, 32, 0.78);
}

.hours-row.is-today {
  font-weight: 600;
  color: #A8763E;
}

@media (max-width: 480px) {
  .hours-toggle {
    padding: 16px;
  }

  .hours-row {
    font-size: 0.85rem;
  }
}

.hours-status[data-state="closed"] .hours-dot {
  background: #5A3D1B;
  color: #5A3D1B;
}

/* Dark variant &amp; used on the Getting Here page */
.hours-status--night .hours-toggle {
  background: rgba(243, 238, 228, 0.06);
  border: 1px solid rgba(243, 238, 228, 0.15);
  border-left: 3px solid #A8763E;
  color: #F3EEE4;
}

.hours-status--night .hours-toggle:hover {
  background: rgba(243, 238, 228, 0.1);
}

.hours-status--night .hours-detail {
  color: rgba(243, 238, 228, 0.65);
}

.hours-status--night .hours-list {
  background: rgba(243, 238, 228, 0.04);
  border-left: 3px solid transparent;
}

.hours-status--night .hours-row {
  color: rgba(243, 238, 228, 0.78);
}

.hours-status--night .hours-row.is-today {
  color: #A8763E;
}

/*:lang(en) h1,
:lang(en) h2,
:lang(en) h3,
:lang(en) h4,
:lang(en) h5,
:lang(en) h6,
:lang(el) h1,
:lang(el) h2,
:lang(el) h3,
:lang(el) h4,
:lang(el) h5,
:lang(el) h6 {
  font-family: "EB Garamond", "Noto Serif", Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
}*/

.menu-drinks {
  text-align: left;
  margin-top: 2rem;
}

.menu-drinks-heading {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.menu-drinks-text {
  max-width: 60ch;
}.menu-drinks {
  text-align: left;
  margin-top: 2rem;
}

.menu-drinks-heading {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.menu-drinks-text {
  max-width: 60ch;
}

/* ==========================================================================
   Shine CTA button
   ========================================================================== */
.cta-btn-wrap {
  display: flex;
  justify-content: center;
  padding: 60px 24px;
}

.cta-btn-wrap {
  display: flex;
  justify-content: center;
  padding: 50px 24px 0;
}

.btn-shine {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  padding: 16px 34px;
  background: #A8763E;
  color: #F3EEE4;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border-radius: 2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-shine:hover,
.btn-shine:focus-visible {
  background: #5A3D1B;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(18, 37, 61, 0.25);
}

.btn-shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(243, 238, 228, 0.5), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.btn-shine:hover::before,
.btn-shine:focus-visible::before {
  left: 130%;
}

.btn-shine-arrow {
  width: 16px;
  height: 16px;
  fill: #F3EEE4;
  transition: transform 0.25s ease;
}

.btn-shine:hover .btn-shine-arrow,
.btn-shine:focus-visible .btn-shine-arrow {
  transform: translateX(4px);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-2px);
    opacity: 0.8;
}

  .pdo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.15em 0.6em;
    border: 1.5px solid #7a1f2b;
    border-radius: 4px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.75em;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #7a1f2b;
    background: #fdf6e9;
    vertical-align: middle;
  }

  .founder-quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 1.4em;
  color: #7a1f2b;
  margin: 1.5em 0;
  padding-left: 1em;
  border-left: 3px solid #7a1f2b;
}

.quote-attribution {
  display: block;
  font-style: normal;
  font-size: 0.65em;
  letter-spacing: 0.05em;
  margin-top: 0.4em;
  color: #444;
}

#weekend-special-placeholder{
  margin: 60px 0 70px;  
}
