*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --teal: #1a7a6d;
  --teal-d: #12655a;
  --teal-dd: #0b4e44;
  --teal-ddd: #07362f;
  --teal-l: #e6f5f1;
  --teal-ll: #f0faf7;
  --mint: #6699cc;
  --mint-soft: rgba(102, 153, 204, 0.1);
  --bg: #f7f6f3;
  --white: #fff;
  --ink: #0f0f0f;
  --ink2: #2a2a2a;
  --ink3: #555;
  --ink4: #888;
  --ink5: #bbb;
  --border: #e4e0da;
  --border-l: #eeebe6;
  --r: 1.4rem;
  --r-lg: 2.2rem;
  --r-xl: 2.8rem;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-hover:
    0 2.4rem 6rem rgba(0, 0, 0, 0.1), 0 0.8rem 2rem rgba(0, 0, 0, 0.04);
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: "Geom", sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── GRAIN ─── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.015'/%3E%3C/svg%3E");
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}

/* One font everywhere */
:root {
  --font: "Geom", sans-serif;
}
body,
button,
input,
textarea,
select {
  font-family: var(--font) !important;
}
.hero-title,
.sec-h h2,
.fc-body h3,
.l-body h3,
.bl-body h3,
.news-box h2 {
  font-family: var(--font) !important;
}

/* SHARED SECTIONS */

.sec-h {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 4rem;
}

.sec-h h2 {
  font-family: var(--font);
  font-size: 3.28rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  white-space: nowrap;
  line-height: 1.05;
}

.sec-h .bar {
  width: 4rem;
  height: 0.3rem;
  background: linear-gradient(90deg, var(--teal), var(--mint));
  border-radius: 0.2rem;
  flex-shrink: 0;
  margin-top: 1.8rem;
}

.sec-h .line {
  flex: 1;
  height: 0.1rem;
  background: var(--border);
  margin-top: 2rem;
}

.sec-h .more {
  white-space: nowrap;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: gap 0.3s var(--ease);
}

.sec-h .more:hover {
  gap: 1.4rem;
}

.sec-h h2::after {
  content: attr(data-sub);
  display: block;
  margin-top: 1rem;
  font-size: 1.376rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink4);
  line-height: 1.6;
}

/* Topbar */
.topbar {
  background: linear-gradient(
    135deg,
    rgba(7, 54, 47, 0.92) 0%,
    rgba(18, 101, 90, 0.92) 55%,
    rgba(26, 122, 109, 0.92) 100%
  );
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.08);
}
.topbar-in {
  max-width: 138rem;
  margin: 0 auto;
  padding: 1rem 4.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}
.tb-left {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.tb-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.12);
  border-radius: 99.9rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(1.2rem);
}
.tb-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 99.9rem;
  background: var(--mint);
  box-shadow: 0 0 1.4rem rgba(102, 153, 204, 0.6);
}
.tb-link {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.152rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 0.2rem;
  transition: color 0.2s;
}
.tb-link:hover {
  color: #fff;
}
.tb-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.tb-ico {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}
.tb-ico:hover {
  transform: translateY(-0.2rem);
  border-color: rgba(102, 153, 204, 0.35);
  color: var(--mint);
}

/******************************* HEADER *******************************/

header {
  background: linear-gradient(
    135deg,
    var(--teal) 0%,
    var(--teal-d) 60%,
    var(--teal) 100%
  );
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    800px 240px at 20% -20%,
    rgba(102, 153, 204, 0.28),
    transparent 60%
  );
}

.h-inner {
  max-width: 138rem;
  margin: 0 auto;
  padding: 0 4.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 7.2rem;
}

#logo img {
  max-width: 14rem;
}

.h-inner .center {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
}

.h-inner .center li {
  list-style: none;
}

.h-inner .center li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.152rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 2.6rem 1.5rem;
  position: relative;
  transition: color 0.3s;
}

.h-inner .center li a:hover {
  color: #fff;
}

.h-inner .center li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 0.2rem;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.h-inner .center li a:hover::after {
  transform: scaleX(1);
}

/****************** TICKER *******************************/

.ticker {
  background: var(--teal-ddd);
  overflow: hidden;
  white-space: nowrap;
  padding: 1rem 0;
}

.ticker-track {
  display: inline-flex;
  animation: tickerScroll 40s linear infinite;
}

.ticker-track span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.088rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 3.2rem;
}

.ticker-track span b {
  color: var(--mint);
  font-weight: 700;
  margin-right: 0.8rem;
}

.ticker-track span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.088rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 3.2rem;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* DATE */
.datebar {
  position: sticky;
  top: 7.2rem;
  z-index: 998;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(1.4rem);
  border-bottom: 0.1rem solid var(--border);
}

.datebar-in {
  max-width: 138rem;
  margin: 0 auto;
  padding: 0 4.8rem;
  display: flex;
  align-items: center;
  height: 6rem;
  gap: 1rem;
}

.datebar a {
  padding: 1rem 1.6rem;
  border-radius: 99.9rem;
  font-size: 1.376rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--ink3);
}

.datebar a:first-child {
  background: rgba(102, 153, 204, 0.14);
  color: var(--mint);
  border: 0.1rem solid rgba(102, 153, 204, 0.35);
}

.datebar .cal {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.248rem;
  background: var(--mint);
  color: #fff;
  border-color: transparent;
  border-radius: 99.9rem;
  padding: 1rem 1.8rem;
  font-weight: 900;
  box-shadow:
    0 1.8rem 4.6rem rgba(102, 153, 204, 0.22),
    0 0.8rem 1.8rem rgba(0, 0, 0, 0.08);
}

.datebar .spacer {
  flex: 1;
}

.search {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.2rem;

  border: 0.1rem solid var(--border);
  background: #fff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  min-width: 34rem;
}
.search svg {
  opacity: 0.55;
}

.search button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.search input {
  border: 0;
  background: transparent;
  outline: none;
  font-size: 1.312rem;
  font-weight: 700;
  color: var(--ink);
  width: 100%;
}

/***************** HERO *******************/

.hero {
  max-width: 138rem;
  margin: 0 auto;
  padding: 3.2rem 4.8rem 0;
}

.hero-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 54rem;
  cursor: pointer;
  background: #111;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition:
    transform 8s var(--ease),
    opacity 0.6s;
}

.hero-card:hover img {
  transform: scale(1.06);
  opacity: 0.5;
}

.hero-grad {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(11, 78, 68, 0.7) 0%, transparent 45%),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.35) 30%,
      transparent 60%
    );
}

.hero-inner {
  position: absolute;
  inset: 0;
  padding: 5.6rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-badges {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.hero-badges span {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 1.6rem;
  border-radius: 0.6rem;
}

.hb-cat {
  background: var(--mint);
  color: var(--teal-ddd);
}

.hb-top {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(1.6rem);
  border: 0.1rem solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.hero-title {
  font-family: var(--font);
  font-size: 5.12rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 72rem;
  margin-bottom: 1.8rem;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.44rem;
  line-height: 1.65;
  max-width: 52rem;
  font-weight: 300;
}

.hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.248rem;
  font-weight: 500;
}

.hero-date-float {
  position: absolute;
  top: 3.2rem;
  right: 3.2rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(2rem);
  border: 0.1rem solid rgba(255, 255, 255, 0.1);
  border-radius: 1.6rem;
  padding: 2rem 2.8rem;
  text-align: center;
}

.hero-date-float .d {
  font-size: 4.48rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.hero-date-float .m {
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.2rem;
}

.hero-date-float .y {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.2rem;
  font-weight: 400;
}
/** CATEGORIES */

.cats {
  max-width: 138rem;
  margin: 0 auto;
  padding: 2.8rem 4.8rem 1.8rem;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr) !important;
  grid-template-rows: 16rem 16rem;
  gap: 1.4rem !important;
  grid-auto-rows: 13rem !important;
  grid-auto-flow: dense;
}

.cat-grid .c:nth-child(1) {
  grid-row: span 2;
  grid-column: span 3;
}

.cat-grid .c:nth-child(4) {
  grid-column: span 3;
}

.c {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
}

.c img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: brightness(0.7);
}

.c:hover img {
  transform: scale(1.08);
  filter: brightness(0.55);
}

.c-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 2.2rem;
  transition: background 0.3s;
}

.c:hover .c-over {
  background: linear-gradient(
    0deg,
    rgba(11, 78, 68, 0.85) 0%,
    rgba(11, 78, 68, 0.3) 50%,
    transparent 100%
  );
}

.c-over h3 {
  color: #fff;
  font-weight: 700;
  font-size: 1.472rem;
  line-height: 1.25;
  margin-bottom: 0.2rem;
}

.c-over span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.088rem;
  font-weight: 500;
  transition: color 0.3s;
}

.c:hover .c-over span {
  color: var(--mint);
}

.c-arrow {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0.8rem);
  border: 0.1rem solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(0.4rem);
  transition: all 0.35s var(--ease);
}

.c:hover .c-arrow {
  opacity: 1;
  transform: translateY(0);
}

.cat-grid .c {
  grid-column: span 2;
}

.cat-grid .c:nth-child(6) {
  grid-column: span 3;
}

.cat-grid .c:nth-child(7) {
  grid-column: span 3;
}

.c-ico {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1rem);
  border: 0.1rem solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.35s var(--ease);
}

.c:hover .c-ico {
  transform: translateY(-0.2rem);
  border-color: rgba(102, 153, 204, 0.4);
  color: var(--mint);
  background: rgba(0, 0, 0, 0.14);
}

.cats .sec-h {
  margin-bottom: 1.6rem;
}

.cat-rail-wrap {
  position: relative;
}

.cat-rail {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.2rem 0.2rem 1.2rem;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 2.8rem,
    #000 calc(100% - 2.8rem),
    transparent 100%
  );
}

.cat-rail::-webkit-scrollbar {
  height: 0.8rem;
}

.cat-rail::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 99.9rem;
}

.cat-rail::-webkit-scrollbar-track {
  background: transparent;
}

.cat-tile {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 24rem;
  height: 13.2rem;
  border-radius: 2.2rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.6) 90%),
    var(--img) center/cover no-repeat;
  border: 0.1rem solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 1.4rem 4rem rgba(0, 0, 0, 0.08);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    filter 0.45s var(--ease);
}

.cat-tile:hover {
  transform: translateY(-0.6rem);
  box-shadow: 0 2.4rem 6rem rgba(0, 0, 0, 0.14);
  filter: saturate(1.05);
}

.cat-tile .ico {
  position: absolute;
  left: 1.4rem;
  top: 1.4rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border: 0.1rem solid rgba(255, 255, 255, 0.22);
  color: #fff;
  backdrop-filter: blur(1rem);
}

.cat-tile .meta {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  color: #fff;
}

.cat-tile h3 {
  font-size: 1.568rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cat-tile .count {
  font-size: 1.152rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.cat-tile .go {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 153, 204, 0.92);
  border: 0.1rem solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 1.6rem 4.6rem rgba(102, 153, 204, 0.22);
}

.cats .rail-ctrl {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.rail-btn {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 99.9rem;
  border: 0.1rem solid var(--border);
  background: #fff;
  color: var(--ink3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.rail-btn:hover {
  transform: translateY(-0.1rem);
  box-shadow: 0 1.8rem 4.4rem rgba(0, 0, 0, 0.08);
  border-color: rgba(102, 153, 204, 0.35);
}

.rail-btn:active {
  transform: translateY(-0.1rem);
}

.rail-btn:focus-visible {
  outline: 0.2rem solid var(--mint);
  outline-offset: 0.3rem;
}
