/* ============================================================
   WASHSTAND SHOES — style.css
   Modern-Retro Pop Art · Skena Edition
   ============================================================ */

:root {
  --carbon: #111111;
  --chalk: #f5f2e8;
  --neon: #39ff14;
  --yellow: #f5e642;
  --mid: #1c1c1c;
  --border: 3px solid var(--carbon);
  --border-sm: 2px solid var(--carbon);
  --shadow: 5px 5px 0 var(--carbon);
  --shadow-lg: 8px 8px 0 var(--carbon);
  --font-head: "Bebas Neue", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-mono: "Space Mono", monospace;
  --radius: 4px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--chalk);
  color: var(--carbon);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: crosshair;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
  font-family: inherit;
}

/* ---- NOISE OVERLAY ---- */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.07) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
}

/* ===================== TICKER ===================== */
.ticker-wrap {
  position: relative;
  z-index: 10;
  background: var(--carbon);
  color: var(--neon);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: var(--border);
  padding: 7px 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ticker-track {
  display: inline-flex;
  gap: 1.5rem;
  animation: ticker-scroll 28s linear infinite;
  will-change: transform;
}
.ticker-track span {
  padding: 0 0.25rem;
}
.ticker-track .dot {
  color: var(--yellow);
}
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: sticky;
  top: 10px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 20px;
  padding: 12px 24px;
  background: var(--carbon);
  border: var(--border);
  border-radius: 50px;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.navbar.scrolled {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--chalk);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 2px;
}
.logo-bracket {
  color: var(--neon);
  font-size: 1.6rem;
  line-height: 1;
}
.logo-text {
  color: var(--chalk);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--chalk);
  padding: 6px 12px;
  border-radius: 30px;
  transition:
    background var(--transition),
    color var(--transition);
}
.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--neon);
}
.nav-links .nav-cta {
  background: var(--neon);
  color: var(--carbon);
  font-weight: 700;
  border: 2px solid var(--neon);
}
.nav-links .nav-cta:hover {
  background: transparent;
  color: var(--neon);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--chalk);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 60px 80px;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  bottom: -40px;
  left: -20px;
  font-family: var(--font-head);
  font-size: clamp(120px, 20vw, 280px);
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--carbon);
  color: var(--neon);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
  border: 2px solid var(--carbon);
}
.badge-dot {
  color: var(--chalk);
  opacity: 0.4;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.line-outline {
  color: transparent;
  -webkit-text-stroke: 3px var(--carbon);
  text-stroke: 3px var(--carbon);
}
.line-solid {
  color: var(--carbon);
}
.line-mixed {
  color: var(--carbon);
}
.line-mixed em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 3px var(--carbon);
  background: var(--neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--neon);
}
.hero-sub {
  font-size: 1rem;
  color: #444;
  max-width: 420px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-sticker {
  display: inline-block;
  position: relative;
  transform: rotate(-1.5deg);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-sticker:hover {
  transform: rotate(0deg) scale(1.04);
}
.sticker-inner {
  display: inline-block;
  background: var(--neon);
  color: var(--carbon);
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border: var(--border);
  box-shadow: var(--shadow);
  border-radius: 4px;
  white-space: nowrap;
}
.btn-sticker:hover .sticker-inner {
  box-shadow: var(--shadow-lg);
}
.btn-sticker--sm .sticker-inner {
  font-size: 0.9rem;
  padding: 10px 20px;
}
.btn-ghost {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--carbon);
  border-bottom: 2px solid var(--carbon);
  padding-bottom: 2px;
  transition:
    color var(--transition),
    border-color var(--transition);
}
.btn-ghost:hover {
  color: #555;
  border-color: #555;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--carbon);
}
.stat-num sup {
  font-size: 0.9rem;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666;
  margin-top: 2px;
}
.stat-divider {
  font-family: var(--font-head);
  font-size: 2rem;
  color: #ccc;
  line-height: 1;
}

/* ===================== HERO VISUAL (FIXED) ===================== */
.hero-visual {
  position: relative;
  z-index: 2;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-circle-big {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--carbon);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid var(--carbon);

  /* INI KUNCI UTAMANYA: Biar gambar yang masuk otomatis kepotong jadi bulat */
  overflow: hidden;
  z-index: 1;
}

/* CSS buat ngatur gambarnya biar pas di dalam lingkaran */
.hero-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Biar gambarnya nggak gepeng */
  opacity: 0.5; /* Sengaja agak diredupkan sedikit biar sepatu utama di depannya tetap paling menonjol */
}

/* Wrapper Baru Buat Sepatu Bulat */
.hero-img-wrapper {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -55%);
  border: 4px solid var(--neon); /* Ubah border jadi hijau neon */
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.4); /* Efek glow menyala */
  overflow: hidden;
  z-index: 5;
  animation: float-bob 4s ease-in-out infinite alternate;
}
.hero-shoe-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-float {
  position: absolute;
  background: var(--chalk);
  border: var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: float-bob 4s ease-in-out infinite;
  z-index: 10;
}
.float-emoji {
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.float-price {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--carbon);
}
.card-float-1 {
  top: 8%;
  right: 5%;
  transform: rotate(3deg);
  animation-delay: 0s;
}
.card-float-2 {
  bottom: 12%;
  left: 2%;
  transform: rotate(-4deg);
  animation-delay: 1.3s;
}
.card-float-3 {
  top: 50%;
  right: 0%;
  transform: rotate(2deg);
  animation-delay: 0.7s;
}
@keyframes float-bob {
  0%,
  100% {
    transform: translateY(0) rotate(var(--r, 3deg));
  }
  50% {
    transform: translateY(-10px) rotate(var(--r, 3deg));
  }
}
.hero-img-wrapper {
  --r: 0deg;
} /* Timpa rotasi biar gbr ga miring */
.card-float-2 {
  --r: -4deg;
}
.card-float-3 {
  --r: 2deg;
}

/* ===================== SECTION COMMONS ===================== */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 14px;
}
.label-line {
  flex: 1;
  height: 1px;
  background: #ccc;
  max-width: 80px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 48px;
  color: var(--carbon);
}
.section-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2.5px var(--carbon);
}

/* ===================== TREATMENTS ===================== */
.treatments {
  position: relative;
  z-index: 1;
  padding: 80px 60px;
  background: var(--carbon);
  border-top: var(--border);
  border-bottom: var(--border);
}
.treatments .section-label {
  color: #888;
}
.treatments .section-title {
  color: var(--chalk);
}
.treatments .section-title em {
  -webkit-text-stroke-color: var(--chalk);
  color: var(--neon);
  -webkit-text-stroke: 0;
}
.treatments .label-line {
  background: #444;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.treat-card {
  background: var(--chalk);
  border: var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.treat-card:hover {
  transform: translateY(-5px) rotate(-0.5deg);
  box-shadow: var(--shadow-lg);
}
.treat-card:nth-child(2) {
  margin-top: 40px;
}
.treat-card:nth-child(3) {
  margin-top: 20px;
}
.treat-card:nth-child(4) {
  margin-top: 60px;
}

.treat-card--featured {
  background: var(--neon);
  border-color: var(--carbon);
}
.treat-card--accent {
  background: var(--yellow);
}
.treat-card--dark {
  background: var(--carbon);
  color: var(--chalk);
  border-color: var(--neon);
}
.treat-card--dark .treat-card__desc {
  color: #aaa;
}
.treat-card--dark .treat-card__list li {
  color: #ccc;
}

.treat-card__tag {
  display: inline-block;
  background: var(--carbon);
  color: var(--neon);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 30px;
  align-self: flex-start;
  margin-bottom: 4px;
}
.treat-card--dark .treat-card__tag {
  background: var(--neon);
  color: var(--carbon);
}
.treat-card__icon {
  font-size: 2.2rem;
}
.treat-card__name {
  font-family: var(--font-head);
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.04em;
}
.treat-card__desc {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.6;
}
.treat-card__price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  border-top: var(--border-sm);
  padding-top: 12px;
  margin-top: 4px;
}
.treat-card--dark .treat-card__price {
  border-top-color: #333;
}
.price-from {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  color: #666;
}
.treat-card--dark .price-from {
  color: #888;
}
.price-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--carbon);
}
.treat-card--dark .price-num {
  color: var(--neon);
}
.treat-card__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.82rem;
  color: #444;
}
.treat-btn {
  display: block;
  text-align: center;
  background: var(--carbon);
  color: var(--chalk);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 12px;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
  margin-top: auto;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.15s;
}
.treat-btn:hover {
  background: var(--neon);
  color: var(--carbon);
  transform: translateY(-2px);
}
.treat-card--featured .treat-btn {
  background: var(--carbon);
  color: var(--neon);
}
.treat-card--dark .treat-btn {
  background: var(--neon);
  color: var(--carbon);
  border-color: var(--neon);
}

.treat-extras {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.extra-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: #aaa;
  border: 2px solid #444;
  padding: 6px 16px;
  border-radius: 30px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.extra-tag:hover {
  color: var(--neon);
  border-color: var(--neon);
}

/* ===================== MARQUEE MID ===================== */
.marquee-mid {
  background: var(--neon);
  border-top: var(--border);
  border-bottom: var(--border);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}
.marquee-mid__track {
  display: inline-flex;
  gap: 2rem;
  animation: ticker-scroll 20s linear infinite;
  font-family: var(--font-head);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--carbon);
}
.marquee-mid__track .mx {
  opacity: 0.4;
}

/* ===================== SOCIAL SECTION ===================== */
.social-section {
  position: relative;
  z-index: 1;
  padding: 80px 60px;
  background: var(--chalk);
}
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.social-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  cursor: pointer;
}
.social-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.social-card--ig {
  background: var(--carbon);
  color: var(--chalk);
}
.social-card--clip {
  background: var(--chalk);
  border-color: var(--carbon);
  color: var(--carbon);
  margin-top: 30px;
}
.social-card__platform {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}
.social-card__handle {
  font-family: var(--font-head);
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--neon);
}
.social-card--clip .social-card__handle {
  color: var(--carbon);
}
.social-card__desc {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.6;
}
.social-card__cta {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  align-self: flex-start;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.social-card:hover .social-card__cta {
  opacity: 1;
}
.social-cta-card {
  background: var(--neon);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}
.social-cta-card__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-icon {
  font-size: 2rem;
}
.social-cta-card__inner h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--carbon);
}
.social-cta-card__inner p {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
}

/* ===================== LOCATION ===================== */
.location-section {
  position: relative;
  z-index: 1;
  padding: 80px 60px;
  background: var(--carbon);
  border-top: var(--border);
}
.location-section .section-label {
  color: #777;
}
.location-section .section-title {
  color: var(--chalk);
}
.location-section .section-title em {
  -webkit-text-stroke-color: var(--chalk);
  color: var(--neon);
  -webkit-text-stroke: 0;
}
.location-section .label-line {
  background: #444;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-block__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-block__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 4px;
}
.info-block__value {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--chalk);
  line-height: 1.1;
}
.info-block__sub {
  font-size: 0.8rem;
  color: #888;
  margin-top: 2px;
}

.map-frame {
  border: var(--border);
  border-color: #333;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-frame__label {
  background: var(--neon);
  color: var(--carbon);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-bottom: var(--border);
  border-color: var(--carbon);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: none;
  filter: grayscale(30%) contrast(1.05);
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--carbon);
  border-top: 4px solid var(--neon);
}
.footer-ticker {
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  border-bottom: var(--border);
  border-color: #222;
}
.footer-ticker__track {
  display: inline-flex;
  gap: 2rem;
  animation: ticker-scroll 25s linear infinite reverse;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #555;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: #666;
}
.footer-dot {
  color: var(--neon);
}

/* ===================== FLOATING WA ===================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border: var(--border);
  border-radius: 50px;
  padding: 12px 18px 12px 14px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 10px 10px 0 var(--carbon);
}
.wa-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 3px solid #25d366;
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}
.wa-float__label {
  white-space: nowrap;
}

/* ===================== SCROLL REVEAL ===================== */
.reveal,
.reveal-right {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal-right {
  transform: translateX(32px);
}
.reveal.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 32px 60px;
    min-height: auto;
    gap: 24px;
  }
  .hero-visual {
    height: 300px;
  }
  .hero-circle-big {
    width: 220px;
    height: 220px;
  }
  .hero-img-wrapper {
    width: 180px;
    height: 180px;
  }
  .treatments {
    padding: 60px 32px;
  }
  .treatments-grid {
    grid-template-columns: 1fr 1fr;
  }
  .treat-card:nth-child(2) {
    margin-top: 24px;
  }
  .treat-card:nth-child(3) {
    margin-top: 0;
  }
  .treat-card:nth-child(4) {
    margin-top: 24px;
  }
  .social-section {
    padding: 60px 32px;
  }
  .social-grid {
    grid-template-columns: 1fr 1fr;
  }
  .social-cta-card {
    margin-top: 0;
    grid-column: 1 / -1;
  }
  .location-section {
    padding: 60px 32px;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .navbar {
    margin: 8px 12px;
    padding: 10px 16px;
    border-radius: 12px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--carbon);
    border: var(--border);
    border-radius: 12px;
    padding: 16px;
    gap: 6px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
  }
  .nav-hamburger {
    display: flex;
  }
  .hero {
    padding: 28px 20px 40px;
  }
  .hero-headline {
    font-size: clamp(44px, 12vw, 64px);
  }
  .hero-visual {
    display: none;
  }
  .treatments {
    padding: 48px 20px;
  }
  .treatments-grid {
    grid-template-columns: 1fr;
  }
  .treat-card:nth-child(2),
  .treat-card:nth-child(3),
  .treat-card:nth-child(4) {
    margin-top: 0;
  }
  .social-section {
    padding: 48px 20px;
  }
  .social-grid {
    grid-template-columns: 1fr;
  }
  .social-card--clip {
    margin-top: 0;
  }
  .location-section {
    padding: 48px 20px;
  }
  .section-title {
    font-size: clamp(36px, 10vw, 56px);
  }
  .hero-stats {
    gap: 16px;
  }
  .stat-num {
    font-size: 1.8rem;
  }
  .wa-float__label {
    display: none;
  }
  .wa-float {
    padding: 14px;
    border-radius: 50%;
  }
}
