/* Fonts (loaded here so everything is swappable from this one file) */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Mynerve&display=swap');

/* ============================================================
   Λιθοδομή / Lithodomi — site.css
   Art direction: "STONE & LIME" — editorial / Cycladic monograph.
   Tactile limewash paper + grain · ink type · hairline rules ·
   oversized GFS Didot display · index numbering · single ochre accent.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Stone & lime neutrals */
  --paper:       #ece5d8;   /* limewash */
  --paper-2:     #e4dccc;
  --paper-deep:  #d9cfba;
  --ink:         #1b1815;   /* warm near-black */
  --ink-soft:    #4a4339;
  --stone:       #8c8170;   /* mid taupe-grey */
  --stone-light: #b3a994;
  --line:        #c9bfa9;   /* hairline on paper */
  --line-soft:   #d6cdba;

  /* Single accent — aged ochre/brass */
  --ochre:       #9a6a2c;
  --ochre-deep:  #7d551f;
  --ochre-tint:  #c79a5a;

  /* Corporate navy — core brand identity (dark panels, hero overlay, headings) */
  --navy:        #435060;
  --navy-deep:   #2c3743;

  /* Semantic */
  --bg:          var(--paper);
  --surface:     #f2ede2;
  --text:        var(--ink);
  --text-soft:   var(--ink-soft);
  --muted:       var(--stone);
  --accent:      var(--ochre);
  --accent-deep: var(--ochre-deep);

  /* ===== FONTS — change these two lines to swap fonts site-wide ===== */
  --font-head: 'Mynerve', 'Segoe Script', cursive;                          /* headings · marquee · brand */
  --font-body: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;   /* all other text */
  --font-num:  'Stardos Stencil', 'JetBrains Mono', monospace;              /* big section index numbers */
  --serif: var(--font-head);   /* legacy alias → display */
  --sans:  var(--font-body);   /* legacy alias → body */

  --maxw: 1280px;
  --gutter: clamp(1.2rem, 4.5vw, 4rem);
  --ease: cubic-bezier(.2,.6,.2,1);
  --header-h: 72px;

  /* Editorial type scale */
  --t-mega: clamp(2.9rem, 7.4vw, 7rem);
  --t-xl:   clamp(2.2rem, 5vw, 4.2rem);
  --t-lg:   clamp(1.8rem, 3.4vw, 2.8rem);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15.5px; line-height: 1.72; font-weight: 400;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden; position: relative;
}
/* Fine paper grain over everything (atmosphere, not flat) */
body::before {
  content:""; position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
img,svg,video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
::selection { background: var(--ink); color: var(--paper); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 400; line-height: 1.14; letter-spacing: 0; color: var(--navy); }
.mega { font-size: var(--t-mega); line-height: 1.08; letter-spacing: 0; }
.xl   { font-size: var(--t-xl); }
.lg   { font-size: var(--t-lg); }
h2 { font-size: var(--t-xl); }
h3 { font-size: var(--t-lg); }
em, .it { font-style: italic; }
/* Heading dichromy — accent word in ochre (second colour) */
h1 .it, h2 .it, h3 .it, h4 .it, .mega .it, .xl .it, .lg .it { color: var(--accent); font-style: normal; }
.panel-dark h1 .it, .panel-dark h2 .it, .panel-dark h3 .it { color: var(--ochre-tint); }
p { color: var(--text-soft); }
.lead { font-size: clamp(1.15rem, 1.6vw, 1.4rem); line-height: 1.6; color: var(--ink-soft); font-weight: 350; }
.serif { font-family: var(--serif); }

/* Editorial label + index */
.label { font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); }
.label-ink { color: var(--ink); }
.idx { font-family: var(--font-num); font-weight: 700; font-size: clamp(3rem,6vw,5.4rem); line-height: .9; color: rgba(154,106,44,.34); }
.idx-sm { font-family: var(--font-body); color: var(--accent); font-size: 1.4rem; }
.vcaption { writing-mode: vertical-rl; text-orientation: mixed; font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }

/* Hairline rules */
.rule { height: 1px; background: var(--line); border: 0; width: 100%; }
.rule-ink { height: 2px; background: var(--ink); width: 56px; border: 0; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 2; }
.section { padding-block: clamp(4rem, 9vw, 8.5rem); position: relative; z-index: 2; }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.grid { display: grid; gap: clamp(1.5rem, 4vw, 3.5rem); }
.g12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1rem, 3vw, 2.2rem); }
.surface { background: var(--surface); }
.paper-deep { background: var(--paper-deep); }
.panel-dark { background: var(--navy); color: #e8e2d2; }
.panel-dark h1,.panel-dark h2,.panel-dark h3 { color: #f3eee2; }
.panel-dark p { color: rgba(243,238,226,.72); }
.panel-dark .label { color: var(--ochre-tint); }

/* Section header (editorial) */
.sec-head { display: flex; align-items: center; gap: .9rem; margin-bottom: clamp(2rem,4vw,3.4rem); }
.sec-head .ln { width: clamp(34px,6vw,64px); height: 1px; background: var(--accent); flex: none; }
.panel-dark .sec-head .ln { background: var(--ochre-tint); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--header-h);
  display: flex; align-items: center; transition: background .4s var(--ease), border-color .4s, box-shadow .4s;
  border-bottom: 1px solid transparent;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-header.at-top { background: transparent; }
.site-header.at-top .nav-link, .site-header.at-top .brand-name, .site-header.at-top .lang-toggle a, .site-header.at-top .nav-toggle, .site-header.at-top .hcta { color: #f3eee2; }
.site-header.stuck { background: rgba(236,229,216,.92); backdrop-filter: blur(8px) saturate(1.1); border-color: var(--line); }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { height: 42px; width: auto; }
.brand .logo-light { display: none; }   /* white wordmark — over dark hero */
.brand .logo-dark  { display: block; }   /* navy wordmark — default / scrolled */
.site-header.at-top .brand .logo-light { display: block; }
.site-header.at-top .brand .logo-dark  { display: none; }
.brand-name { font-family: var(--serif); font-size: 1.45rem; letter-spacing: .06em; color: var(--ink); }
.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.3vw, 2.2rem); }
.nav-actions { display: flex; align-items: center; gap: 1.2rem; }
.nav-link { font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); position: relative; padding-block: .5rem; }
.nav-link::after { content:""; position: absolute; left: 0; bottom: .25rem; height: 1px; width: 0; background: currentColor; transition: width .3s var(--ease); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--accent); }
.site-header.at-top .nav-link.active { color: #fff; }
.lang-toggle { font-size: .74rem; font-weight: 600; letter-spacing: .1em; display: flex; gap: .3rem; }
.lang-toggle a { color: var(--muted); }
.lang-toggle a.current { color: var(--accent); }
.site-header.at-top .lang-toggle a { color: rgba(243,238,226,.6); }
.site-header.at-top .lang-toggle a.current { color: #fff; }
.hcta { font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: .45rem; border-bottom: 1px solid var(--accent); padding-bottom: 3px; }
.hcta:hover { color: var(--accent); }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }

/* Menu-page header — always solid (QR landing, no hero) + prominent language switch */
.site-header.menu { background: rgba(236,229,216,.96); backdrop-filter: blur(8px) saturate(1.1); border-bottom: 1px solid var(--line); }
.lang-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; font-weight: 700; font-size: .74rem; letter-spacing: .06em; }
.lang-switch a { padding: .42rem .9rem; color: var(--ink-soft); transition: background .2s, color .2s; }
.lang-switch a.active { background: var(--accent); color: #fff; }
.lang-switch a:not(.active):hover { color: var(--accent); }

/* Mobile drawer */
.mobile-nav { position: fixed; inset: 0; z-index: 60; background: var(--ink); color: var(--paper);
  display: flex; flex-direction: column; padding: 1.6rem var(--gutter) 2rem; gap: .1rem;
  transform: translateX(100%); transition: transform .5s var(--ease); visibility: hidden; }
.mobile-nav.open { transform: none; visibility: visible; }
.mn-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.mn-top .brand-name { color: var(--paper); }
.mn-top img { height: 52px; width: auto; }
.mn-link { font-family: var(--serif); font-size: clamp(1.8rem,7vw,2.4rem); padding: .5rem 0; border-bottom: 1px solid rgba(236,229,216,.14); color: var(--paper); display: flex; align-items: baseline; gap: 1rem; }
.mn-link .mn-i { font-family: var(--serif); font-style: italic; font-size: .9rem; color: var(--ochre-tint); }
.mn-link:hover { color: var(--ochre-tint); }
.mn-foot { margin-top: auto; padding-top: 1.5rem; display: flex; flex-direction: column; gap: .7rem; color: rgba(236,229,216,.7); font-size: .95rem; }
.mn-close { width: 44px; height: 44px; color: var(--paper); }
body.nav-open { overflow: hidden; }

/* ---------- HERO (editorial masthead) ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding-top: calc(var(--header-h) + clamp(1rem,4vh,3rem)); padding-bottom: clamp(2rem,5vh,4rem); overflow: hidden; }
.hero.dark { background: var(--navy-deep); color: var(--paper); }
.hero.dark .label { color: rgba(246,241,230,.72); }
.hero.dark .lead { color: rgba(246,241,230,.92); }
.hero.dark p { color: rgba(246,241,230,.82); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero.dark .hero-bg::after { content:""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(28,36,46,.88) 0%, rgba(28,36,46,.6) 42%, rgba(28,36,46,.28) 100%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(12,1fr); gap: clamp(1rem,2.5vw,2rem); align-items: end; width: 100%; }
.hero-meta { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-bottom: clamp(1.5rem,4vh,3rem); }
.hero-meta .rule { flex: 1; background: rgba(243,238,226,.3); }
.hero-title { grid-column: 1 / span 8; }
.hero .mega { color: #f6f1e6; text-shadow: 0 2px 40px rgba(0,0,0,.25); }
.hero .mega .it { color: var(--ochre-tint); }
.hero-aside { grid-column: 9 / -1; align-self: end; display: flex; flex-direction: column; gap: 1.1rem; }
.hero-fig { position: relative; border: 1px solid rgba(243,238,226,.35); padding: 7px; }
.hero-fig img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.hero-foot { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem 2rem; padding-top: clamp(1.5rem,4vh,2.6rem); }
.hero-foot .lead { color: rgba(246,241,230,.92); max-width: 40ch; }
.hero .label { color: rgba(246,241,230,.7); }
.scroll-cue { display: inline-flex; align-items: center; gap: .5rem; font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(246,241,230,.7); }
.scroll-cue svg { width: 18px; height: 18px; }

/* ---------- Inner-page masthead (subhero) ---------- */
.subhero { min-height: clamp(56vh, 64vh, 76vh); justify-content: flex-end; }
.subhero .wrap { padding-bottom: clamp(1rem, 4vh, 2.6rem); }
.subhero .mega { font-size: clamp(2.5rem, 6vw, 5rem); }
.subhero h1 { color: #f6f1e6; }
.subhero.dark .hero-bg::after { background: linear-gradient(180deg, rgba(28,36,46,.55) 0%, rgba(28,36,46,.32) 38%, rgba(28,36,46,.86) 100%); }
.crumbs { display: flex; flex-wrap: wrap; gap: .55rem; align-items: center; font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(246,241,230,.66); margin-bottom: clamp(1rem,3vh,1.6rem); }
.crumbs a { color: rgba(246,241,230,.66); transition: color .2s; }
.crumbs a:hover { color: #fff; }
.crumbs .sep { color: var(--ochre-tint); }
.crumbs span:last-child { color: rgba(246,241,230,.92); }

/* ---------- Buttons / links ---------- */
.btn { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--sans); font-weight: 600; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; transition: .3s var(--ease); }
.btn-fill { background: var(--ink); color: var(--paper); padding: 1.05rem 1.9rem; }
.btn-fill:hover { background: var(--accent-deep); }
.btn-ochre { background: var(--accent); color: #fff; padding: 1.05rem 1.9rem; }
.btn-ochre:hover { background: var(--accent-deep); }
.btn-line { color: currentColor; padding-bottom: .35rem; border-bottom: 1px solid currentColor; }
.btn-line .ar { display: inline-flex; align-items: center; transition: transform .3s var(--ease); }
.btn svg { width: 1.5em; height: 1.5em; flex: none; }
.btn .ar svg { width: 1.3em; height: 1.3em; }
.mn-foot a svg { width: 1.15em; height: 1.15em; vertical-align: -.2em; margin-right: .35rem; }
.btn-line:hover .ar { transform: translateX(5px); }
.btn-out { border: 1px solid currentColor; padding: 1.05rem 1.9rem; }
.btn-out:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.arrowlink { font-weight: 600; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: .5rem; }
.arrowlink svg { width: 1.3em; height: 1.3em; transition: transform .3s var(--ease); }
.arrowlink:hover svg { transform: translateX(5px); }

/* ---------- Figures ---------- */
.figure { position: relative; }
.figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.figure.frame { --tilt: -1.7deg; border: 1px solid var(--line); padding: 9px 9px 34px; background: #fbf8f1;
  box-shadow: 0 22px 44px -22px rgba(44,55,67,.5); transform: rotate(var(--tilt));
  transition: transform .55s var(--ease), box-shadow .55s var(--ease); }
.figure.frame.tilt-r { --tilt: 2.1deg; }
.figure.frame:hover { transform: rotate(var(--tilt)) translateY(-6px) scale(1.012); box-shadow: 0 32px 60px -22px rgba(44,55,67,.55); }
.figure.frame .cap { padding-inline: 2px; transform: rotate(calc(var(--tilt) * -1)); }
/* entry: the postcard drops in from a steeper angle and settles at its resting tilt */
.figure.frame.reveal { opacity: 0; transform: translateY(42px) rotate(calc(var(--tilt) - 6deg)) scale(.96); }
.figure.frame.reveal.in { opacity: 1; transform: rotate(var(--tilt)); }
.figure.frame.reveal.in:hover { transform: rotate(var(--tilt)) translateY(-6px) scale(1.012); }
.figure .cap { margin-top: .7rem; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); display: flex; justify-content: space-between; gap: 1rem; }
.figure .vtag { position: absolute; top: 1rem; right: -.3rem; }
.ar-portrait { aspect-ratio: 3/4; } .ar-square { aspect-ratio: 1/1; } .ar-land { aspect-ratio: 4/3; } .ar-wide { aspect-ratio: 16/10; }
.dish-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.dish-grid .dish-2 { margin-top: 2.2rem; }

/* ---------- Editorial list (values / why) ---------- */
.elist { border-top: 1px solid var(--line); }
.elist .row { display: grid; grid-template-columns: 4rem 1fr; gap: clamp(1rem,3vw,2.5rem); padding: clamp(1.4rem,3vw,2.4rem) 0; border-bottom: 1px solid var(--line); align-items: baseline; transition: padding .3s var(--ease); }
.elist .row:hover { padding-left: .6rem; }
.elist .row .ic { color: var(--accent); display: flex; align-items: center; }
.elist .row .ic svg { width: 44px; height: 44px; }
.elist .row h3 { margin-bottom: .4rem; }
.elist .row .rt { max-width: 52ch; }

/* ---------- Marquee strip ---------- */
.strip { border-block: 1px solid var(--line); overflow: hidden; padding-block: 1.1rem; }
.strip-track { display: flex; gap: 3rem; white-space: nowrap; animation: slide 38s linear infinite; }
.strip-item { font-family: var(--font-head); font-size: 1.7rem; color: var(--navy); display: inline-flex; align-items: center; gap: 3rem; }
.strip-item::after { content:"✕"; color: var(--accent); font-size: .9rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Gallery ---------- */
.gal { columns: 4; column-gap: .7rem; }
.gal .gitem { break-inside: avoid; margin-bottom: .7rem; position: relative; cursor: pointer; overflow: hidden; display: block; }
.gal .gitem img { width: 100%; transition: transform .6s var(--ease), filter .4s; }
.gal .gitem:hover img { transform: scale(1.04); filter: brightness(.92); }
.gal .gitem::after { content:"＋"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 1.6rem; background: rgba(20,30,28,.28); opacity: 0; transition: .35s; }
.gal .gitem:hover::after { opacity: 1; }
.is-hidden { display: none !important; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(20,24,20,.95); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; }
.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; color: #fff; display: grid; place-items: center; }
.lb-btn:hover { color: var(--ochre-tint); }
.lb-prev { left: 1.5vw; } .lb-next { right: 1.5vw; } .lb-close { top: 1.5rem; right: 1.5rem; transform: none; }

/* ---------- Menu ---------- */
.menu-nav { display: flex; flex-wrap: nowrap; gap: 1.6rem; border-bottom: 1px solid var(--line); padding-bottom: 1rem; padding-left: 20px; margin-bottom: 2.5rem; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.menu-nav::-webkit-scrollbar { display: none; }
.menu-nav a, .menu-tab { font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding-bottom: .3rem; border-bottom: 2px solid transparent; white-space: nowrap; flex: none; }
.menu-nav a:hover, .menu-tab:hover, .menu-tab.active { color: var(--ink); border-color: var(--accent); }
.menu-cat { margin-bottom: clamp(2.5rem,5vw,4rem); scroll-margin-top: 100px; }
.menu-cat-head { display: grid; grid-template-columns: auto auto 1fr; gap: 1.1rem; align-items: baseline; margin-bottom: 1.6rem; }
.menu-cat-head .idx-sm { grid-row: 1; }
.menu-cat-head h2 { font-size: clamp(1.7rem,3vw,2.4rem); }
.menu-cat-head .rule { align-self: center; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: .15rem 1.2rem; padding: .85rem 0; border-bottom: 1px solid var(--line-soft); align-items: baseline; }
.menu-item .mi-name { font-size: 1.08rem; font-weight: 500; color: var(--ink); }
.menu-item .mi-name .tag { font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ochre-deep); border: 1px solid var(--line); border-radius: 2px; padding: .05rem .3rem; margin-left: .45rem; vertical-align: middle; }
.menu-item .mi-desc { grid-column: 1/2; font-size: .9rem; color: var(--muted); }
/* Wine descriptions in uppercase (Greek accents auto-stripped by browser via lang) */
.wine-caps .mi-desc { text-transform: uppercase; letter-spacing: .02em; }
.menu-item .mi-price { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; color: var(--ink); white-space: nowrap; }
.menu-note { font-size: .85rem; color: var(--muted); font-style: italic; margin-top: 1rem; }
.fineprint { font-size: .78rem; line-height: 1.7; color: var(--muted); }
/* sticky category index */
.menu-nav { position: sticky; top: var(--header-h); background: var(--bg); z-index: 5; padding-top: 1.1rem; }
.menu-nav .pdf { color: var(--accent); }
.menu-group-title { font-family: var(--font-head); color: var(--navy); font-size: clamp(2rem,4.2vw,3.2rem); margin: clamp(1.5rem,4vw,3rem) 0 clamp(1.2rem,2.5vw,2rem); display: flex; align-items: center; gap: 1rem; }
.menu-group-title::after { content:""; flex: 1; height: 1px; background: var(--line); }
.menu-legend { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; font-size: .78rem; color: var(--muted); margin-bottom: .5rem; }
.menu-legend .tag { font-size: .62rem; font-weight: 700; letter-spacing: .08em; color: var(--ochre-deep); border: 1px solid var(--line); border-radius: 2px; padding: .05rem .3rem; margin-right: .35rem; }
/* two-column category flow (coffee & breakfast) */
.menu-cols { columns: 2; column-gap: clamp(2rem,5vw,4.5rem); }
.menu-cols .menu-cat { break-inside: avoid; }
/* grouped item with priced variants */
.menu-subname { font-size: 1.08rem; font-weight: 500; color: var(--ink); margin: .85rem 0 .1rem; }
.menu-item.sub { padding: .5rem 0; }
.menu-item.sub .mi-name { font-weight: 400; color: var(--ink-soft); font-size: .98rem; }
.menu-item.sub .mi-price { font-weight: 500; }
@media (max-width: 640px){ .menu-cols { columns: 1; } }

/* ---------- Forms ---------- */
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .45rem; }
.field input, .field textarea { width: 100%; padding: .85rem 0; font: inherit; font-size: 1rem; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--line); transition: border-color .25s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { min-height: 120px; resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 1rem; padding: .85rem 1rem; font-size: .95rem; display: none; border-left: 2px solid; }
.form-status.ok { display: block; background: rgba(60,110,80,.08); color: #2f5b40; border-color: #2f5b40; }
.form-status.err { display: block; background: rgba(150,60,40,.08); color: #8f3b25; border-color: #8f3b25; }

/* Info rows */
.info-row { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); align-items: start; }
.info-row .ir-l { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); padding-top: .15rem; }
.info-row .ir-l svg { width: 1.35rem; height: 1.35rem; display: block; }
.info-row a, .info-row p { color: var(--ink); font-weight: 400; font-size: 1.05rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(236,229,216,.66); padding-top: clamp(3.5rem,7vw,5.5rem); position: relative; z-index: 2; }
.site-footer h4 { font-family: var(--sans); color: var(--paper); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.2rem; }
.site-footer a { color: rgba(236,229,216,.66); transition: color .2s; }
.site-footer a:hover { color: var(--ochre-tint); }
.footer-top { display: grid; grid-template-columns: 1.9fr 1fr 1fr; gap: 2.6rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(236,229,216,.14); }
.footer-brand .brand-name { color: var(--paper); font-size: 2.4rem; display: block; margin-bottom: .8rem; }
.footer-brand img { height: 62px; width: auto; margin-bottom: 1.2rem; }
.footer-list { display: flex; flex-direction: column; gap: .65rem; }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.1rem; font-size: .9rem; }
.social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.social a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(236,229,216,.22); }
.social a:hover { background: var(--ochre); border-color: var(--ochre); color: #fff; }
.social svg { width: 22px; height: 22px; }
.footer-bottom { padding: 1.5rem 0; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; font-size: .8rem; }

/* ---------- Reveal / entry animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.from-l { transform: translateX(-36px); }
.reveal.from-r { transform: translateX(36px); }
.reveal.zoom { transform: scale(.9); }
.reveal.fade { transform: none; }
.reveal.blur { filter: blur(10px); transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease); }
.reveal.from-l.in, .reveal.from-r.in, .reveal.zoom.in, .reveal.blur.in { transform: none; filter: none; }
.reveal[data-d="1"]{transition-delay:.08s}.reveal[data-d="2"]{transition-delay:.16s}.reveal[data-d="3"]{transition-delay:.24s}
.reveal[data-d="4"]{transition-delay:.32s}.reveal[data-d="5"]{transition-delay:.40s}.reveal[data-d="6"]{transition-delay:.48s}

/* Hero image — slow ken-burns drift */
.hero.dark .hero-bg img { animation: kenburns 22s var(--ease) forwards; }
@keyframes kenburns { from { transform: scale(1.1) translateY(-1%); } to { transform: scale(1); } }

/* Hero on-load entrance (CSS-only — works without JS, safe above the fold) */
.load-up { animation: loadUp 1s var(--ease) both; }
@keyframes loadUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.load-up.d1 { animation-delay: .12s } .load-up.d2 { animation-delay: .26s }
.load-up.d3 { animation-delay: .4s } .load-up.d4 { animation-delay: .54s }

/* Section-title underline draw-in */
.draw-rule { position: relative; }
.draw-rule::after { content:""; position:absolute; left:0; bottom:-.5rem; height:2px; width:0; background: var(--accent); transition: width .9s var(--ease) .2s; }
.draw-rule.in::after { width: 56px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px){
  .gal { columns: 3; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-title { grid-column: 1 / span 9; }
  .hero-aside { grid-column: 1 / -1; flex-direction: row; align-items: flex-end; }
  .hero-fig { max-width: 240px; }
}
@media (max-width: 760px){
  .nav, .hcta.desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .g12 > * { grid-column: 1 / -1 !important; }
  .g12 { gap: 2.6rem 1.2rem; }
  .gal { columns: 2; column-gap: .8rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero-aside { display: none; }
  .dish-grid { gap: 1rem; }
  .strip-track { animation-duration: 10s; }
}
@media (max-width: 560px){
  body { font-size: 16px; }
  .dish-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .dish-grid .dish-2 { margin-top: 0; }
  .figure.frame { padding: 8px 8px 26px; --tilt: -1.1deg; }
  .figure.frame.tilt-r { --tilt: 1.3deg; }
  .gal .gitem { margin-bottom: .8rem; }
}
@media (max-width: 460px){
  .menu-item { grid-template-columns: 1fr auto; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .strip-track { animation: none; }
  *,*::before,*::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
