:root {
  --bg-dark: #0a0a0c;
  --bg-card: #121216;
  --text-light: #f4f4f6;
  --text-muted: #a0a0ab;
  --accent: #d4af37;
  --border: rgba(255, 255, 255, 0.1);
  --font-sans: 'DM Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: rgba(212, 175, 55, 0.3);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

button {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

body.nav-open {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  padding: 8px 14px;
  background: var(--text-light);
  color: var(--bg-dark);
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #f0dfa0);
  transition: width 0.1s linear;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 48px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition), backdrop-filter 0.3s ease;
}

.header--scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(18, 18, 22, 0.6);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--text-light);
  transition: var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: rgba(8, 8, 10, 0.97);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  opacity: 0.85;
  transition: var(--transition);
}

.mobile-nav a:hover {
  opacity: 1;
  color: var(--accent);
}

.brand__logo {
  height: 36px;
  width: auto;
  display: block;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.82;
  transition: var(--transition);
}

.header__nav a:hover {
  opacity: 1;
}

.header__nav a:not(.podcast-link) {
  position: relative;
  padding: 6px 0;
}

.header__nav a:not(.podcast-link)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__nav a:not(.podcast-link)[aria-current="true"] {
  opacity: 1;
}

.header__nav a:not(.podcast-link)[aria-current="true"]::after,
.header__nav a:not(.podcast-link):hover::after {
  transform: scaleX(1);
}

.podcast-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: rgba(18, 18, 22, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--text-light);
  text-decoration: none;
  opacity: 1;
  transition: var(--transition);
}

.podcast-link:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  opacity: 1;
}

.podcast-link__text {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  line-height: 1.2;
}

.podcast-link__text small {
  color: var(--text-muted);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.lang-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-select-wrap::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 13px;
  height: 13px;
  transform: translateY(-50%);
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a0a0ab' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c2.4 2.6 3.8 5.8 3.8 9s-1.4 6.4-3.8 9c-2.4-2.6-3.8-5.8-3.8-9s1.4-6.4 3.8-9z'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.lang-select-wrap:hover::before,
.lang-select-wrap:focus-within::before {
  opacity: 1;
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  height: 36px;
  min-width: 64px;
  padding: 0 22px 0 28px;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: rgba(18, 18, 22, 0.6) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a0a0ab' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 8px center / 12px 12px;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
}

.lang-select:hover {
  border-color: var(--accent);
  background-color: rgba(24, 24, 30, 0.8);
}

.lang-select:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.22);
}

.lang-select option {
  background: var(--bg-card);
  color: var(--text-light);
}

.lang-select-wrap--mobile {
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.lang-select-wrap--mobile::before {
  left: 13px;
}

.lang-select-wrap--mobile .lang-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lang-select-wrap--mobile .lang-select {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 60px;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  z-index: 1;
  filter: brightness(0.3) saturate(0.8);
}

@media (prefers-reduced-motion: reduce) {
  .hero__image {
    transform: none !important;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0.4) 0%, rgba(10,10,12,0.85) 100%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__content > * {
  animation: fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__eyebrow { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.15s; }
.hero p { animation-delay: 0.28s; }
.hero__cta { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .hero__content > * {
    animation: none;
  }
}

.hero__eyebrow, .section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero__eyebrow .dash, .section-label .dash {
  width: 24px;
  height: 1px;
  background-color: var(--accent);
  flex: 0 0 auto;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero h1 em, h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--text-muted);
}

.hero h1 em {
  display: block;
}

.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--text-light);
  color: var(--bg-dark);
  text-decoration: none;
  font-weight: 600;
  border-radius: 99px;
  transition: var(--transition);
}

.hero__cta:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.hero-slider {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 3;
  width: 264px;
}

.hero-slider__image {
  width: 100%;
  height: 124px;
  margin-bottom: 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transition: opacity 0.25s ease;
}

.hero-slider__image.is-changing {
  opacity: 0.35;
}

.hero-slider__bottom {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(18, 18, 22, 0.6);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.hero-slider__counter {
  font-family: var(--font-serif);
  font-size: 18px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.hero-slider__label {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  white-space: nowrap;
}

.hero__scroll {
  position: absolute;
  bottom: 48px;
  left: 48px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.hero__scroll i {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--accent), transparent);
}

.intro {
  position: relative;
  padding: 160px 48px;
  max-width: 1300px;
  margin: 0 auto;
}

.intro__number {
  position: absolute;
  top: 80px;
  right: 48px;
  font-family: var(--font-serif);
  font-size: clamp(100px, 15vw, 220px);
  color: rgba(255, 255, 255, 0.03);
  user-select: none;
}

.intro h2 {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 48px;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.intro__lead {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.4;
  font-weight: 500;
}

.intro__text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 16px;
}

.intro__text p strong {
  color: var(--text-light);
  font-weight: 600;
}

.intro__text .text-link {
  margin-top: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition: var(--transition);
}

.text-link:hover {
  border-color: var(--text-light);
  gap: 14px;
}

.gallery {
  padding: 100px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.gallery__header h2 {
  font-size: clamp(36px, 4vw, 56px);
}

.gallery__header p {
  color: var(--text-muted);
  max-width: 320px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.reveal {
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.reveal.is-visible {
  transform: none;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transform: none;
    opacity: 1;
    transition: none;
  }
}

.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transform: translateY(18px);
  opacity: 0.72;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease;
}

.gallery-card.is-visible {
  transform: none;
  opacity: 1;
}

.gallery-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(10,10,12,0.9) 0%, rgba(10,10,12,0) 100%);
  display: flex;
  align-items: center;
  gap: 16px;
}

.gallery-card figcaption span {
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}

.gallery-card--full {
  grid-column: 1 / -1;
}

.gallery-card--full img {
  height: 420px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 6, 8, 0.94);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__figure {
  position: relative;
  max-width: min(1100px, 90vw);
  max-height: 82vh;
  max-height: 82dvh;
  margin: 0;
  text-align: center;
}

.lightbox__image {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  max-height: 82dvh;
  border-radius: 10px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.is-open .lightbox__image {
  transform: scale(1);
}

.lightbox__figure figcaption {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(18, 18, 22, 0.7);
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.lightbox__close:hover,
.lightbox__nav:hover {
  border-color: var(--accent);
  background: rgba(212, 175, 55, 0.12);
}

.lightbox__close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 22px;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 20px;
  transform: translateY(-50%);
}

.lightbox__prev {
  left: 24px;
}

.lightbox__next {
  right: 24px;
}

@media (max-width: 700px) {
  .lightbox__nav {
    width: 42px;
    height: 42px;
  }

  .lightbox__prev { left: 10px; }
  .lightbox__next { right: 10px; }
  .lightbox__close { top: 14px; right: 14px; }
}

.closing {
  position: relative;
  padding: 180px 48px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.closing__background {
  position: absolute;
  inset: 0;
  background:
    url("../assets/photo3.webp") center / cover no-repeat;
}

.closing__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.72) 0%, rgba(10, 10, 12, 0.92) 100%);
}

.closing__content {
  position: relative;
  z-index: 1;
}

.section-label--light {
  justify-content: center;
}

.closing__content h2 {
  font-size: clamp(40px, 5vw, 72px);
  margin-bottom: 40px;
}

.closing__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: var(--text-light);
  color: var(--bg-dark);
  text-decoration: none;
  font-weight: 700;
  border-radius: 99px;
  transition: var(--transition);
}

.closing__button:hover {
  background: #ffffff;
  transform: scale(1.05);
}


.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social {
  display: flex;
  gap: 8px;
}

.social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: var(--transition);
}

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

.social svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social svg .dot {
  fill: currentColor;
  stroke: none;
}

.social svg .fill {
  fill: currentColor;
  stroke: none;
}

.footer__copyright {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: right;
}

.footer__credit {
  padding-left: 10px;
  border-left: 1px solid var(--border);
  letter-spacing: 0.02em;
  opacity: 0.75;
}

@media (max-width: 900px) {
  .header {
    padding: 18px 24px;
  }

  .header__nav a:not(.podcast-link) {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .podcast-link {
    padding: 8px 12px;
  }

  .hero {
    padding: 100px 24px 80px;
  }
  
  .intro,
  .gallery,
  .closing {
    padding: 80px 24px;
  }

  .intro__grid, .gallery__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery-card img, .gallery-card--full img {
    height: 360px;
  }

  .footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__copyright {
    flex-direction: column;
    gap: 6px;
  }

  .footer__credit {
    padding-left: 0;
    border-left: 0;
  }

  .hero-slider, .hero__scroll {
    display: none;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.9) 100%);
  }

  .gallery__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
  }

  .footer {
    text-align: center;
  }

  .footer__copyright {
    text-align: center;
  }

  .footer__brand {
    flex-direction: column;
    gap: 12px;
  }

  .social a {
    width: 44px;
    height: 44px;
  }

  .footer__credit {
    max-width: 30ch;
  }

  .mobile-nav a {
    padding: 6px 12px;
  }
}

@media (hover: none) {
  .gallery-card:hover img {
    transform: none;
  }

  .podcast-link:hover,
  .hero__cta:hover,
  .closing__button:hover {
    transform: none;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 42px;
  }

  .gallery-card img, .gallery-card--full img {
    height: 300px;
  }
}
.location {
  padding: 100px 48px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: stretch;
}

.location__content h2 {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 24px;
}

.location__address {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
}

.location__address strong {
  color: var(--text-light);
  font-size: 20px;
}

.location__map-container {
  position: relative;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.location__map {
  display: block;
  flex: 1;
  width: 100%;
  height: auto;
  min-height: 460px;
  filter: none;
}


@media (max-width: 900px) {
  .location {
    grid-template-columns: 1fr;
    padding: 80px 24px;
    gap: 32px;
  }

  .location__map {
    width: 100%;
    height: 320px;
    min-height: 320px;
  }
}

@media (hover: none) {
  .location__map {
    pointer-events: none;
  }
}

.activities {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 48px 100px;
}

.activities__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
}

.activities__header h2 {
  font-size: clamp(36px, 4vw, 56px);
}

.activities__header > p {
  max-width: 300px;
  color: var(--text-muted);
}

.activities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
}

.activity {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  min-height: 180px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.3s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.activity__number {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1;
  color: var(--accent);
}

.activity p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-light);
}

.activities__cta {
  margin-top: 40px;
}

.enroll {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 48px;
}

.enroll__header {
  margin-bottom: 48px;
}

.enroll__header h2 {
  font-size: clamp(36px, 4vw, 56px);
}

.enroll__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.enroll-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.enroll-card__step {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--accent);
}

.enroll-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

.enroll-card p {
  color: var(--text-muted);
  font-size: 16px;
}

.enroll-card .button {
  margin-top: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--text-light);
  border: 1px solid var(--text-light);
  border-radius: 99px;
  color: var(--bg-dark);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.button:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.button--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text-light);
}

.button--ghost:hover {
  background: transparent;
  border-color: var(--accent);
}

.location__note {
  font-size: 15px;
}

.hours,
.contacts {
  margin-top: 32px;
}

.hours h3 {
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.hours__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.hours__row:first-child {
  border-top: 1px solid var(--border);
}

.hours__row dt {
  color: var(--text-muted);
}

.hours__row dd {
  color: var(--text-light);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.hours__row.is-today dt {
  color: var(--text-light);
  font-weight: 600;
}

.hours__row.is-today dt::after {
  content: "oggi";
  margin-left: 10px;
  padding: 2px 8px;
  border: 1px solid var(--accent);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.contacts {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.contacts li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 15px;
}

.contacts li span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contacts a {
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  overflow-wrap: anywhere;
  transition: var(--transition);
}

.contacts a:hover {
  border-bottom-color: var(--accent);
}

@media (hover: hover) {
  .activity:hover {
    border-color: rgba(212, 175, 55, 0.5);
  }
}

@media (max-width: 1000px) {
  .activities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .activities,
  .enroll {
    padding: 60px 24px;
  }

  .activities__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
  }

  .enroll__grid {
    grid-template-columns: 1fr;
  }

  .enroll-card {
    padding: 28px;
  }

  .contacts li {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

@media (max-width: 600px) {
  .activities__grid {
    grid-template-columns: 1fr;
  }

  .activity {
    min-height: 0;
    gap: 20px;
  }
}
