/* ===== La Poste — design tokens ===== */
:root{
  --off-white:#FAF5EA;
  --off-white-2:#F3ECDD;
  --wood:#3E2A1E;
  --wood-soft:#5A4232;
  --red:#A8362B;
  --red-dark:#8A2A21;
  --gold:#D8A13A;
  --gold-soft:#F0DDAE;
  --stone:#6F675C;
  --stone-light:#948C7F;
  --green:#5F7A4F;
  --white:#FFFDF9;
  --ink:#2B211A;

  --font-display:'Fraunces', Georgia, serif;
  --font-body:'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius:8px;
  --shadow-sm:0 1px 3px rgba(43,33,26,.12);
  --shadow-md:0 6px 20px rgba(43,33,26,.14);
  --header-h:72px;
  --sticky-h:64px;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--off-white);
  -webkit-font-smoothing:antialiased;
  padding-bottom:var(--sticky-h);
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3{font-family:var(--font-display);color:var(--wood);margin:0 0 .4em;line-height:1.15}
p{line-height:1.6;margin:0 0 1em}
ul{margin:0;padding:0;list-style:none}
button{font:inherit;cursor:pointer;background:none;border:none;color:inherit}

.visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}
.skip-link{position:absolute;left:-999px;top:0;background:var(--wood);color:var(--white);padding:.75em 1.2em;z-index:200;border-radius:0 0 var(--radius) 0}
.skip-link:focus{left:0}

.icon{width:1.2em;height:1.2em;fill:currentColor;flex:none}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5em;
  padding:.85em 1.4em;border-radius:var(--radius);
  font-weight:600;font-size:1rem;white-space:nowrap;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  border:2px solid transparent;
}
.btn .icon{width:1.1em;height:1.1em}
.btn-primary{background:var(--red);color:var(--white)}
.btn-primary:hover{background:var(--red-dark);box-shadow:var(--shadow-sm)}
.btn-secondary{background:var(--white);color:var(--wood);border-color:var(--wood-soft)}
.btn-secondary:hover{background:var(--off-white-2)}
.btn-small{padding:.5em 1em;font-size:.9rem}

/* ===== Header ===== */
.site-header{
  position:sticky;top:0;z-index:100;
  height:var(--header-h);
  background:var(--off-white);
  border-bottom:1px solid rgba(62,42,30,.1);
}
.header-inner{
  max-width:1200px;margin:0 auto;height:100%;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 1.25rem;gap:1rem;
}
.brand{display:flex;align-items:center;gap:.6rem;flex:none}
.brand-mark{
  width:40px;height:40px;border-radius:8px;background:var(--red);color:var(--white);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-weight:700;font-size:1.3rem;flex:none;
}
.brand-text{display:flex;flex-direction:column;line-height:1.1}
.brand-name{font-family:var(--font-display);font-weight:700;font-size:1.25rem;color:var(--wood)}
.brand-sub{font-size:.7rem;color:var(--stone);letter-spacing:.03em}

.main-nav ul{display:flex;gap:1.75rem}
.main-nav a{font-weight:600;font-size:.95rem;color:var(--wood-soft);position:relative;padding:.3em 0}
.main-nav a:hover{color:var(--red)}

.header-actions{display:flex;align-items:center;gap:.85rem;flex:none}

.lang-switch{display:flex;gap:.15rem;background:var(--off-white-2);border-radius:999px;padding:.2rem}
.lang-btn{padding:.35em .7em;border-radius:999px;font-size:.78rem;font-weight:700;color:var(--stone)}
.lang-btn.active{background:var(--wood);color:var(--white)}
.lang-btn:hover:not(.active){color:var(--wood)}

.header-call{display:none}

.nav-toggle{display:none;padding:.4rem;border-radius:var(--radius);color:var(--wood)}
.nav-toggle .icon{width:1.5em;height:1.5em}
.nav-toggle .icon-close{display:none}
.nav-toggle[aria-expanded="true"] .icon-open{display:none}
.nav-toggle[aria-expanded="true"] .icon-close{display:block}

.nav-scrim{position:fixed;inset:0;background:rgba(43,33,26,.4);z-index:98;opacity:0;pointer-events:none;transition:opacity .2s ease}
.nav-scrim.open{opacity:1;pointer-events:auto}

/* ===== Hero ===== */
.hero{position:relative;min-height:min(88vh,760px);display:flex;align-items:flex-end;overflow:hidden;color:var(--white)}
.hero-media{position:absolute;inset:0}
.hero-media img{width:100%;height:100%;object-fit:cover}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(43,26,17,.15) 0%, rgba(43,26,17,.15) 40%, rgba(30,18,12,.78) 100%);
}
.hero-content{position:relative;z-index:1;max-width:1200px;margin:0 auto;padding:3rem 1.25rem 3.5rem;width:100%}
.eyebrow{
  text-transform:uppercase;letter-spacing:.12em;font-size:.8rem;font-weight:700;
  color:var(--gold-soft);margin-bottom:.6em;
}
.hero h1{font-size:clamp(2.6rem,7vw,4.5rem);color:var(--white);margin-bottom:.2em}
.hero-sub{font-size:clamp(1.05rem,2.4vw,1.35rem);max-width:36em;color:var(--off-white);margin-bottom:1.4em}
.hero-actions{display:flex;flex-wrap:wrap;gap:.85rem}

/* ===== Quick info bar ===== */
.quick-info{background:var(--wood);color:var(--off-white)}
.quick-info-inner{
  max-width:1200px;margin:0 auto;padding:.9rem 1.25rem;
  display:flex;flex-wrap:wrap;gap:1.25rem 2rem;align-items:center;justify-content:center;
}
.quick-item{display:flex;align-items:center;gap:.5em;font-size:.92rem;font-weight:500}
.quick-item .icon{color:var(--gold)}
.quick-item a{text-decoration:underline;text-underline-offset:2px}
#open-status.is-open{color:#B9D9A0}
#open-status.is-closed{color:#E7B3A8}

/* ===== Sections ===== */
.section{padding:4.5rem 1.25rem}
.section-inner{max-width:1200px;margin:0 auto}
.section h2{font-size:clamp(1.7rem,3.5vw,2.4rem);text-align:center;margin-bottom:1.1em}
.food .section-inner h2, .visit-info h2{text-align:left}

/* Why stop here */
.why{background:var(--off-white)}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.75rem}
.why-card{background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-sm)}
.why-card img{aspect-ratio:4/3;object-fit:cover}
.why-card h3{font-size:1.2rem;margin:.9rem 1.1rem .3rem}
.why-card p{margin:0 1.1rem 1.1rem;color:var(--stone);font-size:.95rem}

/* Food & drinks */
.food{background:var(--off-white-2)}
.food-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:3rem;align-items:center}
.food-copy .lead{font-size:1.1rem;color:var(--wood-soft)}
.food-tags{display:flex;flex-wrap:wrap;gap:.6rem;margin:1.2rem 0 1.6rem}
.food-tags li{
  background:var(--white);border:1px solid var(--gold);color:var(--wood);
  padding:.45em 1em;border-radius:999px;font-size:.9rem;font-weight:600;
}
.food-media img{border-radius:var(--radius);box-shadow:var(--shadow-md);aspect-ratio:4/3;object-fit:cover}

/* Reviews */
.reviews{background:var(--off-white)}
.reviews-head{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:1rem;margin-bottom:2rem}
.reviews-head h2{margin-bottom:0}
.rating-pill{
  display:flex;align-items:center;gap:.5em;background:var(--gold-soft);
  color:var(--wood);padding:.5em 1em;border-radius:999px;font-size:.95rem;
}
.rating-pill .icon{color:var(--gold);width:1.1em;height:1.1em}
.review-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}
.review-card{
  background:var(--white);border-radius:var(--radius);padding:1.4rem;margin:0;
  box-shadow:var(--shadow-sm);
}
.stars{color:var(--gold);letter-spacing:.08em;margin-bottom:.5rem;font-size:.95rem}
.review-card p{font-size:.95rem;color:var(--ink);margin-bottom:.9rem}
.review-card cite{font-style:normal;font-weight:600;font-size:.85rem;color:var(--stone)}

/* Gallery */
.gallery{background:var(--off-white-2)}
.gallery-grid{
  display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:170px;gap:.75rem;
}
.gallery-grid img{width:100%;height:100%;object-fit:cover;border-radius:var(--radius)}
.gallery-grid img:first-child{grid-column:span 2;grid-row:span 2}

/* Visit / contact */
.visit{background:var(--wood);color:var(--off-white)}
.visit-info h2{color:var(--white)}
.visit-name{font-family:var(--font-display);font-size:1.4rem;color:var(--gold-soft);margin-bottom:1.1rem}
.visit-name span{color:var(--off-white);font-family:var(--font-body);font-size:.95rem;font-weight:400}
.visit-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:3rem;align-items:start}
.visit-row{display:flex;align-items:center;gap:.7em;margin-bottom:.7rem;font-size:1rem}
.visit-row .icon{color:var(--gold)}
.visit-row a{text-decoration:underline;text-underline-offset:2px}

.hours-table{width:100%;border-collapse:collapse;margin:1.4rem 0 1.6rem;font-size:.95rem}
.hours-table caption{text-align:left;font-weight:700;color:var(--gold-soft);margin-bottom:.6rem;caption-side:top}
.hours-table tr{border-bottom:1px solid rgba(250,245,234,.12)}
.hours-table th,.hours-table td{padding:.45em 0;text-align:left;font-weight:400}
.hours-table th{color:var(--off-white);font-weight:500}
.hours-table td{text-align:right;color:var(--off-white)}
.hours-table td.closed{color:#E7B3A8;font-weight:600}
.hours-table tr.today{outline:1px solid var(--gold)}
.hours-table tr.today th, .hours-table tr.today td{color:var(--gold-soft);font-weight:700}

.visit-actions{display:flex;flex-wrap:wrap;gap:.85rem;margin-bottom:1.6rem}
.visit .btn-secondary{background:transparent;color:var(--off-white);border-color:rgba(250,245,234,.5)}
.visit .btn-secondary:hover{background:rgba(250,245,234,.08)}

.social-row{display:flex;gap:.85rem}
.social-row a,.social-row .social-placeholder{
  width:42px;height:42px;border-radius:50%;background:rgba(250,245,234,.1);
  display:flex;align-items:center;justify-content:center;color:var(--off-white);
}
.social-row a:hover{background:var(--red)}
.social-placeholder{opacity:.4;cursor:default}

.map-block{
  display:block;border-radius:var(--radius);overflow:hidden;
  background:
    repeating-linear-gradient(0deg, rgba(216,161,58,.14) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(216,161,58,.14) 0 1px, transparent 1px 40px),
    linear-gradient(160deg, #4A3324, #2E1F16);
  min-height:340px;position:relative;
}
.map-block-inner{
  position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;gap:.3rem;padding:1.5rem;
}
.map-pin-big{width:2.6rem;height:2.6rem;color:var(--red);filter:drop-shadow(0 3px 6px rgba(0,0,0,.4));margin-bottom:.4rem}
.map-title{font-family:var(--font-display);font-size:1.3rem;color:var(--white);margin-bottom:.1rem}
.map-block-inner p{color:var(--off-white);margin-bottom:1rem}
.map-block .btn{pointer-events:none}

/* Footer */
.site-footer{background:#2E1F16;color:var(--stone-light);padding:1.75rem 1.25rem}
.footer-inner{max-width:1200px;margin:0 auto;display:flex;flex-wrap:wrap;justify-content:space-between;gap:.5rem;font-size:.85rem}
.footer-inner a{text-decoration:underline;text-underline-offset:2px}

/* Sticky mobile CTA */
.sticky-cta{
  display:none;position:fixed;left:0;right:0;bottom:0;z-index:99;
  height:var(--sticky-h);background:var(--white);border-top:1px solid rgba(62,42,30,.15);
  box-shadow:0 -4px 16px rgba(43,33,26,.12);
}
.sticky-btn{
  flex:1;display:flex;align-items:center;justify-content:center;gap:.5em;
  font-weight:700;font-size:.95rem;height:100%;
}
.sticky-call{background:var(--red);color:var(--white)}
.sticky-dir{background:var(--wood);color:var(--white)}

/* ===== Responsive ===== */
@media (max-width:980px){
  .why-grid{grid-template-columns:1fr 1fr}
  .review-grid{grid-template-columns:1fr 1fr}
  .food-grid{grid-template-columns:1fr}
  .food-media{order:-1}
  .visit-grid{grid-template-columns:1fr}
}

@media (max-width:760px){
  .main-nav{
    position:fixed;top:var(--header-h);right:0;bottom:0;width:min(78vw,320px);
    background:var(--white);z-index:99;padding:1.5rem 1.25rem;
    transform:translateX(100%);transition:transform .25s ease;
    box-shadow:-8px 0 24px rgba(43,33,26,.18);
    overflow-y:auto;
  }
  .main-nav.open{transform:translateX(0)}
  .main-nav ul{flex-direction:column;gap:0}
  .main-nav a{display:block;padding:.9rem 0;font-size:1.05rem;border-bottom:1px solid var(--off-white-2)}
  .nav-toggle{display:flex}
  .header-call{display:none}
  .lang-switch{order:3}

  .quick-info-inner{justify-content:flex-start;overflow-x:auto;flex-wrap:nowrap;padding:.9rem 1.25rem}
  .quick-item{flex:none}

  .why-grid{grid-template-columns:1fr}
  .review-grid{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:150px}
  .gallery-grid img:first-child{grid-column:span 2;grid-row:span 1;aspect-ratio:16/10;height:auto}

  .sticky-cta{display:flex}
  body{padding-bottom:var(--sticky-h)}
  .section{padding:3rem 1.25rem}
}

@media (max-width:420px){
  .header-inner{padding:0 .85rem}
  .brand-sub{display:none}
  .lang-btn{padding:.3em .55em;font-size:.72rem}
}
