@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  /* Equora template kit palette */
  --equora-cream: #faf7f2;
  --equora-gold: #8c6a43;
  --equora-black: #000000;
  --equora-white: #ffffff;
  --equora-gray: #7a7a7a;
  --equora-gray-dark: #54595f;
  --equora-border: #0000001a;

  --background: var(--equora-cream);
  --foreground: var(--equora-black);
  --primary: var(--equora-black);
  --primary-foreground: var(--equora-white);
  --secondary: var(--equora-gold);
  --secondary-foreground: var(--equora-white);
  --muted: #f0ebe3;
  --muted-foreground: var(--equora-gray);
  --accent: var(--equora-gray-dark);
  --accent-foreground: var(--equora-white);
  --border: var(--equora-border);
  --dark: var(--equora-black);
  --font-sans: 'DM Sans', sans-serif;
  --font-serif: 'Lora', serif;
  --font-ui: 'DM Sans', sans-serif;
  --radius-pill: 30px;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2 {
  margin: 0;
  font-style: normal;
}

.heading-main,
.font-serif {
  font-family: var(--font-serif);
}

.listing-title,
.news-card h3,
.event-item h3,
.feature-card h3,
.profile-card h3,
.video-body h3,
.partnership-cta h3 {
  font-family: var(--font-ui);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.font-serif {
  font-family: var(--font-serif);
}

.font-ui {
  font-family: var(--font-ui);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader img {
  display: block;
  width: auto;
  height: 5.5rem;
  animation: preloader-pulse 1.4s ease-in-out infinite;
}

@keyframes preloader-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.72;
    transform: scale(0.96);
  }
}

/* Navbar */
.navbar-wrap {
  width: 100%;
  z-index: 50;
}

.top-bar {
  display: none;
  background: #111;
  color: var(--primary-foreground);
  font-size: 0.75rem;
  padding: 0.375rem 0;
}

@media (min-width: 1024px) {
  .top-bar {
    display: block;
  }
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-date {
  font-weight: 500;
  opacity: 0.9;
}

.top-bar-breaking {
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.05em;
  font-size: 0.6875rem;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-bar-social a {
  transition: color 0.2s;
}

.top-bar-social a:hover {
  color: var(--secondary);
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--primary);
  width: 100%;
  transition: all 0.3s;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
  padding: 0.875rem 0;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 16px rgb(0 0 0 / 0.35);
  padding: 0.625rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .header-inner {
    justify-content: space-between;
  }
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo img {
  display: block;
  height: 2rem;
  width: auto;
  max-width: min(11rem, 52vw);
}

@media (min-width: 768px) {
  .logo img {
    height: 2.375rem;
    max-width: none;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgb(255 255 255 / 0.82);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--secondary);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
  }
}

.header-actions .icon-btn {
  color: rgb(255 255 255 / 0.82);
}

.header-actions .icon-btn:hover {
  color: var(--secondary);
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.mobile-menu-toggle:active {
  transform: scale(0.98);
}

.mobile-menu-toggle.is-open {
  background: var(--secondary);
}

.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.625rem 1rem;
  padding-bottom: max(0.625rem, env(safe-area-inset-bottom));
  background: rgb(250 247 242 / 0.92);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgb(0 0 0 / 0.08);
}

@media (min-width: 1024px) {
  .mobile-bottom-bar {
    display: none;
  }
}

@media (max-width: 1023px) {
  .page {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom));
  }
}

.mobile-menu-toggle .mobile-menu-icon-close {
  display: none;
}

.mobile-menu-toggle.is-open .mobile-menu-icon-open {
  display: none;
}

.mobile-menu-toggle.is-open .mobile-menu-icon-close {
  display: inline-block;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.is-open .mobile-menu-overlay {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  bottom: calc(4.75rem + env(safe-area-inset-bottom));
  left: 0;
  right: 0;
  width: 100%;
  max-height: min(78vh, 34rem);
  background: var(--background);
  border-top: 1px solid var(--border);
  border-radius: 1.25rem 1.25rem 0 0;
  box-shadow: 0 -12px 40px rgb(0 0 0 / 0.18);
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1.25rem max(1.25rem, env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  overflow-y: auto;
}

.mobile-menu.is-open .mobile-menu-panel {
  transform: translateY(0);
}

.mobile-menu-handle {
  width: 2.75rem;
  height: 0.25rem;
  background: var(--border);
  border-radius: 999px;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}

.mobile-menu-search-form {
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

.mobile-menu-search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-menu-search-field {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  min-height: 3rem;
  padding: 0 1rem;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mobile-menu-search-field:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgb(140 106 67 / 0.12);
}

.mobile-menu-search-icon {
  flex-shrink: 0;
  color: var(--muted-foreground);
}

.mobile-menu-search-input {
  flex: 1;
  min-width: 0;
  padding: 0.875rem 0;
  background: transparent;
  border: none;
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  color: var(--foreground);
}

.mobile-menu-search-input::placeholder {
  color: var(--muted-foreground);
}

.mobile-menu-search-input:focus {
  outline: none;
}

.mobile-menu-search-input.is-invalid {
  color: var(--foreground);
}

.mobile-menu-search-form .field-error {
  color: #b45309;
  margin-top: 0.375rem;
  padding-left: 0.25rem;
}

.mobile-menu-search-field:has(.mobile-menu-search-input.is-invalid) {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgb(248 113 113 / 0.12);
}

.mobile-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  flex: 1;
}

.mobile-nav a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  padding: 1rem 0.75rem;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--muted);
  border-radius: 0.75rem;
  border: 1px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--secondary);
  background: rgb(140 106 67 / 0.08);
  border-color: rgb(140 106 67 / 0.2);
}

.mobile-menu-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding-top: 1.25rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.mobile-menu-social a {
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.mobile-menu-social a:hover {
  color: var(--secondary);
}

body.mobile-menu-open {
  overflow: hidden;
}

.icon-btn {
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.icon-btn:hover {
  color: var(--secondary);
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sm {
  width: 0.875rem;
  height: 0.875rem;
}

.icon-md {
  width: 1rem;
  height: 1rem;
}

.icon-lg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Hero — Cheval-inspired full-bleed slider */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero {
    min-height: 88vh;
  }
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease, transform 6s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgb(0 0 0 / 0.82) 0%, rgb(0 0 0 / 0.45) 45%, rgb(0 0 0 / 0.15) 100%),
    linear-gradient(to top, rgb(0 0 0 / 0.75) 0%, transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  min-height: inherit;
  padding-top: 3rem;
  padding-bottom: 8rem;
}

@media (min-width: 1024px) {
  .hero-inner {
    padding-bottom: 6rem;
  }
}

.hero-content {
  max-width: 42rem;
  animation: heroFadeUp 0.8s ease both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-kicker {
  display: inline-block;
  font-family: var(--font-ui);
  color: var(--secondary);
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgb(140 106 67 / 0.45);
  border-radius: var(--radius-pill);
  background: rgb(140 106 67 / 0.15);
  backdrop-filter: blur(6px);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 40px;
  color: #fff;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
  margin: 0 0 1.25rem;
}

.hero-desc {
  color: rgb(255 255 255 / 0.82);
  font-size: 0.9375rem;
  max-width: 36rem;
  margin: 0 0 1.75rem;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 1.0625rem;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
}

.hero-cta {
  box-shadow: 0 8px 24px rgb(140 106 67 / 0.35);
}

.hero-link {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid rgb(255 255 255 / 0.45);
  padding-bottom: 0.15rem;
  transition: color 0.2s, border-color 0.2s;
}

.hero-link:hover {
  color: var(--secondary);
  border-color: var(--secondary);
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255 255 255 / 0.85);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.hero-social a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}

.hero-floating-card {
  display: none;
  width: min(100%, 22rem);
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgb(255 255 255 / 0.15);
  background: rgb(255 255 255 / 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.25);
  grid-template-columns: 5.5rem 1fr;
  grid-template-areas:
    "label label"
    "thumb body";
  gap: 0.65rem 0.85rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-floating-card {
    display: grid;
  }
}

.hero-floating-label {
  grid-area: label;
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--secondary);
}

.hero-floating-thumb {
  grid-area: thumb;
  width: 5.5rem;
  height: 4.25rem;
  border-radius: 0.65rem;
  overflow: hidden;
}

.hero-floating-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-body {
  grid-area: body;
  min-width: 0;
}

.hero-floating-cat {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgb(255 255 255 / 0.65);
  display: block;
  margin-bottom: 0.35rem;
}

.hero-floating-title {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
  margin: 0 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-floating-link {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--secondary);
}

.hero-floating-link:hover {
  color: #fff;
}

.hero-stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgb(255 255 255 / 0.12);
  background: rgb(0 0 0 / 0.55);
  backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-stat {
  padding: 1rem 1.25rem;
  border-right: 1px solid rgb(255 255 255 / 0.08);
  text-align: center;
}

.hero-stat:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .hero-stat:nth-child(2) {
    border-right: none;
  }

  .hero-stat:nth-child(1),
  .hero-stat:nth-child(2) {
    border-bottom: 1px solid rgb(255 255 255 / 0.08);
  }
}

.hero-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero-stat span {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgb(255 255 255 / 0.65);
  letter-spacing: 0.02em;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 1rem;
  left: 50%;
  bottom: 5.75rem;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .hero-controls {
    flex-direction: column;
    left: auto;
    right: 2rem;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
}

.hero-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgb(255 255 255 / 0.25);
  background: rgb(0 0 0 / 0.35);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.hero-nav-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.hero-nav-btn span {
  display: none;
}

@media (min-width: 768px) {
  .hero-nav-btn span {
    display: inline;
  }
}

.hero-dots {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .hero-dots {
    flex-direction: column;
  }
}

.hero-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 0.45);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero-dot.is-active {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: scale(1.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark), rgb(0 0 0 / 0.8), transparent);
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .hero-overlay {
    padding: 2.5rem;
  }
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
  font-family: var(--font-ui);
  font-weight: 500;
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
  width: fit-content;
}

.btn-secondary:hover {
  background: var(--equora-white);
  color: var(--foreground);
}

/* Section headers */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.section-title-wrap {
  padding-left: 1rem;
  border-left: 4px solid var(--secondary);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  margin: 0;
}

.section-subtitle {
  color: var(--muted-foreground);
  margin: 0.5rem 0 0;
}

.link-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.8125rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .link-btn {
    display: flex;
  }
}

.link-btn:hover {
  color: var(--foreground);
}

.link-btn .icon {
  transition: transform 0.2s;
}

.link-btn:hover .icon {
  transform: translateX(4px);
}

/* Latest news */
.news-section {
  padding: 4rem 0 6rem;
  background: #fff;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-img-wrap {
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  position: relative;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.news-card:hover .news-img-wrap img {
  transform: scale(1.05);
}

.news-cat-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgb(255 255 255 / 0.95);
  padding: 0.25rem 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 0.05em;
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.news-date {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.news-card h3 {
  font-size: 1.0625rem;
  margin: 0 0 0.75rem;
  transition: color 0.2s;
}

.news-card:hover h3 {
  color: var(--secondary);
}

.news-excerpt {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-mobile-cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .news-mobile-cta {
    display: none;
  }
}

.btn-outline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  background: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-outline:hover {
  background: var(--muted);
}

/* Events */
.events-section {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 4rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.events-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: radial-gradient(#fff 2px, transparent 2px);
  background-size: 30px 30px;
}

.events-section .section-header {
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  padding-bottom: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .events-section .section-header {
    align-items: flex-end;
  }
}

.events-section .section-title,
.events-section .section-subtitle {
  color: #fff;
}

.events-section .section-subtitle {
  color: rgb(255 255 255 / 0.7);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .events-list {
    grid-column: span 5;
  }
}

.event-item {
  border: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(255 255 255 / 0.05);
  padding: 1.25rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s;
}

.event-item:hover {
  background: rgb(255 255 255 / 0.1);
}

.event-cat {
  font-family: var(--font-ui);
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.event-item h3 {
  font-size: 1.0625rem;
  color: #fff;
  margin: 0 0 1rem;
  transition: color 0.2s;
}

.event-item:hover h3 {
  color: var(--secondary);
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.8);
}

.event-meta-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-meta-row .icon {
  color: rgb(255 255 255 / 0.5);
}

.events-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .events-featured {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .events-featured {
    grid-column: span 7;
  }
}

.feature-card {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .feature-card {
    height: 100%;
    min-height: 300px;
  }
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.2);
  z-index: 10;
  transition: opacity 0.5s;
}

.feature-card:hover::before {
  opacity: 0;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.feature-card:hover img {
  transform: scale(1.05);
}

.feature-card .hero-overlay {
  padding: 1.5rem;
}

.feature-label {
  font-family: var(--font-ui);
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

/* Profiles */
.profiles-section {
  padding: 4rem 0 6rem;
  background: rgb(240 235 227 / 0.45);
  text-align: center;
}

.profiles-section > .container > p {
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.tabs {
  display: inline-flex;
  background: var(--background);
  border: 1px solid var(--border);
  padding: 0.25rem;
  border-radius: 0.5rem;
  margin-bottom: 3rem;
}

.tab-btn {
  font-family: var(--font-ui);
  padding: 0.625rem 1.5rem;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  background: transparent;
  color: var(--muted-foreground);
  transition: all 0.2s;
}

@media (min-width: 768px) {
  .tab-btn {
    padding: 0.625rem 2.5rem;
  }
}

.tab-btn:hover {
  color: var(--foreground);
}

.tab-btn.is-active {
  background: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.profiles-panels {
  min-height: 400px;
}

.profile-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 2rem;
  animation: fadeIn 0.3s ease;
}

.profile-panel.is-active {
  display: grid;
}

@media (min-width: 768px) {
  .profile-panel.is-active {
    grid-template-columns: repeat(3, 1fr);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-card {
  background: #fff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.profile-card:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.profile-avatar {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 4px solid var(--muted);
  padding: 0.25rem;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.5s;
}

.profile-card:hover .profile-avatar img {
  transform: scale(1.1);
}

.profile-discipline {
  font-family: var(--font-ui);
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.profile-card h3 {
  font-size: 1.0625rem;
  margin: 0 0 0.75rem;
}

.profile-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0;
}

/* Video gallery */
.video-section {
  background: var(--dark);
  color: #fff;
  padding: 4rem 0 6rem;
}

.video-section .section-header {
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  padding-bottom: 1.5rem;
}

.video-section .section-subtitle {
  color: rgb(255 255 255 / 0.6);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-card {
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  background: rgb(255 255 255 / 0.05);
  transition: background 0.2s;
}

.video-card:hover {
  background: rgb(255 255 255 / 0.1);
}

.video-thumb {
  position: relative;
  height: 13rem;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgb(140 106 67 / 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
}

.video-card:hover .play-btn {
  transform: scale(1.1);
}

.play-btn .icon {
  fill: var(--equora-white);
  stroke: none;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 4px;
}

.duration-badge {
  position: absolute;
  bottom: 0.5rem;
  right: 0.75rem;
  background: rgb(0 0 0 / 0.7);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}

.video-body {
  padding: 1rem;
}

.video-body h3 {
  font-size: 0.9375rem;
  color: #fff;
  margin: 0 0 0.5rem;
  transition: color 0.2s;
}

.video-card:hover .video-body h3 {
  color: var(--secondary);
}

.video-views {
  color: rgb(255 255 255 / 0.5);
  font-size: 0.75rem;
  margin: 0;
}

.gallery-label {
  font-family: var(--font-ui);
  font-weight: 500;
  color: var(--secondary);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  margin: 0 0 1.25rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 10rem;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
  background: transparent;
  transition: background 0.3s;
}

.gallery-item:hover .gallery-caption {
  background: rgb(0 0 0 / 0.4);
}

.gallery-caption span {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-caption span {
  opacity: 1;
}

/* Sponsors */
.sponsors-section {
  padding: 4rem 0 5rem;
  background: rgb(240 235 227 / 0.75);
}

.sponsors-header {
  text-align: center;
  margin-bottom: 3rem;
}

.sponsors-kicker {
  font-family: var(--font-ui);
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem;
}

.sponsors-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--foreground);
  margin: 0 0 0.75rem;
}

.sponsors-header p {
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto;
  font-size: 0.875rem;
  line-height: 1.625;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .sponsor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .sponsor-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.sponsor-card {
  border: 2px solid;
  border-radius: 0.5rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.sponsor-card:hover {
  transform: scale(1.05);
}

.sponsor-tier {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.sponsor-name {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.25;
}

.sponsor-platinum {
  border-color: #e5e4e2;
  background: rgb(229 228 226 / 0.1);
  color: #9a9694;
}

.sponsor-gold {
  border-color: var(--secondary);
  background: rgb(140 106 67 / 0.1);
  color: var(--secondary);
}

.sponsor-silver {
  border-color: #a8a9ad;
  background: rgb(168 169 173 / 0.1);
  color: #a8a9ad;
}

.sponsor-partner {
  border-color: var(--accent);
  background: rgb(84 89 95 / 0.1);
  color: var(--accent);
}

.partnership-cta {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  background: #fff;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.partnership-cta h3 {
  font-size: 1.0625rem;
  color: var(--foreground);
  margin: 0 0 0.5rem;
}

.partnership-cta p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0 0 1.25rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  color: var(--secondary-foreground);
  font-family: var(--font-ui);
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-primary:hover {
  background: var(--equora-white);
  color: var(--foreground);
}

/* Newsletter */
.newsletter-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
  padding: 4rem 0 6rem;
  text-align: center;
}

.newsletter-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: radial-gradient(#8c6a43 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

.newsletter-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .newsletter-inner {
    padding: 0 2rem;
  }
}

.newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgb(140 106 67 / 0.2);
  color: var(--secondary);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.newsletter-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  color: #fff;
  margin: 0 0 1rem;
}

.newsletter-success h3 {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 1.125rem;
  color: #fff;
  margin: 0;
}

.newsletter-section > .newsletter-inner > p {
  color: rgb(255 255 255 / 0.7);
  font-size: 1rem;
  max-width: 32rem;
  margin: 0 auto 2rem;
  line-height: 1.625;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 32rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.form-field {
  flex: 1;
  text-align: left;
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  background: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.2);
  color: #fff;
  font-size: 0.875rem;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgb(255 255 255 / 0.4);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--secondary);
}

.newsletter-form input[type="email"].is-invalid {
  border-color: #f87171;
}

.field-error {
  display: none;
  color: #fca5a5;
  font-size: 0.75rem;
  margin-top: 0.375rem;
}

.field-error.is-visible {
  display: block;
}

.newsletter-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: fadeIn 0.5s ease;
}

.newsletter-success.is-visible {
  display: flex;
}

.newsletter-success .icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--secondary);
  stroke: var(--secondary);
}

.newsletter-success h3 {
  font-weight: 600;
  font-size: 1.125rem;
  color: #fff;
  margin: 0;
}

.newsletter-success p {
  color: rgb(255 255 255 / 0.6);
  font-size: 0.875rem;
  margin: 0;
}

.newsletter-disclaimer {
  color: rgb(255 255 255 / 0.4);
  font-size: 0.75rem;
  margin-top: 1rem;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #fff;
}

.footer-inner {
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1.125rem;
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.footer-about p {
  color: rgb(255 255 255 / 0.6);
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0 0 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255 255 255 / 0.6);
  transition: color 0.2s, border-color 0.2s;
}

.footer-social a:hover {
  color: var(--secondary);
  border-color: var(--secondary);
}

.footer-col h4 {
  font-family: var(--font-ui);
  font-weight: 500;
  color: var(--secondary);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.625rem;
}

.footer-col a {
  color: rgb(255 255 255 / 0.6);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--secondary);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.6);
  margin-bottom: 1rem;
}

.footer-contact .icon {
  margin-top: 2px;
  flex-shrink: 0;
  color: rgb(140 106 67 / 0.75);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgb(255 255 255 / 0.4);
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a:hover {
  color: var(--secondary);
}

.hidden {
  display: none !important;
}


@media (max-width: 768px) {
  .hero-title {
    font-size: 30px;
  }
  .hero-inner {
    flex-direction: column-reverse;
    padding-bottom: 6rem;
  }
  .hero-controls {
    left: 20px;
    bottom: 50px;
    transform: none;
  }
}