/* =====================================================
   LONDON WOMEN CHESS CLUB — SHARED STYLES
   ===================================================== */

:root {
  --burgundy: #6B2D3A;
  --burgundy-deep: #4A1E28;
  --burgundy-soft: #8C4250;
  --cream: #F7F1E8;
  --cream-warm: #EFE5D4;
  --blush: #E8C8C0;
  --brass: #B8924E;
  --brass-light: #D4B16A;
  --ink: #2A1F1F;
  --ink-soft: #4A3A3A;
  --sage: #7A8B6F;
  --white-soft: #FDFBF7;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

.serif { font-family: 'Fraunces', serif; }

/* ============ NAV ============ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107, 45, 58, 0.12);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--burgundy);
}
.logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  /* Circle and border removed per request */
}
.logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.logo-text small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy-soft);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--brass);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--burgundy); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--burgundy); }
.nav-links a.active::after { width: 100%; }
.btn-cta {
  background: var(--burgundy);
  color: var(--cream);
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1.5px solid var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-cta:hover {
  background: var(--burgundy-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107, 45, 58, 0.25);
}
.btn-cta::after { display: none !important; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  margin: 5px 0;
  transition: 0.3s;
}

/* ============ BUTTONS ============ */
.btn-primary {
  background: var(--burgundy);
  color: var(--cream);
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--burgundy);
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover {
  background: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(107, 45, 58, 0.3);
}
.btn-secondary {
  color: var(--burgundy);
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid var(--burgundy);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn-secondary:hover {
  background: var(--burgundy);
  color: var(--cream);
}
.btn-light {
  background: var(--cream);
  color: var(--burgundy-deep);
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  border: 1.5px solid var(--cream);
}
.btn-light:hover {
  background: var(--brass-light);
  border-color: var(--brass-light);
  transform: translateY(-2px);
}

/* ============ SHARED ELEMENTS ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 36px;
  height: 1.5px;
  background: var(--brass);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::after {
  content: '';
  width: 36px;
  height: 1.5px;
  background: var(--brass);
}
.section-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  color: var(--burgundy-deep);
  line-height: 1.15;
  margin-top: 16px;
  margin-bottom: 16px;
}
.section-head h2 em {
  font-style: italic;
  color: var(--burgundy-soft);
}
.section-head p {
  color: var(--ink-soft);
  font-size: 16px;
}

/* ============ HOMEPAGE HERO ============ */
.hero {
  position: relative;
  padding: 80px 32px 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 146, 78, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 200, 192, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  color: var(--burgundy-deep);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--burgundy-soft);
}
.hero h1 .underline {
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--brass-light);
  opacity: 0.4;
  z-index: -1;
  border-radius: 4px;
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-image { position: relative; }
.hero-image .img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(74, 30, 40, 0.25), 0 10px 30px rgba(74, 30, 40, 0.15);
  transform: rotate(1.5deg);
  transition: transform 0.4s ease;
}
.hero-image .img-wrap:hover { transform: rotate(0deg) scale(1.02); }
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-image .badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--cream);
  border: 1.5px solid var(--burgundy);
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 12px;
  box-shadow: 0 12px 30px rgba(74, 30, 40, 0.2);
  transform: rotate(-8deg);
  z-index: 2;
}
.hero-image .badge .star {
  color: var(--brass);
  font-size: 14px;
  margin-bottom: 4px;
}
.hero-image .badge .badge-text {
  font-family: 'Fraunces', serif;
  font-size: 11px;
  line-height: 1.25;
  color: var(--burgundy-deep);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============ INNER PAGE HERO ============ */
.page-hero {
  position: relative;
  padding: 80px 32px 60px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(232, 200, 192, 0.4) 0%, transparent 70%);
  z-index: 0;
}
.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero .eyebrow {
  justify-content: center;
}
.page-hero .eyebrow::after {
  content: '';
  width: 36px;
  height: 1.5px;
  background: var(--brass);
}
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.05;
  color: var(--burgundy-deep);
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--burgundy-soft);
}
.page-hero p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============ TRUST BAR ============ */
.trust {
  background: var(--burgundy);
  color: var(--cream);
  padding: 28px 32px;
}
.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.trust-item {
  text-align: center;
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: rgba(247, 241, 232, 0.25);
}
.trust-num {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--brass-light);
  line-height: 1;
}
.trust-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.85;
}

/* ============ EVENT CARD ============ */
.event-banner {
  padding: 80px 32px;
  background: var(--cream);
}
.event-card {
  max-width: 1180px;
  margin: 0 auto;
  background: var(--white-soft);
  border-radius: 12px;
  padding: 56px;
  display: grid;
  grid-template-columns: auto 1fr 220px auto;
  gap: 48px;
  align-items: center;
  box-shadow: 0 4px 40px rgba(74, 30, 40, 0.08);
  border: 1px solid rgba(184, 146, 78, 0.2);
  position: relative;
  overflow: hidden;
}
.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--burgundy), var(--brass));
}
.event-date {
  text-align: center;
  padding-right: 36px;
  border-right: 1px solid rgba(107, 45, 58, 0.15);
}
.event-date .day {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1;
}
.event-date .month {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy-soft);
  margin-top: 6px;
}
.event-date .year {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.event-info .label {
  display: inline-block;
  background: var(--blush);
  color: var(--burgundy-deep);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 14px;
}
.event-info h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--burgundy-deep);
  line-height: 1.2;
  margin-bottom: 10px;
}
.event-info p {
  color: var(--ink-soft);
  font-size: 15px;
}
.event-info p span {
  color: var(--burgundy);
  font-weight: 500;
  margin: 0 8px;
}
.event-media {
  width: 220px;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(184, 146, 78, 0.25);
  background: var(--cream);
  box-shadow: 0 10px 24px rgba(74, 30, 40, 0.08);
}
.event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============ ABOUT BLOCK ============ */
.about {
  padding: 120px 32px;
  position: relative;
}
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--burgundy-deep);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.about-text h2 em {
  font-style: italic;
  color: var(--burgundy-soft);
}
.about-text p {
  font-size: 16.5px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.75;
}
.about-text .quote {
  border-left: 2px solid var(--brass);
  padding-left: 20px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--burgundy);
  margin: 28px 0;
}
.about-image { position: relative; }
.about-image .frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(74, 30, 40, 0.2);
}
.about-image .frame img {
  width: 100%;
  height: auto;
  display: block;
}
.about-image .deco {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 140px;
  height: 140px;
  background: var(--brass);
  opacity: 0.2;
  border-radius: 8px;
  z-index: -1;
}
.about-image .checker {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 120px;
  height: 120px;
  background-image:
    linear-gradient(45deg, var(--burgundy) 25%, transparent 25%),
    linear-gradient(-45deg, var(--burgundy) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--burgundy) 75%),
    linear-gradient(-45deg, transparent 75%, var(--burgundy) 75%);
  background-size: 30px 30px;
  background-position: 0 0, 0 15px, 15px -15px, -15px 0;
  opacity: 0.3;
  z-index: -1;
  border-radius: 6px;
}

/* ============ SCHEDULE / CARD GRID ============ */
.schedule {
  padding: 100px 32px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.schedule-inner { max-width: 1180px; margin: 0 auto; }
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.schedule-card {
  background: var(--white-soft);
  padding: 44px 40px;
  border-radius: 10px;
  border: 1px solid rgba(184, 146, 78, 0.18);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(74, 30, 40, 0.12);
  border-color: var(--brass);
}
.schedule-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--burgundy);
}
.schedule-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--burgundy-deep);
  margin-bottom: 8px;
}
.schedule-card .day-label {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy-soft);
  margin-bottom: 16px;
}
.schedule-card .time {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 14px;
}
.schedule-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ============ CAROUSEL ============ */
.carousel-section {
  padding: 100px 32px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.carousel-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 146, 78, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.carousel-inner { max-width: 1180px; margin: 0 auto; position: relative; z-index: 1; }
.carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.carousel-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(74, 30, 40, 0.25), 0 10px 30px rgba(74, 30, 40, 0.12);
  aspect-ratio: 16 / 10;
  background: var(--burgundy-deep);
  border: 1px solid rgba(184, 146, 78, 0.3);
}
.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(247, 241, 232, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid var(--burgundy);
  color: var(--burgundy);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.25s ease;
  padding: 0;
  line-height: 1;
}
.carousel-btn:hover {
  background: var(--burgundy);
  color: var(--cream);
  transform: translateY(-50%) scale(1.06);
}
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(107, 45, 58, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}
.carousel-dot:hover { background: rgba(107, 45, 58, 0.5); }
.carousel-dot.active {
  background: var(--burgundy);
  width: 32px;
  border-radius: 5px;
}
@media (max-width: 700px) {
  .carousel-btn { width: 40px; height: 40px; font-size: 18px; }
  .carousel-btn.prev { left: 10px; }
  .carousel-btn.next { right: 10px; }
  .carousel-section { padding: 70px 20px; }
}

/* ============ COURSE FEATURE (single) ============ */
.course-feature {
  background: var(--white-soft);
  border-radius: 12px;
  padding: 56px;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  border: 1px solid rgba(184, 146, 78, 0.25);
  box-shadow: 0 4px 40px rgba(74, 30, 40, 0.06);
  position: relative;
  overflow: hidden;
}
.course-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--burgundy), var(--brass));
}
.course-feature .label {
  display: inline-block;
  background: var(--blush);
  color: var(--burgundy-deep);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 18px;
}
.course-feature h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--burgundy-deep);
  line-height: 1.15;
  margin-bottom: 18px;
}
.course-feature h3 em { font-style: italic; color: var(--burgundy-soft); }
.course-feature p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.course-feature .price-block {
  text-align: center;
  padding: 36px 28px;
  background: var(--cream);
  border-radius: 10px;
  border: 1px solid rgba(184, 146, 78, 0.3);
}
.course-feature .price-block .price {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.course-feature .price-block .price-sub {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy-soft);
  margin: 12px 0 24px;
}
.course-feature .price-block .btn-primary {
  width: 100%;
  justify-content: center;
}
.course-feature-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 18px 0 22px;
  border-radius: 12px;
  border: 1px solid rgba(184, 146, 78, 0.25);
  box-shadow: 0 10px 24px rgba(74, 30, 40, 0.08);
}
@media (max-width: 880px) {
  .course-feature { grid-template-columns: 1fr; padding: 36px; gap: 32px; }
  .course-feature-image { max-width: 100%; }
}

/* ============ EMBEDDED CALENDAR ============ */
.calendar-section {
  padding: 100px 32px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.calendar-inner { max-width: 1180px; margin: 0 auto; }
.calendar-frame {
  margin-top: 48px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(74, 30, 40, 0.12), 0 4px 12px rgba(74, 30, 40, 0.06);
  border: 1px solid rgba(184, 146, 78, 0.25);
  background: var(--white-soft);
}
.calendar-frame iframe {
  width: 100%;
  height: 700px;
  border: 0;
  display: block;
}
.calendar-actions {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: var(--ink-soft);
}
.calendar-actions a {
  color: var(--burgundy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.calendar-actions a:hover { color: var(--burgundy-deep); }
@media (max-width: 700px) {
  .calendar-frame iframe { height: 540px; }
  .calendar-section { padding: 70px 20px; }
}

/* ============ FLOATING WHATSAPP BUTTON ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 99;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.15);
  animation-play-state: paused;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}
.whatsapp-float .tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--burgundy-deep);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(74, 30, 40, 0.2);
}
.whatsapp-float .tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--burgundy-deep);
}
.whatsapp-float:hover .tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.7), 0 2px 8px rgba(0, 0, 0, 0.1), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}
@media (max-width: 600px) {
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .whatsapp-float .tooltip { display: none; }
}

/* ============ TEAM GRID ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 56px;
}
.team-card {
  background: var(--white-soft);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(184, 146, 78, 0.18);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  border-color: var(--brass);
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(74, 30, 40, 0.12);
}
.team-card .photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-warm);
  position: relative;
}
.team-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.team-card:hover .photo img { transform: scale(1.03); }
.team-card .photo .fallback {
  display: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream-warm) 100%);
  color: var(--burgundy);
  font-family: 'Fraunces', serif;
  font-size: 96px;
  font-weight: 300;
  align-items: center;
  justify-content: center;
}
.team-card .photo.broken img { display: none; }
.team-card .photo.broken .fallback { display: flex; }
.team-card .info {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.team-card .info .role {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy-deep);
  background: var(--blush);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-weight: 600;
  align-self: flex-start;
}
.team-card .info h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--burgundy-deep);
  margin-bottom: 14px;
  line-height: 1.2;
}
.team-card .info p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.team-card .info p:last-child { margin-bottom: 0; }
@media (max-width: 980px) {
  .team-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============ SPONSORS ============ */
.sponsors {
  padding: 100px 32px;
  background: var(--white-soft);
}
.sponsors-inner { max-width: 1180px; margin: 0 auto; }
.sponsors-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
  margin-top: 56px;
}
.sponsor-card {
  background: var(--cream);
  padding: 48px 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.sponsor-card:hover {
  border-color: var(--brass);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(74, 30, 40, 0.08);
}
.sponsor-card img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  filter: saturate(0.9);
  transition: filter 0.3s ease;
}
.sponsor-card:hover img { filter: saturate(1.1); }

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 110px 32px;
  background: var(--burgundy-deep);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(184, 146, 78, 0.06) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(184, 146, 78, 0.06) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(184, 146, 78, 0.06) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(184, 146, 78, 0.06) 75%);
  background-size: 80px 80px;
  background-position: 0 0, 0 40px, 40px -40px, -40px 0;
  opacity: 0.5;
}
.final-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.final-cta .eyebrow {
  color: var(--brass-light);
  justify-content: center;
}
.final-cta .eyebrow::before { background: var(--brass-light); }
.final-cta h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  margin: 20px 0 24px;
  color: var(--cream);
}
.final-cta h2 em { font-style: italic; color: var(--brass-light); }
.final-cta p {
  font-size: 17px;
  opacity: 0.85;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ============ GENERIC CONTENT BLOCKS ============ */
.content-section {
  padding: 90px 32px;
}
.content-section.alt { background: var(--cream-warm); }
.content-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.content-inner.narrow { max-width: 760px; }

.prose h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--burgundy-deep);
  line-height: 1.2;
  margin-top: 48px;
  margin-bottom: 20px;
}
.prose h2:first-child { margin-top: 0; }
.prose h2 em { font-style: italic; color: var(--burgundy-soft); }
.prose h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--burgundy);
  margin-top: 32px;
  margin-bottom: 12px;
}
.prose p {
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 18px;
}
.prose ul, .prose ol {
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin: 0 0 18px 24px;
}
.prose ul li, .prose ol li { margin-bottom: 8px; }
.prose a {
  color: var(--burgundy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.prose a:hover { color: var(--burgundy-deep); }

/* Buttons inside .prose should keep their own colour and not be underlined */
.prose a.btn-primary,
.prose a.btn-secondary,
.prose a.btn-light,
.prose a.btn-cta {
  text-decoration: none;
}
.prose a.btn-primary { color: var(--cream); }
.prose a.btn-primary:hover { color: var(--cream); }
.prose a.btn-secondary { color: var(--burgundy); }
.prose a.btn-secondary:hover { color: var(--cream); }
.prose a.btn-light { color: var(--burgundy-deep); }
.prose a.btn-light:hover { color: var(--burgundy-deep); }

/* ============ CARD GRID (3-col) ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.feature-card {
  background: var(--white-soft);
  padding: 36px 32px;
  border-radius: 10px;
  border: 1px solid rgba(184, 146, 78, 0.18);
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(74, 30, 40, 0.1);
  border-color: var(--brass);
}
.feature-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--burgundy);
}
.feature-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--burgundy-deep);
  margin-bottom: 12px;
  line-height: 1.25;
}
.feature-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.feature-card .price {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  color: var(--burgundy);
  margin: 12px 0;
}
.feature-card .price small {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 400;
}

/* ============ EVENT LIST ============ */
.event-list { display: flex; flex-direction: column; gap: 20px; margin-top: 48px; }
.event-row {
  background: var(--white-soft);
  border-radius: 10px;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(184, 146, 78, 0.18);
  transition: all 0.3s ease;
}
.event-row:hover {
  border-color: var(--brass);
  box-shadow: 0 14px 30px rgba(74, 30, 40, 0.08);
}
.event-row .date {
  text-align: center;
  border-right: 1px solid rgba(107, 45, 58, 0.15);
  padding-right: 24px;
}
.event-row .date .d {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  color: var(--burgundy);
  line-height: 1;
}
.event-row .date .m {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy-soft);
  margin-top: 6px;
}
.event-row h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--burgundy-deep);
  margin-bottom: 6px;
}
.event-row .meta {
  color: var(--ink-soft);
  font-size: 14.5px;
}

/* ============ GALLERY GRID ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 146, 78, 0.2);
  transition: all 0.3s ease;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 16px 40px rgba(74, 30, 40, 0.15); }
.gallery-item.tall { aspect-ratio: 3 / 5; }
.gallery-item.wide { aspect-ratio: 5 / 3; grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item .placeholder {
  text-align: center;
  color: var(--burgundy-soft);
  font-family: 'Fraunces', serif;
  padding: 24px;
}
.gallery-item .placeholder .ico {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}
.gallery-item .placeholder .tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
}

/* ============ BLOG LIST ============ */
.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white-soft);
  border-radius: 10px;
  padding: 36px;
  border: 1px solid rgba(184, 146, 78, 0.18);
  transition: all 0.3s ease;
  cursor: pointer;
}
.blog-card:hover { border-color: var(--brass); transform: translateY(-3px); box-shadow: 0 16px 36px rgba(74, 30, 40, 0.1); }
.blog-card .tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--blush);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-weight: 600;
}
.blog-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--burgundy-deep);
  line-height: 1.25;
  margin-bottom: 12px;
}
.blog-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.blog-card .meta {
  font-size: 13px;
  color: var(--burgundy-soft);
}

/* ============ CONTACT FORM ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  margin-top: 48px;
}
.contact-info h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--burgundy-deep);
  margin-bottom: 12px;
  margin-top: 28px;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
.contact-info a { color: var(--burgundy); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }
.form-card {
  background: var(--white-soft);
  border-radius: 10px;
  padding: 40px;
  border: 1px solid rgba(184, 146, 78, 0.18);
}
.form-field { margin-bottom: 22px; }
.form-field label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(107, 45, 58, 0.2);
  border-radius: 6px;
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--burgundy);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* ============ FOOTER ============ */
footer {
  background: var(--cream-warm);
  padding: 80px 32px 32px;
  color: var(--ink-soft);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-col h4 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--burgundy-deep);
  margin-bottom: 20px;
}
.footer-col p, .footer-col li {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--burgundy); }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { max-width: 280px; font-size: 14px; }
.newsletter-form {
  display: flex;
  margin-top: 16px;
  border: 1px solid rgba(107, 45, 58, 0.2);
  border-radius: 999px;
  overflow: hidden;
  background: var(--cream);
}
.newsletter-form input {
  flex: 1;
  border: none;
  padding: 12px 18px;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
}
.newsletter-form button {
  background: var(--burgundy);
  color: var(--cream);
  border: none;
  padding: 12px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--burgundy-deep); }
.map-wrap {
  margin-top: 32px;
  border-radius: 8px;
  overflow: hidden;
  height: 180px;
  border: 1px solid rgba(107, 45, 58, 0.15);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(107, 45, 58, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .hero-inner, .about-inner, .footer-inner, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 24px 32px;
    gap: 16px;
    border-bottom: 1px solid rgba(107, 45, 58, 0.12);
  }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .trust-item:nth-child(2)::after { display: none; }
  .event-card { grid-template-columns: 1fr; padding: 36px; gap: 24px; text-align: center; }
  .event-media { width: 100%; max-width: 360px; height: 180px; margin: 0 auto; }
  .event-date { padding-right: 0; padding-bottom: 24px; border-right: none; border-bottom: 1px solid rgba(107, 45, 58, 0.15); }
  .schedule-grid, .sponsors-logos, .card-grid, .card-grid.cols-2, .blog-list, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .hero-image .badge { width: 100px; height: 100px; bottom: -16px; left: -10px; }
  .hero { padding: 60px 24px 80px; }
  .about, .schedule, .sponsors, .final-cta, .content-section { padding: 70px 24px; }
  .event-row { grid-template-columns: 1fr; text-align: center; gap: 18px; }
  .event-row .date { border-right: none; border-bottom: 1px solid rgba(107, 45, 58, 0.15); padding-right: 0; padding-bottom: 16px; }
  .logo img { height: 56px; }
}
@media (max-width: 600px) {
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item::after { display: none !important; }
  .nav-inner { padding: 14px 20px; }
  .logo-text { font-size: 16px; }
  .logo img { height: 48px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease-out both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
