/* =========================================================
   DAYONE — the morning computer club
   Layout system:  B — narrow-880 (media bleed to 1080px)
   Spacing scale:  airy (128 / 72, 64 mobile)
   Palette: light #fbf7ef base, dark #2a2f3a spot, a1 #f59e0b, a2 #38bdf8
   Fonts: Epilogue 800 (display) / Assistant (body)
   Motif: sunrise arc + sun, daily checklist, rays, patch version
   ========================================================= */

:root {
  /* colours */
  --c-bg: #fbf7ef;
  --c-bg-dark: #2a2f3a;
  --c-ink: #2a2f3a;
  --c-ink-soft: #5b616e;
  --c-ink-inv: #fbf7ef;
  --c-a1: #f59e0b;   /* sun */
  --c-a2: #38bdf8;   /* morning sky */
  --c-line: rgba(42, 47, 58, 0.16);
  --c-card: #fffdf8;
  --c-card-warm: #fdf2df;

  /* type */
  --f-display: "Epilogue", "Segoe UI", system-ui, sans-serif;
  --f-body: "Assistant", "Segoe UI", system-ui, sans-serif;

  /* radius */
  --r-card: 16px;
  --r-pill: 999px;

  /* container */
  --w-container: 1080px;
  --w-bleed: 1240px;

  /* spacing scale — 8px step */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 56px;
  --s-sec: 128px;     /* airy section rhythm */
  --s-sec-in: 72px;
}

@media (max-width: 768px) {
  :root { --s-sec: 64px; --s-sec-in: 48px; }
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  overflow-x: hidden;
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }

h1, h2, h3 { font-family: var(--f-display); font-weight: 800; line-height: 1.08; margin: 0; }
p { margin: 0 0 var(--s-2); }

.u-visually-hidden, .u-skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.u-skip-link:focus {
  position: fixed; top: 8px; left: 8px; width: auto; height: auto;
  clip: auto; margin: 0; padding: 10px 16px; background: var(--c-ink);
  color: var(--c-ink-inv); border-radius: var(--r-pill); z-index: 200;
}

/* ---------- container helpers ---------- */
main { display: block; }
.s-hero, .s-dailies, .s-firsthour, .s-stations, .s-rates,
.s-log, .s-gallery, .s-faq, .s-form {
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: var(--s-3);
  padding-block: var(--s-sec);
}
.bleed-media {
  max-width: var(--w-bleed);
  margin-inline: auto;
}

/* ---------- shared type accents ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-1);
  font-family: var(--f-body); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  font-size: 12.5px; color: var(--c-a1);
  margin: 0 0 var(--s-2);
}
.eyebrow--inv { color: var(--c-a1); }
.ray {
  width: 22px; height: 10px; flex: 0 0 auto;
  background:
    linear-gradient(var(--c-a1), var(--c-a1)) 0 50% / 6px 2px no-repeat,
    linear-gradient(var(--c-a1), var(--c-a1)) 8px 50% / 6px 2px no-repeat,
    linear-gradient(var(--c-a1), var(--c-a1)) 16px 50% / 6px 2px no-repeat;
}
.h2-sun {
  font-size: clamp(28px, 4.5vw, 48px);
  margin-bottom: var(--s-3);
  position: relative;
}
.h2-sun::after {
  content: ""; display: inline-block;
  width: 12px; height: 12px; margin-left: 10px;
  border-radius: 50%; background: var(--c-a1);
  vertical-align: 0.08em;
}
.section-intro {
  font-size: 1.05rem; color: var(--c-ink-soft);
  max-width: 62ch; margin-bottom: var(--s-5);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s-1);
  font-family: var(--f-body); font-weight: 700; font-size: 1rem;
  padding: 12px 24px; border-radius: var(--r-pill);
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  position: relative; transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn--primary { background: var(--c-a1); color: #3a2a05; }
.btn--primary:hover { transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--c-ink); border-color: var(--c-line); }
.btn--ghost:hover { border-color: var(--c-a1); color: var(--c-a1); }
/* three rays peek from behind the primary button on hover */
.btn--primary::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  z-index: -1; opacity: 0; transform: scale(0.9);
  background:
    radial-gradient(4px 12px at 50% -6px, var(--c-a1) 60%, transparent 62%),
    radial-gradient(4px 12px at 20% -4px, var(--c-a1) 60%, transparent 62%),
    radial-gradient(4px 12px at 80% -4px, var(--c-a1) 60%, transparent 62%);
  transition: opacity .2s ease, transform .2s ease;
}
.btn--primary:hover::before { opacity: 0.55; transform: scale(1.04); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--c-bg) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease, padding .25s ease;
}
.nav.is-condensed {
  border-bottom-color: var(--c-line);
  background: color-mix(in srgb, var(--c-bg) 96%, transparent);
}
.nav__inner {
  max-width: var(--w-bleed); margin-inline: auto;
  display: flex; align-items: center; gap: var(--s-3);
  padding: 14px var(--s-3);
}
.nav.is-condensed .nav__inner { padding-block: 9px; }
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--c-ink);
}
.nav__word { font-family: var(--f-display); font-weight: 800; font-size: 1.25rem; letter-spacing: 0.02em; }
.nav__badge {
  font-family: var(--f-body); font-weight: 700; font-size: 10.5px;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--c-ink); background: var(--c-card-warm);
  padding: 4px 10px; border-radius: var(--r-pill);
}
.nav__links {
  margin-left: auto;
  display: flex; align-items: center; gap: var(--s-3);
}
.nav__links a {
  text-decoration: none; font-weight: 600; color: var(--c-ink);
  position: relative; padding-bottom: 2px;
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--c-a1); transition: right .22s ease;
}
.nav__links a:not(.nav__cta):hover::after,
.nav__links a.is-current::after { right: 0; }
.nav__cta { padding: 8px 18px; }

.nav__toggle {
  display: none; margin-left: auto; width: 42px; height: 42px;
  border: 1px solid var(--c-line); border-radius: 12px;
  background: var(--c-card); cursor: pointer; position: relative;
}
.nav__toggle-bar, .nav__toggle-bar::before, .nav__toggle-bar::after {
  content: ""; position: absolute; left: 11px; width: 20px; height: 2px;
  background: var(--c-ink); transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle-bar { top: 20px; }
.nav__toggle-bar::before { top: -6px; }
.nav__toggle-bar::after { top: 6px; }

/* sun-on-arc progress */
.nav__progress { position: relative; height: 6px; }
.nav__progress svg { width: 100%; height: 12px; position: absolute; top: -3px; left: 0; }
.nav__sun {
  position: absolute; top: -1px; left: 0;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--c-a1);
  transform: translate(-50%, -50%);
  offset-path: path("M2,11 Q50,-6 98,11");
  offset-distance: 0%;
  will-change: offset-distance;
}
/* fallback if offset-path unsupported: sun rides left edge, still visible */

/* =========================================================
   HERO
   ========================================================= */
.s-hero {
  display: grid; gap: var(--s-6);
  padding-top: var(--s-sec-in);
  align-items: center;
}
.s-hero__text { max-width: 44ch; }
#hero-title {
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-3);
}
.s-hero__lead { font-size: 1.15rem; color: var(--c-ink-soft); margin-bottom: var(--s-4); }
.s-hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-5); }
.s-hero__facts {
  list-style: none; margin: 0; padding: var(--s-3) 0 0;
  display: flex; flex-wrap: wrap; gap: var(--s-4);
  border-top: 1px solid var(--c-line);
}
.s-hero__facts li { font-size: 0.95rem; color: var(--c-ink-soft); }
.s-hero__facts strong { display: block; font-family: var(--f-display); font-size: 1.35rem; color: var(--c-ink); }

.s-hero__media {
  position: relative; border-radius: var(--r-card); overflow: hidden;
}
.s-hero__media img {
  width: 100%; height: auto;
  filter: brightness(1.06) saturate(1.03);
}
/* sunrise arc overlay */
.hero-arc { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-arc__svg { width: 100%; height: 100%; }
.hero-arc__sky { opacity: 0.28; mix-blend-mode: screen; }
.hero-arc__track { opacity: 0.55; }
.hero-arc__sun { filter: drop-shadow(0 0 10px rgba(245,158,11,0.7)); }
.hero-arc__rays { opacity: 0; transform-box: fill-box; transform-origin: center; }

/* =========================================================
   DIVIDER (sunrise arc line)
   ========================================================= */
.divider {
  max-width: var(--w-container); margin-inline: auto;
  padding-inline: var(--s-3);
  display: flex; justify-content: center;
}
.divider__arc {
  display: block; width: 220px; height: 34px;
  border-top: 1.5px solid var(--c-line);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  position: relative;
}
.divider__arc::after {
  content: ""; position: absolute; top: -6px; left: 50%;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--c-a1); transform: translateX(-50%);
}

/* =========================================================
   DAILIES
   ========================================================= */
.daily-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
.daily-card {
  display: flex; gap: var(--s-3); align-items: flex-start;
  background: var(--c-card-warm); border-radius: var(--r-card);
  padding: var(--s-4);
  transition: background .5s ease;
}
.daily-card.is-checked { background: color-mix(in srgb, var(--c-a1) 12%, var(--c-card-warm)); }
.daily-card__box {
  flex: 0 0 auto; width: 30px; height: 30px; margin-top: 4px;
  border: 2px solid var(--c-a1); border-radius: 8px; position: relative;
}
.daily-card__box::after {
  content: ""; position: absolute; left: 8px; top: 3px;
  width: 8px; height: 15px;
  border-right: 3px solid var(--c-a1); border-bottom: 3px solid var(--c-a1);
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform .35s ease;
}
.daily-card.is-checked .daily-card__box::after { transform: rotate(45deg) scale(1); }
.daily-card__time {
  display: inline-block; font-family: var(--f-display); font-weight: 800;
  color: var(--c-a1); font-size: 0.95rem; margin-bottom: 4px;
}
.daily-card__body h3 { font-size: 1.25rem; margin-bottom: 6px; }
.daily-card__body p { margin: 0; color: var(--c-ink-soft); }

/* =========================================================
   FIRST HOUR (dark predawn section)
   ========================================================= */
.s-firsthour {
  background: var(--c-bg-dark); color: var(--c-ink-inv);
  max-width: none; padding-inline: 0;
  filter: brightness(0.9);
  transition: filter 1.2s ease;
}
.s-firsthour.is-lit { filter: brightness(1); }
.s-firsthour__grid {
  max-width: var(--w-bleed); margin-inline: auto;
  padding-inline: var(--s-3);
  display: grid; gap: var(--s-6); align-items: center;
}
.s-firsthour__media { margin: 0; border-radius: var(--r-card); overflow: hidden; }
.s-firsthour__media img { width: 100%; filter: brightness(1.04); }
.s-firsthour__text .eyebrow { color: var(--c-a1); }
.s-firsthour__text h2 { font-size: clamp(26px, 4vw, 42px); margin-bottom: var(--s-3); }
.s-firsthour__text p { color: color-mix(in srgb, var(--c-ink-inv) 82%, transparent); }
.s-firsthour .h2-sun::after { background: var(--c-a1); }

/* =========================================================
   STATIONS
   ========================================================= */
.s-stations__band { margin: 0 0 var(--s-6); border-radius: var(--r-card); overflow: hidden; position: relative; }
.s-stations__band img { width: 100%; filter: brightness(1.05) saturate(1.02); }
.s-stations__band::after {
  content: ""; position: absolute; left: 8%; right: 8%; bottom: 14px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-a1), transparent);
  opacity: 0.8;
}
.feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4);
}
.feature { padding-top: var(--s-2); border-top: 2px solid var(--c-a1); }
.feature h3 { font-size: 1.2rem; margin-bottom: 6px; }
.feature p { margin: 0; color: var(--c-ink-soft); }

/* =========================================================
   RATES
   ========================================================= */
.rate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.rate-card {
  background: var(--c-card); border-radius: var(--r-card);
  padding: var(--s-4);
  display: flex; flex-direction: column; gap: var(--s-2);
}
.rate-card--feature { background: var(--c-card-warm); position: relative; overflow: hidden; }
.rate-card--feature::before {
  content: ""; position: absolute; top: -30px; right: -30px;
  width: 90px; height: 90px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.35), transparent 70%);
}
.rate-card__flag {
  align-self: flex-start; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-a1);
}
.rate-card h3 { font-size: 1.4rem; }
.rate-card__price { font-family: var(--f-display); font-weight: 800; color: var(--c-ink); margin: 0; }
.rate-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.rate-card li { position: relative; padding-left: 22px; color: var(--c-ink-soft); font-size: 0.96rem; }
.rate-card li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c-a2);
}

/* =========================================================
   SUNRISE LOG
   ========================================================= */
.log-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-4); }
.log-item {
  padding-left: var(--s-4); position: relative;
  border-left: 2px solid var(--c-line);
}
.log-item::before {
  content: ""; position: absolute; left: -7px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--c-a1);
}
.log-item__stamp {
  display: inline-block; font-family: var(--f-display); font-weight: 800;
  font-size: 0.9rem; color: var(--c-a2); margin-bottom: 4px;
}
.log-item h3 { font-size: 1.2rem; margin-bottom: 6px; }
.log-item p { margin: 0; color: var(--c-ink-soft); }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.gallery-item { margin: 0; border-radius: var(--r-card); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; filter: brightness(1.06) saturate(1.03); }
.gallery-item figcaption {
  position: absolute; left: 10px; bottom: 10px;
  font-family: var(--f-display); font-weight: 800; font-size: 0.85rem;
  color: #fff; background: rgba(42,47,58,0.7);
  padding: 3px 10px; border-radius: var(--r-pill);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { display: grid; gap: var(--s-2); }
.faq-item {
  background: var(--c-card); border-radius: var(--r-card);
  padding: var(--s-3) var(--s-4);
}
.faq-item summary {
  cursor: pointer; font-family: var(--f-display); font-weight: 800;
  font-size: 1.12rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-2);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: 0 0 auto; width: 16px; height: 16px;
  border-right: 2px solid var(--c-a1); border-bottom: 2px solid var(--c-a1);
  transform: rotate(45deg); transition: transform .2s ease; margin-top: -4px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq-item p { margin: var(--s-2) 0 0; color: var(--c-ink-soft); }

/* =========================================================
   FORM
   ========================================================= */
.lead-form {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3);
  background: var(--c-card-warm); border-radius: var(--r-card);
  padding: var(--s-5);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 700; font-size: 0.92rem; }
.field input, .field select {
  font-family: var(--f-body); font-size: 1rem; color: var(--c-ink);
  padding: 12px 14px; border-radius: 12px;
  border: none; background: var(--c-card);
  border-bottom: 2px solid var(--c-line);
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus {
  outline: none; border-bottom-color: var(--c-a1);
}
.lead-form__submit { grid-column: 1 / -1; justify-self: start; margin-top: var(--s-1); }
.lead-form__status { grid-column: 1 / -1; margin: 0; font-weight: 600; }
.lead-form__status.success { color: #1f7a3d; }
.lead-form__status.error { color: #b23b1e; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--c-bg-dark); color: var(--c-ink-inv);
  margin-top: var(--s-sec);
}
.footer__inner {
  max-width: var(--w-bleed); margin-inline: auto;
  padding: var(--s-sec-in) var(--s-3);
}
.footer__word { font-family: var(--f-display); font-weight: 800; font-size: 1.6rem; text-decoration: none; color: var(--c-ink-inv); }
.footer__tag { color: color-mix(in srgb, var(--c-ink-inv) 70%, transparent); margin-top: 6px; }
.footer__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5);
  margin: var(--s-6) 0;
  padding-top: var(--s-5); border-top: 1px solid rgba(251,247,239,0.16);
}
.footer__heading { font-size: 1rem; margin-bottom: var(--s-2); color: var(--c-a1); }
.footer__col a, .footer__col p, .footer__contact address {
  display: block; text-decoration: none;
  color: color-mix(in srgb, var(--c-ink-inv) 82%, transparent);
  font-style: normal; margin: 0 0 8px; line-height: 1.5;
}
.footer__col a:hover { color: var(--c-a1); }
.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-3);
  justify-content: space-between;
  padding-top: var(--s-4); border-top: 1px solid rgba(251,247,239,0.16);
}
.footer__disclaimer {
  margin: 0; font-weight: 700; color: var(--c-ink-inv);
  flex: 1 1 100%;
}
.footer__legal { margin: 0; display: flex; gap: 10px; align-items: center; }
.footer__legal a { text-decoration: none; color: color-mix(in srgb, var(--c-ink-inv) 82%, transparent); }
.footer__legal a:hover { color: var(--c-a1); }
.footer__patch {
  margin: 0; font-family: var(--f-display); font-weight: 800;
  color: var(--c-a2); letter-spacing: 0.04em;
}

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.legal .daily-card__body-h { font-size: 1.25rem; margin: 0 0 8px; }
.legal .daily-card { align-items: flex-start; }

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%);
  z-index: 150; width: min(680px, calc(100% - 24px));
  background: var(--c-card); color: var(--c-ink);
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  padding: var(--s-3) var(--s-4);
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-3);
  justify-content: space-between;
  animation: cookieRise .35s ease both;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__text { margin: 0; font-size: 0.95rem; flex: 1 1 300px; }
.cookie-banner__text a { color: var(--c-a1); font-weight: 700; }
.cookie-banner__actions { flex: 0 0 auto; }
.cookie-banner__btn { padding: 10px 22px; }
@keyframes cookieRise { from { opacity: 0; transform: translate(-50%, 12px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 861px) {
  .s-firsthour__grid { grid-template-columns: 0.9fr 1.1fr; }
  /* hero split: media on the left, text on the right */
  .s-hero { grid-template-columns: 1.05fr 0.95fr; }
  .s-hero__media { order: 1; }
  .s-hero__text { order: 2; }
}
@media (max-width: 860px) {
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--c-bg); border-bottom: 1px solid var(--c-line);
    padding: var(--s-2) var(--s-3);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 12px 4px; }
  .nav__cta { margin-top: var(--s-1); }
  .nav__toggle { display: block; }
  .nav__badge { display: none; }
}
@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
  .rate-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .lead-form { grid-template-columns: 1fr; padding: var(--s-4); }
  .footer__cols { grid-template-columns: 1fr; gap: var(--s-4); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   REDUCED MOTION — kill everything decorative
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .daily-card.is-checked .daily-card__box::after { transform: rotate(45deg) scale(1); }
  .hero-arc__rays { opacity: 0.6; }
  .s-firsthour { filter: brightness(1); }
}
