/* Chouette — coming soon
   Colors & type from the Chouette brand identity proposal */

:root {
  /* Basis */
  --warm-ivory: #F8F4EF;
  --signature-blush: #EDD3D0;
  --red-bordeaux: #752721;
  /* Ondersteunend */
  --powder-rose: #D5AAA6;
  --oat-beige: #D8C9BB;
  --cocoa-taupe: #77645D;

  --font-sans: "Satoshi", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Playwrite FR Moderne", "Segoe Script", "Brush Script MT", cursive;

  --gutter: clamp(1.25rem, 4vw, 3rem);
}

*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  background-color: var(--signature-blush);
  color: var(--red-bordeaux);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Soft paper grain, like the printed "save the date" card */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .46 0 0 0 0 .15 0 0 0 0 .13 0 0 0 .09 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.page {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  padding:
    calc(env(safe-area-inset-top, 0px) + clamp(1.5rem, 4vw, 2.5rem))
    var(--gutter)
    /* leave room for the fixed bottom navigation */
    calc(env(safe-area-inset-bottom, 0px) + clamp(1rem, 3vh, 2rem) + 5.5rem);
}

/* Header ------------------------------------------------------------ */

.site-header {
  display: flex;
  justify-content: center;
}

.logo {
  display: block;
  width: clamp(10rem, min(30vw, 24vh), 16rem);
  color: var(--red-bordeaux);
}

.logo svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Hero -------------------------------------------------------------- */

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: clamp(.75rem, 2vh, 1.5rem);
}

.script {
  margin: 0;
  font-family: var(--font-script);
  font-weight: 300;
  line-height: 1.6;
}

.eyebrow {
  font-size: clamp(1.25rem, min(3.6vw, 3.6vh), 2.25rem);
  line-height: 1.4;
}

.title {
  margin-top: clamp(.75rem, 2.5vh, 1.75rem);
  font-size: clamp(1.75rem, min(7.2vw, 7vh), 4.25rem);
  font-weight: 200;
  line-height: 1.3;
}

.date {
  margin-top: clamp(.75rem, 2vw, 1.75rem);
  font-size: clamp(1.5rem, min(5.2vw, 5vh), 3.125rem);
  font-weight: 200;
  line-height: 1.35;
}

.intro {
  max-width: 34rem;
  margin: clamp(1.75rem, 4vh, 2.5rem) 0 0;
  color: var(--cocoa-taupe);
  font-size: clamp(.95rem, 1.6vw, 1.0625rem);
  font-weight: 400;
  text-wrap: balance;
}

/* Opening hours ----------------------------------------------------- */

.hours {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 26rem);
  margin: clamp(1.25rem, 3vh, 1.75rem) 0 0;
}

.hours__day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  padding-inline: .75rem;
}

.hours__day + .hours__day {
  border-left: 1px solid var(--powder-rose);
}

.hours dt {
  color: var(--cocoa-taupe);
  font-size: clamp(.8125rem, 1.4vw, .875rem);
  font-weight: 400;
  text-wrap: balance;
}

.hours dd {
  margin: 0;
  font-size: clamp(1.125rem, 2.2vw, 1.3125rem);
  font-weight: 400;
  white-space: nowrap;
}

/* Countdown --------------------------------------------------------- */

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 34rem);
  margin-top: clamp(1.75rem, 5vh, 2.75rem);
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding-inline: .5rem;
}

.countdown__unit + .countdown__unit {
  border-left: 1px solid var(--powder-rose);
}

.countdown__num {
  font-size: clamp(2.25rem, min(7vw, 5.5vh), 3.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  color: var(--cocoa-taupe);
  font-size: clamp(.625rem, 1.4vw, .75rem);
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  /* optically recentre text with trailing letter-spacing */
  margin-right: -.28em;
}

.countdown__done {
  display: none;
  grid-column: 1 / -1;
  font-size: clamp(1.6rem, 5vw, 2.75rem);
  font-weight: 200;
}

.countdown[data-countdown-status="finished"] .countdown__unit { display: none; }
.countdown[data-countdown-status="finished"] .countdown__done { display: block; }

/* Hand-drawn heart --------------------------------------------------- */

.heart {
  width: clamp(3.25rem, 7vw, 4.5rem);
  height: auto;
  margin-top: clamp(1.25rem, 3.5vh, 2.25rem);
  overflow: visible;
}

.heart__outline,
.heart__scribble {
  fill: none;
  stroke: var(--red-bordeaux);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.heart__outline { stroke-width: 3; }
.heart__scribble { stroke-width: 7; }

/* Tagline ----------------------------------------------------------- */

.tagline {
  margin: 1.25rem 0 0;
  color: var(--red-bordeaux);
  line-height: 0;
}

.tagline svg {
  display: block;
  width: clamp(7.5rem, 12vw, 9rem);
  height: auto;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.logo:focus-visible {
  outline: 1px solid var(--red-bordeaux);
  outline-offset: .35rem;
}

/* Bottom navigation (Osmo Expanding Bottom Navigation) --------------- */

[data-bottom-nav-init] {
  --closed-width: min(90vw, 15em);
  --open-width: min(92vw, 25.5em);
  --bar-height: 4em;
}

.bottom-nav {
  z-index: 100;
  position: fixed;
  bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(1rem, 3vh, 2em));
  left: 50%;
  transform: translate(-50%);
  font-size: 1rem;
}

.bottom-nav__inner {
  will-change: width, height;
  width: var(--closed-width);
  height: var(--bar-height);
  background-color: var(--warm-ivory);
  border: 1px solid var(--powder-rose);
  border-radius: 1.25em;
  box-shadow: 0 1em 3em -1.25em rgba(117, 39, 33, .3);
  flex-flow: column-reverse;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.bottom-nav__bar {
  width: 100%;
  height: var(--bar-height);
  flex: none;
  justify-content: space-between;
  align-items: center;
  padding: .5em .5em .5em 1.25em;
  display: flex;
  position: relative;
}

.bottom-nav__title {
  color: var(--red-bordeaux);
  font-family: var(--font-script);
  font-size: 1.0625em;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}

.bottom-nav__toggle {
  grid-column-gap: .25em;
  grid-row-gap: .25em;
  color: var(--warm-ivory);
  background-color: var(--red-bordeaux);
  border-radius: .875em;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 2.75em;
  height: 2.75em;
  padding: 0;
  display: flex;
  border: none;
  font: inherit;
  cursor: pointer;
  touch-action: manipulation;
}

.bottom-nav__toggle:focus-visible {
  outline: 2px solid var(--red-bordeaux);
  outline-offset: .2em;
}

.bottom-nav__toggle-bar {
  background-color: currentColor;
  flex: none;
  width: 1.25em;
  height: .1em;
  padding: 0;
  display: block;
}

.bottom-nav__panel {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  scrollbar-width: none;
  overscroll-behavior: contain;
  max-height: max(calc(100svh - 7em), 20rem);
  width: var(--open-width);
  flex-flow: column;
  flex: none;
  padding: 1em 1em .5em;
  display: flex;
  overflow-y: auto;
}

.bottom-nav__list {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
}

.bottom-nav__list-item {
  display: block;
}

.bottom-nav__divider {
  background-color: var(--powder-rose);
  width: calc(100% - 1em);
  height: 1px;
  flex: none;
  margin-inline: auto;
}

.bottom-nav__secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column-gap: 1.5em;
  padding-inline: .5em;
}

.bottom-nav__col {
  grid-column-gap: .25em;
  grid-row-gap: .25em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  min-width: 0;
}

.bottom-nav__label {
  color: var(--cocoa-taupe);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-family: var(--font-sans);
  font-size: .6875em;
  font-weight: 500;
  line-height: 1;
}

.bottom-nav__sublink {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--red-bordeaux);
  font-size: 1em;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  touch-action: manipulation;
}

.bottom-nav__sublink:hover,
.bottom-nav__sublink:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .25em;
}

/* Opening hours (Osmo Opening Hours Timetable) ------------------------ */

.opening-hours {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  color: var(--red-bordeaux);
  background-color: #fff;
  border: 1px solid rgba(117, 39, 33, .08);
  border-radius: 1.125em;
  box-shadow: 0 1px 2px rgba(117, 39, 33, .05);
  flex-flow: column;
  width: 100%;
  padding: 1em .5em .5em;
  display: flex;
}

.opening-hours__top {
  justify-content: space-between;
  align-items: center;
  padding-left: .75em;
  padding-right: .25em;
  display: flex;
}

.opening-hours__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.25;
}

.opening-hours__status {
  grid-column-gap: .4em;
  grid-row-gap: .4em;
  color: var(--cocoa-taupe);
  border-radius: 3em;
  justify-content: space-between;
  align-items: center;
  padding: .45em .75em .45em .625em;
  font-size: .875em;
  font-weight: 500;
  display: flex;
  position: relative;
}

[data-opening-hours-store-status="open"] .opening-hours__status {
  color: var(--red-bordeaux);
}

.opening-hours__status-bg {
  opacity: .1;
  background-color: currentColor;
  border-radius: 50em;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.opening-hours__status-dot {
  background-color: currentColor;
  border-radius: 50%;
  width: .625em;
  height: .625em;
  position: relative;
}

.opening-hours__timetable {
  grid-column-gap: .125em;
  grid-row-gap: .125em;
  flex-flow: column;
  display: flex;
}

.opening-hours__row {
  gap: 1em;
  color: var(--cocoa-taupe);
  border: 1px solid transparent;
  border-radius: 50em;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 2.5em;
  padding: .5em .75em;
  display: flex;
}

[data-opening-hours-current-day] {
  background-color: rgba(237, 211, 208, .55);
  border: 1px solid rgba(117, 39, 33, .06);
}

.opening-hours__day {
  display: flex;
  flex: none;
  align-items: center;
  gap: .5em;
  white-space: nowrap;
}

.opening-hours__time {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* one line per day: 10:00 - 12:00 · 14:00 - 18:00 */
.opening-hours__range {
  display: inline;
}

.opening-hours__range + .opening-hours__range::before {
  content: "· ";
}

.opening-hours__p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
}

.opening-hours__p.is--open {
  display: none;
}

[data-opening-hours-current-day] .opening-hours__p {
  font-weight: 500;
  color: var(--red-bordeaux);
}

.opening-hours__tag {
  display: none;
  padding: .3em .55em;
  border-radius: 50em;
  background-color: var(--signature-blush);
  color: var(--red-bordeaux);
  font-size: .625em;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

[data-opening-hours-special-day] .opening-hours__tag {
  display: inline-block;
}

[data-opening-hours-special-day] .opening-hours__time .opening-hours__p {
  color: var(--red-bordeaux);
}

/* Before the shop opens: "Binnenkort open" with a softly pulsing dot */
.opening-hours__p.is--upcoming {
  display: none;
}

[data-opening-hours-upcoming] .opening-hours__status {
  color: var(--red-bordeaux);
}

[data-opening-hours-upcoming] .opening-hours__status .opening-hours__p.is--closed {
  display: none;
}

[data-opening-hours-upcoming] .opening-hours__status .opening-hours__p.is--upcoming {
  display: block;
}

[data-opening-hours-upcoming] .opening-hours__status-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: currentColor;
}

@media (prefers-reduced-motion: no-preference) {
  [data-opening-hours-upcoming] .opening-hours__status-dot::after {
    animation: pulse 1.8s cubic-bezier(.2, .7, .2, 1) infinite;
  }
}

@keyframes pulse {
  from { transform: scale(1); opacity: .5; }
  to   { transform: scale(2.6); opacity: 0; }
}

[data-opening-hours-before-opening] .opening-hours__time .opening-hours__p {
  color: var(--cocoa-taupe);
  font-weight: 400;
}

[data-opening-hours-store-status="open"] .opening-hours__status .opening-hours__p.is--closed {
  display: none;
}

[data-opening-hours-store-status="open"] .opening-hours__status .opening-hours__p.is--open {
  display: block;
}

/* Contact rows ------------------------------------------------------ */

.contact-list {
  display: flex;
  flex-direction: column;
  gap: .25em;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: .875em;
  width: 100%;
  min-height: 3.25em;
  padding: .375em .5em;
  border: none;
  border-radius: .875em;
  background: transparent;
  color: var(--red-bordeaux);
  font: inherit;
  text-align: left;
  text-decoration: none;
  touch-action: manipulation;
  transition: background-color .2s ease;
}

a.contact-row,
button.contact-row {
  cursor: pointer;
}

.contact-row__icon {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  border-radius: .75em;
  background-color: var(--signature-blush);
  color: var(--red-bordeaux);
  transition: background-color .2s ease, color .2s ease;
}

.contact-row__icon svg {
  width: 1.25em;
  height: 1.25em;
  stroke-width: 1.5;
}

.contact-row__text {
  display: flex;
  flex-direction: column;
  gap: .15em;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.3;
}

.contact-row__sub {
  white-space: nowrap;
  color: var(--cocoa-taupe);
  font-size: .875em;
  font-weight: 400;
}

@media (hover: hover) {
  a.contact-row:hover,
  button.contact-row:hover {
    background-color: rgba(237, 211, 208, .45);
  }

  a.contact-row:hover .contact-row__icon,
  button.contact-row:hover .contact-row__icon,
  .follow__link:hover .contact-row__icon {
    background-color: var(--red-bordeaux);
    color: var(--warm-ivory);
  }
}

/* same bordeaux + ivory treatment as the menu toggle on press and keyboard focus */
a.contact-row:active .contact-row__icon,
button.contact-row:active .contact-row__icon,
.follow__link:active .contact-row__icon,
a.contact-row:focus-visible .contact-row__icon,
button.contact-row:focus-visible .contact-row__icon,
.follow__link:focus-visible .contact-row__icon {
  background-color: var(--red-bordeaux);
  color: var(--warm-ivory);
}

a.contact-row:focus-visible,
button.contact-row:focus-visible {
  outline: 2px solid var(--red-bordeaux);
  outline-offset: 1px;
}

/* Follow (Instagram / Facebook) ------------------------------------- */

.follow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  padding-inline: .5em;
}

.follow__text {
  white-space: nowrap;
  margin: 0;
  color: var(--cocoa-taupe);
  font-size: .9375em;
  font-weight: 400;
  line-height: 1.3;
}

.follow__list {
  display: flex;
  gap: .5em;
  margin: 0;
  padding: 0;
  list-style: none;
}

.follow__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border-radius: .875em;
  color: var(--red-bordeaux);
  touch-action: manipulation;
}

.follow__link .contact-row__icon {
  width: 2.75em;
  height: 2.75em;
}

.follow__link:focus-visible {
  outline: 2px solid var(--red-bordeaux);
  outline-offset: 2px;
}

/* Copy email (Osmo Copy Email to Clipboard Button) -------------------- */

.copy-email-text__wrap {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 1.3em;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.3;
  display: flex;
  overflow: hidden;
}

.copy-email-text__el {
  white-space: nowrap;
  font-size: 1em;
  transition: transform .45s cubic-bezier(.65, 0, 0, 1);
}

/* Hover styling */
@media (hover: hover) {
  .copy-email-button:hover .copy-email-text__el {
    transform: translate(0px, -100%);
  }
}

/* Keyboard focus styling */
.copy-email-button:focus {
  outline: none;
}
.copy-email-button:focus-visible {
  outline: 2px solid var(--red-bordeaux);
  outline-offset: 1px;
}
.copy-email-button:focus-visible .copy-email-text__el {
  transform: translate(0px, -100%);
}

/* 'Copied' state, when a user has clicked the button */
[data-copy-button="copied"] .copy-email-icon__wrap { background: var(--red-bordeaux) !important; color: var(--warm-ivory) !important; }
[data-copy-button="copied"] .copy-email-text__el { transform: translate(0px, -200%) !important; }

/* Wide but short screens (laptops): keep the menu bar clear of the centred content */
@media (min-width: 48rem) and (max-height: 850px) {
  .bottom-nav {
    left: auto;
    right: clamp(1rem, 2.5vw, 2rem);
    transform: none;
  }

  .page {
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(1rem, 3vh, 2rem));
  }
}

/* Opening hours header: title, today's hours (mobile) and accordion toggle */

.opening-hours__top {
  position: relative;
  gap: .75em;
}

.opening-hours__title {
  flex: 1;
  min-width: 0;
}

.opening-hours__toggle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .2em;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  cursor: default;
}

.opening-hours__toggle:focus { outline: none; }

.opening-hours__head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75em;
  width: 100%;
}

.opening-hours__title .opening-hours__status {
  font-size: .7em;
  letter-spacing: 0;
}

.opening-hours__today,
.opening-hours__chevron {
  display: none;
}

@media (max-width: 30rem) {
  [data-bottom-nav-init] {
    --open-width: min(calc(100vw - 1.5rem), 25.5em);
  }

  .bottom-nav__panel {
    grid-row-gap: 1.25em;
    max-height: max(calc(100svh - 6.5em), 20rem);
    padding: 1em .875em .5em;
  }

  .opening-hours {
    grid-row-gap: 0;
    padding: .375em;
  }

  .opening-hours__top {
    min-height: 3.5em;
    padding: .5em .5em .5em .75em;
  }

  .opening-hours__title { font-size: 1.125em; }

  .opening-hours__toggle { cursor: pointer; touch-action: manipulation; }

  /* whole header row is the tap target */
  .opening-hours__toggle::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: .875em;
    transition: background-color .2s ease;
  }

  .opening-hours__toggle:active::after { background-color: rgba(237, 211, 208, .35); }
  .opening-hours__toggle:focus-visible::after { outline: 2px solid var(--red-bordeaux); outline-offset: -2px; }

  .opening-hours__today {
    display: block;
    margin-top: .15em;
    white-space: nowrap;
    color: var(--cocoa-taupe);
    font-size: .6875em;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.35;
  }

  .opening-hours__chevron {
    display: block;
    flex: none;
    width: 1.25em;
    height: 1.25em;
    color: var(--red-bordeaux);
    transition: transform .65s cubic-bezier(.625, .05, 0, 1);
  }

  [data-hours-expanded="true"] .opening-hours__chevron { transform: rotate(180deg); }

  .opening-hours__body {
    height: 0;
    overflow: hidden;
  }

  .opening-hours__timetable { padding-top: .375em; }

  .opening-hours__row {
    gap: .5em;
    padding: .5em .5em .5em .625em;
    font-size: .9375em;
  }
}

@media (max-width: 23.5rem) {
  .bottom-nav__panel { padding-inline: .625em; }
  .opening-hours { padding: .25em; }
  .opening-hours__row {
    gap: .5em;
    padding-inline: .625em .5em;
    font-size: .875em;
  }
  .opening-hours__time { font-variant-numeric: normal; }
  .opening-hours__top { gap: .5em; }
}

@media (max-width: 21rem) {
  .bottom-nav__panel { padding-inline: .5em; }
  .opening-hours__row { font-size: .8125em; padding-inline: .5em .375em; }
  .opening-hours__tag { font-size: .5em; }
}

@media (max-width: 30rem) and (hover: hover) {
  .opening-hours__toggle:hover::after { background-color: rgba(237, 211, 208, .35); }
}

/* Short laptop screens: compact menu so all info fits without scrolling */
@media (min-width: 30.0625rem) and (max-height: 850px) {
  .bottom-nav__panel {
    grid-row-gap: .875em;
    max-height: max(calc(100svh - 6.5em), 20rem);
    padding: .75em .75em .25em;
  }

  .contact-list { gap: .125em; }

  .contact-row {
    gap: .75em;
    min-height: 2.75rem;
    padding: .25em .375em;
  }

  .contact-row__icon {
    width: 2.25em;
    height: 2.25em;
    border-radius: .625em;
  }

  .contact-row__icon svg {
    width: 1.125em;
    height: 1.125em;
  }

  .contact-row__text {
    gap: .1em;
    font-size: .9375em;
    line-height: 1.2;
  }

  .opening-hours {
    grid-row-gap: .5em;
    padding: .75em .375em .375em;
    border-radius: 1em;
  }

  .opening-hours__top { padding-left: .625em; }

  .opening-hours__title { font-size: 1.0625em; }

  .opening-hours__status {
    padding: .3em .625em .3em .5em;
    font-size: .75em;
  }

  .opening-hours__timetable { grid-row-gap: 0; }

  .opening-hours__row {
    min-height: 0;
    padding: .3125em .625em;
    font-size: .875em;
  }

  .opening-hours__tag { font-size: .5625em; }

  .follow { padding-inline: .375em; }
  .follow__text { font-size: .875em; }

  .follow__link .contact-row__icon {
    width: 2.5em;
    height: 2.5em;
  }

}

@media (max-width: 30rem) {
  .countdown__label {
    letter-spacing: .14em;
    margin-right: -.14em;
  }
}

@media (min-width: 30.0625rem) and (max-height: 600px) {
  .bottom-nav__panel {
    grid-row-gap: .5em;
    max-height: max(calc(100svh - 6em), 20rem);
  }
  .contact-row { padding-block: .125em; }
  .contact-row__icon { width: 2em; height: 2em; }
  .opening-hours { padding-top: .625em; grid-row-gap: .375em; }
  .opening-hours__row { padding-block: .25em; }
}

/* Entrance: handwriting "writes" itself, heart gets drawn ------------ */

@media (prefers-reduced-motion: no-preference) {
  .script:not(.countdown__done) {
    animation: write 1.4s cubic-bezier(.45, .05, .3, 1) both;
  }
  .eyebrow { animation-delay: .2s !important; }
  .title   { animation-delay: .9s !important; animation-duration: 1.8s !important; }
  .date    { animation-delay: 2.2s !important; }

  .logo,
  .intro,
  .hours,
  .countdown {
    animation: rise 1s cubic-bezier(.2, .7, .2, 1) both;
  }
  .logo        { animation-delay: 0s; }
  .countdown   { animation-delay: 3s; }
  .intro       { animation-delay: 3.2s; }
  .hours       { animation-delay: 3.35s; }

  .heart__outline,
  .heart__scribble {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: draw 1s ease-in-out forwards;
  }
  .tagline { animation: rise 1s cubic-bezier(.2, .7, .2, 1) 5.1s both; }
  .bottom-nav__inner { animation: fade 1s ease 3.5s both; }

  .heart__outline  { animation-delay: 3.5s; }
  .heart__scribble { animation-delay: 4.1s; animation-duration: 1.2s; }
}

@keyframes write {
  from { clip-path: inset(-30% 100% -50% -5%); }
  to   { clip-path: inset(-30% -5% -50% -5%); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(.75rem); }
  to   { opacity: 1; transform: none; }
}

@keyframes fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes draw {
  to { stroke-dashoffset: 0; }
}
