@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/Inter-400-greek.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/Inter-400-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/Inter-600-greek.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/Inter-600-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/SourceSerif4-600-greek.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/SourceSerif4-600-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/SourceSerif4-700-greek.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/SourceSerif4-700-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   Plumbing only. Nothing here is a design decision — no colour,
   no typeface, no layout. Each site writes its own visual system
   on top; this file only carries the things that must be right
   on every site and are invisible when they are.
   ============================================================ */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* A sideways-scrollable page drags position:fixed elements out of view on
     phones. Clip rather than scroll. (clip, not hidden: hidden would make html
     a scroll container and break scroll-padding and sticky.) */
  overflow-x: clip;
}

body { margin: 0; }
/* Lock scrolling on the ROOT, not on body. html already has overflow-x:clip,
   so overflow:hidden on body turns body into its own scroll container — a
   position:sticky header then sticks to body and is thrown off-screen (with
   its close button) when the menu opens after scrolling. site.js puts
   .is-locked on <html> directly; a :has() selector was tried first and its
   style invalidation visibly lagged behind the menu opening. */
html.is-locked { overflow: hidden; }
/* [hidden] must win. A rule like `.gallery-more { display:flex }` outranks the
   browser's own `[hidden] { display:none }`, which left an empty "Show 0 more"
   button on screen whenever a gallery had nothing further to reveal. */
[hidden] { display: none !important; }

img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; }
/* A <button> inherits the user agent's grey `buttonface` unless something says
   otherwise. An outline/ghost button that sets only border-color and color then
   renders as light-grey with (often white) text on it — invisible. Reset here;
   any variant that wants a fill sets one and wins on specificity. */
button { background: transparent; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

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

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Reveal-on-scroll. The JS failsafe shows everything if the observer
   never runs, so content can never be stranded invisible. */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease, ease), transform .7s var(--ease, ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

@media print {
  .site-header, .lightbox, .skip-link, .gallery-more, .filters, .map-consent, .callbar { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { background: #fff !important; color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .75em; color: #555; }
}

:root{--cream:#f6f3df;--red:#a51e24;--green:#154b2a;--ink:#223329;--line:#b9bd9e;--muted:#505b50}
body{background:var(--cream);color:var(--ink);font:400 15px/1.7 Inter,Arial,sans-serif}a{color:inherit;text-decoration:none}button{font:inherit;cursor:pointer}img{display:block;max-width:100%}h1,h2,h3,p,figure{margin:0}h1,h2{font-family:'Source Serif 4',Georgia,serif;font-weight:700;letter-spacing:-.045em;line-height:1.02}h1{font-size:clamp(58px,6.8vw,108px)}h2{font-size:clamp(38px,4.5vw,68px);color:var(--green)}h3{font-size:17px;line-height:1.4}p{margin-bottom:20px}p:last-child{margin-bottom:0}.wrap{width:min(1320px,calc(100% - 112px));margin-inline:auto}.section{padding-block:80px}.eyebrow{text-transform:uppercase;font-size:11px;letter-spacing:.18em;font-weight:600;line-height:1.6;margin-bottom:18px}.fine{font-size:11px;color:var(--muted);line-height:1.7}.arrow{width:20px;height:20px;flex-shrink:0}.button{display:inline-flex;align-items:center;justify-content:center;gap:24px;background:var(--green);color:var(--cream);border:1px solid var(--green);padding:16px 23px;min-height:52px;font-size:14px;line-height:1.35;font-weight:600;border-radius:3px;transition:background .18s}.button .arrow{filter:invert(1)}.button:hover{background:#0c351b}.button.outline{background:transparent;border-color:#eadcbe}.button.outline:hover{background:#86191e}.button.cream{background:var(--cream);color:var(--green);border-color:var(--cream)}.button.cream .arrow{filter:none}.text-link{display:inline-flex;gap:18px;align-items:center;font-weight:600;font-size:14px;border-bottom:1px solid;padding-bottom:5px}.text-link:hover{color:var(--red)}.actions{display:flex;gap:20px;align-items:center;flex-wrap:wrap}.skip{position:fixed;left:15px;top:-100px;background:var(--green);color:white;padding:15px;z-index:150}.skip:focus{top:15px}:focus-visible{outline:3px solid #c88424;outline-offset:5px}.site-header{position:sticky;top:0;background:var(--cream);z-index:50;border-bottom:1px solid #154b2a12}.header-inner{height:88px;display:flex;align-items:center;gap:38px}.brand{width:205px;flex-shrink:0}.brand img{width:100%;height:auto}#primary-nav{margin-left:auto;display:flex;align-items:center;gap:30px;font-size:13px;font-weight:600}#primary-nav .button{padding:11px 20px;min-height:44px;gap:0;margin-right:10px}#primary-nav .button .arrow{display:none}#primary-nav>a:not(.button){padding-block:15px}#primary-nav>a[aria-current]{text-decoration:underline;text-underline-offset:6px}.language{font-size:12px;min-width:36px;min-height:44px;display:grid;place-items:center;font-weight:600}.nav-toggle{display:none}.hero{height:min(730px,calc(100svh - 88px));min-height:570px;position:relative;color:var(--cream)}.hero>img,.page-hero>img{width:100%;height:100%;object-fit:cover;object-position:center 55%}.hero-shade{position:absolute;inset:0;background:linear-gradient(180deg,transparent 30%,#111a14ad 100%)}.hero-copy{position:absolute;bottom:42px;left:0;right:0}.hero-copy h1{max-width:850px}.hero-copy .eyebrow{margin-bottom:12px}.welcome-band{background:var(--red);color:var(--cream);padding-block:30px}.welcome-band>.wrap{display:flex;justify-content:space-between;gap:40px;align-items:center}.welcome-band h2{color:inherit;font-size:clamp(27px,2.8vw,41px);font-weight:600;letter-spacing:-.025em}.section-intro{display:grid;grid-template-columns:1.5fr 1fr;gap:60px;align-items:end;margin-bottom:34px}.section-intro>p{max-width:450px;font-size:15px;line-height:1.8}.food-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.tile{border:0;background:none;padding:0;position:relative;display:block;width:100%;overflow:hidden;cursor:zoom-in}.tile img{width:100%;height:100%;object-fit:cover;transition:transform .5s}.tile:hover img{transform:scale(1.025)}.photo-label{color:var(--ink);position:absolute;bottom:10px;right:10px;background:var(--cream);padding:5px 10px;font-size:10px;opacity:0}.tile:hover .photo-label,.tile:focus-visible .photo-label{opacity:1}.food-grid .tile{height:350px}.food-grid .tile img{object-position:center}.food-grid h3{margin:20px 0 12px;text-transform:uppercase;letter-spacing:.1em;font-size:12px}.food-grid p{font-size:14px;line-height:1.8;max-width:390px}.food>.text-link{margin-top:30px}.ratings{display:grid;grid-template-columns:1fr 1fr;border-block:1px solid var(--line);padding-block:23px;gap:25px}.rating{display:flex;align-items:center;gap:17px;padding-right:20px}.rating+.rating{border-left:1px solid var(--line);padding-left:30px}.platform{font-weight:600;font-size:17px}.rating strong{font-size:25px;white-space:nowrap}.rating small{font-size:13px;font-weight:400}.stars{display:inline-flex;gap:3px;flex-shrink:0}.stars img{width:17px;height:17px;filter:invert(25%) sepia(18%) saturate(1780%) hue-rotate(91deg) brightness(87%)}.score-45 img:last-child{clip-path:inset(0 50% 0 0)}.score-43 img:last-child{clip-path:inset(0 70% 0 0)}.review-count{font-size:11px;white-space:nowrap}.rating>.arrow{margin-left:auto}.menu-taste{display:grid;grid-template-columns:1fr 1fr;gap:95px}.menu-intro h2{font-size:48px;margin-bottom:25px}.menu-intro p{max-width:480px}.menu-intro>.text-link{margin-top:12px}.dish{display:flex;gap:25px;justify-content:space-between;padding:20px 0;border-bottom:1px solid var(--line)}.dish h3{font-family:'Source Serif 4',Georgia,serif;font-size:24px;font-weight:600;color:var(--green)}.dish p{font-size:13px;color:var(--muted);line-height:1.7;margin:8px 0 0}.price{white-space:nowrap;font-weight:600;font-size:14px;padding-top:6px}.menu-picks>.dish:first-child{padding-top:0}.menu-picks>.fine{margin-top:18px}.place-section{background:var(--green);color:var(--cream)}.place-section>.wrap{display:grid;grid-template-columns:1.15fr 1fr;gap:35px 75px}.place-heading h2{color:var(--cream);font-size:57px}.place-copy p{font-size:14px;line-height:1.9}.place-copy .text-link{color:var(--cream)}.place-copy .arrow{filter:invert(1)}.place-photos{grid-column:1/-1;display:grid;grid-template-columns:1.25fr 1fr;gap:25px;margin-top:15px}.place-photos .tile{height:390px}.details-section{display:grid;grid-template-columns:1fr 1fr;gap:85px}.details-section h2{font-size:43px;margin-bottom:24px}.details-section p{max-width:530px}.details-section article+article{padding-left:50px;border-left:1px solid var(--line)}.guest-section{border-block:1px solid var(--line);text-align:center;background:#eeeacf}.guest-section .wrap{max-width:940px}.guest-section h2{font-size:45px}.guest-section blockquote{font:600 29px/1.5 'Source Serif 4',Georgia,serif;margin:35px auto 20px;max-width:800px}.translation{font-size:14px;max-width:680px;margin:0 auto 20px}.review-credit{font-size:12px}.guest-section .fine{margin-top:28px}.faq-section{display:grid;grid-template-columns:1fr 1fr;gap:70px}.faq-section h2{font-size:46px;max-width:380px}.faqs details{border-top:1px solid var(--line);padding:21px 0}.faqs details:last-child{border-bottom:1px solid var(--line)}.faqs summary{font-weight:600;cursor:pointer;line-height:1.6}.faqs details p{margin:18px 0 0;font-size:14px}.visit{background:var(--red);color:var(--cream)}.visit>.wrap{display:grid;grid-template-columns:1.25fr 1fr;gap:110px;align-items:center}.visit h2{color:var(--cream);font-size:60px;margin-bottom:25px}.visit p{max-width:500px}.visit .button{margin-top:12px}.visit-details{border-left:1px solid #eadcbe70;padding-left:55px}.visit-details h3{font-size:18px;margin-bottom:18px}.visit address{font-style:normal;margin-bottom:20px}.visit .text-link{margin-bottom:20px}.visit .text-link:hover{color:white}.visit .arrow{filter:invert(1)}.contact-line{display:block;width:fit-content;margin:10px 0;font-size:17px;overflow-wrap:anywhere}.visit-details p{font-size:13px;margin-top:25px}.footer{padding:45px 0;background:var(--cream)}.footer>.wrap{display:grid;grid-template-columns:1.2fr .7fr 1fr auto;gap:35px}.footer-brand{font:700 30px 'Source Serif 4';color:var(--red)}.footer p{font-size:11px;margin:10px 0}.footer-links,.footer-social{display:flex;flex-direction:column;align-items:start;gap:10px;font-size:12px}.footer-social{flex-direction:row;flex-wrap:wrap;align-content:start}.copyright{grid-column:1/4}.footer .language{grid-column:4;grid-row:1}.page-hero{height:410px;position:relative;color:var(--cream)}.page-hero>.wrap{position:absolute;left:0;right:0;bottom:38px}.page-hero h1{font-size:65px}.page-hero .hero-shade{background:linear-gradient(180deg,#111a1425,#111a14aa)}.menu-page-intro{display:grid;grid-template-columns:1fr 1fr;gap:65px;align-items:center}.menu-page-intro h2{font-size:52px}.menu-jump{display:flex;gap:12px 26px;flex-wrap:wrap;padding-block:28px;margin:30px 0;border-block:1px solid var(--line);font-size:14px;font-weight:600}.menu-jump a:hover{text-decoration:underline}.menu-layout{display:grid;grid-template-columns:1fr 1fr;gap:60px 70px;align-items:start}.menu-category h2{font-size:39px;margin-bottom:15px}.menu-category .dish h3{font-size:22px}.menu-note{font-size:13px;margin-top:40px;max-width:800px}.original-menus{background:var(--green);color:var(--cream)}.original-menus h2{color:var(--cream);font-size:48px;margin-bottom:20px}.original-menus h3{margin:38px 0 20px;font-size:25px}.menu-scans{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}.menu-scans .tile{aspect-ratio:1654/2339}.menu-scans img{object-fit:contain}.menu-scans figcaption{font-size:12px;margin-top:10px}.menu-scans .text-link{font-size:12px}.menu-scans .text-link:hover{color:white}.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.gallery-grid .tile{aspect-ratio:4/5}.more{text-align:center;margin-top:35px}.contact-photos{display:grid;grid-template-columns:1.5fr 1fr;gap:25px}.contact-photos .tile{height:470px}.lightbox{position:fixed;inset:0;z-index:100;background:#102218f5;color:var(--cream);display:none;opacity:0;transition:opacity .2s}.lightbox.is-open{display:block}.lightbox.is-visible{opacity:1}.lb-stage{height:100%;padding:70px 100px 65px;display:grid;place-items:center}.lb-figure{max-width:100%;height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center}.lb-img{width:auto;max-width:100%;max-height:calc(100svh - 165px);object-fit:contain;min-height:0}.lb-caption{font-size:12px;margin-top:15px}.lb-close,.lb-prev,.lb-next{position:absolute;border:1px solid #f6f3df80;background:transparent;color:inherit;padding:10px 15px;font-size:12px}.lb-close{right:20px;top:20px}.lb-prev{left:15px;top:50%}.lb-next{right:15px;top:50%}.lb-counter{position:absolute;left:25px;top:25px;font-size:12px}.lb-prev:disabled,.lb-next:disabled{visibility:hidden}[id]{scroll-margin-top:110px}
@media(min-width:1900px){.hero{height:780px;max-height:none}.hero-copy h1{font-size:108px}}
@media(max-width:1150px){.wrap{width:calc(100% - 72px)}.header-inner{gap:22px}#primary-nav{gap:20px}.brand{width:180px}.hero{min-height:540px}.welcome-band .actions{gap:12px}.button{padding:14px 18px;gap:16px}.section-intro{gap:40px}.food-grid .tile{height:300px}.rating{flex-wrap:wrap;gap:10px 15px}.rating>.arrow{display:none}.review-count{width:100%}.ratings{gap:20px}.menu-taste{gap:50px}.place-heading h2{font-size:47px}.details-section{gap:40px}.details-section article+article{padding-left:35px}.visit>.wrap{gap:50px}.visit h2{font-size:49px}.visit-details{padding-left:35px}.menu-layout{gap:50px 40px}}
@media(max-width:900px){.header-inner{height:78px}.brand{width:165px}.nav-toggle{display:block;border:0;border-bottom:1px solid;background:transparent;padding:10px 0;font-size:12px;font-weight:600}.language{margin-left:auto}#primary-nav{display:none;position:absolute;top:77px;left:0;right:0;padding:24px 36px 30px;background:var(--cream);border-bottom:1px solid var(--line);align-items:stretch;flex-direction:column;gap:7px;max-height:calc(100svh - 78px);overflow:auto}.site-header.is-open #primary-nav{display:flex}#primary-nav .button{order:4;margin:15px 0 0;align-self:start}#primary-nav>a:not(.button){font-size:20px;padding:8px 0}.hero{height:610px;min-height:0;max-height:none}.hero-copy h1{font-size:75px}.welcome-band>.wrap{align-items:start;flex-direction:column;gap:22px}.welcome-band h2 br{display:none}.section{padding-block:60px}.section-intro{grid-template-columns:1fr;gap:25px}.section-intro>p{max-width:620px}.food-grid{gap:20px}.food-grid .tile{height:260px}.food-grid p{font-size:13px}.menu-taste{gap:35px}.menu-intro h2{font-size:39px}.place-section>.wrap{gap:30px}.place-heading h2{font-size:40px}.place-photos .tile{height:300px}.details-section h2{font-size:34px}.faq-section{gap:35px}.faq-section h2{font-size:37px}.visit h2{font-size:41px}.visit>.wrap{gap:30px}.visit-details{padding-left:25px}.footer>.wrap{grid-template-columns:1fr 1fr auto}.footer-social{grid-column:1/3}.footer .language{grid-column:3}.menu-page-intro{grid-template-columns:1fr;gap:20px}.menu-page-intro>p{max-width:620px}.menu-scans{grid-template-columns:repeat(2,1fr)}.gallery-grid{gap:16px}.page-hero h1{font-size:56px}}
@media(max-width:650px){.wrap{width:calc(100% - 40px)}.header-inner{height:73px;gap:18px}.brand{width:152px}.language{font-size:11px;min-width:30px}.nav-toggle{font-size:11px}#primary-nav{top:72px;padding:20px}.hero{height:570px}.hero>img{object-position:55% center}.hero-copy{bottom:30px}.hero-copy h1{font-size:59px;max-width:100%;line-height:1.02}.hero-copy .eyebrow{font-size:9px;max-width:250px;letter-spacing:.15em}.welcome-band{padding-block:25px}.welcome-band>.wrap{gap:20px}.welcome-band h2{font-size:29px}.actions{gap:10px;width:100%}.actions>.button{flex:1;padding:13px 12px;font-size:12px;gap:10px}.actions .arrow{width:17px;height:17px}.section{padding-block:45px}.eyebrow{font-size:9px;margin-bottom:12px}h2{font-size:40px}.section-intro{gap:20px;margin-bottom:26px}.section-intro p{font-size:14px}.food-grid{grid-template-columns:1fr;gap:32px}.food-grid .tile{height:320px}.food-grid article:nth-child(2) .tile{height:350px}.food-grid h3{margin:15px 0 10px}.food-grid p{font-size:14px;max-width:none}.food>.text-link{margin-top:28px}.ratings{grid-template-columns:1fr;gap:20px;padding-block:22px}.rating{gap:10px 14px;padding:0;display:grid;grid-template-columns:1fr auto auto}.rating+.rating{border-left:0;padding:20px 0 0;border-top:1px solid var(--line)}.platform{font-size:17px}.rating strong{font-size:24px}.review-count{grid-column:1/-1}.stars{gap:2px}.stars img{width:15px;height:15px}.menu-taste{grid-template-columns:1fr;gap:30px}.menu-intro h2{font-size:37px}.menu-intro p{font-size:14px}.dish h3{font-size:23px}.dish{gap:18px}.price{font-size:13px}.place-section>.wrap{grid-template-columns:1fr;gap:24px}.place-heading h2{font-size:40px}.place-copy p{font-size:14px}.place-photos{grid-template-columns:1fr;gap:16px;margin-top:0}.place-photos .tile{height:280px}.details-section{grid-template-columns:1fr;gap:35px}.details-section article+article{padding:35px 0 0;border-left:0;border-top:1px solid var(--line)}.details-section h2{font-size:35px;margin-bottom:20px}.details-section p{font-size:14px}.guest-section h2{font-size:37px}.guest-section blockquote{font-size:25px;margin:25px 0 18px}.translation{font-size:13px}.faq-section{grid-template-columns:1fr;gap:26px}.faq-section h2{max-width:none;font-size:37px}.faqs summary{font-size:14px}.visit>.wrap{grid-template-columns:1fr;gap:35px}.visit h2{font-size:43px}.visit p{font-size:14px}.visit-details{border-left:0;border-top:1px solid #eadcbe70;padding:30px 0 0}.contact-line{font-size:16px}.footer{padding:35px 0}.footer>.wrap{gap:25px}.footer-brand{font-size:25px}.footer-links{grid-row:2;grid-column:1}.footer-social{grid-column:2;grid-row:2;flex-direction:column}.footer .language{grid-column:3;grid-row:1}.copyright{grid-column:1/-1}.page-hero{height:350px}.page-hero>.wrap{bottom:30px}.page-hero h1{font-size:43px}.menu-page-intro h2{font-size:40px}.menu-jump{margin:20px 0 35px;padding:20px 0;gap:13px 20px;font-size:13px}.menu-layout{grid-template-columns:1fr;gap:35px}.menu-category h2{font-size:33px}.menu-category .dish h3{font-size:22px}.original-menus h2{font-size:38px}.original-menus p{font-size:14px}.menu-scans{gap:20px 14px}.menu-scans figcaption .text-link{font-size:10px}.gallery-grid{grid-template-columns:1fr 1fr;gap:12px}.contact-photos{grid-template-columns:1fr;gap:18px}.contact-photos .tile{height:310px}.lb-stage{padding:70px 12px 100px}.lb-img{max-height:calc(100svh - 210px)}.lb-prev,.lb-next{top:auto;bottom:23px}.lb-prev{left:20px}.lb-next{right:20px}.lb-caption{text-align:center;font-size:11px}[id]{scroll-margin-top:90px}html[lang=el] .hero-copy h1{font-size:50px}html[lang=el] h2{font-size:36px}html[lang=el] .welcome-band h2{font-size:27px}html[lang=el] .actions .button{font-size:11px;gap:7px}}
@media(prefers-reduced-motion:reduce){.tile img{transition:none}}
/* Keep the language control visually distinct from page navigation. */
.site-header .language{border-left:1px solid var(--line);padding-left:22px;min-width:56px}
@media(max-width:900px){.site-header .language{border-left:0;border-right:1px solid var(--line);padding-left:0;padding-right:18px;min-width:48px}.header-inner .nav-toggle{margin-left:0}}
@media(max-width:650px){.site-header .language{padding-right:16px;min-width:43px}}
