/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 16px;
}

body {
  font-family: 'Alegreya', serif;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Alegreya', serif;
  font-weight: 700;
  line-height: 1.2;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Film Grain Overlay ───────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Navigation ────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  width: auto;
  transition: height 0.4s;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 55%, transparent 100%);
          mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 55%, transparent 100%);
}

.nav.scrolled .nav-logo img {
  height: 32px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.75);
  transition: color 0.3s;
}

.nav-links a:hover { color: #c41e1e; }

.nav-links a.active { color: #c41e1e; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Page Header (inner pages) ────────────────── */
.page-header {
  padding: 6rem 0 1.5rem;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196,30,30,0.06) 0%, transparent 60%),
    #fff;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: #1a1a1a;
}

.page-header .subtitle {
  font-family: 'Alegreya', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(0,0,0,0.5);
  margin-top: 0.5rem;
}

/* ── Hero ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196,30,30,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(196,30,30,0.06) 0%, transparent 60%),
    #fff;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(transparent, #fff);
  z-index: 1;
}

.hero-logo {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem 1.5rem;
  width: 100%;
}

.hero-subtitle {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #c41e1e;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.hero h1 .red { color: #c41e1e; }

.hero-tagline {
  font-family: 'Alegreya', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(0,0,0,0.7);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-meta {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.65);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.hero-meta strong { color: #1a1a1a; font-weight: 600; }

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'Alegreya', serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 2px solid #c41e1e;
  color: #c41e1e;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.btn:hover {
  background: #c41e1e;
  color: #fff;
  transform: translateY(-2px);
}

/* ── Hero Info Bar ────────────────────────────── */
.hero-info {
  background: #fff;
  text-align: center;
  padding: 1.25rem 0;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.hero-info .hero-meta {
  margin-bottom: 0.6rem;
}

.hero-tickets {
  display: inline-block;
  padding: 0.45rem 1rem;
  border: 1px solid #c41e1e;
  border-radius: 999px;
  color: #c41e1e;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.hero-tickets strong { color: #c41e1e; font-weight: 700; }

.hero-festival-label {
  font-family: 'Alegreya', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  letter-spacing: 0.02em;
  color: #888;
  margin-bottom: 0.75rem;
}

/* ── Section Defaults ─────────────────────────── */
section {
  padding: 2.5rem 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #c41e1e;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.section-body {
  max-width: 700px;
  color: rgba(0,0,0,0.7);
  font-size: 1.05rem;
}

.divider {
  width: 60px;
  height: 2px;
  background: #c41e1e;
  margin: 1rem 0;
}

/* ── Fade-in Animation ────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── News ──────────────────────────────────────── */
.news {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(196,30,30,0.05) 0%, transparent 70%),
    #fff;
  text-align: center;
}

.news .section-body {
  margin: 0 auto 1.25rem;
  text-align: left;
}

.news .divider {
  margin: 1.5rem auto;
}

/* ── About ─────────────────────────────────────── */
.about {
  background: #fff;
  text-align: center;
}

.about .section-body {
  margin: 0 auto 1rem;
  text-align: left;
}

.about .divider {
  margin: 1rem auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.about-feature {
  padding: 1.5rem;
  border-left: 2px solid rgba(196,30,30,0.3);
}

.about-feature h3 {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.about-feature p {
  color: rgba(0,0,0,0.65);
  font-size: 0.95rem;
}

/* ── Speakers ──────────────────────────────────── */
.speakers { background: #fff; }

body.with-watermark { background: #fff; }

body.with-watermark::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('images/swan.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 110vmin auto;
  opacity: 0.06;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: multiply;
}

body.with-watermark .page-header,
body.with-watermark .speakers,
body.with-watermark .award,
body.with-watermark .venue,
body.with-watermark .hotels,
body.with-watermark .transport,
body.with-watermark .contact,
body.with-watermark .boat,
body.with-watermark .sponsors,
body.with-watermark footer {
  background: transparent;
}

body.with-watermark .speaker-card,
body.with-watermark .hotel-card,
body.with-watermark .boat-feature {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(2px);
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.speaker-card {
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.speaker-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,30,30,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.speaker-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(196,30,30,0.3);
}

.speaker-avatar svg {
  width: 48px;
  height: 48px;
  fill: rgba(0,0,0,0.25);
}

.speaker-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.speaker-card h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.speaker-genre {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #c41e1e;
  margin-bottom: 1rem;
}

.speaker-card p {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.6);
  line-height: 1.6;
}

.speaker-link {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.speaker-link a {
  color: #c41e1e;
  text-decoration: none;
  border-bottom: 1px solid rgba(196,30,30,0.3);
  transition: border-color 0.2s ease;
}

.speaker-link a:hover {
  border-bottom-color: #c41e1e;
}

/* ── Award ─────────────────────────────────────── */
.award { background: #fff; }

.award-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1.25rem;
}

.award-icon {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a2a 0%, #000000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(0,0,0,0.3);
  overflow: hidden;
}

.award-icon svg {
  width: 56px;
  height: 56px;
  fill: #fff;
}

.award-icon img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.award-visual {
  text-align: center;
}

.award-visual h3 {
  font-size: 1.5rem;
  color: #a07c2a;
  margin-bottom: 0.5rem;
}

.award-visual p {
  color: rgba(0,0,0,0.55);
  font-style: italic;
}

.gold { color: #a07c2a; }

.award-info .section-body {
  margin-bottom: 1.5rem;
}

.award-quote {
  border-left: 3px solid #c9a84c;
  padding: 1rem 1.5rem;
  font-family: 'Alegreya', serif;
  font-style: italic;
  color: rgba(0,0,0,0.7);
  font-size: 1.1rem;
}

.award-quote-cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.55);
  letter-spacing: 0.05em;
}

/* ── Venue ─────────────────────────────────────── */
.venue { background: #fff; }

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.25rem;
}

.venue-info h3 {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.venue-info p {
  color: rgba(0,0,0,0.65);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.venue-detail {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.venue-detail svg {
  width: 20px;
  height: 20px;
  fill: #c41e1e;
  flex-shrink: 0;
  margin-top: 2px;
}

.venue-detail span {
  color: rgba(0,0,0,0.7);
  font-size: 0.9rem;
}

.venue-map {
  border: 1px solid rgba(0,0,0,0.1);
  overflow: hidden;
}

.venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
  filter: grayscale(0.4) contrast(1.05);
}

/* ── Contact ───────────────────────────────────── */
.contact { background: #fff; }

.stay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 2.5rem;
}

.stay-block {
  background: #fafafa;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
}

.stay-title {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin: 0.4rem 0 0.6rem;
}

.stay-body {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.stay-cta {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: #c41e1e;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.stay-cta:hover { background: #a01818; }

.stay-socials {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.stay-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.stay-socials a:hover {
  border-color: #c41e1e;
  color: #c41e1e;
}

.stay-socials svg {
  fill: currentColor;
}

.press-section {
  max-width: 1000px;
  margin: 2rem auto 0;
  text-align: center;
}

.press-section .divider { margin: 0 auto 1rem; }

.press-section .section-label { margin-bottom: 0.5rem; }

@media (max-width: 640px) {
  .stay-grid { grid-template-columns: 1fr; gap: 1rem; }
  .stay-block { padding: 1.5rem; }
}

.contact-simple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 0;
  text-align: center;
}

@media (max-width: 640px) {
  .contact-simple { grid-template-columns: 1fr; gap: 1rem; }
}

.credits {
  max-width: 1000px;
  margin: 1.5rem auto 0;
  text-align: center;
}

.credits .divider { margin: 0 auto 1rem; }

.credits .section-label { margin-bottom: 1rem; }

.credits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.credit-role {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(0,0,0,0.55);
  margin-bottom: 0.2rem;
}

.credit-name {
  font-family: 'Alegreya', serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1a1a1a;
}

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

.contact-person {
  padding: 1.5rem 1rem;
}

.contact-role {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #c41e1e;
  margin-bottom: 0.5rem;
}

.contact-name {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.contact-email {
  display: inline-block;
  font-family: 'Alegreya', serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: #c41e1e;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.contact-email:hover { border-color: #c41e1e; }

@media (max-width: 640px) {
  .contact-simple { grid-template-columns: 1fr; gap: 1rem; }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.25rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.7);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.12);
  color: #1a1a1a;
  font-family: 'Alegreya', serif;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #c41e1e;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-aside h3 {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.contact-aside p {
  color: rgba(0,0,0,0.65);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}

.social-link:hover {
  border-color: #c41e1e;
  background: rgba(196,30,30,0.08);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: rgba(0,0,0,0.7);
}

/* ── Partner Hotel ─────────────────────────────── */
.partner-hotel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.25rem;
}

/* ── Boat ──────────────────────────────────────── */
.boat { background: #fff; }

.boat-hero {
  text-align: center;
  margin-bottom: 1.5rem;
}

.boat-hero .section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.boat-features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.boat-feature {
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color 0.4s;
}

.boat-feature:hover {
  border-color: rgba(196,30,30,0.4);
}

.boat-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(196,30,30,0.08);
  border: 1px solid rgba(196,30,30,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.boat-feature-icon svg {
  width: 32px;
  height: 32px;
  fill: #c41e1e;
}

.boat-feature h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.boat-feature p {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.6;
}

.boat-route {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.boat-route-stops {
  list-style: none;
  border-left: 2px solid rgba(196,30,30,0.3);
  padding-left: 2rem;
}

.boat-route-stops li {
  position: relative;
  padding: 1rem 0;
  color: rgba(0,0,0,0.7);
  font-size: 0.95rem;
}

.boat-route-stops li::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 1.35rem;
  width: 12px;
  height: 12px;
  background: #c41e1e;
  border-radius: 50%;
  border: 2px solid #fff;
}

.boat-route-stops li strong {
  color: #1a1a1a;
  display: block;
  font-size: 1.05rem;
}

/* ── Hotels ────────────────────────────────────── */
.hotels { background: #fff; }

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.hotel-card {
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 1.75rem 1.5rem;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.hotel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,30,30,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hotel-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c41e1e;
  border: 1px solid rgba(196,30,30,0.3);
  padding: 0.25rem 0.75rem;
  margin-bottom: 1.25rem;
}

.hotel-card h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.hotel-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(0,0,0,0.55);
  margin-bottom: 1rem;
}

.hotel-location svg {
  width: 16px;
  height: 16px;
  fill: #c41e1e;
  flex-shrink: 0;
}

.hotel-card p {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.6;
}

.hotel-meta {
  margin-top: 1rem;
  font-weight: 600;
  color: rgba(0,0,0,0.85) !important;
}

/* ── Transport ─────────────────────────────────── */
.transport { background: #fff; }

.transport-block {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.transport-block:last-child {
  border-bottom: none;
}

.transport-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(196,30,30,0.08);
  border: 1px solid rgba(196,30,30,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.transport-icon svg {
  width: 28px;
  height: 28px;
  fill: #c41e1e;
}

.transport-info h3 {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.transport-info p {
  color: rgba(0,0,0,0.65);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.transport-info strong {
  color: rgba(0,0,0,0.9);
}

.transport-list {
  list-style: none;
  margin-bottom: 1rem;
}

.transport-list li {
  color: rgba(0,0,0,0.65);
  font-size: 0.9rem;
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
}

.transport-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  background: #c41e1e;
  border-radius: 50%;
}

/* ── Sponsors Page ─────────────────────────────── */
.sponsors-page { background: #fff; }

.sponsor-tier {
  text-align: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.sponsor-tier:last-child { border-bottom: none; }

.sponsor-tier .divider { margin: 0.75rem auto 1.5rem; }

.sponsor-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  margin: 0.5rem auto 1rem;
  max-width: 360px;
  border: 1.5px dashed rgba(0,0,0,0.25);
  color: rgba(0,0,0,0.45);
  font-family: 'Alegreya', serif;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.5);
}

.sponsor-blurb {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(0,0,0,0.7);
  font-size: 1rem;
}

body.with-watermark .sponsors-page { background: transparent; }

/* ── Sponsors (inline strip) ──────────────────── */
.sponsors {
  background: #fff;
  text-align: center;
  padding: 1.25rem 0;
}

.sponsors .section-label {
  margin-bottom: 1rem;
}

.sponsors-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.sponsors-logos img {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ── Footer ────────────────────────────────────── */
footer {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 1.25rem 0;
  text-align: center;
}

footer p {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.4);
}

footer span { color: #c41e1e; }

/* ── Mobile ────────────────────────────────────── */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s ease;
    box-shadow: -2px 0 20px rgba(0,0,0,0.08);
  }

  .nav-links.open { right: 0; }

  .nav-links a { font-size: 1rem; }

  .about-grid,
  .speakers-grid,
  .award-wrapper,
  .venue-grid,
  .contact-grid,
  .hotels-grid,
  .partner-hotel-grid,
  .boat-route,
  .boat-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .transport-block {
    flex-direction: column;
    gap: 0.5rem;
  }

  .speakers-grid,
  .hotels-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 0;
    aspect-ratio: 1 / 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 2.25rem;
  }

  .hero-content { padding: 0; }

  .hero-info { margin-top: 0; padding: 0.25rem 0 0.5rem; }

  .hero-video {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    min-width: 0;
    min-height: 0;
    object-fit: contain;
  }

  .hero::before {
    display: none;
  }

  .hero-content {
    padding: 0;
  }

  section { padding: 0.75rem 0; }

  .page-header { padding: 4rem 0 0.5rem; }

  .about-grid { gap: 0.75rem; }

  .speakers-grid,
  .hotels-grid { gap: 0.75rem; }

  .speaker-card,
  .hotel-card,
  .boat-feature { padding: 1rem 0.875rem; }

  .speaker-avatar { width: 78px; height: 78px; margin: 0 auto 0.75rem; }

  .speaker-card h3,
  .hotel-card h3 { margin-bottom: 0.15rem; }

  .speaker-genre { margin-bottom: 0.5rem; }

  .transport-block { padding: 0.75rem 0; gap: 0.75rem; }

  .section-body { margin-bottom: 0.5rem; }

  .news .section-body { margin-bottom: 0.75rem; }

  .divider { margin: 0.5rem 0; }

  .news .divider,
  .about .divider { margin: 0.5rem auto; }

  h2, .section-title { margin-bottom: 0.5rem; }

  .sponsors { padding: 0.75rem 0; }

  .sponsors .section-label { margin-bottom: 0.5rem; }

  footer { padding: 0.75rem 0; }

  footer p { font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .speakers-grid,
  .hotels-grid {
    grid-template-columns: 1fr;
  }
}
