/* ANNOUNCE */
.ann {
  background: var(--g);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* HEADER */
.hdr {
  position: sticky;
  top: 0;
  z-index: 90;
  height: 90px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 12px;
  transition: box-shadow 0.25s;
}
.hdr.sh {
  box-shadow: 0 2px 16px rgba(26, 17, 8, 0.07);
}
.hl,
.hr {
  display: flex;
  align-items: center;
  gap: 2px;
}
.hr {
  justify-content: flex-end;
}
.hdr-logo img {
  height: 80px;
  width: auto;
}
.ibtn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: background 0.18s;
  color: var(--ink);
}
.ibtn:hover {
  background: var(--blush);
}
.hlines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hlines span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.hopen .hlines span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hopen .hlines span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hopen .hlines span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.cwrap {
  position: relative;
}
.cdot {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--g);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border: 2px solid var(--white);
  transition: transform 0.2s;
}
.cdot.bump {
  transform: scale(1.4);
}

/* OVERLAY */
.ovl {
  position: fixed;
  inset: 0;
  background: rgba(26, 17, 8, 0.48);
  backdrop-filter: blur(3px);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.ovl.on {
  opacity: 1;
  pointer-events: all;
}

/* SIDEBAR */
.sb {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: min(296px, 86vw);
  background: var(--white);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.sb.on {
  transform: translateX(0);
}
.sbh {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--line);
}
.sbh img {
  height: 34px;
}
.sbc {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 20px;
  color: var(--mid);
  transition: background 0.2s;
}
.sbc:hover {
  background: var(--blush);
}
.sbn {
  padding: 10px 0;
  flex: 1;
}
.sbn a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mid);
  border-bottom: 1px solid var(--line);
  transition:
    color 0.18s,
    padding-left 0.18s;
}
.sbn a:hover {
  color: var(--ink);
  padding-left: 30px;
}
.sbn .copa {
  color: var(--g);
  font-weight: 600;
}
.sbf {
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--mid);
  line-height: 1.6;
}

/* HERO */
.hero {
  position: relative;
  min-height: min(90vw, 580px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #001606;
}
.hbg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 35%, #005221, #001606 70%);
}
.hdots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.055) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
}
.hglow {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(240, 196, 26, 0.18),
    transparent 68%
  );
  pointer-events: none;
}
.hglow2 {
  position: absolute;
  left: -50px;
  bottom: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 156, 59, 0.2), transparent 68%);
  pointer-events: none;
}
.hin {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 64px 24px;
  max-width: 680px;
}
.hpill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(240, 196, 26, 0.3);
  background: rgba(240, 196, 26, 0.1);
  color: var(--y);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 22px;
}
.htit {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 10vw, 88px);
  color: #fff;
  font-weight: 300;
  line-height: 0.97;
  letter-spacing: -0.022em;
  margin-bottom: 10px;
}
.htit em {
  font-style: italic;
  color: var(--y);
}
.htit strong {
  font-weight: 600;
  font-style: normal;
}
.hsub {
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(13px, 2.4vw, 16px);
  font-weight: 300;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 28px;
}
.hflags {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 32px;
}
.hflags span {
  height: 5px;
  border-radius: 3px;
}
.hcta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--y);
  color: #001a08;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 99px;
  box-shadow: 0 4px 24px rgba(240, 196, 26, 0.42);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.hcta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(240, 196, 26, 0.55);
}
.hdiv {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  height: 5px;
}
.hdiv span {
  flex: 1;
}

/* SECTION */
.sec {
  padding: 64px 20px;
}
.sec-in {
  max-width: 1160px;
  margin: 0 auto;
}
.sec-lbl {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 10px;
  justify-content: center;
}
.sec-lbl::before,
.sec-lbl::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--blush);
}
.sec-h {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 400;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 10px;
}
.sec-h em {
  font-style: italic;
  color: var(--g);
}
.sec-desc {
  text-align: center;
  color: var(--mid);
  font-size: 14px;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 48px;
  font-weight: 300;
}

/* STRIP */
.copa-strip {
  background: var(--ink);
  padding: 40px 20px;
  text-align: center;
}
.copa-strip h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 5vw, 44px);
  color: #fff;
  font-weight: 300;
  margin-bottom: 8px;
}
.copa-strip h2 em {
  color: var(--y);
  font-style: italic;
}
.copa-strip p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
}
.flag-row {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 20px;
}
.flag-row span {
  height: 4px;
  width: 60px;
  border-radius: 2px;
}

/* FOOTER */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 36px 20px;
  font-size: 12.5px;
  line-height: 1.7;
}
.footer img {
  height: 36px;
  width: auto;
  margin: 0 auto 16px;
  opacity: 0.85;
}
.footer a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
}
