/* ============================================================
   Sellinis – Brand: berry/magenta · grey · black · warm cream
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Mulish:wght@300;400;500;600;700&display=swap');

:root{
  --berry:#9e1b5b;
  --berry-dark:#78123f;
  --berry-soft:#f6e3ee;
  --grey:#8c8c8c;
  --grey-light:#bdbdbd;
  --ink:#211a1e;
  --ink-soft:#4a4148;
  --cream:#fbf6f1;
  --cream-2:#f3e8de;
  --cream-3:#ece0d4;
  --white:#ffffff;
  /* Eisparadies pastels */
  --ice-mint:#bfe3d6;
  --ice-berry:#f6c6dd;
  --ice-vanilla:#f7e9c9;

  --shadow-sm:0 4px 14px rgba(33,26,30,.08);
  --shadow-md:0 14px 40px rgba(33,26,30,.14);
  --radius:18px;
  --maxw:1180px;
  --ease:cubic-bezier(.22,.61,.36,1);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Mulish',system-ui,sans-serif;
  color:var(--ink);
  background:var(--cream);
  line-height:1.7;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3{font-family:'Playfair Display',serif;line-height:1.15;font-weight:600;color:var(--ink)}

.container{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 clamp(20px,5vw,48px)}
.script{font-family:'Dancing Script',cursive;color:var(--berry);font-weight:700}
.eyebrow{
  font-family:'Mulish',sans-serif;font-weight:700;letter-spacing:.28em;
  text-transform:uppercase;font-size:.72rem;color:var(--berry);
  display:inline-block;margin-bottom:1rem;
}
.eyebrow::before{content:"";display:inline-block;width:26px;height:1px;background:var(--berry);vertical-align:middle;margin-right:.7em;opacity:.6}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:.55em;
  font-weight:700;font-size:.95rem;letter-spacing:.01em;
  padding:.85em 1.7em;border-radius:999px;cursor:pointer;border:none;
  transition:transform .3s var(--ease),box-shadow .3s var(--ease),background .3s;
}
.btn-primary{background:var(--berry);color:#fff;box-shadow:0 8px 22px rgba(158,27,91,.28)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(158,27,91,.38);background:var(--berry-dark)}
.btn-ghost{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.7)}
.btn-ghost:hover{background:rgba(255,255,255,.14);border-color:#fff}
.btn-outline{background:transparent;color:var(--berry);border:1.5px solid var(--berry)}
.btn-outline:hover{background:var(--berry);color:#fff}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  transition:background .4s var(--ease),box-shadow .4s var(--ease),padding .4s var(--ease);
  padding:18px 0;
}
.site-header.scrolled{
  background:rgba(251,246,241,.92);backdrop-filter:blur(10px);
  box-shadow:var(--shadow-sm);padding:10px 0;
}
.nav{display:flex;align-items:center;justify-content:space-between;gap:2rem}
.brand{display:flex;align-items:center;gap:.75rem;z-index:2}
.brand img{height:58px;width:auto;transition:height .4s var(--ease);
  background:#fff;border-radius:50%;padding:4px;box-shadow:var(--shadow-sm)}
.site-header.scrolled .brand img{height:46px}
.brand .brand-text{display:flex;flex-direction:column;line-height:1}
.brand .brand-name{font-family:'Dancing Script',cursive;font-weight:700;font-size:1.7rem;color:var(--ink);transition:color .4s}
.brand .brand-sub{font-size:.62rem;letter-spacing:.24em;text-transform:uppercase;color:var(--berry);font-weight:700;margin-top:2px}
/* on transparent header (top) make brand text light */
.site-header:not(.scrolled) .brand-name{color:#fff}
.site-header:not(.scrolled) .nav-links a{color:#fff}

.nav-right{display:flex;align-items:center;gap:1.3rem}
.nav-links{display:flex;align-items:center;gap:2rem;list-style:none}
.nav-links a{font-weight:600;font-size:.95rem;position:relative;color:var(--ink);transition:color .3s}
.nav-links a::after{content:"";position:absolute;left:0;bottom:-6px;width:0;height:2px;background:var(--berry);transition:width .3s var(--ease)}
.nav-links a:hover{color:var(--berry)}
.nav-links a:hover::after{width:100%}
/* current page / section in view */
.nav-links a.is-active{color:var(--berry)}
.nav-links a.is-active::after{width:100%}
.site-header:not(.scrolled) .nav-links a.is-active{color:#fff}
.site-header:not(.scrolled) .nav-links a.is-active::after{background:#fff}
.nav-cta{margin-left:.5rem}
/* .nav-links a{color:var(--ink)} is more specific than .btn-primary{color:#fff} alone, so the
   button text needs its own higher-specificity rule to stay white in the solid header state too */
.nav-links .btn{color:#fff}

/* seven nav items + CTA no longer fit comfortably above the mobile burger breakpoint (960px) -
   tighten spacing a bit before that, instead of letting the row squeeze or wrap */
@media(max-width:1240px){
  .nav-links{gap:1.2rem}
  .nav-links a{font-size:.88rem}
}

.nav-toggle{display:none;background:none;border:none;cursor:pointer;width:44px;height:44px;z-index:2;position:relative}
.nav-toggle span{display:block;height:2.5px;width:26px;background:var(--ink);margin:5px auto;border-radius:2px;transition:.3s var(--ease)}
.site-header:not(.scrolled) .nav-toggle span{background:#fff}

/* logged-in user menu: small round icon top-right, opens a dropdown panel */
.user-menu{position:relative;z-index:2}
.user-menu-toggle{
  display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:50%;
  background:var(--berry-soft);border:none;cursor:pointer;transition:background .3s var(--ease);
}
.user-menu-toggle:hover{background:var(--berry)}
.user-menu-toggle svg{width:20px;height:20px;stroke:var(--berry);fill:none;stroke-width:1.8;
  stroke-linecap:round;stroke-linejoin:round;transition:stroke .3s var(--ease)}
.user-menu-toggle:hover svg{stroke:#fff}
/* on the transparent header (top of the homepage) there is no card behind the icon, so it needs
   its own visible background instead of the berry-soft tint used on the solid header */
.site-header:not(.scrolled) .user-menu-toggle{background:rgba(255,255,255,.18)}
.site-header:not(.scrolled) .user-menu-toggle svg{stroke:#fff}

.user-menu-panel{
  position:absolute;top:calc(100% + 12px);right:0;min-width:220px;max-width:calc(100vw - 40px);
  background:var(--white);border-radius:14px;box-shadow:var(--shadow-md);padding:.6rem 0;
}
.user-menu-panel[hidden]{display:none}
.user-menu-name{padding:.4rem 1.2rem .7rem;margin-bottom:.3rem;border-bottom:1px solid rgba(158,27,91,.12);
  font-weight:700;font-size:.86rem;color:var(--ink);word-break:break-all}
.user-menu-panel ul{list-style:none}
.user-menu-panel a{display:block;padding:.55rem 1.2rem;font-size:.92rem;font-weight:600;color:var(--ink);transition:background .2s}
.user-menu-panel a:hover{background:var(--berry-soft);color:var(--berry)}

/* ============================================================
   HERO – wide image slideshow with room for impressions
   ============================================================ */
.hero{position:relative;min-height:100svh;display:flex;align-items:center;overflow:hidden}
.hero-slides{position:absolute;inset:0;z-index:0}
.hero-slide{
  position:absolute;inset:0;opacity:0;transition:opacity 1.4s var(--ease),transform 7s linear;
  background-size:cover;background-position:center;transform:scale(1.05);
}
.hero-slide.active{opacity:1;transform:scale(1.12)}
.hero-slide.s3{background-position:center 30%}
.hero-overlay{position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,rgba(33,26,30,.55) 0%,rgba(33,26,30,.25) 40%,rgba(33,26,30,.65) 100%)}
.hero-inner{position:relative;z-index:2;color:#fff;padding-top:90px;max-width:760px}
.hero-inner .script{color:#fff;font-size:clamp(2.4rem,7vw,4.6rem);display:block;line-height:1;text-shadow:0 4px 30px rgba(0,0,0,.35)}
.hero-inner h1{color:#fff;font-size:clamp(1.6rem,3.4vw,2.6rem);font-weight:500;margin:.4rem 0 .1rem}
.hero-inner .hero-lead{font-size:clamp(1.02rem,1.6vw,1.22rem);color:rgba(255,255,255,.9);font-weight:300;max-width:560px;margin:1.2rem 0 2rem}
.hero-status-row{display:flex;gap:.7rem;flex-wrap:wrap;margin-bottom:1.6rem}
.hero-status{
  display:inline-flex;align-items:center;gap:.5rem;flex-wrap:wrap;
  background:rgba(255,255,255,.14);backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.28);border-radius:999px;
  padding:.55em 1.1em;font-size:.85rem;color:#fff;
}
.hero-status-dot{width:8px;height:8px;border-radius:50%;flex:none;background:#5fd48a}
.hero-status.is-closed .hero-status-dot{background:#f2a65a}
.hero-status.is-open .hero-status-dot{animation:hc-pulse 2.6s var(--ease) infinite}
.hero-status-venue{font-weight:700}
.hero-status-label{opacity:.92}
.hero-status-detail{opacity:.75;font-size:.82rem}
@media(prefers-reduced-motion:reduce){.hero-status-dot{animation:none}}

.hero-badges{display:flex;gap:1.4rem;flex-wrap:wrap;margin-bottom:2.2rem}
.hero-badge{display:flex;align-items:center;gap:.5rem;font-size:.9rem;color:rgba(255,255,255,.92);font-weight:600}
.hero-badge svg{width:20px;height:20px;stroke:var(--ice-berry)}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}

.hero-dots{position:absolute;bottom:26px;left:clamp(20px,5vw,48px);z-index:2;display:flex;gap:.6rem}
.hero-dots button{width:34px;height:4px;border-radius:2px;border:none;background:rgba(255,255,255,.35);cursor:pointer;padding:0;transition:background .3s}
.hero-dots button.active{background:#fff}

/* scroll cue */
.scroll-cue{position:absolute;bottom:20px;left:50%;transform:translateX(-50%);z-index:2;
  width:26px;height:42px;border:2px solid rgba(255,255,255,.5);border-radius:14px;display:flex;justify-content:center;padding-top:7px}
.scroll-cue::before{content:"";width:4px;height:8px;background:#fff;border-radius:2px;animation:scrolldot 1.6s infinite}
@keyframes scrolldot{0%{opacity:0;transform:translateY(-4px)}40%{opacity:1}80%{opacity:0;transform:translateY(10px)}}

/* ============================================================
   SECTION basics
   ============================================================ */
section{position:relative}
.section{padding:clamp(4.5rem,9vw,8rem) 0}
.section-head{max-width:640px;margin-bottom:3rem}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center}
.section-head h2{font-size:clamp(1.9rem,4.2vw,3rem);margin-bottom:1rem}
.section-head p{color:var(--ink-soft);font-size:1.08rem}

/* ---------- Welcome / owner intro ---------- */
.welcome{background:var(--cream)}
.welcome-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(2rem,5vw,4.5rem);align-items:center}
.welcome-text h2{font-size:clamp(1.9rem,4vw,2.9rem);margin-bottom:1.4rem}
.welcome-text p{color:var(--ink-soft);margin-bottom:1.1rem;font-size:1.06rem}
.signature{font-family:'Dancing Script',cursive;font-size:1.9rem;color:var(--berry);margin-top:1.6rem}
.signature small{display:block;font-family:'Mulish';font-size:.78rem;letter-spacing:.18em;text-transform:uppercase;color:var(--grey);font-weight:700;margin-top:.2rem}
.welcome-media{position:relative}
.welcome-media .ph{aspect-ratio:4/5;border-radius:var(--radius)}
.welcome-media .ph-float{position:absolute;bottom:-28px;left:-28px;width:52%;aspect-ratio:1/1;border-radius:var(--radius);border:8px solid var(--cream);box-shadow:var(--shadow-md)}
.welcome-stats{display:flex;gap:2.4rem;margin-top:2rem;flex-wrap:wrap}
.stat .num{font-family:'Playfair Display',serif;font-size:2.3rem;color:var(--berry);font-weight:700;line-height:1}
.stat .lbl{font-size:.82rem;letter-spacing:.1em;text-transform:uppercase;color:var(--grey);font-weight:700}

/* ---------- Image placeholder styling (for photos not yet delivered) ---------- */
.ph{
  background:
    repeating-linear-gradient(45deg,rgba(158,27,91,.04) 0 14px,transparent 14px 28px),
    linear-gradient(135deg,var(--cream-2),var(--cream-3));
  border-radius:var(--radius);position:relative;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow-sm);
}
.ph::after{
  content:attr(data-label);
  font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;font-weight:700;
  color:var(--grey);padding:.5em 1em;border:1px dashed var(--grey-light);border-radius:999px;
  background:rgba(255,255,255,.6);
}
.ph.has-photo{background-size:cover;background-repeat:no-repeat}
.ph.has-photo::after{content:none!important}

/* ============================================================
   TWO WORLDS – Café & Eisparadies
   ============================================================ */
.worlds{background:linear-gradient(180deg,var(--cream),var(--cream-2))}
.worlds-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem}
.world{
  border-radius:22px;overflow:hidden;background:#fff;box-shadow:var(--shadow-sm);
  transition:transform .4s var(--ease),box-shadow .4s var(--ease);
  display:flex;flex-direction:column;
}
.world:hover{transform:translateY(-6px);box-shadow:var(--shadow-md)}
.world .ph{border-radius:0;aspect-ratio:16/10}
.world-body{padding:2.2rem 2.2rem 2.6rem}
.world-body h3{font-size:1.7rem;margin-bottom:.6rem}
.world-body p{color:var(--ink-soft);margin-bottom:1.4rem}
.world .tag{font-size:.72rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--berry);margin-bottom:.6rem;display:block}
.world.ice .tag{color:#2f9e7a}
.world.ice .btn-outline{color:#2f9e7a;border-color:#2f9e7a}
.world.ice .btn-outline:hover{background:#2f9e7a;color:#fff}

/* ============================================================
   OFFERINGS – café menu highlights
   ============================================================ */
.offer-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem}
.offer-card{background:#fff;border-radius:var(--radius);padding:2rem 1.8rem;box-shadow:var(--shadow-sm);
  transition:transform .35s var(--ease),box-shadow .35s var(--ease);border:1px solid rgba(158,27,91,.06)}
.offer-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md)}
.offer-icon{width:56px;height:56px;border-radius:16px;background:var(--berry-soft);display:flex;align-items:center;justify-content:center;margin-bottom:1.2rem}
.offer-icon svg{width:28px;height:28px;stroke:var(--berry);fill:none;stroke-width:1.6}
.offer-card h3{font-size:1.25rem;margin-bottom:.5rem}
.offer-card p{color:var(--ink-soft);font-size:.98rem}

/* ============================================================
   EISPARADIES – playful pastel band
   ============================================================ */
.eis{background:linear-gradient(135deg,#fef8f0,#f3fbf7);position:relative;overflow:hidden}
.eis::before,.eis::after{content:"";position:absolute;border-radius:50%;filter:blur(10px);opacity:.5;z-index:0}
.eis::before{width:280px;height:280px;background:var(--ice-berry);top:-80px;right:-60px}
.eis::after{width:340px;height:340px;background:var(--ice-mint);bottom:-120px;left:-80px}
.eis .container{position:relative;z-index:1}
.eis .section-head h2 .script{color:#2f9e7a}
.flavors{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem;margin-top:1rem}
.flavor{background:#fff;border-radius:20px;padding:1.6rem 1.2rem;text-align:center;box-shadow:var(--shadow-sm);
  transition:transform .35s var(--ease)}
.flavor:hover{transform:translateY(-6px) rotate(-1.5deg)}
.scoop{width:64px;height:64px;border-radius:50%;margin:0 auto .9rem;box-shadow:inset 0 -8px 14px rgba(0,0,0,.08)}
.flavor h4{font-family:'Playfair Display',serif;font-size:1.1rem;margin-bottom:.2rem}
.flavor span{font-size:.85rem;color:var(--grey)}
.eis-cta{text-align:center;margin-top:2.6rem}

/* ============================================================
   IMPRESSIONS – wide gallery
   ============================================================ */
.gallery{background:var(--ink);color:#fff}
.gallery .section-head h2{color:#fff}
.gallery .section-head p{color:rgba(255,255,255,.7)}
.gallery .eyebrow{color:var(--ice-berry)}
.gallery .eyebrow::before{background:var(--ice-berry)}
.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:190px;gap:14px}
.gallery-grid .ph{background:
    repeating-linear-gradient(45deg,rgba(255,255,255,.03) 0 14px,transparent 14px 28px),
    linear-gradient(135deg,#332a2e,#463a40);box-shadow:none}
.gallery-grid .ph::after{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.2);background:rgba(255,255,255,.05)}
.g-wide{grid-column:span 2}
.g-tall{grid-row:span 2}
.gallery-foot{margin-top:2rem;text-align:center}
.gallery-foot a{color:var(--ice-berry);font-weight:700;border-bottom:1px solid transparent;transition:border .3s}
.gallery-foot a:hover{border-color:var(--ice-berry)}

/* ============================================================
   HOURS + CONTACT
   ============================================================ */
.visit{background:var(--cream)}
.visit-grid{display:flex;flex-direction:column;gap:clamp(2rem,5vw,3rem)}

/* reservation / menu call-to-action band */
.reserve-bar{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap;
  background:linear-gradient(120deg,var(--berry),var(--berry-dark));color:#fff;border-radius:22px;
  padding:1.8rem 2.2rem;box-shadow:var(--shadow-md);margin-bottom:2.6rem}
.reserve-bar .rb-text h3{color:#fff;font-size:1.4rem;margin-bottom:.2rem}
.reserve-bar .rb-text p{color:rgba(255,255,255,.85);font-size:.95rem}
.reserve-bar .rb-actions{display:flex;gap:.9rem;flex-wrap:wrap}
.reserve-bar .btn-primary{background:#fff;color:var(--berry);box-shadow:0 8px 22px rgba(0,0,0,.18)}
.reserve-bar .btn-primary:hover{background:var(--cream);color:var(--berry-dark)}

.booking-widget{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-sm);background:#fff;margin-bottom:2.6rem}
.booking-widget iframe{display:block;width:100%;height:520px;border:none}
.booking-widget-fallback{text-align:center;font-size:.85rem;color:var(--grey);padding:.8rem 1rem;border-top:1px solid var(--cream-3)}
.booking-widget-fallback a{color:var(--berry);font-weight:700}

.hours-cards{display:grid;grid-template-columns:1fr 1fr;gap:1.4rem}
.hours-card{background:#fff;border-radius:var(--radius);padding:1.9rem;box-shadow:var(--shadow-sm)}
.hc-head{display:flex;align-items:center;gap:.7rem;margin-bottom:1.2rem}
.hc-icon{width:42px;height:42px;border-radius:12px;background:var(--berry-soft);display:flex;align-items:center;justify-content:center;flex:none}
.hc-icon svg{width:21px;height:21px;stroke:var(--berry);fill:none;stroke-width:1.7}
.hours-card.ice .hc-icon{background:#dcf1e9}
.hours-card.ice .hc-icon svg{stroke:#2f9e7a}
.hc-head h3{font-size:1.25rem;margin:0}
.hc-sub{font-size:.68rem;letter-spacing:.16em;text-transform:uppercase;color:var(--grey);font-weight:700;display:block}
.hours-row{display:flex;justify-content:space-between;gap:.8rem;padding:.6rem 0;border-bottom:1px dashed var(--cream-3);font-size:.96rem}
.hours-row:last-child{border-bottom:none}
.hours-row .day{font-weight:600;flex:none}
.hours-row .time{color:var(--ink-soft);text-align:right}
/* --grey-light on white is about 2.1:1 and fails WCAG AA; this text is real content now */
.hours-row.closed .time{color:var(--ink-soft);font-style:italic}

/* the rows are a description list now, so the browser defaults have to go */
.hours-list{margin:0}
.hours-row dt,.hours-row dd{margin:0}
.hours-empty{color:var(--ink-soft);font-style:italic;font-size:.95rem}
.hours-reason{display:block;font-size:.8rem;color:var(--grey);font-style:italic}

.hours-col{display:flex;flex-direction:column;gap:1.4rem}

/* live status badge */
.hc-head .hc-status{margin-left:auto}
.hc-status{display:inline-flex;align-items:center;gap:.45rem;flex:none;
  font-size:.68rem;font-weight:700;letter-spacing:.09em;text-transform:uppercase;
  padding:.34rem .78rem;border-radius:999px;white-space:nowrap}
.hc-status .hc-dot{width:8px;height:8px;border-radius:50%;background:currentColor;flex:none}
.hc-status.is-open{background:#e4f3ea;color:#1e6b3e}
.hc-status.is-closed{background:var(--cream-2);color:var(--ink-soft)}
.hc-status.is-open .hc-dot{animation:hc-pulse 2.6s var(--ease) infinite}
@keyframes hc-pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(.72)}}
@media(prefers-reduced-motion:reduce){.hc-status .hc-dot{animation:none}}
.hc-status-note{font-size:.88rem;color:var(--ink-soft);margin:-.5rem 0 1rem}

/* today's row, marked by colour, a dot and aria-current together */
.hours-row.is-today .day{color:var(--berry)}
.hours-row.is-today .day::before{content:"";display:inline-block;width:6px;height:6px;border-radius:50%;
  background:var(--berry);margin-right:.5em;vertical-align:middle}
.hours-card.ice .hours-row.is-today .day{color:#2f9e7a}
.hours-card.ice .hours-row.is-today .day::before{background:#2f9e7a}

/* the card head carries three children now and gets tight in the narrow column */
@media(max-width:1080px){
  .hc-head{flex-wrap:wrap}
  .hc-head .hc-status{margin-left:0;order:3;flex-basis:100%}
}

/* notice about upcoming closures */
.hours-notice{display:flex;gap:1rem;align-items:flex-start;background:var(--white);
  border:1px solid rgba(158,27,91,.12);border-left:4px solid var(--berry);
  border-radius:14px;padding:1.1rem 1.3rem}
.hours-notice .hn-icon{flex:none;width:38px;height:38px;border-radius:11px;background:var(--berry-soft);
  display:flex;align-items:center;justify-content:center}
.hours-notice .hn-icon svg{width:20px;height:20px;stroke:var(--berry);fill:none;stroke-width:1.7;
  stroke-linecap:round;stroke-linejoin:round}
.hn-title{font-weight:700;color:var(--ink);font-size:.98rem;margin-bottom:.25rem}
.hn-list{list-style:none;display:flex;flex-direction:column;gap:.4rem}
.hn-list li{font-size:.92rem;color:var(--ink-soft)}
.hn-list strong{color:var(--ink)}
.hn-list li.is-active strong{color:var(--berry)}
.hn-note{display:block;font-size:.85rem;color:var(--grey)}

/* pet-allergy note */
.pet-note{display:flex;gap:1rem;align-items:flex-start;background:#fff;
  border:1px solid rgba(158,27,91,.12);border-left:4px solid var(--berry);border-radius:14px;
  padding:1.3rem 1.6rem;margin:2.6rem auto 0;max-width:840px}
.pet-note .pn-icon{flex:none;width:42px;height:42px;border-radius:12px;background:var(--berry-soft);display:flex;align-items:center;justify-content:center}
.pet-note .pn-icon svg{width:23px;height:23px;stroke:var(--berry);fill:none;stroke-width:1.6}
.pet-note p{font-size:.95rem;color:var(--ink-soft)}

/* full width below the opening hours now, so the items line up in a row instead of a tall single column */
.contact-info{display:flex;flex-wrap:wrap;gap:1.6rem 2.5rem}
.contact-item{display:flex;gap:1rem;align-items:flex-start;flex:1 1 220px}
.contact-item .ci-icon{flex:none;width:46px;height:46px;border-radius:12px;background:var(--berry-soft);display:flex;align-items:center;justify-content:center}
.contact-item .ci-icon svg{width:22px;height:22px;stroke:var(--berry);fill:none;stroke-width:1.7}
.contact-item h4{font-family:'Mulish';font-weight:700;font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;color:var(--grey);margin-bottom:.15rem}
.contact-item p{color:var(--ink);font-size:1.05rem}
.contact-item .contact-link{color:var(--berry);font-weight:700;border-bottom:1px solid transparent;transition:border-color .3s}
.contact-item .contact-link:hover{border-color:var(--berry)}
.map-ph{flex-basis:100%;margin-top:.5rem;aspect-ratio:16/8;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-sm)}
.map-ph iframe{width:100%;height:100%;border:0;display:block}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{background:var(--ink);color:rgba(255,255,255,.75);padding:4rem 0 2rem}
.footer-top{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:2.5rem;padding-bottom:2.5rem;border-bottom:1px solid rgba(255,255,255,.12)}
.footer-brand .script{color:#fff;font-size:2.2rem}
.footer-brand p{margin-top:.6rem;max-width:320px;font-size:.95rem}
.footer h5{font-family:'Mulish';font-weight:700;letter-spacing:.14em;text-transform:uppercase;font-size:.78rem;color:#fff;margin-bottom:1.1rem}
.footer ul{list-style:none}
.footer ul li{margin-bottom:.6rem}
.footer ul a{font-size:.95rem;transition:color .3s}
.footer ul a:hover{color:var(--ice-berry)}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:1.6rem;font-size:.82rem;color:rgba(255,255,255,.5);flex-wrap:wrap;gap:.6rem}
.footer-bottom a:hover{color:#fff}

/* ============================================================
   reveal animation
   ============================================================ */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.reveal.in{opacity:1;transform:none}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:960px){
  .welcome-grid,.worlds-grid{grid-template-columns:1fr}
  .offer-grid{grid-template-columns:1fr 1fr}
  .flavors{grid-template-columns:1fr 1fr}
  .footer-top{grid-template-columns:1fr 1fr}
  .welcome-media{max-width:460px;margin:0 auto 2rem}
  .welcome-media .ph-float{display:none}
  .gallery-grid{grid-auto-rows:150px}
}
@media(max-width:720px){
  .nav-links{
    position:fixed;inset:0;background:var(--berry-dark);flex-direction:column;justify-content:center;
    gap:2rem;transform:translateX(100%);transition:transform .45s var(--ease);
  }
  .nav-links.open{transform:none}
  .nav-links a{color:#fff!important;font-size:1.3rem}
  .nav-links a::after{display:none}
  .nav-links a.is-active{text-decoration:underline;text-underline-offset:8px;text-decoration-thickness:2px}
  .nav-cta{margin-left:0}
  .nav-toggle{display:block}
  .nav-toggle.open span{background:#fff}
  .nav-toggle.open span:nth-child(1){transform:translateY(7.5px) rotate(45deg)}
  .nav-toggle.open span:nth-child(2){opacity:0}
  .nav-toggle.open span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg)}
  .offer-grid,.flavors,.footer-top,.hours-cards{grid-template-columns:1fr}
  .booking-widget iframe{height:460px}
  .reserve-bar{flex-direction:column;align-items:flex-start}
  .gallery-grid{grid-template-columns:1fr 1fr}
  .g-wide{grid-column:span 2}
  .hero-badges{gap:1rem}
  .footer-bottom{flex-direction:column;text-align:center}
}

/* ============================================================
   SUBPAGES (Veranstaltungen)
   ============================================================ */
.subpage-section{padding-top:calc(clamp(4.5rem,9vw,8rem) + 70px)}
.container-narrow{max-width:900px}

/* subpage header stays solid, it never sits on top of a hero image */
.site-header.subpage-header{
  background:rgba(251,246,241,.92);backdrop-filter:blur(10px);
  box-shadow:var(--shadow-sm);padding:10px 0;
}
.site-header.subpage-header .brand-name{color:var(--ink)}
.site-header.subpage-header .nav-links a{color:var(--ink)}
.site-header.subpage-header .nav-links a.is-active{color:var(--berry)}
.site-header.subpage-header .nav-links .btn{color:#fff}
.site-header.subpage-header .nav-toggle span{background:var(--ink)}

/* ============================================================
   EVENTS
   ============================================================ */
.events{background:var(--cream)}
.event-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:clamp(1.4rem,3vw,2.2rem);
}
.event-card{
  background:var(--white);border-radius:var(--radius);overflow:hidden;
  box-shadow:var(--shadow-sm);display:flex;flex-direction:column;
  transition:transform .4s var(--ease),box-shadow .4s var(--ease);
}
.event-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.event-card.is-past{opacity:.72}
.event-card-media{
  position:relative;display:block;aspect-ratio:3/2;background:var(--cream-2);overflow:hidden;
}
.event-card-media img{width:100%;height:100%;object-fit:cover;display:block}
.event-card-media-placeholder{
  position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--cream-2),var(--cream-3));
}
.event-card-media-placeholder svg{
  width:52px;height:52px;fill:none;stroke:var(--berry);stroke-width:1.4;
  stroke-linecap:round;stroke-linejoin:round;opacity:.55;
}
.event-flag{
  position:absolute;top:14px;left:14px;z-index:1;
  background:var(--berry);color:#fff;font-size:.66rem;font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;padding:.34rem .7rem;border-radius:999px;
}
.event-card-body{padding:1.5rem 1.5rem 1.7rem;display:flex;flex-direction:column;flex:1}
.event-card-body h3{font-size:1.32rem;margin:.35rem 0 .7rem;line-height:1.25}
.event-card-body h3 a{color:var(--ink)}
.event-card-body h3 a:hover{color:var(--berry)}
.event-card-body .btn{margin-top:auto;align-self:flex-start}
.event-date{
  font-size:.82rem;font-weight:700;letter-spacing:.06em;color:var(--berry);text-transform:uppercase;
}
.event-excerpt{color:var(--ink-soft);font-size:.98rem;margin-bottom:1.3rem}
.event-empty{
  text-align:center;color:var(--ink-soft);font-size:1.05rem;
  background:var(--white);border-radius:var(--radius);padding:2.4rem 1.5rem;
  box-shadow:var(--shadow-sm);
}
.events-more{margin-top:2.6rem;text-align:center}

/* category badge, shown on the card and on the detail page */
.event-category{
  display:inline-block;font-size:.66rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  padding:.34rem .7rem;border-radius:999px;margin-bottom:.6rem;color:var(--ink);
}
.event-category-course{background:var(--ice-mint)}
.event-category-event{background:var(--cream-2)}
.event-category-music{background:var(--berry-soft)}
.event-category-wine-tasting{background:var(--ice-berry)}
.event-detail-head .event-category{margin-right:.5rem}

/* filter chips (time range and category, on the overview) */
.filter-bar{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1rem}
.filter-chip{
  font:inherit;font-size:.88rem;font-weight:600;color:var(--ink-soft);
  background:var(--white);border:1.5px solid var(--cream-3);border-radius:999px;
  padding:.5rem 1.05rem;transition:border-color .2s var(--ease),color .2s var(--ease);
}
.filter-chip:hover{border-color:var(--berry);color:var(--berry)}
.filter-chip.is-active{background:var(--berry);border-color:var(--berry);color:#fff}

/* collapsible archive — also reused by the opening-hours overrides table */
.event-archive{margin-top:3.5rem;border-top:1px solid var(--cream-3);padding-top:1.6rem}
.event-archive summary{
  cursor:pointer;font-weight:700;color:var(--berry);font-size:1.02rem;
  list-style:none;padding:.4rem 0;
}
.event-archive summary::-webkit-details-marker{display:none}
.event-archive summary::before{content:"\25B8  ";display:inline-block}
.event-archive[open] summary::before{content:"\25BE  "}
.event-archive .event-grid{margin-top:1.8rem}

/* detail page */
.event-breadcrumb{margin-bottom:1.4rem;font-size:.92rem}
.event-breadcrumb a{color:var(--berry);font-weight:600}
.event-detail-head{position:relative;margin-bottom:2rem}
.event-detail-head .event-flag{position:static;display:inline-block;margin-bottom:.9rem}
.event-detail-head h1{font-size:clamp(1.9rem,4.2vw,3rem);margin:.5rem 0 .8rem}
.event-past-note{
  margin-top:.9rem;font-size:.9rem;color:var(--grey);
  background:var(--cream-2);border-radius:10px;padding:.5rem .9rem;display:inline-block;
}
.event-teaser{margin:2rem 0;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-md)}
.event-teaser img{width:100%;height:auto;display:block}
.event-subhead{font-size:1.4rem;margin:2.6rem 0 1.2rem}
.event-gallery{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:1rem}
.event-gallery img{
  width:100%;aspect-ratio:3/2;object-fit:cover;display:block;
  border-radius:12px;box-shadow:var(--shadow-sm);transition:transform .35s var(--ease);
}
.event-gallery a:hover img{transform:scale(1.03)}

/* rich text coming from the editor */
.richtext{color:var(--ink-soft);font-size:1.06rem;line-height:1.75}
.richtext h2{font-size:1.6rem;margin:2rem 0 .9rem;color:var(--ink)}
.richtext h3{font-size:1.3rem;margin:1.6rem 0 .7rem;color:var(--ink)}
.richtext p{margin-bottom:1.1rem}
.richtext ul,.richtext ol{margin:0 0 1.1rem 1.4rem}
.richtext li{margin-bottom:.4rem}
.richtext a{color:var(--berry);font-weight:600;text-decoration:underline}
.richtext img{max-width:100%;height:auto;border-radius:12px}
.richtext table{width:100%;border-collapse:collapse;margin-bottom:1.2rem}
.richtext th,.richtext td{border:1px solid var(--cream-3);padding:.55rem .8rem;text-align:left}

/* attachments */
.event-attachments{list-style:none;display:flex;flex-direction:column;gap:.7rem}
.event-attachments li{
  display:flex;align-items:center;gap:1rem;flex-wrap:wrap;
  background:var(--white);border-radius:12px;padding:.9rem 1.1rem;box-shadow:var(--shadow-sm);
}
/* the file link takes the whole row, the actions sit at its end */
.event-attachments li > a:not(.event-attachment-preview){display:flex;flex-direction:column;gap:.2rem;flex:1 1 auto;min-width:0}
.event-attachment-name{font-weight:600;color:var(--ink);word-break:break-word}
.event-attachments li > a:hover .event-attachment-name{color:var(--berry)}
.event-attachment-meta{font-size:.8rem;color:var(--grey)}
.event-attachment-preview{flex:none;margin-left:auto;font-size:.86rem;font-weight:600;color:var(--berry)}
.event-attachment-thumb{width:64px;height:64px;object-fit:cover;border-radius:8px;flex:none}
.event-attachments-admin form{margin:0}

.search-bar{display:flex;gap:.7rem;flex-wrap:wrap;margin-bottom:2rem}
.search-bar input[type="search"]{
  flex:1;min-width:220px;font:inherit;color:var(--ink);background:var(--white);
  border:1.5px solid var(--cream-3);border-radius:12px;padding:.75rem .95rem;
}
.search-bar input[type="search"]:focus{outline:none;border-color:var(--berry)}

/* ============================================================
   INLINE ADMINISTRATION
   ============================================================ */
.admin-bar{
  display:flex;align-items:center;gap:.8rem;flex-wrap:wrap;
  background:var(--berry-soft);border:1px dashed var(--berry);
  border-radius:var(--radius);padding:1rem 1.2rem;margin-bottom:2.2rem;
}
.admin-bar form{margin:0}
.admin-bar-label{
  font-size:.68rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  color:var(--berry);margin-right:.4rem;
}
.btn-danger{background:#b3261e;color:#fff;box-shadow:0 8px 22px rgba(179,38,30,.25)}
.btn-danger:hover{background:#8f1e18;color:#fff;transform:translateY(-2px)}
.btn-small{padding:.5rem 1rem;font-size:.82rem}

/* the login landing page: one tile per administration area, more will be added over time */
.dashboard-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1.6rem}
.dashboard-tile{
  display:block;background:#fff;border-radius:var(--radius);padding:2rem 1.8rem;box-shadow:var(--shadow-sm);
  border:1px solid rgba(158,27,91,.06);transition:transform .3s var(--ease),box-shadow .3s var(--ease);
}
.dashboard-tile:hover{transform:translateY(-5px);box-shadow:var(--shadow-md)}
.dashboard-tile-icon{width:56px;height:56px;border-radius:16px;background:var(--berry-soft);
  display:flex;align-items:center;justify-content:center;margin-bottom:1.2rem}
.dashboard-tile-icon svg{width:28px;height:28px;stroke:var(--berry);fill:none;stroke-width:1.6;
  stroke-linecap:round;stroke-linejoin:round}
.dashboard-tile h2{font-size:1.25rem;margin-bottom:.5rem}
.dashboard-tile p{color:var(--ink-soft);font-size:.95rem}

.flash{border-radius:12px;padding:.9rem 1.2rem;margin-bottom:1.4rem;font-weight:600}
.flash-success{background:#e4f3ea;color:#1e6b3e}
.flash-error{background:#fbe6e5;color:#8f1e18}
.flash-warning{background:#fdf1dc;color:#8a5a12}

/* ============================================================
   FORMS
   ============================================================ */
.form-card{
  background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow-sm);
  padding:clamp(1.5rem,4vw,2.4rem);margin-bottom:2.4rem;
}
.form-card-narrow{max-width:440px;margin-left:auto;margin-right:auto}
.form-field{margin-bottom:1.5rem}
.form-row-2{display:grid;grid-template-columns:1fr 1fr;gap:1.4rem}
.form-card label{
  display:block;font-weight:700;font-size:.86rem;letter-spacing:.04em;
  color:var(--ink);margin-bottom:.45rem;
}
.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="password"],
.form-card input[type="tel"],
.form-card input[type="number"],
.form-card input[type="datetime-local"],
.form-card input[type="date"],
.form-card input[type="time"],
.form-card input[type="file"],
.form-card select,
.form-card textarea{
  width:100%;font:inherit;color:var(--ink);background:var(--cream);
  border:1.5px solid var(--cream-3);border-radius:12px;padding:.75rem .95rem;
  transition:border-color .25s var(--ease),background .25s var(--ease);
}
.form-card input:focus,.form-card textarea:focus{
  outline:none;border-color:var(--berry);background:var(--white);
}
.form-field-check{display:flex;align-items:center;gap:.6rem}
.form-field-check label{margin-bottom:0;font-weight:600}
.form-field-check input[type="checkbox"]{width:20px;height:20px;accent-color:var(--berry);flex:none}
.form-card .help-text,.form-card small{display:block;font-size:.84rem;color:var(--grey);margin-top:.4rem}
.form-card ul li{color:#b3261e;font-size:.86rem;list-style:none}
.form-actions{display:flex;gap:.8rem;flex-wrap:wrap;margin-top:2rem}
.form-actions .btn-block{width:100%;justify-content:center}
.form-note{text-align:center;color:var(--grey);font-size:.88rem;margin-top:1.4rem}

/* drag & drop upload */
.dropzone{
  position:relative;cursor:pointer;text-align:center;
  background:var(--cream);border:2px dashed var(--cream-3);border-radius:12px;
  padding:1.6rem 1.2rem;
  transition:border-color .25s var(--ease),background .25s var(--ease);
}
.dropzone:hover,.dropzone.is-dragging{border-color:var(--berry);background:var(--berry-soft)}
/* the visually hidden input keeps the focus, so the zone has to show it */
.dropzone:has(.dropzone-input:focus-visible){border-color:var(--berry);box-shadow:0 0 0 3px var(--berry-soft)}
.dropzone.is-dragging .dropzone-hint{color:var(--berry)}
/* the input stays focusable but the whole zone acts as its button */
.form-card .dropzone-input{
  position:absolute;width:1px;height:1px;padding:0;margin:0;
  border:0;opacity:0;overflow:hidden;
}
.dropzone-hint{color:var(--grey);font-size:.92rem;line-height:1.5;margin:0}
.dropzone-hint strong{color:var(--ink)}
.dropzone-error{color:#b3261e;font-size:.86rem;font-weight:600;margin:.8rem 0 0}
.dropzone-files{list-style:none;display:flex;flex-direction:column;gap:.5rem;margin:1.1rem 0 0;text-align:left}
.dropzone-files li{
  display:flex;align-items:center;gap:.8rem;
  background:var(--white);border-radius:10px;padding:.55rem .8rem;box-shadow:var(--shadow-sm);
}
.dropzone-file-name{flex:1;min-width:0;font-size:.9rem;font-weight:600;color:var(--ink);word-break:break-all}
.dropzone-file-size{font-size:.8rem;color:var(--grey);flex:none}
.dropzone-file-remove{
  flex:none;width:26px;height:26px;line-height:1;font-size:1.1rem;
  border:0;border-radius:50%;cursor:pointer;
  background:var(--cream-3);color:var(--ink);
  transition:background .2s var(--ease),color .2s var(--ease);
}
.dropzone-file-remove:hover{background:#b3261e;color:#fff}

/* preview image picker */
.preview-choices{display:grid;grid-template-columns:repeat(auto-fill,minmax(190px,1fr));gap:.9rem}
.preview-choice{
  position:relative;display:flex;flex-direction:column;align-items:center;gap:.5rem;
  min-width:0;margin-bottom:0;cursor:pointer;padding:.6rem;
  background:var(--cream);border:2px solid transparent;border-radius:12px;
  transition:border-color .25s var(--ease),background .25s var(--ease);
}
.preview-choice:hover{background:var(--berry-soft)}
.preview-choice:has(input:checked){border-color:var(--berry);background:var(--berry-soft)}
.preview-choice input[type="radio"]{position:absolute;top:.6rem;left:.6rem;accent-color:var(--berry)}
.preview-choice img{width:100%;height:120px;object-fit:cover;border-radius:8px}
.preview-choice-auto{
  display:flex;align-items:center;justify-content:center;
  width:100%;height:120px;border-radius:8px;background:var(--cream-3);
  font-size:.8rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--grey);
}
.preview-choice-label{
  font-size:.78rem;font-weight:600;color:var(--grey);text-align:center;
  /* min-width:0 keeps the flex item from growing to its text width and spilling out of the tile */
  width:100%;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}

@media(max-width:720px){
  .form-row-2{grid-template-columns:1fr}
  .event-grid{grid-template-columns:1fr}
  .subpage-section{padding-top:calc(clamp(4.5rem,9vw,8rem) + 40px)}
}

/* ============================================================
   OPENING HOURS ADMINISTRATION
   ============================================================ */
.visually-hidden{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip-path:inset(50%);white-space:nowrap;border:0;
}

.quick-actions{display:flex;flex-wrap:wrap;gap:.6rem;margin-bottom:1.6rem}
.admin-subhead{font-family:'Mulish';font-weight:700;font-size:1.15rem;margin:2.4rem 0 1rem}
.admin-hint{font-size:.92rem;color:var(--ink-soft);margin-bottom:1.4rem}

/* the weekly editor: one row per weekday, a fixed number of from/to pairs each */
.form-legend{font-size:.92rem;color:var(--ink-soft);margin-bottom:1.4rem}
.hours-editor{display:flex;flex-direction:column;gap:.6rem}
.hours-day{display:grid;grid-template-columns:8.5rem 1fr auto;gap:.9rem;align-items:center;
  background:var(--cream);border:1.5px solid var(--cream-3);border-radius:14px;padding:.7rem .9rem}
.hours-day.is-closed{background:var(--white)}
.hours-day-name{font-weight:700;font-size:.95rem}
.hours-day-slots{display:flex;flex-wrap:wrap;align-items:center;gap:.45rem 1.1rem}
.hours-slot{display:flex;align-items:center;gap:.4rem}
.hours-slot[hidden]{display:none}
.hours-slot .sep{color:var(--grey)}
.hours-day-actions{display:flex;align-items:center;gap:.7rem;justify-self:end}
.hours-day-flag{display:none;font-size:.66rem;font-weight:700;letter-spacing:.14em;
  text-transform:uppercase;color:var(--grey)}
.hours-day.is-closed .hours-day-flag{display:inline}

/* ============================================================
   LIGHTBOX
   ============================================================ */
body.lightbox-open{overflow:hidden}
.lightbox-overlay{
  position:fixed;inset:0;z-index:1000;
  display:flex;align-items:center;justify-content:center;
  background:rgba(33,26,30,.92);padding:clamp(1rem,5vw,3rem);
}
.lightbox-overlay[hidden]{display:none}
.lightbox-image{max-width:min(90vw,1100px);max-height:82vh;object-fit:contain;
  border-radius:8px;box-shadow:var(--shadow-md)}
.lightbox-counter{position:absolute;bottom:1.5rem;left:50%;transform:translateX(-50%);
  color:#fff;font-size:.85rem;letter-spacing:.04em;opacity:.85}
.lightbox-close,.lightbox-nav{
  position:absolute;background:rgba(255,255,255,.12);color:#fff;border:none;border-radius:999px;
  cursor:pointer;line-height:1;transition:background .2s,transform .2s;
}
.lightbox-close:hover,.lightbox-nav:hover{background:rgba(255,255,255,.24)}
.lightbox-close{top:1.2rem;right:1.2rem;width:2.6rem;height:2.6rem;font-size:1.6rem}
.lightbox-nav{top:50%;transform:translateY(-50%);width:3.2rem;height:3.2rem;font-size:2rem}
.lightbox-nav:hover{transform:translateY(-50%) scale(1.05)}
.lightbox-prev{left:1.2rem}
.lightbox-next{right:1.2rem}
@media(max-width:720px){
  .lightbox-nav{width:2.6rem;height:2.6rem;font-size:1.6rem}
}
/* the generic rule above stretches inputs to full width, which ruins the grid */
.form-card .hours-slot input[type="time"]{width:auto;min-width:6.6rem;text-align:center;
  padding:.5rem .6rem;background:var(--white)}
.form-card .hours-slot label{margin-bottom:0}

.btn-link{background:none;border:0;padding:0;font:inherit;font-size:.82rem;font-weight:700;
  color:var(--berry);cursor:pointer;text-decoration:underline;text-underline-offset:3px}
.btn-link:hover{color:var(--berry-dark)}
.btn-link-muted{color:var(--grey)}
.btn-link-muted:hover{color:var(--ink)}

/* first table component of the project */
.data-table{width:100%;border-collapse:collapse;background:var(--white);
  border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-sm);margin-bottom:2.2rem}
.data-table th,.data-table td{text-align:left;padding:.8rem 1rem;border-bottom:1px solid var(--cream-3);
  font-size:.95rem;vertical-align:top}
.data-table thead th{font-size:.68rem;letter-spacing:.14em;text-transform:uppercase;color:var(--grey);
  font-weight:700;background:var(--cream)}
.data-table tbody tr:last-child td{border-bottom:none}
.data-table tbody tr:hover{background:var(--cream)}
.data-table .cell-muted{color:var(--grey)}
.data-table .cell-actions{white-space:nowrap;text-align:right}
.data-table .cell-actions form{display:inline;margin:0}
.data-table .cell-actions .btn+form,.data-table .cell-actions .btn+.btn{margin-left:.4rem}
.table-empty{color:var(--ink-soft);background:var(--white);border-radius:var(--radius);
  box-shadow:var(--shadow-sm);padding:1.6rem;text-align:center;margin-bottom:2.2rem}
.badge-state{font-size:.66rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  padding:.2rem .55rem;border-radius:999px;background:var(--cream-2);color:var(--ink-soft)}
.badge-state.is-running{background:#e4f3ea;color:#1e6b3e}

/* the resolved preview that shows the owner what the entry actually does */
.preview-days{display:grid;grid-template-columns:repeat(auto-fill,minmax(128px,1fr));gap:.6rem}
.preview-day{background:var(--white);border:1.5px solid var(--cream-3);border-radius:12px;
  padding:.6rem .7rem;font-size:.84rem}
.preview-day.is-closed{background:var(--cream);border-style:dashed}
.preview-day.is-today{border-color:var(--berry);box-shadow:0 0 0 3px var(--berry-soft)}
.pd-date{font-weight:700;font-size:.74rem;letter-spacing:.06em;color:var(--berry);text-transform:uppercase}
.pd-times{display:block;color:var(--ink-soft);margin-top:.15rem;line-height:1.45}
.preview-day.is-closed .pd-times{font-style:italic}
.pd-reason{display:block;margin-top:.2rem;font-size:.74rem;color:var(--grey)}

@media(max-width:720px){
  .hours-day{grid-template-columns:1fr;gap:.5rem}
  .hours-day-actions{justify-self:start}
  /* rows turn into cards, the table would scroll sideways otherwise */
  .data-table,.data-table tbody,.data-table tr,.data-table td{display:block;width:100%}
  .data-table thead{display:none}
  .data-table tr{border-bottom:1px solid var(--cream-3);padding:.7rem 0}
  .data-table tr:last-child{border-bottom:none}
  .data-table td{border:none;padding:.2rem 1rem}
  .data-table td::before{content:attr(data-label) ": ";font-size:.66rem;font-weight:700;
    letter-spacing:.1em;text-transform:uppercase;color:var(--grey)}
  .data-table .cell-actions{text-align:left;padding-top:.7rem}
  .data-table .cell-actions::before{content:none}
}

/* ============================================================
   HOLIDAY APARTMENT
   ============================================================ */
.section-head h1{font-size:clamp(1.9rem,4.2vw,3rem);margin-bottom:1rem}
.apartment-facts{display:grid;grid-template-columns:repeat(auto-fit,minmax(120px,1fr));gap:1rem}
.apartment-facts .fact{background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow-sm);
  padding:1.4rem 1rem;text-align:center}
.apartment-facts .num{font-family:'Playfair Display',serif;font-size:1.9rem;color:var(--berry);font-weight:700;line-height:1}
.apartment-facts .lbl{font-size:.78rem;letter-spacing:.06em;text-transform:uppercase;color:var(--grey);font-weight:700;margin-top:.35rem}

.price-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem}
.price-card{background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow-sm);
  padding:2rem 1.8rem;text-align:center;transition:transform .25s,box-shadow .25s}
.price-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md)}
.price-guests{font-size:.78rem;letter-spacing:.06em;text-transform:uppercase;color:var(--grey);font-weight:700}
.price-amount{font-family:'Playfair Display',serif;font-size:2.2rem;color:var(--berry);font-weight:700;line-height:1;margin-top:.5rem}
.price-unit{font-size:.85rem;color:var(--ink-soft);margin-top:.3rem}

@media(max-width:960px){
  .price-grid{grid-template-columns:1fr 1fr}
}

@media(max-width:720px){
  .apartment-facts{grid-template-columns:repeat(2,1fr)}
  .price-grid{grid-template-columns:1fr}
}
