/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #FAF7F2;
  --dark: #2A1810;
  --dark-deep: #1A0F0A;
  --gold: #C9A962;
  --gold-muted: #C9A96260;
  --gold-light: #C9A96220;
  --red: #8B2E2E;
  --text: #4A3A2C;
  --text-muted: #6B5D4F;
  --text-light: #9A8878;
  --border: #E8DDD0;
  --cream: #F0EAE0;
  --cream-dark: #D4C8B8;
  --border-dark: #3D2A1E;
  --footer-text: #FFFFFF;
  --white: #FAF7F2;
  --pure-white: #FFFFFF;
  --heading: 'Poppins', sans-serif;
  --body: 'Inter', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(42,24,16,0.06), 0 1px 2px rgba(42,24,16,0.04);
  --shadow-md: 0 4px 16px rgba(42,24,16,0.08), 0 2px 6px rgba(42,24,16,0.04);
  --shadow-lg: 0 12px 40px rgba(42,24,16,0.1), 0 4px 12px rgba(42,24,16,0.06);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 80px;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Uniform spacing between page blocks */
#main-content {
  padding-bottom: clamp(48px, 5vw, 64px);
}
/* Blocks WITHOUT background (content blocks) — use uniform margin */
#main-content > .image-text-section:not(.image-text-section--band),
#main-content > .intro-center,
#main-content > .detail-content,
#main-content > .listing-section,
#main-content > .contact-body,
#main-content > .events-body {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: clamp(48px, 5vw, 64px);
  margin-bottom: clamp(48px, 5vw, 64px);
}
#main-content > :first-child {
  margin-top: 0;
}
#main-content > :last-child {
  margin-bottom: 0;
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--dark);
  color: var(--white);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.skip-link:focus { top: 0; }

*:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
*:focus:not(:focus-visible) { outline: none; }

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

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 32px);
  height: var(--header-h);
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  max-width: 100%;
}

.header.scrolled {
  background: rgba(250, 247, 242, 0.95);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-logo img {
  max-height: 56px;
  width: auto;
  transition: transform var(--transition);
}
.header-logo:hover img { transform: scale(1.03); }

.header-logo .material-symbols-outlined {
  font-size: 30px;
  color: var(--red);
}

.header-logo span {
  font-family: var(--heading);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--dark);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
}

.header-nav > a,
.header-nav .nav-dropdown-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
  padding: 8px 0;
}

.header-nav > a::after,
.header-nav .nav-dropdown-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
  border-radius: 1px;
}

.header-nav > a:hover::after,
.header-nav > a.active::after,
.header-nav .nav-dropdown-link:hover::after,
.header-nav .nav-dropdown-link.active::after {
  width: 100%;
}

.header-nav > a:hover,
.header-nav > a.active,
.header-nav .nav-dropdown-link:hover,
.header-nav .nav-dropdown-link.active {
  color: var(--red);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--dark);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.menu-toggle:hover { background: var(--gold-light); }
.menu-toggle .material-symbols-outlined { font-size: 28px; }

/* Nav Dropdowns */
.nav-dropdown { position: relative; }
.nav-dropdown-link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
}
.nav-dropdown-arrow {
  font-size: 18px;
  transition: transform var(--transition);
}
.nav-dropdown:hover .nav-dropdown-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--pure-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  z-index: 200;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(4px);
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover {
  background: var(--cream);
  color: var(--dark);
}
.nav-dropdown-menu li a.active {
  color: var(--red);
  font-weight: 500;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}
.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139,46,46,0.3);
}
.btn-cta .material-symbols-outlined { font-size: 16px; }

/* Language Dropdown */
.lang-dropdown { position: relative; }
.lang-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: border-color var(--transition), background var(--transition);
  min-height: 38px;
}
.lang-dropdown-toggle:hover {
  border-color: var(--gold);
  background: var(--cream);
}
.lang-flag { font-size: 18px; line-height: 1; }
.lang-code { letter-spacing: 0.5px; }
.lang-arrow {
  font-size: 18px;
  transition: transform var(--transition);
}
.lang-dropdown.is-open .lang-arrow { transform: rotate(180deg); }
.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  background: var(--pure-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 4px;
  z-index: 200;
  list-style: none;
}
.lang-dropdown.is-open .lang-dropdown-menu { display: block; }
.lang-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  text-decoration: none;
  min-height: 44px;
}
.lang-dropdown-menu li a:hover { background: var(--cream); }

/* ===== HERO (Landing) ===== */
.hero {
  position: relative;
  height: clamp(480px, 80vh, 800px);
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(42,24,16,.55) 0%,
    rgba(42,24,16,.25) 40%,
    rgba(42,24,16,.5) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  max-width: 680px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,169,98,.2);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  width: fit-content;
  border-radius: 100px;
  border: 1px solid rgba(201,169,98,.25);
}

.hero-tag span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #E8D5B0;
}

.hero-title {
  font-family: var(--heading);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: #E8D5B0;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 20px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 52px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,98,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 16px 32px;
  border: 1px solid var(--gold-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  min-height: 52px;
}
.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

/* ===== PAGE HERO (Detail pages) ===== */
.page-hero {
  position: relative;
  height: clamp(280px, 30vh, 420px);
  overflow: hidden;
}

.page-hero .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,24,16,.75) 0%, rgba(42,24,16,.4) 100%);
}

.page-hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.breadcrumb {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gold);
}
.breadcrumb a {
  color: var(--gold);
  transition: opacity var(--transition);
}
.breadcrumb a:hover { opacity: 0.7; }

.page-hero-title {
  font-family: var(--heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  color: var(--white);
  line-height: 30px;
  font-size: 40px;

}

.page-hero-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: #E8D5B0;
  max-width: 600px;
}

/* Hero Bar */
.hero-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--dark);
  padding: clamp(40px, 6vw, 80px) 0;
  text-align: center;
}
.hero-bar .breadcrumb { text-align: center; }

.hero-bar-title {
  font-family: var(--heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--white);
}

.hero-bar-sub {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
}

/* ===== HIGHLIGHTS STRIP ===== */
.highlights {
  background: var(--dark);
  position: relative;
  z-index: 2;
}
.highlights .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: clamp(24px, 3vw, 36px) clamp(16px, 2vw, 32px);
  border-bottom: 1px solid var(--border-dark);
  transition: background var(--transition);
}
.highlight-item:hover { background: rgba(255,255,255,0.03); }

/* Desktop: horizontal dividers between items */
@media (min-width: 768px) {
  .highlight-item { border-bottom: none; }
  .highlight-item:not(:last-child) { border-right: 1px solid var(--border-dark); }
}

.highlight-item .material-symbols-outlined {
  font-size: 36px;
  color: var(--gold);
  flex-shrink: 0;
}

.highlight-text h3 {
  font-family: var(--heading);
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 600;
  color: var(--white);
}

.highlight-text p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  max-width: 280px;
  margin-top: 4px;
}

/* ===== SECTION COMMON ===== */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.section-title {
  font-family: var(--heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.15;
}

.section-title-light { color: var(--white); }

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  border: none;
  border-radius: 1px;
}

.section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

.section-desc-light { color: var(--text-light); }

/* ===== ABOUT SECTION ===== */
.about {
  padding: clamp(60px, 8vw, 100px) 0;
}
.about .container {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 60px);
}

.about-img {
  width: clamp(300px, 45%, 560px);
  min-width: 0;
  height: auto;
  aspect-ratio: 7 / 6;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.about-features {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.feature-item { display: flex; flex-direction: column; gap: 4px; }

.feature-num {
  font-family: var(--heading);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  color: var(--red);
}

.feature-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ===== IMAGE + TEXT BLOCK ===== */
.image-text-section {
  padding: 0;
}

.image-text {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 60px);
}
.image-text--reverse { flex-direction: row-reverse; }

.image-text__img-wrap {
  flex: 0 0 48%;
  max-width: 48%;
  min-width: 0;
}

.image-text__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-md);
}

.image-text__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-text__title {
  font-family: var(--heading);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}

.image-text__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}
.image-text__body p { margin-bottom: 16px; }
.image-text__body p:last-child { margin-bottom: 0; }
.image-text__body ul,
.image-text__body ol { padding-left: 20px; margin-bottom: 16px; }
.image-text__body li { margin-bottom: 6px; }
.image-text__body strong { color: var(--dark); }

/* Band variant (with background color) */
.image-text-section--band {
  padding: clamp(60px, 8vw, 100px) 0;
}
.image-text-section--band .image-text__img {
  box-shadow: var(--shadow-lg);
}
.image-text__title--light { color: var(--white); }
.image-text__body--light { color: var(--text-light); }
.image-text__body--light strong { color: var(--white); }
.image-text__body--light a { color: var(--gold); }

@media (max-width: 1024px) {
  .image-text,
  .image-text--reverse { flex-direction: column; }
  .image-text__img-wrap { flex: 0 0 100%; max-width: 100%; }
}

/* ===== BAND SECTIONS ===== */
.band {
  background: var(--dark);
  padding: clamp(60px, 8vw, 100px) 0;
}
.band .container {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 60px);
}
.band.reverse .container { flex-direction: row-reverse; }

.band-img {
  width: clamp(300px, 45%, 560px);
  min-width: 0;
  height: auto;
  aspect-ratio: 7 / 6;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.band-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  width: fit-content;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,98,0.3);
}
.btn-gold .material-symbols-outlined { font-size: 16px; }

/* ===== CARDS SECTION ===== */
.cards-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg);
}
.cards-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.cards-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.cards-header .section-title { font-size: clamp(28px, 3vw, 40px); }

.cards-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
}

.cards-grid {
  display: grid;
  gap: 24px;
  width: 100%;
}
.cards-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .cards-grid--cols-3,
  .cards-grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cards-grid--cols-2,
  .cards-grid--cols-3,
  .cards-grid--cols-4 { grid-template-columns: 1fr; }
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--pure-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  flex: 1;
}

.card-title {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
}

.card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  transition: gap var(--transition);
}
.card-link:hover { gap: 8px; text-decoration: none; }

/* ===== INFO SECTION ===== */
.info-section {
  background: var(--cream);
  padding: clamp(60px, 6vw, 80px) 0;
}
.info-section .container {
  display: flex;
  gap: clamp(32px, 5vw, 60px);
  align-items: flex-start;
}

.info-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.info-left .section-title { font-size: clamp(28px, 3vw, 40px); }

.schedule-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.schedule-title {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}
.schedule-row .label { font-size: 14px; color: var(--text); }
.schedule-row .value { font-size: 14px; font-weight: 600; color: var(--dark); }

.info-right {
  width: min(400px, 100%);
  flex-shrink: 0;
  background: var(--dark);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.info-right h3 {
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}

.info-divider-sm {
  width: 40px;
  height: 2px;
  background: var(--gold);
  border: none;
  border-radius: 1px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-item .material-symbols-outlined { font-size: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-item p { font-size: 14px; color: var(--text-light); line-height: 1.5; }

.btn-gold-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  width: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-gold-full:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201,169,98,0.3);
}
.btn-gold-full .material-symbols-outlined { font-size: 18px; }

/* ===== EVENTS SECTION ===== */
.events-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg);
}
.events-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 24px;
  width: 100%;
}

.event-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--pure-white);
  padding: clamp(24px, 2.5vw, 32px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.event-date {
  display: flex;
  align-items: center;
  gap: 8px;
}
.event-date .material-symbols-outlined { font-size: 18px; color: var(--gold); }
.event-date span { font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.5px; }

.event-title {
  font-family: var(--heading);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  color: var(--dark);
}

.event-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.event-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.event-link:hover { gap: 8px; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--dark);
  padding: clamp(60px, 6vw, 80px) 0;
  text-align: center;
}
.final-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.final-cta h2 {
  font-family: var(--heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--white);
}

.final-cta p,
.final-cta > .container > div:not(.final-cta-btns) {
  font-size: 16px;
  color: #FFFFFF;
  max-width: 500px;
}

.final-cta-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== 404 PAGE ===== */
.error-page {
  padding: 120px 0;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.error-code {
  display: block;
  font-family: var(--heading);
  font-size: clamp(100px, 15vw, 160px);
  font-weight: 600;
  line-height: 1;
  color: var(--border);
  letter-spacing: -0.04em;
}
.error-title {
  font-family: var(--heading);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  color: var(--dark);
  margin-top: 8px;
  margin-bottom: 16px;
}
.error-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.error-page .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.error-page .btn-primary .material-symbols-outlined { font-size: 18px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-deep);
  padding: clamp(40px, 5vw, 60px) 0;
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo .material-symbols-outlined { font-size: 24px; color: var(--gold); }
.footer-logo span {
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  transition: background var(--transition), transform var(--transition);
}
.footer-social a:hover {
  background: rgba(201,169,98,0.15);
  transform: translateY(-2px);
}
.footer-social .material-symbols-outlined {
  font-size: 20px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-social a:hover .material-symbols-outlined { color: var(--gold); }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col h4 {
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition), padding-left var(--transition);
  padding: 2px 0;
}
.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--border-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 11px; color: var(--footer-text); }

.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 11px;
  color: var(--footer-text);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== DETAIL PAGE ===== */
.detail-content {
  padding: clamp(48px, 6vw, 80px) 0;
}
.detail-content .container {
  display: flex;
  gap: clamp(32px, 5vw, 60px);
}

.detail-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.detail-article {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.detail-article h2 {
  font-family: var(--heading);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  color: var(--dark);
}
.detail-article p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
}
.detail-article img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.detail-sidebar {
  width: min(340px, 100%);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
  align-self: flex-start;
}

.sidebar-box {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: var(--radius-md);
}
.sidebar-box.dark { background: var(--dark); }
.sidebar-box.light { background: var(--pure-white); border: 1px solid var(--border); }

.sidebar-box h3 {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 600;
}
.sidebar-box.dark h3 { color: var(--white); }
.sidebar-box.light h3 { color: var(--dark); }

.sidebar-row { display: flex; justify-content: space-between; }
.sidebar-row .label { font-size: 13px; color: var(--text-light); }
.sidebar-row .value { font-size: 13px; font-weight: 600; color: var(--white); }

.sidebar-note { font-size: 12px; font-weight: 500; color: var(--gold); }

.sidebar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  width: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.sidebar-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201,169,98,0.3);
}
.sidebar-btn .material-symbols-outlined { font-size: 16px; }

.sidebar-box.light p { font-size: 13px; color: var(--text); line-height: 1.5; }
.sidebar-box.light .email-link { color: var(--red); font-weight: 500; }

.sidebar-box.dark .sidebar-row .label { color: rgba(255,255,255,0.7); }
.sidebar-box.dark .sidebar-row .value { color: var(--pure-white); }

/* Article extras */
.article-excerpt {
  margin-bottom: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.article-excerpt p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
}

.sidebar-link-title {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  line-height: 1.6;
}

.sidebar-link { color: var(--gold); }

.sidebar-attachments {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-attachments li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text);
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
}
.sidebar-attachments li a:hover { background: var(--cream-dark); border-color: var(--cream-dark); }
.sidebar-attachments .material-symbols-outlined { font-size: 20px; color: var(--red); flex-shrink: 0; }
.sidebar-attachments .att-name { font-weight: 500; display: block; color: var(--dark); }
.sidebar-attachments .att-size { color: var(--text-muted); font-size: 11px; }

.article-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  opacity: .7;
  transition: opacity var(--transition);
  min-width: 44px;
  min-height: 44px;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition);
}
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-family: var(--body);
}

/* ===== EVENT CALENDAR ===== */
/* Events page layout: calendar left, grid right */
.events-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}

.events-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* Articles grid: 3 columns full width (non-eventi categories) */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .articles-grid { grid-template-columns: 1fr; }
}

/* Event vertical card */
.event-card-v {
  display: flex;
  flex-direction: column;
  background: var(--pure-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card-v:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.event-card-v-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.event-card-v-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  flex: 1;
}

.event-card-v-title {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

.event-card-v-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-card-v .event-link {
  margin-top: auto;
  padding-top: 4px;
}

.event-calendar {
  background: var(--pure-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(16px, 2vw, 24px);
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cal-month-label {
  font-family: var(--heading);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  color: var(--dark);
}

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  color: var(--text);
  transition: background var(--transition), border-color var(--transition);
}
.cal-nav:hover {
  background: var(--cream);
  border-color: var(--cream-dark);
}
.cal-nav .material-symbols-outlined { font-size: 22px; }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}
.cal-weekdays span {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  padding: 8px 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  cursor: default;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  position: relative;
}

.cal-day.cal-empty { visibility: hidden; }

.cal-day:disabled {
  color: var(--text-light);
  opacity: 0.5;
}

.cal-day.cal-today {
  font-weight: 700;
  color: var(--dark);
  background: var(--cream);
}

.cal-day.cal-has-event {
  cursor: pointer;
  color: var(--dark);
  font-weight: 600;
  background: var(--gold-light);
  border: 1px solid transparent;
}
.cal-day.cal-has-event::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.cal-day.cal-has-event:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(201,169,98,0.3);
}
.cal-day.cal-has-event:hover::after {
  background: var(--dark);
}

.cal-day.cal-today.cal-has-event {
  background: var(--gold);
  color: var(--dark);
}
.cal-day.cal-today.cal-has-event::after {
  background: var(--dark);
}

.cal-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.cal-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.cal-legend span:last-child {
  font-size: 12px;
  color: var(--text-muted);
}

/* Highlight animation on event scroll-to */
.event-highlight {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: var(--radius-md);
  animation: pulseHighlight 2s ease;
}
@keyframes pulseHighlight {
  0% { outline-color: var(--gold); outline-offset: 4px; }
  50% { outline-color: var(--gold); outline-offset: 8px; }
  100% { outline-color: transparent; outline-offset: 4px; }
}

/* ===== UTILITY ===== */
.section-title-sm { font-size: clamp(28px, 3vw, 36px); }
.text-center { text-align: center; }
.pagination-wrap { display: flex; justify-content: center; padding: 40px 0; }
.empty-state { text-align: center; color: var(--text-muted); padding: 40px 0; }
.listing-section-alt { background: var(--cream); }

/* ===== ARTE CULTURA PAGE ===== */
.intro-center {
  padding: clamp(48px, 6vw, 80px) 0;
  text-align: center;
}
.intro-center .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.intro-center h2 {
  font-family: var(--heading);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  color: var(--dark);
}
.intro-center p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 700px;
}


/* ===== EVENTI PAGE ===== */
.events-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 32px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  border: 1px solid var(--cream-dark);
  background: transparent;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 40px;
}

.filter-btn.active {
  background: var(--dark);
  color: var(--white);
  font-weight: 600;
  border-color: var(--dark);
}
.filter-btn:hover:not(.active) {
  border-color: var(--gold);
  background: var(--gold-light);
}

.events-body { padding: clamp(48px, 6vw, 80px) 0; }

.events-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.event-row {
  display: flex;
  background: var(--pure-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.event-row-img {
  width: min(380px, 40%);
  min-width: 0;
  min-height: 240px;
  object-fit: cover;
}

.event-row-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: clamp(20px, 2.5vw, 32px);
}

.event-row-title {
  font-family: var(--heading);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  color: var(--dark);
}

.event-row-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== HOSPITALITY SEARCH ===== */
.hospitality-search {
  margin-bottom: clamp(24px, 3vw, 40px);
}

.search-input-wrap {
  position: relative;
  max-width: 480px;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--text-muted);
  pointer-events: none;
}

.search-input {
  width: 100%;
  font-family: var(--body);
  font-size: 15px;
  padding: 14px 44px 14px 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--pure-white);
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-light);
}
.search-input::placeholder { color: var(--text-light); }

.search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}
.search-clear:hover { background: var(--cream); color: var(--dark); }
.search-clear .material-symbols-outlined { font-size: 18px; }

.listing-section-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.listing-section-group:last-child { margin-bottom: 0; }

/* ===== OSPITALITA PAGE ===== */
.listing-section {
  padding: clamp(48px, 6vw, 80px) 0;
}
.listing-section .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.listing-section + .listing-section { padding-top: 0; }

.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 24px;
}

.listing-card {
  display: flex;
  flex-direction: column;
  background: var(--pure-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.listing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.listing-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.listing-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.listing-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
}

.listing-title {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
}

.listing-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.listing-info {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
}
.listing-info .material-symbols-outlined { font-size: 14px; color: var(--text-light); }
.listing-info span { font-size: 12px; color: var(--text-light); }

/* ===== CONTATTI PAGE ===== */
.contact-body {
  padding: clamp(48px, 6vw, 80px) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.contact-info h2 {
  font-family: var(--heading);
  font-size: clamp(24px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--dark);
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: var(--radius-sm);
}
.contact-icon-box .material-symbols-outlined { font-size: 20px; color: var(--red); }

.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-detail-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
}
.contact-detail-value {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.5;
}

.contact-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { position: static; }
}

.map-placeholder {
  width: 100%;
  height: 280px;
  background: var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.map-placeholder .material-symbols-outlined { font-size: 40px; color: var(--text-light); }
.map-placeholder p { font-size: 14px; color: var(--text-muted); }
.map-placeholder span { font-size: 12px; color: var(--text-light); }

.form-box {
  background: var(--cream);
  padding: clamp(24px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: var(--radius-md);
}

.form-box h3 {
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
}

.form-row { display: flex; gap: 16px; }

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  font-family: var(--body);
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--cream-dark);
  background: var(--pure-white);
  color: var(--dark);
  border-radius: var(--radius-sm);
  outline: none;
  resize: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-light);
}
.form-group textarea { height: 120px; }

.btn-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--red);
  color: var(--white);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  width: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 48px;
}
.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139,46,46,0.3);
}

/* GDPR consent */
.form-gdpr {
  margin-top: 4px;
}
.gdpr-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--dark);
  line-height: 1.5;
}
.gdpr-checkbox {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--red);
  cursor: pointer;
}
.gdpr-text a {
  color: var(--red);
  font-weight: 500;
  text-decoration: underline;
}
.gdpr-text a:hover { text-decoration: none; }

/* Map embed */
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* ===== TEXT BLOCK ===== */
.text-block-section {
  padding: 0;
}
.text-block-content {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}
.text-block-content h2 {
  font-family: var(--heading);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}
.text-block-content h3 {
  font-family: var(--heading);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}
.text-block-content p { margin-bottom: 16px; }
.text-block-content p:last-child { margin-bottom: 0; }
.text-block-content ul,
.text-block-content ol { padding-left: 20px; margin-bottom: 16px; }
.text-block-content li { margin-bottom: 6px; }
.text-block-content strong { color: var(--dark); }
.text-block-content a { color: var(--red); text-decoration: underline; }
.text-block-content a:hover { text-decoration: none; }

/* Add to uniform spacing list */
#main-content > .text-block-section {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: clamp(48px, 5vw, 64px);
  margin-bottom: clamp(48px, 5vw, 64px);
}

/* ===== COMING SOON ===== */
.coming-soon {
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
}
.coming-soon .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.coming-soon-icon {
  font-size: 56px;
  color: var(--border);
}
.coming-soon-title {
  font-family: var(--heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: var(--dark);
}
.coming-soon-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.6;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* ── CTA hide under 1200px ── */
@media (max-width: 1200px) {
  .btn-cta { display: none; }
}

/* ── Tablet (max 1024px) ── */
@media (max-width: 1024px) {
  /* About */
  .about .container { flex-direction: column; }
  .about-img { width: 100%; aspect-ratio: 16 / 9; }

  /* Band */
  .band .container,
  .band.reverse .container { flex-direction: column; }
  .band-img { width: 100%; aspect-ratio: 16 / 9; }

  /* Info */
  .info-section .container { flex-direction: column; }
  .info-right { width: 100%; }

  /* Detail */
  .detail-content .container { flex-direction: column; }
  .detail-sidebar { width: 100%; position: static; }

  /* Event rows */
  .event-row { flex-direction: column; }
  .event-row-img { width: 100%; min-height: 220px; }

  /* Events layout: stack on tablet */
  .events-layout {
    grid-template-columns: 1fr;
  }
  .events-sidebar { position: static; }

  /* Contact — handled by .contact-layout grid media query above */

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── Mobile (max 768px) ── */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  /* Header mobile: push toggle + actions to the right together */
  .header {
    flex-wrap: nowrap;
  }
  .header-logo { order: 0; }
  .menu-toggle { display: flex; order: 2; }
  .header-actions { order: 3; }
  .header-nav { order: 4; }
  .header-logo { margin-right: auto; }

  /* Remove backdrop-filter when menu is open so fixed positioning works */
  .header.menu-open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--bg);
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 8px 24px 32px;
    z-index: 1001;
    overflow-y: auto;
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    gap: 0;
    border-top: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(42,24,16,0.12);
  }
  .header-nav.open {
    display: flex;
  }
  .header-nav > a,
  .header-nav .nav-dropdown-link {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 18px;
    width: 100%;
  }
  .header-nav > a::after,
  .header-nav .nav-dropdown-link::after { display: none; }

  /* Mobile dropdown — reset all desktop styles */
  .nav-dropdown { width: 100%; }
  .nav-dropdown-link { width: 100%; justify-content: space-between; }
  .nav-dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 0 8px 16px !important;
    min-width: unset !important;
    display: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: transparent !important;
    transition: none !important;
  }
  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown.is-open:hover .nav-dropdown-menu {
    display: block !important;
  }
  .nav-dropdown-menu::before { display: none !important; }
  .nav-dropdown-menu li a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    font-size: 16px;
  }

  .header-actions { gap: 8px; }

  /* Hero adjustments */
  .hero { height: clamp(400px, 70vh, 600px); }
  .hero-content { max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }

  /* Page hero */
  .page-hero { height: clamp(240px, 35vh, 320px); }

  /* Section titles handled by clamp() already */

  /* About features */
  .about-features { gap: 20px; }

  /* Event cards */
  .event-card { padding: 24px; }

  /* Schedule rows */
  .schedule-row { flex-direction: column; gap: 2px; }
  .schedule-row .value { text-align: left; }

  /* CTA */
  .final-cta-btns { flex-direction: column; align-items: stretch; }
  .final-cta-btns .btn-primary,
  .final-cta-btns .btn-secondary { justify-content: center; }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-bottom-links { justify-content: center; }

  /* Form */
  .form-row { flex-direction: column; }

  /* Sidebar */
  .sidebar-row { flex-direction: column; gap: 2px; }
  .sidebar-row .value { text-align: left; }
}

/* ── Small phone (max 480px) ── */
@media (max-width: 480px) {
  .about-img,
  .band-img { aspect-ratio: 4 / 3; }

  .card-img { height: 200px; }
  .listing-img { height: 180px; }
  .map-placeholder { height: 200px; }

  .event-card { padding: 20px; }
  .info-right { padding: 24px; }
  .sidebar-box { padding: 20px; }

  .btn-primary, .btn-secondary { padding: 14px 24px; font-size: 13px; }
  .btn-gold, .btn-gold-full { padding: 12px 20px; font-size: 12px; }
  .btn-submit { padding: 14px 20px; font-size: 13px; }

  .footer-col h4 { font-size: 15px; }
  .footer-logo span { font-size: 16px; letter-spacing: 1px; }

  .article-gallery { grid-template-columns: 1fr; }
}
