/* ============================================================
   Παγωτά Μπακιρτζή — Phase 1 mockup
   Organised for an easy port to a WP custom theme (Phase 2):
   1. Tokens  2. Reset  3. Utilities  4. Components  5. Sections
   ============================================================ */

/* ------------------------------------------------------------
   1. TOKENS
   ------------------------------------------------------------ */
:root{
  /* Brand — pink sampled from the logo */
  --pink:            #D91C53;
  --pink-dark:       #B01441;
  --pink-soft:       #F6A8B8;
  --pink-tint:       #FDEEF3;

  /* Secondary accent */
  --teal:            #1F8A88;   /* text-safe */
  --teal-soft:       #5BC0BE;   /* decorative */
  --teal-tint:       #E6F4F4;

  /* Neutrals */
  --ink:             #3A3129;
  --ink-soft:        #6E6157;
  --ink-faint:       #9C9088;
  --cream:           #FFFBF8;
  --cream-2:         #FDF4EE;
  --white:           #FFFFFF;
  --line:            rgba(58,49,41,.12);

  /* Type */
  --font-display: "Comfortaa", "Trebuchet MS", system-ui, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);

  /* Shape */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* Depth */
  --sh-sm: 0 2px 8px rgba(58,49,41,.06);
  --sh-md: 0 12px 32px rgba(58,49,41,.09);
  --sh-lg: 0 24px 60px rgba(58,49,41,.14);
  --sh-pink: 0 12px 30px rgba(217,28,83,.24);

  /* Motion */
  --ease: cubic-bezier(.22,.75,.3,1);
  --header-h: 76px;
}

/* ------------------------------------------------------------
   2. RESET / BASE
   ------------------------------------------------------------ */
*,*::before,*::after{ box-sizing:border-box; }

html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--white);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:clamp(1rem, .97rem + .18vw, 1.075rem);
  line-height:1.7;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; height:auto; display:block; }
button{ font:inherit; color:inherit; }
a{ color:var(--pink); text-decoration:none; }
a:hover{ color:var(--pink-dark); }

h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:700;
  line-height:1.15;
  margin:0 0 .5em;
  letter-spacing:-.01em;
}
p{ margin:0 0 1.1em; }
p:last-child{ margin-bottom:0; }
ul,ol{ margin:0; padding:0; list-style:none; }

:focus-visible{
  outline:3px solid var(--teal);
  outline-offset:3px;
  border-radius:6px;
}

/* section anchor offset under the sticky header */
section[id]{ scroll-margin-top:calc(var(--header-h) + 12px); }

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--pink); color:#fff; padding:.75rem 1.25rem;
  border-radius:0 0 var(--r-sm) 0; font-weight:600;
}
.skip-link:focus{ left:0; color:#fff; }

/* ------------------------------------------------------------
   3. UTILITIES
   ------------------------------------------------------------ */
.container{
  width:100%;
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:var(--gutter);
}

.tx-pink{ color:var(--pink); }

.icon{
  width:1.15em; height:1.15em; flex:none;
  fill:none; stroke:currentColor; stroke-width:2;
  stroke-linecap:round; stroke-linejoin:round;
}

/* scroll reveal */
.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible{ opacity:1; transform:none; }

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

/* organic wave dividers */
.wave{ position:absolute; left:0; width:100%; line-height:0; pointer-events:none; }
.wave svg{ width:100%; height:clamp(40px, 6vw, 90px); display:block; }
.wave svg path{ fill:var(--wave-fill, var(--white)); }
.wave--bottom{ bottom:-1px; }
.wave--top{ top:-1px; }
.wave--cream{ --wave-fill:var(--cream); }
.wave--white{ --wave-fill:var(--white); }

/* ------------------------------------------------------------
   4. COMPONENTS
   ------------------------------------------------------------ */

/* --- Buttons --- */
.btn{
  --btn-bg:var(--pink);
  --btn-fg:#fff;
  display:inline-flex; align-items:center; justify-content:center; gap:.55em;
  padding:.8em 1.6em;
  border:2px solid transparent;
  border-radius:var(--r-pill);
  background:var(--btn-bg); color:var(--btn-fg);
  font-family:var(--font-display);
  font-weight:700; font-size:.95rem; line-height:1.2;
  cursor:pointer;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.btn:hover{ transform:translateY(-2px); color:var(--btn-fg); }
.btn:active{ transform:translateY(0); }

.btn--primary{ box-shadow:var(--sh-pink); }
.btn--primary:hover{ --btn-bg:var(--pink-dark); box-shadow:0 16px 34px rgba(217,28,83,.3); }

.btn--ghost{
  --btn-bg:transparent; --btn-fg:var(--ink);
  border-color:var(--line);
}
.btn--ghost:hover{ --btn-fg:var(--pink); border-color:var(--pink); }

.btn--lg{ padding:1em 2em; font-size:1.02rem; }
.btn--sm{ padding:.6em 1.15em; font-size:.86rem; }
.btn--block{ width:100%; }

/* --- Eyebrow --- */
.eyebrow{
  display:inline-flex; align-items:center; gap:.6em;
  margin:0 0 1rem;
  font-family:var(--font-display);
  font-size:.82rem; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--pink);
}
.eyebrow__dot{
  width:8px; height:8px; border-radius:50%;
  background:var(--teal-soft);
  box-shadow:0 0 0 4px var(--teal-tint);
}
.eyebrow--center{ margin-inline:auto; }
.eyebrow--light{ color:var(--pink-soft); }
.eyebrow--light .eyebrow__dot{ box-shadow:0 0 0 4px rgba(91,192,190,.18); }

/* --- Section head --- */
.section{ position:relative; padding-block:var(--section-y); }
.section--cream{ background:var(--cream); }
.section--dark{
  background:linear-gradient(160deg,#453A31 0%, #322A24 100%);
  color:var(--cream);
  overflow:hidden;
  padding-block:calc(var(--section-y) + clamp(1rem, 4vw, 3rem));
}

.section__head{ max-width:44rem; margin:0 auto clamp(2.5rem,5vw,4rem); text-align:center; }
.section__title{
  font-size:clamp(2rem, 1.4rem + 2.6vw, 3.3rem);
  margin-bottom:.35em;
}
.section__title--light{ color:var(--white); }
.section__sub{
  color:var(--ink-soft);
  font-size:1.05rem;
  margin:0;
}
.section--dark .section__sub{ color:rgba(255,251,248,.72); }

.lead{
  font-size:1.15rem;
  color:var(--ink);
}
.section--dark .lead{ color:var(--pink-soft); font-family:var(--font-display); font-weight:600; }

/* ------------------------------------------------------------
   HEADER
   ------------------------------------------------------------ */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;
  transition:box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-stuck{
  box-shadow:0 6px 24px rgba(58,49,41,.08);
  border-bottom-color:var(--line);
  background:rgba(255,255,255,.94);
}

.header__inner{
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  min-height:var(--header-h);
}

.brand{ display:flex; align-items:center; gap:.65rem; color:var(--ink); }
.brand__logo{ width:44px; height:44px; object-fit:contain; }
.brand__text{ display:flex; flex-direction:column; line-height:1.1; }
.brand__text strong{
  font-family:var(--font-display); font-weight:700;
  font-size:1.16rem; color:var(--pink); letter-spacing:-.01em;
}
.brand__text em{
  font-style:normal; font-size:.68rem; letter-spacing:.1em;
  text-transform:uppercase; color:var(--ink-faint);
}

.nav{ display:flex; align-items:center; gap:clamp(.75rem,2vw,2rem); }
.nav__list{ display:flex; align-items:center; gap:clamp(.5rem,1.6vw,1.6rem); }
.nav__link{
  position:relative;
  display:block; padding:.4rem .1rem;
  color:var(--ink); font-weight:500; font-size:.95rem;
  transition:color .2s var(--ease);
}
.nav__link::after{
  content:""; position:absolute; left:0; right:0; bottom:0;
  height:2px; border-radius:2px; background:var(--pink);
  transform:scaleX(0); transform-origin:left;
  transition:transform .3s var(--ease);
}
.nav__link:hover,
.nav__link.is-active{ color:var(--pink); }
.nav__link:hover::after,
.nav__link.is-active::after{ transform:scaleX(1); }

.nav__cta .icon{ width:1em; height:1em; }

/* burger */
.nav-toggle{
  display:none;
  width:46px; height:46px;
  padding:0; border:1px solid var(--line); border-radius:var(--r-sm);
  background:var(--white); cursor:pointer;
  flex-direction:column; align-items:center; justify-content:center; gap:5px;
}
.nav-toggle__bar{
  display:block; width:20px; height:2px; border-radius:2px; background:var(--ink);
  transition:transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:960px){
  .nav-toggle{ display:flex; }
  .nav{
    position:fixed; inset:var(--header-h) 0 auto 0;
    flex-direction:column; align-items:stretch; gap:0;
    padding:1.25rem var(--gutter) 2rem;
    background:var(--white);
    border-bottom:1px solid var(--line);
    box-shadow:var(--sh-md);
    transform:translateY(-120%);
    transition:transform .4s var(--ease);
    max-height:calc(100dvh - var(--header-h));
    overflow-y:auto;
  }
  .nav.is-open{ transform:translateY(0); }
  .nav__list{ flex-direction:column; align-items:stretch; gap:0; }
  .nav__link{
    padding:.95rem .25rem;
    border-bottom:1px solid var(--line);
    font-size:1.05rem; font-family:var(--font-display); font-weight:600;
  }
  .nav__link::after{ display:none; }
  .nav__cta{ margin-top:1.25rem; }
}

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero{
  position:relative;
  padding-block:clamp(3rem,7vw,6rem) clamp(6rem,11vw,10rem);
  background:
    radial-gradient(90% 70% at 88% 8%, var(--pink-tint) 0%, transparent 60%),
    radial-gradient(70% 60% at 4% 92%, var(--teal-tint) 0%, transparent 62%),
    var(--white);
  overflow:hidden;
}

.hero__blob{
  position:absolute; border-radius:48% 52% 60% 40% / 55% 45% 55% 45%;
  filter:blur(2px); opacity:.5; pointer-events:none;
  animation:blobFloat 16s ease-in-out infinite;
}
.hero__blob--1{
  width:min(38vw,380px); aspect-ratio:1;
  background:var(--pink-soft); top:-8%; right:-6%;
}
.hero__blob--2{
  width:min(30vw,300px); aspect-ratio:1;
  background:var(--teal-soft); bottom:6%; left:-8%;
  animation-delay:-6s; animation-duration:20s;
}
@keyframes blobFloat{
  0%,100%{ transform:translate3d(0,0,0) rotate(0deg); }
  50%    { transform:translate3d(0,-24px,0) rotate(12deg); }
}

.hero__inner{
  position:relative; z-index:2;
  display:grid; grid-template-columns:1.12fr .88fr;
  gap:clamp(2rem,5vw,4.5rem); align-items:center;
}

.hero__title{
  font-size:clamp(2.2rem, 1.3rem + 3.1vw, 3.5rem);
  line-height:1.12;
  margin-bottom:.45em;
  text-wrap:balance;
}
.tx-year{
  position:relative; white-space:nowrap;
}
.tx-year::after{
  content:""; position:absolute; left:-.06em; right:-.06em; bottom:.06em; height:.3em;
  background:var(--teal-soft); opacity:.32; border-radius:var(--r-pill); z-index:-1;
}

.hero__lead{
  max-width:34rem;
  font-size:clamp(1.05rem,1rem + .4vw,1.22rem);
  color:var(--ink-soft);
}

.hero__actions{ display:flex; flex-wrap:wrap; gap:.8rem; margin-top:2rem; }

.hero__stats{
  display:flex; flex-wrap:wrap; gap:clamp(1.25rem,4vw,2.75rem);
  margin-top:2.75rem; padding-top:2rem;
  border-top:1px solid var(--line);
}
.hero__stats li{ display:flex; flex-direction:column; }
.hero__stats strong{
  font-family:var(--font-display); font-weight:700;
  font-size:clamp(1.9rem,1.4rem + 1.6vw,2.6rem);
  color:var(--pink); line-height:1;
}
.hero__stats .plus{ font-size:.55em; vertical-align:super; }
.hero__stats span{ font-size:.86rem; color:var(--ink-faint); margin-top:.35rem; }

/* hero media */
.hero__media{ position:relative; }
.hero__photo{
  border-radius:52% 48% 46% 54% / 44% 42% 58% 56%;
  overflow:hidden;
  box-shadow:var(--sh-lg);
  aspect-ratio:4/5;
  transition:border-radius 1.2s var(--ease);
}
.hero__photo:hover{ border-radius:var(--r-xl); }
.hero__photo img{ width:100%; height:100%; object-fit:cover; }

.hero__badge{
  position:absolute; left:-6%; bottom:4%;
  width:clamp(96px,13vw,132px); aspect-ratio:1;
  display:grid; place-items:center;
  background:var(--white); border-radius:50%;
  box-shadow:var(--sh-md);
}
.hero__badge-ring{
  position:absolute; inset:0; width:100%; height:100%;
  animation:spin 24s linear infinite;
}
.hero__badge-ring text{
  font-family:var(--font-display); font-size:9.4px; font-weight:700;
  fill:var(--ink-soft); letter-spacing:.06em;
}
.hero__badge-core{
  display:grid; place-items:center;
  width:46%; aspect-ratio:1; border-radius:50%;
  background:var(--pink-tint);
}
.hero__badge-core svg{ width:56%; fill:var(--pink); }
@keyframes spin{ to{ transform:rotate(360deg); } }

.scroll-hint{
  position:absolute; left:50%; bottom:clamp(3.5rem,7vw,5.5rem); z-index:3;
  transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:.35rem;
  font-family:var(--font-display); font-size:.7rem; font-weight:700;
  letter-spacing:.22em; text-transform:uppercase;
  color:var(--ink-faint);
}
.scroll-hint svg{
  width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:1.8;
  stroke-linecap:round; stroke-linejoin:round;
  animation:bob 2.2s var(--ease) infinite;
}
@keyframes bob{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(6px); } }

@media (max-width:880px){
  .hero__inner{ grid-template-columns:1fr; }
  .hero__media{ order:-1; max-width:420px; margin-inline:auto; width:100%; }
  .hero__content{ text-align:center; }
  .hero__lead{ margin-inline:auto; }
  .hero__actions{ justify-content:center; }
  .hero__stats{ justify-content:center; text-align:center; }
  .hero__stats li{ align-items:center; }
  .hero__badge{ left:auto; right:-4%; bottom:-4%; }
  .scroll-hint{ display:none; }
}

@media (max-width:560px){
  /* keep the headline above the fold on phones */
  .hero__media{ max-width:250px; }
  .hero__photo{ aspect-ratio:1; }
  .hero__badge{ width:74px; right:-10%; bottom:-6%; }
  .hero__badge-ring text{ font-size:8.6px; }
  .eyebrow{ font-size:.72rem; letter-spacing:.1em; }
  .hero__stats{ gap:1.25rem 1.75rem; }
}

/* ------------------------------------------------------------
   STORY
   ------------------------------------------------------------ */
.story{
  display:grid; grid-template-columns:.85fr 1.15fr;
  gap:clamp(2rem,5vw,4.5rem); align-items:start;
}

.story__frame{
  position:relative;
  padding:14px 14px 56px;
  background:var(--white);
  border-radius:var(--r-sm);
  box-shadow:var(--sh-md);
  transform:rotate(-2.2deg);
  transition:transform .5s var(--ease);
}
.story__frame:hover{ transform:rotate(0deg) scale(1.015); }
.story__frame img{ border-radius:4px; filter:sepia(.18) contrast(1.04); }
.story__tape{
  position:absolute; top:-10px; width:70px; height:24px;
  background:rgba(246,168,184,.55);
  border-radius:2px;
  box-shadow:0 1px 4px rgba(58,49,41,.08);
}
.story__tape--l{ left:12%; transform:rotate(-6deg); }
.story__tape--r{ right:12%; transform:rotate(5deg); }

.story__caption{
  margin-top:1.5rem; text-align:center;
  font-family:var(--font-display); font-size:.92rem; color:var(--ink-faint);
}

.story__text p{ color:var(--ink-soft); }
.story__text .lead{ color:var(--ink); }

.signature{
  display:flex; flex-direction:column;
  margin-top:2rem; padding-top:1.5rem;
  border-top:1px solid var(--line);
}
.signature span{
  font-family:var(--font-display); font-weight:700;
  font-size:1.2rem; color:var(--pink);
}
.signature em{ font-style:normal; font-size:.85rem; color:var(--ink-faint); }

/* timeline */
.timeline{
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:clamp(1.25rem,3vw,2rem);
  margin-top:clamp(3.5rem,7vw,5.5rem);
  position:relative;
}
.timeline::before{
  content:""; position:absolute; left:0; right:0; top:9px; height:2px;
  background:linear-gradient(90deg, var(--pink-soft), var(--teal-soft));
  opacity:.45; border-radius:2px;
}
.timeline__item{ position:relative; padding-top:2.75rem; }
.timeline__dot{
  position:absolute; top:0; left:0;
  width:20px; height:20px; border-radius:50%;
  background:var(--white); border:4px solid var(--pink-soft);
}
.timeline__item--now .timeline__dot{ border-color:var(--pink); background:var(--pink-tint); }
.timeline__year{
  display:block;
  font-family:var(--font-display); font-weight:700; font-size:.82rem;
  letter-spacing:.1em; text-transform:uppercase; color:var(--teal);
  margin-bottom:.35rem;
}
.timeline__title{ font-size:1.16rem; margin-bottom:.35rem; }
.timeline__item p{ font-size:.94rem; color:var(--ink-soft); }

@media (max-width:880px){
  .story{ grid-template-columns:1fr; }
  .story__media{ max-width:380px; margin-inline:auto; }
  .timeline{ grid-template-columns:1fr; gap:0; padding-left:2rem; }
  .timeline::before{ left:9px; right:auto; top:0; bottom:0; width:2px; height:auto;
    background:linear-gradient(180deg,var(--pink-soft),var(--teal-soft)); }
  .timeline__item{ padding:0 0 2rem 0; }
  .timeline__dot{ left:-2rem; top:2px; }
}

/* ------------------------------------------------------------
   CART
   ------------------------------------------------------------ */
.cart{
  display:grid; grid-template-columns:1fr 1.05fr;
  gap:clamp(2rem,5vw,4.5rem); align-items:center;
}
.cart__text p{ color:rgba(255,251,248,.78); }
.cart__text strong{ color:var(--white); }

/* το παγωτό «τυλιγμένο σε αλουμινόχαρτο» — φωτό δεμένη με το κείμενό της */
.cart__memory{
  display:flex; align-items:center; gap:1.5rem;
  margin:2rem 0;
  padding:1.1rem 1.5rem 1.1rem 1.1rem;
  background:rgba(255,251,248,.06);
  border:1px solid rgba(255,251,248,.12);
  border-left:3px solid var(--pink);
  border-radius:var(--r-lg);
}
.cart__memory img{
  flex:none;
  width:clamp(150px,40%,215px); aspect-ratio:1;
  /* η πηγή έχει burnt-in λεζάντα στο κάτω μέρος — κόβεται έξω από το κάδρο */
  object-fit:cover; object-position:50% 15%;
  border-radius:var(--r-md);
}
.cart__memory figcaption{
  font-size:1rem; line-height:1.65;
  color:rgba(255,251,248,.82);
}
.cart__memory strong{ color:var(--pink-soft); }

.cart__list{ display:grid; gap:.7rem; margin:1.75rem 0 0; }
.cart__list li{ display:flex; align-items:center; gap:.7rem; font-size:.98rem; color:rgba(255,251,248,.9); }
.cart__list .icon{ color:var(--teal-soft); width:1.25em; height:1.25em; }

.cart__media{ position:relative; }
.cart__photo{ margin:0; overflow:hidden; }
.cart__photo--main{
  border-radius:var(--r-xl);
  box-shadow:var(--sh-lg);
  aspect-ratio:4/5;
}
.cart__photo--main img{ width:100%; height:100%; object-fit:cover; }
.cart__photo--side{
  position:absolute; right:-4%; bottom:-9%;
  width:clamp(150px,30%,230px);
  border-radius:var(--r-md);
  border:6px solid #423931;
  box-shadow:var(--sh-lg);
  background:#423931;
}
.cart__photo--side img{ border-radius:calc(var(--r-md) - 8px); filter:grayscale(.15); }
.cart__photo--side figcaption{
  padding:.55rem .2rem .1rem;
  font-size:.72rem; text-align:center; color:rgba(255,251,248,.6);
}

@media (max-width:880px){
  .cart{ grid-template-columns:1fr; }
  .cart__media{ order:-1; max-width:430px; margin:0 auto 3rem; width:100%; }
  .cart__photo--side{ right:-2%; bottom:-12%; }
}
@media (max-width:560px){
  .cart__memory{ gap:1rem; padding:.8rem 1.1rem .8rem .8rem; }
  .cart__memory img{ width:clamp(112px,36%,150px); }
  .cart__memory figcaption{ font-size:.92rem; }
  .cart__media{ margin-bottom:1.5rem; }
  .cart__photo--side{
    position:relative; right:auto; bottom:auto;
    width:min(66%,240px); margin:-3rem 0 0 auto;
  }
}

/* ------------------------------------------------------------
   FLAVOURS
   ------------------------------------------------------------ */
.featured{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:clamp(1rem,2.4vw,1.75rem);
  margin-bottom:clamp(2.5rem,6vw,4.5rem);
}
.featured__card{
  position:relative; margin:0; overflow:hidden;
  border-radius:var(--r-lg);
  box-shadow:var(--sh-md);
  aspect-ratio:3/4;
  isolation:isolate;
}
.featured__card img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .7s var(--ease);
}
/* these two source photos carry burnt-in captions at the bottom —
   shift the crop up so our own caption is the only text on the card */
.featured__card--croptop img{ object-position:50% 26%; }
.featured__card:hover img{ transform:scale(1.05); }
.featured__card::after{
  content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(to top, rgba(45,37,31,.86) 0%, rgba(45,37,31,.28) 42%, transparent 68%);
}
.featured__card figcaption{
  position:absolute; z-index:2; left:0; right:0; bottom:0;
  padding:clamp(1rem,2.2vw,1.6rem);
  color:var(--white);
}
.featured__card h3{ font-size:1.18rem; margin-bottom:.2em; color:var(--white); }
.featured__card p{ margin:0; font-size:.9rem; color:rgba(255,255,255,.82); }

/* 6 στήλες: οι απλές κάρτες πιάνουν 2 (3 ανά σειρά), οι signature 3 (2 ανά σειρά) */
.flavours{
  display:grid; grid-template-columns:repeat(6,1fr);
  gap:clamp(.9rem,2vw,1.5rem);
}
.flavour{
  grid-column:span 2;
  display:flex; flex-direction:column; align-items:center; text-align:center;
  padding:clamp(1.4rem,3vw,2rem) 1rem;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.flavour:hover{
  transform:translateY(-6px);
  box-shadow:var(--sh-md);
  border-color:transparent;
}
.flavour__scoop{
  width:66px; height:66px; margin-bottom:1rem;
  border-radius:56% 44% 48% 52% / 52% 56% 44% 48%;
  background:linear-gradient(150deg, var(--f1), var(--f2));
  box-shadow:inset 0 -6px 14px rgba(58,49,41,.1), 0 6px 14px rgba(58,49,41,.08);
  transition:border-radius .6s var(--ease), transform .35s var(--ease);
}
.flavour:hover .flavour__scoop{ border-radius:50%; transform:rotate(-8deg) scale(1.05); }
.flavour h3{ font-size:1.05rem; margin-bottom:.15em; }
.flavour p{ margin:0; font-size:.82rem; color:var(--ink-faint); }

/* --- signature γεύσεις: διπλό πλάτος, οριζόντιο layout --- */
.flavour--signature{
  grid-column:span 3;
  flex-direction:row; align-items:center; text-align:left;
  gap:1.35rem;
  padding:clamp(1.35rem,2.6vw,1.85rem);
  border-color:transparent;
  background:linear-gradient(135deg, var(--pink-tint) 0%, var(--white) 62%);
  box-shadow:var(--sh-sm);
}
.flavour--signature .flavour__scoop{
  width:clamp(74px,9vw,96px); height:clamp(74px,9vw,96px);
  margin-bottom:0; flex:none;
}
.flavour--signature .flavour__body{ min-width:0; }
.flavour--signature h3{ font-size:clamp(1.15rem,1rem + .5vw,1.4rem); margin-bottom:.25em; }
.flavour--signature p{ font-size:.92rem; color:var(--ink-soft); line-height:1.6; }

.flavour__badge{
  display:inline-block; margin-bottom:.5rem;
  padding:.25em .8em;
  background:var(--pink); color:#fff;
  border-radius:var(--r-pill);
  font-family:var(--font-display); font-weight:700;
  font-size:.68rem; letter-spacing:.1em; text-transform:uppercase;
}

/* --- «Δείτε όλες τις γεύσεις» --- */
.flavours__more{ display:flex; justify-content:center; margin-top:clamp(1.75rem,3.5vw,2.5rem); }
.flavours__chevron{ transition:transform .35s var(--ease); }
[aria-expanded="true"] .flavours__chevron{ transform:rotate(180deg); }

.allflavours{
  margin-top:clamp(1.75rem,3.5vw,2.5rem);
  padding:clamp(1.5rem,3.5vw,2.5rem);
  background:var(--cream);
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  animation:flavoursIn .45s var(--ease);
}
.allflavours[hidden]{ display:none; }
@keyframes flavoursIn{
  from{ opacity:0; transform:translateY(-10px); }
  to{ opacity:1; transform:none; }
}

.allflavours__group + .allflavours__group{ margin-top:2rem; }
.allflavours__title{
  font-family:var(--font-body); font-weight:700;
  font-size:.8rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--ink-faint);
  margin-bottom:1rem;
}

.chips{ display:flex; flex-wrap:wrap; gap:.55rem; }
.chip{
  display:inline-block;
  padding:.5em 1.1em;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--r-pill);
  font-size:.92rem; color:var(--ink);
  transition:border-color .25s var(--ease), color .25s var(--ease);
}
.chip:hover{ border-color:var(--pink-soft); }
.chip--star{
  border-color:var(--pink); color:var(--pink); font-weight:600;
  background:var(--pink-tint);
}

.flavours__note{
  display:flex; align-items:center; justify-content:center; gap:.6rem;
  flex-wrap:wrap;
  margin-top:clamp(2rem,4vw,3rem);
  font-size:.92rem; color:var(--ink-faint); text-align:center;
}
.flavours__note .icon{ color:var(--teal); }

@media (max-width:900px){ .featured{ grid-template-columns:1fr 1fr; } .featured__card:last-child{ grid-column:span 2; aspect-ratio:16/9; } }
@media (max-width:820px){
  .flavours{ grid-template-columns:repeat(2,1fr); }
  .flavour{ grid-column:span 1; }
  .flavour--signature{ grid-column:span 2; }
}
@media (max-width:480px){
  .flavour--signature{ gap:1rem; }
  .flavour--signature .flavour__scoop{ width:64px; height:64px; }
  .chip{ font-size:.86rem; padding:.45em .95em; }
}
@media (max-width:520px){
  .featured{ grid-template-columns:1fr; }
  .featured__card:last-child{ grid-column:auto; aspect-ratio:3/4; }
}

/* ------------------------------------------------------------
   GALLERY
   ------------------------------------------------------------ */
/* CSS columns masonry: κάθε φωτό κρατάει τις αναλογίες της, χωρίς κρόπ */
.gallery{
  column-count:3;
  column-gap:clamp(.6rem,1.6vw,1.1rem);
}
.gallery__item{
  position:relative; display:block; width:100%;
  margin:0 0 clamp(.6rem,1.6vw,1.1rem);
  break-inside:avoid; -webkit-column-break-inside:avoid;
  overflow:hidden; padding:0; cursor:zoom-in;
  border:0; border-radius:var(--r-md);
  background:var(--cream-2);
  box-shadow:var(--sh-sm);
}
.gallery__item img{ width:100%; height:auto; transition:transform .7s var(--ease); }
.gallery__item::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(217,28,83,.35), transparent 55%);
  opacity:0; transition:opacity .35s var(--ease);
}
.gallery__item:hover img{ transform:scale(1.07); }
.gallery__item:hover::after{ opacity:1; }

@media (max-width:820px){ .gallery{ column-count:2; } }

/* lightbox */
.lightbox{
  position:fixed; inset:0; z-index:200;
  display:flex; align-items:center; justify-content:center;
  padding:clamp(1rem,4vw,3rem);
  background:rgba(35,29,25,.92);
  backdrop-filter:blur(6px);
  animation:fade .25s var(--ease);
}
.lightbox[hidden]{ display:none; }
@keyframes fade{ from{ opacity:0; } to{ opacity:1; } }

.lightbox__figure{ margin:0; max-width:min(900px,92vw); text-align:center; }
.lightbox__figure img{
  max-height:78vh; width:auto; margin-inline:auto;
  border-radius:var(--r-md); box-shadow:var(--sh-lg);
}
.lightbox__figure figcaption{
  margin-top:1rem; color:rgba(255,251,248,.82);
  font-family:var(--font-display); font-size:.95rem;
}
.lightbox__close,
.lightbox__nav{
  position:absolute; display:grid; place-items:center;
  width:48px; height:48px; padding:0; cursor:pointer;
  border:1px solid rgba(255,255,255,.25); border-radius:50%;
  background:rgba(255,255,255,.08); color:#fff;
  transition:background .25s var(--ease), transform .25s var(--ease);
}
.lightbox__close:hover,
.lightbox__nav:hover{ background:var(--pink); border-color:var(--pink); transform:scale(1.06); }
.lightbox__close{ top:clamp(1rem,3vw,2rem); right:clamp(1rem,3vw,2rem); }
.lightbox__nav--prev{ left:clamp(.5rem,3vw,2rem); top:50%; margin-top:-24px; }
.lightbox__nav--next{ right:clamp(.5rem,3vw,2rem); top:50%; margin-top:-24px; }
.lightbox svg{ width:22px; height:22px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }

/* ------------------------------------------------------------
   CONTACT
   ------------------------------------------------------------ */
.contact{
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(2rem,4.5vw,3.5rem); align-items:start;
}

.contact__list{ display:grid; gap:1.4rem; margin-bottom:2rem; }
.contact__list li{ display:flex; gap:1rem; align-items:flex-start; }
.contact__icon{
  display:grid; place-items:center; flex:none;
  width:46px; height:46px; border-radius:var(--r-md);
  background:var(--pink-tint); color:var(--pink);
}
.contact__icon svg{ width:22px; height:22px; fill:none; stroke:currentColor; stroke-width:1.9; stroke-linecap:round; stroke-linejoin:round; }
.contact__list h3{ font-size:.82rem; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-faint); margin-bottom:.25em; font-family:var(--font-body); font-weight:700; }
.contact__list p{ margin:0; font-size:1.05rem; }
.contact__list a{ color:var(--ink); }
.contact__list a:hover{ color:var(--pink); }

.contact__actions{ display:flex; flex-wrap:wrap; gap:.75rem; margin-bottom:2rem; }

.socials{ display:flex; gap:.6rem; }
.social{
  display:grid; place-items:center;
  width:44px; height:44px; border-radius:50%;
  border:1px solid var(--line); color:var(--ink);
  transition:background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.social svg{ width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:1.8; }
.social:hover{ background:var(--pink); border-color:var(--pink); color:#fff; transform:translateY(-3px); }
.socials--light .social{ border-color:rgba(255,255,255,.22); color:rgba(255,251,248,.85); }

/* map */
.map{
  overflow:hidden; border-radius:var(--r-lg);
  box-shadow:var(--sh-md); border:1px solid var(--line);
  aspect-ratio:4/3; background:var(--cream-2);
}
.map iframe{ width:100%; height:100%; border:0; display:block; }

.map__actions{ margin-top:1.25rem; }

@media (max-width:880px){
  .contact{ grid-template-columns:1fr; }
  .contact__map{ order:-1; }
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.site-footer{
  position:relative;
  padding-top:clamp(4rem,8vw,6.5rem);
  background:linear-gradient(160deg,#453A31 0%, #2E2721 100%);
  color:rgba(255,251,248,.72);
}
.footer__inner{
  display:grid; grid-template-columns:1.4fr 1fr 1.2fr;
  gap:clamp(2rem,5vw,3.5rem);
  padding-bottom:clamp(2.5rem,5vw,3.5rem);
}
.footer__brand img{
  width:110px; height:110px; object-fit:contain;
  margin-bottom:1rem;
  padding:12px; background:var(--white); border-radius:var(--r-md);
}
.footer__brand p{ font-size:.95rem; }

.site-footer h3{
  font-size:.82rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--pink-soft); font-family:var(--font-body); font-weight:700;
  margin-bottom:1rem;
}
.footer__nav ul,
.footer__contact ul{ display:grid; gap:.55rem; font-size:.95rem; }
.site-footer a{ color:rgba(255,251,248,.72); }
.site-footer a:hover{ color:var(--white); }
.footer__contact .socials{ margin-top:1.4rem; margin-bottom:0; }

.footer__bottom{
  padding-block:1.5rem;
  border-top:1px solid rgba(255,251,248,.12);
  text-align:center;
  font-size:.84rem;
}
.footer__bottom p{ margin:0; }

.footer__credit{
  padding-block:1.1rem;
  border-top:1px solid rgba(255,251,248,.12);
  text-align:center;
  font-size:.84rem;
}
.footer__credit p{ margin:0; }
.footer__credit a{
  color:var(--pink);
  font-weight:600;
  transition:color .25s var(--ease);
}
.footer__credit a:hover{ color:var(--pink-soft); }

@media (max-width:820px){
  .footer__inner{ grid-template-columns:1fr 1fr; }
  .footer__brand{ grid-column:span 2; }
}
@media (max-width:520px){
  .footer__inner{ grid-template-columns:1fr; }
  .footer__brand{ grid-column:auto; }
}

/* ------------------------------------------------------------
   COOKIE BANNER
   ------------------------------------------------------------ */
.cookie{
  position:fixed; z-index:150;
  left:clamp(.75rem,3vw,1.5rem); right:clamp(.75rem,3vw,1.5rem);
  bottom:clamp(.75rem,3vw,1.5rem);
  max-width:640px; margin-inline:auto;
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:1rem;
  padding:1.1rem 1.35rem;
  background:var(--white);
  border:1px solid var(--line); border-radius:var(--r-lg);
  box-shadow:var(--sh-lg);
  animation:cookieUp .5s var(--ease);
}
.cookie[hidden]{ display:none; }
@keyframes cookieUp{ from{ opacity:0; transform:translateY(20px); } to{ opacity:1; transform:none; } }
.cookie p{ margin:0; font-size:.88rem; color:var(--ink-soft); flex:1 1 260px; }
.cookie__actions{ display:flex; gap:.5rem; flex-wrap:wrap; }

@media print{
  .site-header,.scroll-hint,.cookie,.lightbox,.nav-toggle{ display:none !important; }
}
