/* =========================================================
   FUCK YEAH PARTY — San Diego birthday weekend
   ========================================================= */

:root {
  --bg: #07060c;
  --bg-elevated: #12101c;
  --ink: #f6f1e8;
  --ink-muted: rgba(246, 241, 232, 0.68);
  --ink-faint: rgba(246, 241, 232, 0.42);
  --coral: #ff5e5b;
  --hot: #ff2d95;
  --gold: #ffc857;
  --teal: #2ec4b6;
  --violet: #7c5cff;
  --line: rgba(246, 241, 232, 0.1);
  --glass: rgba(18, 16, 28, 0.55);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 1100px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* ----- ambient ----- */

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  animation: float 18s ease-in-out infinite;
}

.orb-a {
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  top: -10%;
  right: -8%;
  background: radial-gradient(circle, var(--hot) 0%, transparent 70%);
}

.orb-b {
  width: min(50vw, 420px);
  height: min(50vw, 420px);
  bottom: 10%;
  left: -12%;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  animation-delay: -6s;
}

.orb-c {
  width: min(40vw, 340px);
  height: min(40vw, 340px);
  top: 45%;
  right: 15%;
  background: radial-gradient(circle, var(--violet) 0%, transparent 70%);
  opacity: 0.35;
  animation-delay: -12s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -30px) scale(1.06);
  }
}

/* ----- header ----- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  background: linear-gradient(to bottom, rgba(7, 6, 12, 0.9), rgba(7, 6, 12, 0));
  backdrop-filter: blur(8px);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--gold), var(--hot));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 0.55rem 1.1rem !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), var(--hot));
  color: var(--ink) !important;
  font-weight: 600 !important;
  box-shadow: 0 8px 24px rgba(255, 45, 149, 0.28);
}

.nav-cta:hover {
  filter: brightness(1.08);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--glass);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-btn[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ----- layout ----- */

main {
  position: relative;
  z-index: 2;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 2rem);
}

.section-head {
  max-width: 560px;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
  font-weight: 400;
}

.section-lead {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

/* ----- hero ----- */

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) clamp(1.25rem, 4vw, 2rem) 4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(255, 94, 91, 0.6);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 94, 91, 0.55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 94, 91, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 94, 91, 0);
  }
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.02em;
}

.hero .line {
  display: block;
}

.line-1 {
  font-size: clamp(3.8rem, 14vw, 8.5rem);
  background: linear-gradient(105deg, var(--ink) 20%, var(--gold) 55%, var(--hot) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.line-2 {
  font-size: clamp(4.2rem, 16vw, 9.5rem);
  color: var(--ink);
  text-shadow: 0 0 60px rgba(255, 45, 149, 0.25);
}

.hero-sub {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--ink-muted);
  font-weight: 300;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.meta-pill {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  min-width: 9rem;
}

.meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.meta-value {
  font-weight: 600;
  font-size: 0.98rem;
}

/* countdown */

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 420px;
  margin-top: 2.25rem;
}

.cd-block {
  text-align: center;
  padding: 1rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.cd-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  background: linear-gradient(180deg, var(--ink), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cd-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

/* ----- buttons ----- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--hot) 55%, var(--violet) 130%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(255, 45, 149, 0.3);
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-wide {
  width: 100%;
}

/* ----- schedule ----- */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.event-card {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.event-card:hover {
  border-color: rgba(246, 241, 232, 0.2);
  transform: translateY(-2px);
}

.event-card.featured {
  border-color: rgba(255, 45, 149, 0.35);
  background:
    linear-gradient(145deg, rgba(255, 45, 149, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

.event-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--coral), var(--hot));
  color: #fff;
}

.event-day {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding-top: 0.15rem;
}

.day-name {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--gold);
}

.day-date {
  font-size: 0.8rem;
  color: var(--ink-faint);
}

.event-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.event-when {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 500;
}

.event-desc {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  max-width: 48rem;
}

.event-flow {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.event-flow li {
  display: grid;
  grid-template-columns: minmax(6.5rem, auto) minmax(0, 1fr) auto;
  gap: 0.55rem 0.85rem;
  align-items: center;
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
}

.event-flow li.flow-no-map {
  grid-template-columns: minmax(6.5rem, auto) minmax(0, 1fr);
}

.flow-time {
  align-self: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.flow-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.flow-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  box-sizing: border-box;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0.35rem 0.6rem;
  border-radius: 10px;
  background: rgba(7, 6, 12, 0.72);
  border: 1px solid rgba(246, 241, 232, 0.12);
  margin-bottom: 0.1rem;
  overflow: hidden;
  flex-shrink: 1;
}

.flow-logo img {
  display: block;
  width: auto;
  height: 26px;
  max-width: min(148px, 100%);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 1;
}

.flow-logo.logo-square {
  width: 40px;
  height: 40px;
  padding: 0.35rem;
  justify-content: center;
}

.flow-logo.logo-square img {
  width: 28px;
  height: 28px;
  max-width: 28px;
}

.flow-logo.logo-wide img {
  height: 22px;
  max-width: min(160px, 100%);
}

.flow-logo.logo-on-dark {
  background: rgba(0, 0, 0, 0.78);
}

.event-flow li.flow-maybe {
  border-style: dashed;
  border-color: rgba(255, 200, 87, 0.35);
  background: rgba(255, 200, 87, 0.06);
}

.flow-badge-maybe {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0.15rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0a12;
  background: linear-gradient(135deg, var(--gold), #ff9f43);
}

.flow-note .text-link {
  margin-left: 0.25rem;
  white-space: nowrap;
}

.flow-spot {
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}

.flow-note {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

.flow-map {
  position: relative;
  display: block;
  width: 88px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  flex-shrink: 0;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.flow-map:hover {
  border-color: rgba(46, 196, 182, 0.55);
  transform: scale(1.03);
}

.flow-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #1a2744;
}

.flow-map span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.15rem 0.25rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.event-desc-soft {
  font-size: 0.92rem;
  margin-bottom: 1rem !important;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 480px) {
  .event-flow li {
    grid-template-columns: minmax(0, 1fr) 72px;
    gap: 0.5rem 0.65rem;
    padding: 0.75rem;
  }

  .event-flow li.flow-no-map {
    grid-template-columns: 1fr;
  }

  .flow-time {
    grid-column: 1 / -1;
    white-space: normal;
  }

  .flow-copy {
    grid-column: 1;
    min-width: 0;
  }

  .flow-map {
    grid-column: 2;
    grid-row: 2;
    width: 72px;
    height: 72px;
    align-self: start;
  }

  .flow-logo {
    height: 36px;
    max-width: 100%;
    padding: 0.3rem 0.5rem;
  }

  .flow-logo img,
  .flow-logo.logo-wide img {
    height: 20px;
    max-width: 100%;
    width: auto;
  }

  .flow-logo.logo-square {
    width: 36px;
    height: 36px;
  }

  .flow-logo.logo-square img {
    width: 24px;
    height: 24px;
    max-width: 24px;
  }
}

.event-tags li {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--line);
  color: var(--ink-muted);
  background: rgba(0, 0, 0, 0.2);
}

/* ----- spot ----- */

.spot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.glass {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.spot-card {
  padding: 1.5rem;
}

.spot-card h3 {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}

.spot-name {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.spot-addr {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.spot-list {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--ink-muted);
}

.spot-list li + li {
  margin-top: 0.55rem;
}

.text-link {
  display: inline-block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gold);
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--ink);
}

.map-card {
  padding: 0;
  overflow: hidden;
  min-height: 200px;
}

.map-placeholder {
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background:
    radial-gradient(circle at 50% 40%, rgba(46, 196, 182, 0.25), transparent 55%),
    linear-gradient(160deg, #1a2744 0%, #0d1a2e 40%, #1a1030 100%);
  position: relative;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
}

.map-pin {
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--hot);
  transform: rotate(-45deg);
  box-shadow: 0 0 24px rgba(255, 45, 149, 0.7);
  position: relative;
  z-index: 1;
  animation: pin-bounce 2.4s ease-in-out infinite;
}

@keyframes pin-bounce {
  0%,
  100% {
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    transform: rotate(-45deg) translateY(-6px);
  }
}

.map-placeholder span {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.12em;
}

.map-placeholder p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.stay-card {
  margin-top: 1rem;
  padding: clamp(1.5rem, 4vw, 2rem);
}

.stay-copy h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.stay-copy > p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  max-width: 48rem;
}

.stay-copy .spot-list {
  margin-bottom: 1.35rem;
}

.stay-btn {
  text-decoration: none;
}

.stay-fine {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-faint);
}

/* ----- location maps ----- */

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

.loc-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.loc-card:hover {
  border-color: rgba(46, 196, 182, 0.45);
  transform: translateY(-2px);
}

.loc-media {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: #1a2744;
}

.loc-media > img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.loc-logo {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  max-width: calc(100% - 1.5rem);
  height: 44px;
  padding: 0.4rem 0.65rem;
  border-radius: 12px;
  background: rgba(7, 6, 12, 0.78);
  border: 1px solid rgba(246, 241, 232, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.loc-logo img {
  display: block;
  width: auto;
  height: 28px;
  max-width: min(150px, 100%);
  object-fit: contain;
  object-position: left center;
}

.loc-logo.logo-square {
  width: 48px;
  height: 48px;
  padding: 0.4rem;
  justify-content: center;
}

.loc-logo.logo-square img {
  width: 32px;
  height: 32px;
  max-width: 32px;
}

.loc-logo.logo-wide img {
  height: 24px;
  max-width: min(160px, 100%);
}

.loc-logo.logo-on-dark {
  background: rgba(0, 0, 0, 0.72);
}

.spot-logo {
  display: block;
  max-width: 180px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 0 0.75rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.loc-meta {
  padding: 1rem 1.15rem 1.2rem;
}

.loc-tag {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.loc-meta h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.loc-meta p {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.loc-cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
}

.loc-card:hover .loc-cta {
  color: var(--ink);
}

.loc-thumb-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  min-height: 200px;
}

.loc-thumb-img {
  width: 100%;
  flex: 1;
  min-height: 180px;
  object-fit: cover;
  display: block;
  background: #1a2744;
}

.loc-thumb-label {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
}

.loc-thumb-card:hover .loc-thumb-label {
  color: var(--ink);
}

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

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

  .loc-media > img {
    height: 130px;
  }
}

/* ----- details ----- */

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

.detail-card {
  padding: 1.5rem 1.5rem 1.65rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), transparent);
  transition: border-color 0.25s ease;
}

.detail-card:hover {
  border-color: rgba(46, 196, 182, 0.35);
}

.detail-icon {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.detail-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.detail-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

/* ----- rsvp ----- */

.rsvp-section {
  padding-bottom: clamp(5rem, 12vw, 8rem);
}

.rsvp-panel {
  padding: clamp(1.75rem, 5vw, 2.75rem);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.rsvp-panel .section-lead {
  margin-bottom: 2rem;
}

.btn-whatsapp {
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.28);
  text-decoration: none;
}

.btn-whatsapp:hover {
  filter: brightness(1.06);
}

.form-note,
.rsvp-hint {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--ink-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ----- footer ----- */

.site-footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1.5rem 3.5rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.footer-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, var(--gold), var(--hot));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-sub {
  margin: 0.5rem 0 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.footer-fine {
  margin: 0.85rem 0 0;
  color: var(--ink-faint);
  font-size: 0.85rem;
}

/* ----- reveal ----- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- responsive ----- */

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

  .map-card {
    order: -1;
  }
}

@media (max-width: 720px) {
  .menu-btn {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(12, 10, 20, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 0.85rem 1rem;
    border-radius: 10px;
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.25rem;
  }

  .event-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .event-badge {
    top: 1rem;
    right: 1rem;
  }

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

@media (max-width: 420px) {
  .countdown {
    max-width: none;
  }

  .meta-pill {
    min-width: calc(50% - 0.4rem);
    flex: 1 1 auto;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .orb,
  .dot,
  .map-pin {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .event-card:hover {
    transform: none;
  }
}
