:root {
  --black: #050505;
  --navy: #111111;
  --blue: #6f7073;
  --cyan: #e8952f;
  --mint: #f3b35a;
  --paper: #f6f3ef;
  --ink: #2f3033;
  --muted: #737477;
  --white: #fff;
  --orange: #e8952f;
  --orange-soft: #f3b35a;
  --gray: #6f7073;
  --shadow: 0 22px 60px rgba(0, 0, 0, .16);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: "Nunito Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7
}

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

.container {
  width: min(1160px, 92vw);
  margin: auto
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .08)
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  letter-spacing: .03em
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-weight: 900
}

.brand-text {
  font-size: .76rem;
  line-height: 1.1
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: .78rem
}

.nav-links a:not(.btn) {
  position: relative
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 3px;
  background: var(--cyan);
  transition: .25s
}

.nav-links a:hover::after {
  width: 100%
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.8rem
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  color: #151515;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .04em;
  box-shadow: 0 14px 30px rgba(232, 149, 47, .28);
  transition: .25s
}

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

.btn-small {
  padding: 11px 22px
}

.btn-ghost {
  background: rgba(255, 255, 255, .1);
  color: white;
  border: 1px solid rgba(255, 255, 255, .35);
  box-shadow: none
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--cyan);
  box-shadow: none;
  color: var(--blue)
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding-top: 82px
}

.section-dark {
  background: radial-gradient(circle at 78% 25%, rgba(232, 149, 47, .36), transparent 24%), linear-gradient(135deg, #050505 0%, #3a3a3d 55%, #e8952f 130%)
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(7, 31, 64, .55), rgba(7, 31, 64, .8)), url('https://images.unsplash.com/photo-1511895426328-dc8714191300?q=80&w=1800&auto=format&fit=crop');
  background-size: cover;
  background-position: center 35%;
  mix-blend-mode: soft-light;
  opacity: .78
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .65fr;
  gap: 70px;
  align-items: center
}

.eyebrow {
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--cyan);
  font-size: .82rem
}

.eyebrow.dark {
  color: var(--blue)
}

h1,
h2,
h3 {
  font-family: Montserrat, sans-serif;
  line-height: 1.05;
  margin: 0 0 18px
}

h1 {
  font-size: clamp(2.7rem, 7vw, 6.3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.05em
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -.04em
}

.subtitle {
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 800;
  margin-bottom: 34px
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.event-card {
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  border-radius: 34px;
  padding: 38px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .4)
}

.card-label {
  display: inline-block;
  padding: 7px 14px;
  background: #fff3e4;
  color: var(--blue);
  border-radius: 99px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .72rem
}

.date-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px
}

.date-boxes div {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 22px;
  color: #fff;
  padding: 18px;
  text-align: center
}

.date-boxes strong {
  display: block;
  font-size: 3rem;
  font-family: Montserrat
}

.date-boxes span {
  text-transform: uppercase;
  font-weight: 800
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  translate: -50% 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--blue);
  font-size: 1.4rem
}

.section {
  padding: 105px 0
}

.split {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 70px
}

.section-title span,
.cta span {
  display: block;
  font-family: Montserrat;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: .15em
}

.about-text {
  font-size: 1.08rem;
  color: #696a6d
}

.link-arrow {
  font-family: Montserrat;
  font-weight: 900;
  color: var(--blue);
  text-transform: uppercase
}

.stats {
  background: var(--navy);
  color: #fff;
  padding: 46px 0
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.stat {
  text-align: center;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, .15)
}

.stat:last-child {
  border-right: 0
}

.stat strong {
  display: block;
  font-family: Montserrat;
  font-size: 3.8rem;
  line-height: 1;
  color: var(--cyan)
}

.stat span {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .05em
}

.program {
  background: var(--paper)
}

.program-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px
}

.tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 28px
}

.tab {
  border: 0;
  border-radius: 18px;
  padding: 18px 34px;
  background: #fff;
  color: var(--blue);
  font-family: Montserrat;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  cursor: pointer
}

.tab small {
  display: block;
  color: var(--muted)
}

.tab.active {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff
}

.tab.active small {
  color: #fff7ec
}

.schedule {
  display: none
}

.schedule.active {
  display: block
}

.slot {
  display: grid;
  grid-template-columns: 120px 1fr 52px;
  gap: 26px;
  align-items: start;
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  margin: 16px 0;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .08);
  border-left: 6px solid var(--cyan)
}

.slot time {
  font-family: Montserrat;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--blue)
}

.slot b {
  color: var(--cyan);
  text-transform: uppercase;
  font-family: Montserrat;
  font-size: .78rem;
  letter-spacing: .09em
}

.slot h3 {
  font-size: 1.35rem;
  margin: 4px 0 8px
}

.slot p {
  margin: 0;
  color: var(--muted)
}

.slot>span {
  font-family: Montserrat;
  font-weight: 900;
  font-size: 1.7rem;
  color: #d8d8d8
}

.slot.break {
  border-left-color: #cfd8e3;
  background: #fffdf9
}

.center {
  text-align: center
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px
}

.speaker {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid #eeeeee
}

.avatar {
  width: 108px;
  height: 108px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff1df, #fff);
  border: 6px solid #fff5e8;
  color: var(--blue);
  font-family: Montserrat;
  font-weight: 900;
  font-size: 2rem
}

.speaker h3 {
  font-size: 1.18rem
}

.speaker p {
  color: var(--muted);
  margin: 0
}

.location {
  background: #fff
}

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center
}

.map-card {
  min-height: 420px;
  border-radius: 36px;
  background: linear-gradient(rgba(7, 31, 64, .15), rgba(7, 31, 64, .35)), url('https://images.unsplash.com/photo-1577086664693-894d8405334a?q=80&w=1400&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow)
}

.location-copy p {
  font-size: 1.2rem;
  color: var(--muted)
}

.cta {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff
}

.cta-box {
  text-align: center;
  border-radius: 38px;
  padding: 64px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18)
}

.cta p {
  color: #f4e5d2;
  max-width: 650px;
  margin: 0 auto 28px
}

.footer {
  background: #050505;
  color: #d3d3d3;
  padding: 28px 0
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center
}

.footer a {
  margin-left: 20px
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: .7s ease
}

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

.delay-1 {
  transition-delay: .12s
}

.delay-2 {
  transition-delay: .22s
}

.delay-3 {
  transition-delay: .32s
}

@media(max-width:860px) {
  .menu-toggle {
    display: block
  }

  .nav-links {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: 88px;
    background: white;
    border-radius: 20px;
    padding: 22px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start
  }

  .nav-links.open {
    display: flex
  }

  .hero-grid,
  .split,
  .location-grid {
    grid-template-columns: 1fr
  }

  .hero-grid {
    gap: 34px
  }

  .stats-grid,
  .speaker-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .program-head,
  .footer-grid {
    display: block
  }

  .slot {
    grid-template-columns: 1fr
  }

  .slot>span {
    display: none
  }

  .section {
    padding: 72px 0
  }
}

@media(max-width:520px) {

  .stats-grid,
  .speaker-grid {
    grid-template-columns: 1fr
  }

  h1 {
    font-size: 2.55rem
  }

  .cta-box {
    padding: 40px 22px
  }

  .tabs {
    flex-direction: column
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15)
  }
}

.questionnaire {
  background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
  position: relative;
  overflow: hidden
}

.questionnaire::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 70px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 149, 47, .18), transparent 68%)
}

.questionnaire-grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 60px;
  align-items: center
}

.questionnaire-copy p {
  font-size: 1.14rem;
  color: #696a6d;
  margin-bottom: 24px
}

.questionnaire-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px
}

.questionnaire-points li {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
  color: var(--blue)
}

.questionnaire-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  color: #151515;
  font-size: .85rem
}

.questionnaire-card {
  position: relative;
  background: #fff;
  border-radius: 34px;
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid #eeeeee
}

.questionnaire-card h3 {
  font-size: 2rem;
  color: var(--navy);
  margin-top: 18px
}

.questionnaire-card>p {
  color: var(--muted);
  margin-top: -6px
}

.mini-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #fff1df;
  border-radius: 18px;
  padding: 8px;
  margin: 24px 0
}

.mini-tab {
  border: 0;
  border-radius: 14px;
  padding: 13px 18px;
  background: transparent;
  color: var(--blue);
  font-family: Montserrat;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer
}

.mini-tab.active {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  box-shadow: 0 10px 24px rgba(232, 149, 47, .22)
}

.question-panel {
  display: none
}

.question-panel.active {
  display: block
}

.question-panel label {
  display: block;
  font-family: Montserrat;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .75rem;
  color: var(--blue);
  letter-spacing: .08em;
  margin-bottom: 9px
}

.copy-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px
}

.copy-row input {
  min-width: 0;
  flex: 1;
  border: 2px solid #eadcca;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: #fffdf9
}

.copy-btn {
  border: 0;
  border-radius: 16px;
  padding: 0 20px;
  background: var(--navy);
  color: #fff;
  font-family: Montserrat;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer
}

.questionnaire-btn {
  width: 100%
}

.copy-feedback {
  display: block;
  color: var(--blue);
  font-weight: 800;
  text-align: center;
  margin-top: 10px;
  min-height: 20px
}

.qr-frame {
  width: min(260px, 100%);
  aspect-ratio: 1;
  margin: 6px auto 18px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff5e8, #fff);
  display: grid;
  place-items: center;
  border: 1px solid #f0d7bc
}

.qr-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px
}

.qr-note {
  text-align: center;
  color: var(--muted);
  margin: 0
}

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

  .copy-row {
    flex-direction: column
  }

  .copy-btn {
    padding: 14px 18px
  }
}

/* About: two-event compact area */
.about-events {
  display: grid;
  gap: 32px
}

.section-intro {
  max-width: 720px;
  margin-top: 14px;
  color: #68717c;
  font-size: 1.08rem;
  line-height: 1.7
}

.event-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  background: #f4f7fb;
  border: 1px solid rgba(0, 0, 0, .08);
  padding: 10px;
  border-radius: 28px
}

.event-switch-btn {
  border: 0;
  background: transparent;
  border-radius: 22px;
  padding: 18px 20px;
  text-align: left;
  font-family: inherit;
  font-weight: 900;
  font-size: 1rem;
  color: #37383a;
  cursor: pointer;
  transition: .25s ease
}

.event-switch-btn small {
  display: block;
  color: #e8952f;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  margin-bottom: 5px
}

.event-switch-btn.active {
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .10);
  transform: translateY(-1px)
}

.event-panels {
  position: relative
}

.event-panel {
  display: none;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items: stretch
}

.event-panel.active {
  display: grid;
  animation: softIn .35s ease
}

.event-panel-copy,
.event-highlights {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .08)
}

.event-panel-copy {
  position: relative;
  overflow: hidden
}

.event-panel-copy:after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232, 149, 47, .18), rgba(111, 112, 115, .10))
}

.event-panel-copy h3 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.08;
  margin: 18px 0;
  color: #2f3033
}

.event-panel-copy p {
  color: #737477;
  line-height: 1.75;
  margin: 0 0 12px
}

.event-highlights {
  background: #2f3033;
  color: #fff
}

.event-highlights h4 {
  font-size: 1.15rem;
  margin: 0 0 18px;
  color: #fff
}

.event-highlights ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px
}

.event-highlights li {
  position: relative;
  padding-left: 30px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .86)
}

.event-highlights li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e8952f;
  color: #2f3033;
  display: grid;
  place-items: center;
  font-size: .76rem;
  font-weight: 900
}

.about-summary {
  background: linear-gradient(135deg, #e8952f, #f3b35a);
  color: #2f3033;
  border-radius: 26px;
  padding: 22px 26px;
  font-size: 1.05rem;
  line-height: 1.6;
  box-shadow: 0 18px 50px rgba(232, 149, 47, .22)
}

@keyframes softIn {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media(max-width:860px) {

  .event-switch,
  .event-panel {
    grid-template-columns: 1fr
  }

  .event-switch {
    border-radius: 24px
  }

  .event-switch-btn {
    text-align: center
  }

  .event-panel-copy,
  .event-highlights {
    padding: 26px
  }
}

/* Speakers locked / updating overlay */
.speakers-locked {
  position: relative;
  margin-top: 44px;
  border-radius: 34px;
  overflow: hidden;
  min-height: 310px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid #eeeeee
}

.speakers-locked .speaker-grid {
  margin-top: 0;
  padding: 24px
}

.speakers-blurred {
  filter: blur(7px);
  transform: scale(1.025);
  opacity: .55;
  pointer-events: none;
  user-select: none
}

.speakers-blurred .speaker {
  box-shadow: 0 12px 34px rgba(0, 0, 0, .08)
}

.speakers-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px;
  background: linear-gradient(135deg, rgba(5, 5, 5, .78), rgba(111, 112, 115, .54));
  backdrop-filter: blur(3px);
  color: #fff
}

.speakers-overlay::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 28px;
  pointer-events: none
}

.speakers-overlay .overlay-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin: 0 auto 14px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  color: #fff2df
}

.speakers-overlay h3 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: -.04em;
  margin-bottom: 12px
}

.speakers-overlay p {
  max-width: 620px;
  margin: 0 auto;
  color: #fff4e8;
  font-size: 1.08rem;
  font-weight: 700
}

@media(max-width:860px) {
  .speakers-locked {
    min-height: 430px
  }

  .speakers-locked .speaker-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:520px) {
  .speakers-locked {
    min-height: 520px
  }

  .speakers-locked .speaker-grid {
    grid-template-columns: 1fr
  }

  .speakers-overlay {
    padding: 24px
  }

  .speakers-overlay::before {
    inset: 14px
  }

  .speakers-overlay p {
    font-size: 1rem
  }
}

/* Custom cursor */
@media (pointer:fine) {

  body.custom-cursor-active,
  body.custom-cursor-active a,
  body.custom-cursor-active button,
  body.custom-cursor-active input,
  body.custom-cursor-active textarea,
  body.custom-cursor-active select,
  body.custom-cursor-active .tab,
  body.custom-cursor-active .mini-tab {
    cursor: none
  }

  .site-cursor-dot,
  .site-cursor-ring {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity .2s ease, width .18s ease, height .18s ease, background .18s ease, border-color .18s ease
  }

  .site-cursor-dot {
    width: 9px;
    height: 9px;
    background: linear-gradient(135deg, var(--cyan), var(--mint));
    box-shadow: 0 0 16px rgba(232, 149, 47, .65)
  }

  .site-cursor-ring {
    width: 42px;
    height: 42px;
    border: 2px solid rgba(232, 149, 47, .72);
    background: rgba(232, 149, 47, .08);
    backdrop-filter: blur(1px)
  }

  body.cursor-visible .site-cursor-dot,
  body.cursor-visible .site-cursor-ring {
    opacity: 1
  }

  body.cursor-hover .site-cursor-ring {
    width: 66px;
    height: 66px;
    background: rgba(232, 149, 47, .16);
    border-color: rgba(243, 179, 90, .9)
  }

  body.cursor-hover .site-cursor-dot {
    width: 12px;
    height: 12px;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(232, 149, 47, .28), 0 0 22px rgba(232, 149, 47, .85)
  }

  body.cursor-press .site-cursor-ring {
    width: 34px;
    height: 34px;
    background: rgba(243, 179, 90, .22)
  }
}


/* Logo oficial no cabeçalho */
.brand-logo {
  gap: 0;
  display: flex;
  align-items: center;
  min-width: 210px;
  text-transform: none;
  letter-spacing: 0
}

.brand-logo img {
  display: block;
  width: 410px;
  max-height: 308px;
  object-fit: contain
}

.hero-copy h1 span {
  color: var(--cyan)
}

@media(max-width:860px) {
  .brand-logo img {
    width: 176px
  }

  .nav {
    height: 78px
  }

  .nav-links {
    top: 84px
  }
}

@media(max-width:520px) {
  .brand-logo {
    min-width: 150px
  }

  .brand-logo img {
    width: 150px
  }
}
/* Location tabs */
.map-card {
  position: relative;
  overflow: hidden;
  background: #111;
}

.map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .35s ease, transform .35s ease;
}

.map-frame.active {
  opacity: 1;
  transform: scale(1);
}

.location-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 24px;
}

.location-tab {
  border: 1px solid rgba(242, 145, 39, .28);
  background: #fff;
  color: var(--dark);
  border-radius: 18px;
  padding: 16px 18px;
  text-align: left;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
  transition: .25s ease;
}

.location-tab span {
  display: block;
  color: var(--orange);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 5px;
}

.location-tab:hover,
.location-tab.active {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  transform: translateY(-3px);
  border-color: transparent;
}

.location-tab:hover span,
.location-tab.active span {
  color: #fff2df;
}

.location-panel {
  display: none;
  animation: fadeUp .35s ease both;
}

.location-panel.active {
  display: block;
}

.location-panel h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.location-panel p {
  margin-bottom: 22px;
}

@media (max-width: 680px) {
  .location-tabs {
    grid-template-columns: 1fr;
  }
}

/* News section */
.news {
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  position: relative;
  overflow: hidden;
}

.news::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  right: -140px;
  top: 40px;
  background: rgba(232, 149, 47, .12);
  filter: blur(2px);
}

.news-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
  position: relative;
  z-index: 1;
}

.news-head .section-intro {
  max-width: 760px;
  margin-top: 12px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.news-card {
  min-height: 280px;
  background: #fff;
  border: 1px solid rgba(232, 149, 47, .18);
  border-radius: 30px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .08);
  transition: .28s ease;
}

.news-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .12);
}

.news-card.featured {
  background: linear-gradient(135deg, #111 0%, #3a3a3d 62%, var(--orange) 145%);
  color: #fff;
}

.news-date {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: #fff4e6;
  color: var(--orange);
  font-family: Montserrat, sans-serif;
  line-height: 1;
  margin-bottom: 34px;
}

.news-card.featured .news-date {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
}

.news-date strong {
  font-size: 2rem;
  font-weight: 900;
}

.news-date span {
  font-size: .76rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
}

.news-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-family: Montserrat, sans-serif;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.news-card.featured .news-tag {
  color: var(--orange-soft);
}

.news-content h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.news-content p {
  color: var(--muted);
  margin: 0 0 22px;
}

.news-card.featured .news-content p {
  color: rgba(255, 255, 255, .82);
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
}

.news-link::after {
  content: "→";
  transition: .2s ease;
}

.news-link:hover::after {
  transform: translateX(5px);
}

.news-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: #151515;
  font-size: 2.4rem;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  margin-bottom: 34px;
}

.muted-news {
  background: #fffaf3;
  border-style: dashed;
}

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

  .news-card.featured {
    grid-column: 1 / -1;
  }
}

@media(max-width: 680px) {
  .news-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .news-card {
    min-height: auto;
  }
}


/* FAQ section */
.faqs {
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 149, 47, .14), transparent 34%),
    linear-gradient(180deg, #fffaf3 0%, #ffffff 72%);
}

.faq-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 135px;
}

.faq-copy .section-intro {
  margin: 14px 0 24px;
}

.faq-help-card {
  margin-top: 28px;
  padding: 28px;
  border-radius: 28px;
  background: #151515;
  color: #fff;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .16);
  overflow: hidden;
  position: relative;
}

.faq-help-card::after {
  content: "?";
  position: absolute;
  right: 22px;
  bottom: -34px;
  font-family: Montserrat, sans-serif;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(232, 149, 47, .18);
  line-height: 1;
}

.faq-help-card strong {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.faq-help-card p {
  color: rgba(255, 255, 255, .78);
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}

.faq-help-card .btn {
  position: relative;
  z-index: 1;
  border-color: rgba(255,255,255,.25);
  color: #fff;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(232, 149, 47, .18);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .07);
  overflow: hidden;
  transition: .25s ease;
}

.faq-item.active {
  border-color: rgba(232, 149, 47, .42);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .1);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--dark);
  cursor: pointer;
}

.faq-question b {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff1df;
  color: var(--orange);
  font-size: 1.35rem;
  line-height: 1;
  transition: .25s ease;
}

.faq-item.active .faq-question b {
  transform: rotate(45deg);
  background: var(--orange);
  color: #151515;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

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

  .faq-copy {
    position: static;
  }
}

@media(max-width: 560px) {
  .faq-question {
    padding: 20px;
    font-size: .98rem;
  }

  .faq-answer p {
    padding: 0 20px 22px;
  }
}
