/* ============================================================
   MINEROSSA CAFE & EATERY — styles
   Aesthetic: warm botanical editorial · cream + wine + dusty rose
   Type: Fraunces (display) · Jost (UI/body)
   ============================================================ */

/* ---------- Tokens ---------- */
:root{
  --cream:#F7F0E2;
  --cream-2:#F1E6D3;
  --cream-3:#EADBC4;
  --paper:#FCF8EF;
  --ink:#2B2620;
  --ink-soft:#6A5F52;
  --ink-faint:#9A8C79;
  --wine:#7A2230;
  --wine-deep:#5C1722;
  --rose:#BC6E77;
  --rose-soft:#D8A7AC;
  --olive:#47503E;
  --gold:#C2A06B;
  --line:#DBCBAE;
  --line-soft:#E7DBC4;

  --shadow-sm:0 2px 10px rgba(74,42,28,.06);
  --shadow:0 18px 50px -20px rgba(74,30,28,.30);
  --shadow-lg:0 40px 90px -30px rgba(74,30,28,.40);

  --maxw:1240px;
  --gutter:clamp(1.25rem,5vw,3rem);
  --section-y:clamp(4.5rem,9vw,8rem);
  --header-h:3.4rem;
  --radius:4px;
  --radius-lg:14px;

  --ff-display:"Fraunces",Georgia,serif;
  --ff-body:"Jost","Segoe UI",sans-serif;

  --ease:cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--ff-body);
  background:var(--cream);
  color:var(--ink);
  line-height:1.65;
  font-weight:400;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}
ul{list-style:none}
iframe{border:0}
:focus-visible{outline:2px solid var(--wine);outline-offset:3px;border-radius:2px}
::selection{background:var(--rose);color:#fff}

/* paper grain backdrop */
body::before{
  content:"";position:fixed;inset:0;z-index:0;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='.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='.045'/%3E%3C/svg%3E");
  mix-blend-mode:multiply;
}
main,.site-header,.footer,.announce{position:relative;z-index:1}

/* ---------- Layout ---------- */
.container{width:100%;max-width:var(--maxw);margin-inline:auto;padding-inline:var(--gutter)}
.section{padding-block:var(--section-y);scroll-margin-top:4.5rem}
.section--alt{background:var(--cream-2)}

/* ---------- Typography helpers ---------- */
.section__head{text-align:center;margin-bottom:clamp(2.5rem,5vw,4rem)}
.section__title{
  font-family:var(--ff-display);
  font-weight:400;
  font-optical-sizing:auto;
  font-size:clamp(2rem,4.6vw,3.4rem);
  line-height:1.08;
  letter-spacing:-.01em;
  color:var(--ink);
}
.section__title em{font-style:italic;color:var(--wine)}
.section__title--center{max-width:18ch;margin-inline:auto}

.eyebrow{
  display:inline-flex;align-items:center;gap:.85rem;
  font-family:var(--ff-body);
  font-size:.72rem;font-weight:500;letter-spacing:.34em;text-transform:uppercase;
  color:var(--wine);margin-bottom:1.1rem;
}
.eyebrow__rule{display:block;width:clamp(20px,5vw,46px);height:1px;background:var(--gold);opacity:.8}
.eyebrow--light{color:var(--rose-soft)}
.eyebrow--light .eyebrow__rule{background:var(--rose-soft);opacity:.7}
.section__head .eyebrow{justify-content:center}

/* ---------- Buttons ---------- */
.btn{
  --pad:.95rem 1.9rem;
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  padding:var(--pad);
  font-size:.8rem;font-weight:500;letter-spacing:.16em;text-transform:uppercase;
  border-radius:var(--radius);
  transition:transform .35s var(--ease),background .35s var(--ease),color .35s var(--ease),box-shadow .35s var(--ease);
  position:relative;white-space:nowrap;
}
.btn--sm{--pad:.6rem 1.15rem;font-size:.72rem;letter-spacing:.12em}
.btn--solid{background:var(--wine);color:var(--paper);box-shadow:var(--shadow-sm)}
.btn--solid:hover{background:var(--wine-deep);transform:translateY(-2px);box-shadow:0 16px 30px -12px rgba(92,23,34,.5)}
.btn--ghost{border:1px solid currentColor;color:var(--ink)}
.btn--ghost:hover{background:var(--ink);color:var(--cream);transform:translateY(-2px)}
.hero .btn--ghost{color:#fff;border-color:rgba(255,255,255,.55)}
.hero .btn--ghost:hover{background:#fff;color:var(--ink);border-color:#fff}
.btn--wa svg{color:#3aae5a}
.btn--wa:hover svg{color:inherit}

.link-underline{
  display:inline-flex;align-items:center;gap:.5rem;
  font-weight:500;letter-spacing:.04em;color:var(--wine);
  background-image:linear-gradient(var(--wine),var(--wine));
  background-size:0% 1px;background-repeat:no-repeat;background-position:0 100%;
  transition:background-size .4s var(--ease);
}
.link-underline:hover{background-size:100% 1px}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce{
  background:var(--wine-deep);color:var(--cream);
  display:flex;align-items:center;justify-content:center;gap:1rem;
  padding:.5rem 3rem .5rem 1rem;text-align:center;position:relative;
  font-size:.82rem;letter-spacing:.02em;
}
.announce__text strong{color:#fff;font-weight:600;letter-spacing:.04em}
.announce__text{color:var(--rose-soft)}
.announce__close{
  position:absolute;right:.75rem;top:50%;transform:translateY(-50%);
  display:grid;place-items:center;width:26px;height:26px;border-radius:50%;
  color:var(--rose-soft);transition:background .3s,color .3s;
}
.announce__close:hover{background:rgba(255,255,255,.12);color:#fff}
.announce.is-hidden{display:none}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header{
  position:sticky;top:0;z-index:50;
  transition:background .4s var(--ease),box-shadow .4s var(--ease),padding .4s var(--ease);
  padding-block:.5rem;
}
.site-header__inner{display:flex;align-items:center;justify-content:space-between;gap:1.5rem}
.site-header.is-scrolled{
  background:rgba(247,240,226,.92);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  box-shadow:0 1px 0 var(--line-soft),0 10px 30px -22px rgba(74,30,28,.5);
}

.brand{display:flex;flex-direction:column;line-height:1;gap:.25rem}
.brand__mark{
  font-family:var(--ff-body);font-weight:500;
  font-size:1.32rem;letter-spacing:.34em;color:var(--ink);
  transition:color .4s;
}
.brand__mark span{color:var(--rose)}
.brand__sub{
  font-family:var(--ff-display);font-style:italic;font-weight:400;
  font-size:.74rem;letter-spacing:.06em;color:var(--ink-soft);padding-left:.15em;
}
/* on hero (not scrolled) the header sits over dark image */
.site-header:not(.is-scrolled) .brand__mark{color:#fff}
.site-header:not(.is-scrolled) .brand__mark span{color:var(--rose-soft)}
.site-header:not(.is-scrolled) .brand__sub{color:rgba(255,255,255,.78)}
.site-header:not(.is-scrolled) .nav__link{color:rgba(255,255,255,.9)}
.site-header:not(.is-scrolled) .lang__btn{color:rgba(255,255,255,.75)}
.site-header:not(.is-scrolled) .lang__btn.is-active{color:#fff}
.site-header:not(.is-scrolled) .lang__sep{color:rgba(255,255,255,.4)}
.site-header:not(.is-scrolled) .icon-link{color:rgba(255,255,255,.9)}
.site-header:not(.is-scrolled) .hamburger{color:#fff}

.nav{display:flex;gap:clamp(1.2rem,2.6vw,2.6rem)}
.nav__link{
  font-size:.82rem;font-weight:400;letter-spacing:.1em;text-transform:uppercase;
  color:var(--ink);position:relative;padding-block:.3rem;transition:color .3s;
}
.nav__link::after{
  content:"";position:absolute;left:0;bottom:0;width:100%;height:1px;
  background:currentColor;transform:scaleX(0);transform-origin:left;
  transition:transform .4s var(--ease);
}
.nav__link:hover::after{transform:scaleX(1)}
.nav__link:hover{color:var(--rose)}

.header__actions{display:flex;align-items:center;gap:clamp(.6rem,1.5vw,1.15rem)}
.lang{display:flex;align-items:center;gap:.4rem;font-size:.78rem;letter-spacing:.1em}
.lang__btn{color:var(--ink-soft);font-weight:500;transition:color .3s;padding:.2rem}
.lang__btn.is-active{color:var(--wine)}
.lang__sep{color:var(--line)}
.icon-link{display:grid;place-items:center;color:var(--ink);transition:color .3s,transform .3s}
.icon-link:hover{color:var(--rose);transform:translateY(-1px)}
.header__cta{margin-left:.2rem}

.hamburger{display:none;color:var(--ink)}

/* ---------- Mobile menu ---------- */
.mobile-menu{
  position:fixed;inset:0;z-index:60;background:var(--wine-deep);color:var(--cream);
  display:flex;flex-direction:column;justify-content:center;align-items:center;gap:2.5rem;
  opacity:0;visibility:hidden;transform:translateY(-8px);
  transition:opacity .4s var(--ease),transform .4s var(--ease),visibility .4s;
}
.mobile-menu.is-open{opacity:1;visibility:visible;transform:none}
.mobile-menu__nav{display:flex;flex-direction:column;align-items:center;gap:1.4rem}
.mobile-menu__link{
  font-family:var(--ff-display);font-size:2rem;color:var(--cream);
  opacity:.9;transition:color .3s,opacity .3s;
}
.mobile-menu__link:hover{color:var(--rose-soft)}
.mobile-menu__foot{position:absolute;bottom:2.5rem}
.mobile-menu__social{display:inline-flex;align-items:center;gap:.5rem;color:var(--rose-soft);letter-spacing:.08em;font-size:.9rem}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;min-height:100svh;display:flex;align-items:center;
  margin-top:calc(-1 * var(--header-h));/* pull under sticky header */
  padding-top:5rem;overflow:hidden;color:#fff;
}
.hero__img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  object-position:center 60%;z-index:-2;animation:heroZoom 14s ease-out forwards;
}
@keyframes heroZoom{from{transform:scale(1.08)}to{transform:scale(1)}}
.hero__veil{
  position:absolute;inset:0;z-index:-1;
  background:
    linear-gradient(95deg,rgba(34,14,16,.80) 0%,rgba(34,14,16,.45) 40%,rgba(34,14,16,.05) 72%,transparent 100%),
    linear-gradient(180deg,rgba(34,14,16,.45) 0%,transparent 30%,rgba(34,14,16,.30) 70%,rgba(34,14,16,.72) 100%);
}
.hero__content{display:flex;flex-direction:column;align-items:flex-start;max-width:40rem;margin-inline:0;padding-bottom:3rem}
.hero__title{
  font-family:var(--ff-display);font-weight:300;font-optical-sizing:auto;
  font-size:clamp(3.6rem,12vw,8.5rem);line-height:.92;letter-spacing:-.02em;
  text-shadow:0 2px 40px rgba(0,0,0,.25);
}
.hero__script{
  font-family:var(--ff-display);font-style:italic;font-weight:300;
  font-size:clamp(1.3rem,3.4vw,2.1rem);color:var(--rose-soft);
  margin-top:.1rem;letter-spacing:.02em;
}
.hero__lede{
  font-size:clamp(1rem,1.6vw,1.18rem);font-weight:300;line-height:1.7;
  color:rgba(255,255,255,.92);max-width:34rem;margin-top:1.6rem;
}
.hero__cta{display:flex;flex-wrap:wrap;gap:1rem;margin-top:2.2rem}
.hero__tagline{
  margin-top:2.4rem;font-size:.72rem;letter-spacing:.34em;text-transform:uppercase;
  color:rgba(255,255,255,.65);
}
.hero__scroll{
  position:absolute;left:50%;bottom:1.7rem;transform:translateX(-50%);
  color:rgba(255,255,255,.8);display:grid;place-items:center;
  width:44px;height:44px;border-radius:50%;border:1px solid rgba(255,255,255,.35);
  animation:bob 2.4s ease-in-out infinite;transition:background .3s,color .3s;
}
.hero__scroll:hover{background:rgba(255,255,255,.12);color:#fff}
@keyframes bob{0%,100%{transform:translate(-50%,0)}50%{transform:translate(-50%,7px)}}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee{
  background:var(--wine);color:var(--cream);overflow:hidden;
  border-block:1px solid rgba(255,255,255,.1);
}
.marquee__track{
  display:flex;align-items:center;gap:2.5rem;width:max-content;
  padding-block:.85rem;animation:scroll-x 38s linear infinite;
}
.marquee__track span{
  font-family:var(--ff-display);font-style:italic;font-size:1.15rem;
  letter-spacing:.02em;white-space:nowrap;color:var(--cream);
}
.marquee__dot{color:var(--rose-soft);font-style:normal !important;font-size:.7rem !important}
@keyframes scroll-x{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.marquee:hover .marquee__track{animation-play-state:paused}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid{
  display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:clamp(2.5rem,6vw,6rem);align-items:center;
}
.about__media{position:relative}
.about__media img{
  width:100%;border-radius:var(--radius-lg);box-shadow:var(--shadow);
  aspect-ratio:4/4.6;object-fit:cover;
}
.about__media::before{
  content:"";position:absolute;inset:-14px -14px 14px 14px;z-index:-1;
  border:1px solid var(--gold);border-radius:var(--radius-lg);opacity:.55;
}
.about__badge{
  position:absolute;right:-22px;bottom:-22px;width:clamp(96px,14vw,134px);
  filter:drop-shadow(0 14px 26px rgba(74,30,28,.28));
}
.about__badge img{border-radius:50%;width:100%}
.about__text{color:var(--ink-soft);margin-top:1.4rem;max-width:46ch;font-weight:300;font-size:1.04rem}
.about__body .section__title{margin-top:.3rem}

.features{display:flex;flex-wrap:wrap;gap:2rem 2.6rem;margin-top:2.6rem}
.feature{display:flex;flex-direction:column;gap:.2rem;position:relative;padding-top:1.1rem;min-width:8rem}
.feature__line{position:absolute;top:0;left:0;width:34px;height:2px;background:var(--rose)}
.feature__title{font-family:var(--ff-display);font-size:1.18rem;font-weight:500;color:var(--ink)}
.feature__desc{font-size:.85rem;color:var(--ink-faint);letter-spacing:.01em}

/* ============================================================
   SPECIALTIES
   ============================================================ */
.tastes__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem}
.taste-card{
  background:var(--paper);border-radius:var(--radius-lg);overflow:hidden;
  box-shadow:var(--shadow-sm);border:1px solid var(--line-soft);
  transition:transform .5s var(--ease),box-shadow .5s var(--ease);
  display:flex;flex-direction:column;
}
.taste-card:hover{transform:translateY(-8px);box-shadow:var(--shadow)}
.taste-card__media{overflow:hidden;aspect-ratio:4/3.4}
.taste-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .8s var(--ease)}
.taste-card:hover .taste-card__media img{transform:scale(1.07)}
.taste-card__body{padding:1.5rem 1.45rem 1.7rem;position:relative;flex:1}
.taste-card__body--center{text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.2rem}
.taste-card__no{
  font-family:var(--ff-display);font-style:italic;font-size:.9rem;color:var(--gold);
  display:block;margin-bottom:.35rem;
}
.taste-card__no--light{color:var(--rose-soft)}
.taste-card__title{font-family:var(--ff-display);font-weight:500;font-size:1.34rem;line-height:1.15;color:var(--ink)}
.taste-card__desc{margin-top:.55rem;font-size:.9rem;color:var(--ink-soft);font-weight:300;line-height:1.6}
.taste-card--accent{background:var(--wine);border-color:var(--wine-deep);color:var(--cream)}
.taste-card--accent .taste-card__title{color:#fff}
.taste-card--accent .taste-card__desc{color:var(--rose-soft)}
.taste-card__icon{
  display:grid;place-items:center;width:64px;height:64px;border-radius:50%;
  border:1px solid rgba(255,255,255,.28);color:var(--rose-soft);margin-bottom:.6rem;
}

/* ============================================================
   MENU
   ============================================================ */
.menu__note{color:var(--ink-soft);font-weight:300;margin-top:.8rem;font-size:1rem}
.menu__grid{
  display:grid;grid-template-columns:1fr 1fr;gap:clamp(2.2rem,5vw,4.5rem) clamp(2.5rem,6vw,6rem);
  max-width:1080px;margin-inline:auto;
}
.menu-col__title{
  font-family:var(--ff-display);font-style:italic;font-weight:500;font-size:1.6rem;color:var(--wine);
  padding-bottom:.8rem;margin-bottom:1.3rem;border-bottom:1px solid var(--line);
  display:flex;align-items:center;gap:.7rem;
}
.menu-col__title::after{content:"✿";font-style:normal;font-size:.7rem;color:var(--rose);margin-left:auto}
.menu-list{display:flex;flex-direction:column;gap:1.15rem}
.menu-item__head{display:flex;align-items:baseline;gap:.5rem}
.menu-item__name{font-weight:500;font-size:1.02rem;color:var(--ink);letter-spacing:.01em}
.menu-item__dots{flex:1;border-bottom:1px dotted var(--line);transform:translateY(-3px);min-width:1.5rem}
.menu-item__price{font-family:var(--ff-display);font-size:1.02rem;color:var(--wine);font-weight:500;white-space:nowrap}
.menu-item__desc{display:block;font-size:.85rem;color:var(--ink-faint);font-weight:300;margin-top:.18rem;max-width:90%}
.menu__foot{text-align:center;margin-top:clamp(2rem,4vw,3rem);font-size:.8rem;color:var(--ink-faint);letter-spacing:.04em}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__grid{
  display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:200px;gap:1rem;
}
.gallery__item{
  position:relative;overflow:hidden;border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);background:var(--cream-3);
}
.gallery__item--tall{grid-row:span 2}
.gallery__item img{width:100%;height:100%;object-fit:cover;transition:transform .8s var(--ease)}
.gallery__item::after{
  content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 45%,rgba(40,16,18,.42));
  opacity:0;transition:opacity .4s;
}
.gallery__item:hover img{transform:scale(1.08)}
.gallery__item:hover::after{opacity:1}
.gallery__cta{text-align:center;margin-top:2.4rem}

/* ============================================================
   VISIT / CONTACT
   ============================================================ */
.visit__grid{display:grid;grid-template-columns:1fr 1.05fr;gap:clamp(2.5rem,6vw,5rem);align-items:center}
.visit__lede{color:var(--ink-soft);font-weight:300;margin-top:1rem;font-size:1.05rem;max-width:38ch}
.contact-list{margin-top:2.2rem;display:flex;flex-direction:column;gap:1.5rem}
.contact-row{display:flex;gap:1.1rem;align-items:flex-start}
.contact-row__ico{
  flex:none;display:grid;place-items:center;width:44px;height:44px;border-radius:50%;
  background:var(--cream-3);color:var(--wine);
}
.section--alt .contact-row__ico{background:var(--cream)}
.contact-row strong{display:block;font-family:var(--ff-body);font-weight:500;font-size:.74rem;
  letter-spacing:.16em;text-transform:uppercase;color:var(--ink-faint);margin-bottom:.15rem}
.contact-row span > a:hover{color:var(--wine)}
.contact-row a{transition:color .3s}
.visit__cta{display:flex;flex-wrap:wrap;gap:1rem;margin-top:2.4rem}
.visit__map{
  position:relative;border-radius:var(--radius-lg);overflow:hidden;
  box-shadow:var(--shadow);border:1px solid var(--line);
}
.visit__map iframe{width:100%;height:clamp(320px,46vh,470px);display:block;filter:sepia(.12) saturate(1.05)}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{background:var(--ink);color:var(--cream-2)}
.footer__inner{
  display:grid;grid-template-columns:1fr 1fr 1fr;gap:2.5rem;align-items:center;
  padding-block:clamp(3rem,6vw,4.5rem);
}
.footer__brand{display:flex;flex-direction:column;gap:1rem}
.footer__logo{border-radius:50%}
.footer__tagline{font-family:var(--ff-display);font-style:italic;font-size:1.05rem;color:var(--rose-soft)}
.footer__nav{display:flex;flex-direction:column;gap:.7rem;align-items:center}
.footer__nav a{font-size:.82rem;letter-spacing:.12em;text-transform:uppercase;color:var(--cream-2);opacity:.78;transition:opacity .3s,color .3s}
.footer__nav a:hover{opacity:1;color:var(--rose-soft)}
.footer__contact{text-align:right;font-size:.92rem;line-height:1.7;color:var(--cream-2);opacity:.82}
.footer__social{display:inline-flex;align-items:center;gap:.5rem;margin-top:.8rem;color:var(--rose-soft);letter-spacing:.04em}
.footer__bar{
  border-top:1px solid rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:space-between;gap:.5rem 1.5rem;flex-wrap:wrap;
  padding-block:1.4rem;font-size:.78rem;letter-spacing:.06em;color:var(--ink-faint);
}
.footer__credit{opacity:.9}
.footer__credit a{color:var(--rose-soft);transition:color .3s}
.footer__credit a:hover{color:var(--rose)}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.to-top{
  position:fixed;right:1.5rem;bottom:1.5rem;z-index:40;
  width:46px;height:46px;border-radius:50%;background:var(--wine);color:var(--cream);
  display:grid;place-items:center;box-shadow:var(--shadow);
  opacity:0;visibility:hidden;transform:translateY(12px) scale(.9);
  transition:opacity .4s var(--ease),transform .4s var(--ease),visibility .4s,background .3s;
}
.to-top.is-visible{opacity:1;visibility:visible;transform:none}
.to-top:hover{background:var(--wine-deep);transform:translateY(-3px)}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox{
  position:fixed;inset:0;z-index:80;background:rgba(28,12,14,.94);
  display:flex;align-items:center;justify-content:center;padding:clamp(1rem,5vw,4rem);
  opacity:0;visibility:hidden;transition:opacity .35s var(--ease),visibility .35s;
}
.lightbox.is-open{opacity:1;visibility:visible}
.lightbox__img{
  max-width:90vw;max-height:86vh;border-radius:6px;box-shadow:var(--shadow-lg);
  transform:scale(.96);transition:transform .4s var(--ease);
}
.lightbox.is-open .lightbox__img{transform:scale(1)}
.lightbox__close,.lightbox__nav{
  position:absolute;color:rgba(255,255,255,.8);display:grid;place-items:center;
  width:50px;height:50px;border-radius:50%;transition:background .3s,color .3s;
}
.lightbox__close:hover,.lightbox__nav:hover{background:rgba(255,255,255,.14);color:#fff}
.lightbox__close{top:1.2rem;right:1.2rem}
.lightbox__nav{top:50%;transform:translateY(-50%)}
.lightbox__nav--prev{left:1rem}
.lightbox__nav--next{right:1rem}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal{opacity:0;transform:translateY(26px);transition:opacity .9s var(--ease),transform .9s var(--ease)}
.reveal.in-view{opacity:1;transform:none}
.hero .reveal{transition-duration:1s}
.hero .reveal.in-view{transition-delay:calc(var(--d,0) * .12s)}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:980px){
  .nav{display:none}
  .header__cta{display:none}
  .hamburger{display:grid;place-items:center}
  .about__grid{grid-template-columns:1fr;gap:3.5rem}
  .about__media{max-width:30rem;margin-inline:auto}
  .tastes__grid{grid-template-columns:repeat(2,1fr)}
  .visit__grid{grid-template-columns:1fr;gap:2.5rem}
  .gallery__grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:180px}
  .footer__inner{grid-template-columns:1fr;text-align:center;gap:2rem;justify-items:center}
  .footer__nav{align-items:center}
  .footer__contact{text-align:center}
}
@media (max-width:620px){
  .menu__grid{grid-template-columns:1fr;gap:2.5rem}
  .tastes__grid{grid-template-columns:1fr}
  .gallery__grid{grid-template-columns:1fr 1fr;grid-auto-rows:150px}
  .lang{order:-1}
  .announce{font-size:.74rem;padding-left:.5rem}
  .hero__cta{width:100%}
  .hero__cta .btn{flex:1}
  .about__badge{right:0;bottom:-18px}
  .feature{min-width:7rem}
  .footer__bar{flex-direction:column;text-align:center;gap:.55rem}
}
@media (max-width:380px){
  .gallery__grid{grid-template-columns:1fr}
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important;scroll-behavior:auto !important}
  .reveal{opacity:1 !important;transform:none !important}
  .hero__img{animation:none}
  /* Markanın hafif kayan şeridi bu modda da yavaşça akmaya devam etsin */
  .marquee__track{animation-duration:38s !important;animation-iteration-count:infinite !important}
}
