:root {
  --bg: #f3ede5;
  --bg-2: #efe8de;
  --ink: #131313;
  --line: rgba(19, 19, 19, 0.30);
  --line-soft: rgba(19, 19, 19, 0.14);
  --btn-bg: #0d0d0d;
  --btn-text: #ffffff;
  --max-width: 1440px;

  /* layout heights */
  --header-total-h: 112px;
  --hero-top-space: 130px;
  --hero-bottom-space: 24px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 38% 7%, rgba(255, 149, 71, 0.11), transparent 18%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
}

body.panel-open {
  overflow: hidden;
}
body.is-loading{
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.page {
  min-height: 100svh;
  padding-inline: 28px;
}



/* =========================================
+preloader
*/

/* =========================================================
   PRELOADER — LOGO REVEAL
========================================================= */

.preloader52 {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(circle at 38% 12%, rgba(255, 149, 71, 0.10), transparent 18%),
    linear-gradient(180deg, #f3ede5 0%, #efe8de 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition:
    opacity 700ms ease,
    visibility 700ms ease,
    transform 700ms ease;
}

.preloader52.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
}

.preloader52__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0.30;
}

.preloader52__bg span {
  display: block;
  font-size: clamp(14rem, 28vw, 32rem);
  line-height: 0.78;
  letter-spacing: -0.13em;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(217, 41, 99, 0.09);
  transform: translateX(4%);
}

.preloader52__inner {
  position: relative;
  z-index: 2;
  width: min(420px, calc(100% - 40px));
  display: grid;
  justify-items: center;
  gap: 14px;
}

.preloader52__logo-wrap {
  position: relative;
  width: min(280px, 56vw);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px) scale(0.985);
  animation: preloaderLogoReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.preloader52__logo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 22px rgba(19, 19, 19, 0.06));
}

.preloader52__shine {
  position: absolute;
  inset: -8% -16%;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.58) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: translateX(-130%) skewX(-18deg);
  animation: preloaderShine 1.8s ease-in-out 0.45s infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

.preloader52__eyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(19, 19, 19, 0.56);
  opacity: 0;
  transform: translateY(6px);
  animation: preloaderTextReveal 0.7s ease forwards;
  animation-delay: 0.18s;
}

.preloader52__caption {
  margin: -2px 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(19, 19, 19, 0.48);
  opacity: 0;
  transform: translateY(6px);
  animation: preloaderTextReveal 0.7s ease forwards;
  animation-delay: 0.28s;
}

@keyframes preloaderLogoReveal {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes preloaderTextReveal {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes preloaderShine {
  0% {
    transform: translateX(-130%) skewX(-18deg);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  55% {
    transform: translateX(130%) skewX(-18deg);
    opacity: 1;
  }
  100% {
    transform: translateX(130%) skewX(-18deg);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .preloader52__inner {
    gap: 12px;
  }

  .preloader52__bg span {
    font-size: 10rem;
  }

  .preloader52__logo-wrap {
    width: min(220px, 62vw);
  }

  .preloader52__caption {
    font-size: 0.82rem;
  }
}

/* =========================================================
   HEADER
========================================================= */

.header52 {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  position: relative;
  padding-top: 18px;
  min-height: 96px;
  overflow: visible;
  z-index: 20;
}

.header52__bar {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.header52__brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header52__brand img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.header52__menu {
  justify-self: center;
  width: 60px;
  height: 60px;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.header52__menu-lines {
  width: 40px;
  display: grid;
  gap: 10px;
}

.header52__menu-lines span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
}

.header52__cta {
  justify-self: end;
  min-height: 42px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-bg);
  color: var(--btn-text);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.header52::before,
.header52::after {
  content: "";
  position: absolute;
  bottom: -10px;
  height: 1px;
  background: var(--line);
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
}

.header52::before {
  left: 0;
  width: 100%;
  transform: rotate(0.6deg);
  transform-origin: right center;
}

.header52::after {
  right: 0;
  width: 100%;
  transform: rotate(-0.6deg);
  transform-origin: left center;
}

/* =========================================================
   HERO 52 — POSTER REDESIGN / FINAL
========================================================= */

.hero52--poster {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  min-height: calc(100svh - var(--header-total-h));
  padding: var(--hero-top-space) 0 var(--hero-bottom-space);
  position: relative;
  display: flex;
  overflow: clip;
}

.hero52__canvas {
  position: relative;
  flex: 1;
  width: 100%;
}

/* right-end decorative 52 rail */
.hero52__edge52 {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(110px, 10vw, 150px);
  height: 100%;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0.34;
}

.hero52__edge52 span {
  display: block;
  font-size: clamp(9rem, 13vw, 15rem);
  line-height: 0.78;
  letter-spacing: -0.12em;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(217, 41, 99, 0.12);
  transform: translateX(18%);
}

.hero52__poster-accent {
  position: absolute;
  right: 6%;
  top: 10%;
  width: min(220px, 16vw);
  opacity: 0.022;
  transform: rotate(-10deg);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
/* 
.hero52__grid {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) 118px minmax(440px, 0.92fr);
  gap: clamp(56px, 6vw, 112px);
  align-items: stretch;
  padding-right: clamp(74px, 9vw, 148px);
} */

.hero52__grid {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(420px, 1.04fr) 110px minmax(520px, 1fr);
  gap: clamp(52px, 5.4vw, 98px);
  align-items: stretch;
  padding-right: clamp(58px, 7vw, 118px);
}

/* =========================================================
   LEFT / POSTER
========================================================= */

.hero52__left {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-right: clamp(18px, 3vw, 44px);
}

.hero52__poster-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(19, 19, 19, 0.08);
}

.hero52__poster-eyebrow {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(19, 19, 19, 0.52);
}

.hero52__poster-badge {
  min-height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d92963;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero52__poster-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(34px, 5vh, 52px);
}

.hero52__poster-kicker {
  margin: 0 0 14px;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(19, 19, 19, 0.54);
}

.hero52__poster-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.8rem, 8.8vw, 9rem);
  line-height: 0.80;
  letter-spacing: -0.075em;
  font-weight: 600;
  color: #131313;
}

.hero52__poster-title span {
  display: block;
}

.hero52__poster-title span:last-child {
  color: #d92963;
}

.hero52__poster-statement {
  margin: 26px 0 0;
  max-width: 13ch;
  font-size: clamp(1.48rem, 2.4vw, 2.16rem);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 600;
  color: rgba(19, 19, 19, 0.92);
}

.hero52__poster-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero52__poster-btn {
  min-height: 58px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

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

.hero52__poster-btn--primary {
  background: #131313;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(15, 15, 15, 0.13);
}

.hero52__poster-btn--ghost {
  background: rgba(255, 255, 255, 0.46);
  color: #131313;
  border: 1px solid rgba(19, 19, 19, 0.07);
}

/* =========================================================
   CENTER / AXIS
========================================================= */

.hero52__axis {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 6px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.hero52__axis.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero52__axis-line {
  width: 1px;
  flex: 1 1 auto;
  background: rgba(19, 19, 19, 0.14);
}

.hero52__axis-line--top {
  margin-bottom: 34px;
}

.hero52__axis-line--bottom {
  margin-top: 34px;
}

.hero52__axis-seal {
  position: relative;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
}

.hero52__axis-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero52__axis-ring-text {
  fill: rgba(19, 19, 19, 0.70);
  font-size: 9.2px;
  font-weight: 600;
  letter-spacing: 1.9px;
  text-transform: uppercase;
}

.hero52__axis-core {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center,
      #e7b451 0 22%,
      #ecd699 22% 48%,
      #ede0bc 48% 72%,
      #f4eed9 72% 100%);
  box-shadow:
    0 10px 20px rgba(19, 19, 19, 0.05),
    0 0 0 8px rgba(255, 255, 255, 0.34);
}

.hero52__axis-logo-plate {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
}

.hero52__axis-logo-plate img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.hero52__axis-seal::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(19, 19, 19, 0.06);
}

/* =========================================================
   RIGHT / BIG COUNTDOWN + VISUAL
========================================================= */

/* .hero52__right {
  display: flex;
  flex-direction: column;
  min-height: 100%;
} */
.hero52__right {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  justify-content: flex-start;
}

.premium-countdown--poster {
  width: 100%;
  padding-bottom: 10px;
}

.premium-countdown__topline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(19, 19, 19, 0.08);
}

.premium-countdown__eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(19, 19, 19, 0.52);
}

.premium-countdown__caption {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(19, 19, 19, 0.56);
}

.premium-countdown__main {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-top: clamp(28px, 4vh, 40px);
}

.premium-countdown__days {
  display: block;
  flex-shrink: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5.4rem, 9vw, 8rem);
  line-height: 0.80;
  letter-spacing: -0.08em;
  font-weight: 600;
  color: #d92963;
  text-shadow: 0 10px 22px rgba(217, 41, 99, 0.08);
}

.premium-countdown__copy {
  padding-bottom: 12px;
}

.premium-countdown__copy strong {
  display: block;
  font-size: clamp(1.14rem, 1.8vw, 1.46rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #131313;
}

.premium-countdown__copy p {
  margin: 8px 0 0;
  color: rgba(19, 19, 19, 0.56);
  font-size: 0.94rem;
  line-height: 1.55;
}

.premium-countdown__micro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.premium-countdown__unit {
  min-height: 84px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(19, 19, 19, 0.06);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.premium-countdown__unit small {
  display: block;
  margin-bottom: 10px;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(19, 19, 19, 0.40);
}

.premium-countdown__unit span {
  display: block;
  font-size: 1.26rem;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: rgba(19, 19, 19, 0.88);
}
/* 
.hero52__visual {
  position: relative;
  margin-top: auto;
  min-height: clamp(580px, 74svh, 860px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 0 30px;
} */
.hero52__visual {
  position: relative;
  margin-top: clamp(26px, 4vh, 42px);
  min-height: auto;
  display: block;
  padding: 0;
  flex: none;
}
.hero52__visual-anchor {
  position: relative;
  width: min(100%, 910px);
  margin-left: auto;
  padding-top: 76px;
  padding-bottom: 136px;
}
.hero52__visual-anchor {
  position: relative;
  width: min(100%, 910px);
  margin-left: auto;
  padding-top: 76px;
  padding-bottom: 136px;
}

.hero52__visual::before {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 14%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 41, 99, 0.14), rgba(217, 41, 99, 0) 72%);
  filter: blur(22px);
  pointer-events: none;
}
/* 
.hero52__logo-stage {
  position: relative;
  width: min(100%, 810px);
  aspect-ratio: 904.82 / 535.23;
  z-index: 2;
} */
.hero52__logo-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 904.82 / 535.23;
  z-index: 2;
}

.hero52__logo-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  -webkit-mask-image: url("../images/logo/52-1.svg");
  mask-image: url("../images/logo/52-1.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transform: scale(1.01);
  filter: drop-shadow(0 12px 18px rgba(15, 15, 15, 0.04));
}

.hero52__logo-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(217, 41, 99, 0.08), rgba(217, 41, 99, 0.04)),
    url("../images/16948.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: calc(50% + var(--mx, 0px)) calc(50% + var(--my, 0px));
  -webkit-mask-image: url("../images/logo/52-1.svg");
  mask-image: url("../images/logo/52-1.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background-position 0.18s ease-out;
}

/* .hero52__visual-chip {
  position: absolute;
  z-index: 4;
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.18) 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 10px 24px rgba(19, 19, 19, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(19, 19, 19, 0.78);
  white-space: nowrap;
} */

.hero52__visual-chip {
  position: absolute;
  z-index: 4;
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.18) 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 10px 24px rgba(19, 19, 19, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(19, 19, 19, 0.78);
  white-space: nowrap;
}

/* .hero52__visual-chip::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  pointer-events: none;
}

.hero52__visual-chip::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 72%);
  z-index: -1;
  pointer-events: none;
} */

.hero52__visual-chip::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  pointer-events: none;
}

.hero52__visual-chip::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 72%);
  z-index: -1;
  pointer-events: none;
}

/* .hero52__visual-chip--date {
  top: 6%;
  left: -1%;
  animation: heroChipFloatA 6.8s ease-in-out infinite;
}

.hero52__visual-chip--venue {
  top: 18%;
  right: -2%;
  animation: heroChipFloatB 7.6s ease-in-out infinite;
}

.hero52__visual-chip--address {
  bottom: 14%;
  left: 2%;
  animation: heroChipFloatC 8.2s ease-in-out infinite;
} */


.hero52__visual-chip--date {
  top: 4px;
  left: -10px;
  animation: heroChipFloatA 6.8s ease-in-out infinite;
}

.hero52__visual-chip--venue {
  top: 108px;
  right: -18px;
  animation: heroChipFloatB 7.6s ease-in-out infinite;
}

.hero52__visual-chip--address {
  bottom: 22px;
  left: 44px;
  animation: heroChipFloatC 8.2s ease-in-out infinite;
}
/* 
@keyframes heroChipFloatA {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -6px, 0); }
}

@keyframes heroChipFloatB {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

@keyframes heroChipFloatC {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -5px, 0); }
} */


.hero52__visual-chip--date {
  top: 64px;
  left: -22px;
  animation: heroChipFloatA 6.8s ease-in-out infinite;
}

.hero52__visual-chip--venue {
  top: 108px;
  right: -18px;
  animation: heroChipFloatB 7.6s ease-in-out infinite;
}

.hero52__visual-chip--address {
  bottom: 122px;
  left: 44px;
  animation: heroChipFloatC 8.2s ease-in-out infinite;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {
  :root {
    --header-total-h: 100px;
    --hero-top-space: 24px;
    --hero-bottom-space: 24px;
  }

  .hero52--poster {
    min-height: auto;
  }

  .hero52__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-right: 0;
  }

  .hero52__left {
    padding-right: 0;
  }

  .hero52__poster-title {
    font-size: clamp(4rem, 10vw, 6.8rem);
  }

  .hero52__poster-statement {
    max-width: 18ch;
  }

  .hero52__right {
    min-height: auto;
  }

  .hero52__visual {
    margin-top: 24px;
    min-height: auto;
  }

  .hero52__axis {
    min-height: 190px;
  }

  .hero52__edge52 {
    width: 110px;
  }

  .hero52__edge52 span {
    font-size: 9rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-total-h: 88px;
    --hero-top-space: 20px;
    --hero-bottom-space: 20px;
  }

  .page {
    padding-inline: 16px;
  }

  .header52 {
    padding-top: 10px;
    min-height: 82px;
  }

  .header52__bar {
    min-height: 62px;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .header52__brand img {
    height: 38px;
  }

  .header52__menu {
    width: 52px;
    height: 52px;
  }

  .header52__menu-lines {
    width: 34px;
    gap: 8px;
  }

  .header52__cta {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .header52::before,
  .header52::after {
    bottom: 0;
  }

  .header52::before {
    width: calc(50% + 14px);
  }

  .header52::after {
    width: calc(50% + 14px);
  }

  .hero52--poster {
    min-height: auto;
    padding: var(--hero-top-space) 0 var(--hero-bottom-space);
  }

  .hero52__poster-topline,
  .premium-countdown__topline {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 18px;
  }

  .hero52__poster-title {
    font-size: clamp(3.4rem, 15vw, 5.6rem);
  }

  .hero52__poster-statement {
    max-width: none;
    font-size: 1.12rem;
    line-height: 1.14;
  }

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

  .hero52__poster-btn {
    width: 100%;
  }

  .hero52__axis {
    min-height: 164px;
  }

  .hero52__axis-seal {
    width: 108px;
    height: 108px;
  }

  .hero52__axis-ring-text {
    font-size: 7.8px;
    letter-spacing: 1.8px;
  }

  .hero52__axis-core {
    width: 60px;
    height: 60px;
  }

  .hero52__axis-logo-plate {
    width: 30px;
    height: 30px;
  }

  .hero52__axis-logo-plate img {
    width: 21px;
    height: 21px;
  }

  .premium-countdown__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 22px;
  }

  .premium-countdown__copy {
    padding-bottom: 0;
  }

  .premium-countdown__micro {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  /* .hero52__visual {
    min-height: auto;
    padding: 18px 0 0;
  } */

  .hero52__visual {
  min-height: auto;
  padding: 18px 0 0;
  margin-top: 18px;
}
.hero52__visual {
  min-height: auto;
  padding: 18px 0 0;
  margin-top: 18px;
}

  .hero52__logo-stage {
    width: 100%;
  }
  

  .hero52__visual-chip {
  position: relative;
  inset: auto;
  width: 100%;
  margin-top: 12px;
  min-height: 40px;
  justify-content: flex-start;
  padding-inline: 16px;
  animation: none;
}

  .hero52__poster-accent {
    width: 110px;
    right: 0;
    top: 12%;
  }

  .hero52__edge52 {
    width: 72px;
    opacity: 0.26;
  }

  .hero52__edge52 span {
    font-size: 5.8rem;
    transform: translateX(28%);
  }
}