/* =============================================
   ASK Assassin — Color palette from brand assets
   Olive: #1a2218 / #2b3a1c
   Gold:  #c5a059 / #ffb800
   Cream: #e5e1c9
   Black: #0a0a0a
   ============================================= */

:root {
  --olive-900: #121810;
  --olive-800: #1a2218;
  --olive-700: #2b3a1c;
  --olive-600: #3d4f28;
  --gold: #c5a059;
  --gold-bright: #ffb800;
  --gold-dark: #a39157;
  --cream: #e5e1c9;
  --white: #ffffff;
  --black: #0a0a0a;
  --grey: #5c5c5c;
  --grey-light: #8a8a7a;

  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --header-h: 56px;
  --sticky-h: 72px;
  --page-pad: 20px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--olive-900);
  color: var(--cream);
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: calc(var(--sticky-h) + 8px + env(safe-area-inset-bottom, 0px));
  -webkit-font-smoothing: antialiased;
}

main {
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

svg {
  fill: currentColor;
}

/* ---- HEADER ---- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(18, 24, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  padding-top: env(safe-area-inset-top, 0px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--cream);
}

.header__brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.header__call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  transition: transform var(--transition), background var(--transition);
}

.header__call svg {
  width: 18px;
  height: 18px;
}

.header__join {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  margin-left: auto;
  margin-right: 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(197, 160, 89, 0.55);
  background: rgba(18, 24, 16, 0.65);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.header__book {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  margin-left: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.header__call:active {
  transform: scale(0.92);
  background: var(--gold-bright);
}

/* ---- HERO ---- */

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding:
    calc(var(--header-h) + 16px + env(safe-area-inset-top, 0px))
    var(--page-pad)
    calc(56px + env(safe-area-inset-bottom, 0px));
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--olive-900);
}

.hero__bg-track {
  position: relative;
  display: flex;
  width: 200%;
  height: 100%;
  animation: heroSlide 56s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.hero__bg-track::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: min(22vw, 160px);
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(18, 24, 16, 0.25) 28%,
    rgba(18, 24, 16, 0.65) 50%,
    rgba(18, 24, 16, 0.25) 72%,
    transparent 100%
  );
  pointer-events: none;
}

.hero__bg-slide {
  position: relative;
  width: 50%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

.hero__bg-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__bg-img {
  display: block;
  width: 112%;
  height: 108%;
  margin: -2% 0 0 -6%;
  object-fit: cover;
  object-position: center 20%;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  backface-visibility: hidden;
}

@keyframes heroSlide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.hero__bg-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(18, 24, 16, 0.55) 0%,
      transparent 14%,
      transparent 86%,
      rgba(18, 24, 16, 0.55) 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg,
      rgba(18, 24, 16, 0.55) 0%,
      rgba(18, 24, 16, 0.75) 45%,
      rgba(18, 24, 16, 0.95) 100%),
    radial-gradient(ellipse at 50% 30%, rgba(43, 58, 28, 0.4) 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 420px;
  animation: fadeUp 0.8s ease both;
}

.hero__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__stars {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
}

.hero__title {
  font-family: var(--font-display);
  line-height: 0.9;
  margin-bottom: 8px;
}

.hero__title-line {
  display: block;
  font-size: clamp(3.5rem, 16vw, 5rem);
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.hero__title-line--gold {
  color: var(--gold-bright);
  text-shadow:
    0 0 40px rgba(255, 184, 0, 0.35),
    0 4px 24px rgba(0, 0, 0, 0.6);
}

.hero__tagline {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.9;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.hero__logo-wrap {
  margin: 0 auto 20px;
  width: clamp(132px, 38vw, 220px);
  animation: pulseGlow 3s ease-in-out infinite;
}

.hero__logo {
  width: 100%;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow:
    0 0 0 6px rgba(197, 160, 89, 0.15),
    var(--shadow),
    0 0 60px rgba(197, 160, 89, 0.2);
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__schedule {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-light);
}

.hero__scroll-hint {
  position: absolute;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(197, 160, 89, 0.4);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-hint span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s ease infinite;
}

/* ---- BUTTONS ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn--lg {
  min-height: 52px;
  padding: 14px 28px;
  width: 100%;
  max-width: 320px;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--black);
  box-shadow:
    0 4px 20px rgba(255, 184, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn--gold:active {
  transform: scale(0.97);
  box-shadow: 0 2px 10px rgba(255, 184, 0, 0.25);
}

/* ---- SECTIONS ---- */

.section-head {
  margin-bottom: 28px;
}

.section-head--light .section-label {
  color: var(--gold);
}

.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 6px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.75rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}

/* ---- FEATURES ---- */

.features {
  padding: 56px 20px;
  background: var(--olive-800);
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.features__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: rgba(26, 34, 24, 0.8);
  border: 1px solid rgba(197, 160, 89, 0.12);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}

.feature-card:active {
  transform: scale(0.98);
  border-color: rgba(197, 160, 89, 0.35);
}

.feature-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  color: var(--black);
}

.feature-card__icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--grey-light);
  line-height: 1.45;
}

/* ---- ACTION BANNER ---- */

.action-banner {
  padding: 48px 20px;
  background:
    linear-gradient(160deg, var(--olive-700) 0%, var(--olive-900) 100%);
  position: relative;
  overflow: hidden;
}

.action-banner::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.action-banner__inner {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.action-banner__flyer {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 28px;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.action-banner__text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 3.5rem);
  color: var(--gold-bright);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.action-banner__lead {
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 24px;
}

.action-banner__steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.action-banner__steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.35);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.action-banner__steps li > span:first-child {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  min-width: 28px;
  flex-shrink: 0;
}

.action-banner__steps a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 184, 0, 0.4);
  text-underline-offset: 3px;
}

/* ---- CONTACT ---- */

.contact {
  padding: 56px 20px 40px;
  background: var(--olive-900);
}

.contact__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--olive-800);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.contact-card:active {
  transform: scale(0.98);
}

.contact-card--primary {
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.15) 0%, rgba(197, 160, 89, 0.08) 100%);
  border-color: rgba(255, 184, 0, 0.35);
}

.contact-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--black);
}

.contact-card__icon svg {
  width: 22px;
  height: 22px;
}

.contact-card__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 2px;
}

.contact-card strong {
  font-size: clamp(0.95rem, 4.2vw, 1.05rem);
  color: var(--white);
  word-break: break-word;
}

.contact__note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--grey-light);
  max-width: 360px;
  margin: 0 auto;
}

.contact-card__icon--ig {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
  color: var(--white);
}

/* ---- SOCIAL WIDGETS ---- */

.social-section {
  padding: 56px 20px;
  position: relative;
}

.social-section__inner {
  max-width: 480px;
  margin: 0 auto;
}

.social-section--instagram {
  background: linear-gradient(180deg, var(--olive-900) 0%, #0d0f0c 100%);
}

.social-section--olx {
  background: var(--olive-800);
  border-top: 1px solid rgba(197, 160, 89, 0.12);
}

/* Instagram widget */

.ig-widget {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ig-widget__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(245, 133, 41, 0.12) 0%, rgba(129, 52, 175, 0.12) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ig-widget__profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ig-widget__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(var(--olive-900), var(--olive-900)) padding-box,
    linear-gradient(135deg, #f58529, #dd2a7b, #8134af) border-box;
  object-fit: cover;
}

.ig-widget__username {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}

.ig-widget__handle {
  font-size: 0.8rem;
  color: var(--grey-light);
  margin-top: 2px;
}

.ig-widget__embed-wrap {
  position: relative;
  min-height: 420px;
  background: #000;
}

.ig-widget__embed {
  width: 100%;
  height: min(480px, 72vw);
  min-height: 320px;
  border: 0;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ig-widget__embed.is-loaded {
  opacity: 1;
}

.ig-widget__fallback {
  padding: 24px 20px 28px;
  text-align: center;
}

.ig-widget__fallback-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.ig-widget__fallback-grid img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.ig-widget__fallback p {
  font-size: 0.9rem;
  color: var(--grey-light);
  margin-bottom: 16px;
  line-height: 1.5;
}

.btn--ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  width: 100%;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 55%, #8134af 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(221, 42, 123, 0.25);
  transition: transform var(--transition);
}

.btn--ig svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn--ig:active {
  transform: scale(0.97);
}

/* OLX widget */

.olx-widget {
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid rgba(197, 160, 89, 0.18);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}

.olx-widget__header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.olx-widget__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  object-fit: cover;
}

.olx-widget__info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.olx-widget__info > p {
  font-size: 0.78rem;
  color: var(--grey-light);
  margin-bottom: 12px;
}

.olx-widget__stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.olx-stat {
  flex: 1;
  min-width: 80px;
  padding: 8px 10px;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 8px;
  text-align: center;
}

.olx-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-bright);
  line-height: 1;
}

.olx-stat span {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-top: 4px;
}

.olx-widget__desc {
  font-size: 0.88rem;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.12);
}

.olx-widget__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.olx-widget__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.olx-card {
  display: flex;
  flex-direction: column;
  background: var(--olive-900);
  border: 1px solid rgba(197, 160, 89, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.olx-card:active {
  transform: scale(0.98);
  border-color: rgba(255, 184, 0, 0.4);
}

.olx-card--skeleton {
  min-height: 180px;
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  pointer-events: none;
}

.olx-card__img {
  position: relative;
  aspect-ratio: 1;
  background: #111;
  overflow: hidden;
}

.olx-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.olx-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--olive-700);
}

.olx-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold-bright);
  color: var(--black);
  border-radius: 4px;
}

.olx-card__body {
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.olx-card__title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.olx-card__price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-bright);
  letter-spacing: 0.03em;
  margin-top: auto;
}

.olx-widget__empty {
  text-align: center;
  font-size: 0.85rem;
  color: var(--grey-light);
  padding: 24px 0;
}

.btn--olx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 24px;
  width: 100%;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #23e5db 0%, #0d9488 100%);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(35, 229, 219, 0.2);
  transition: transform var(--transition);
}

.btn--olx svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn--olx:active {
  transform: scale(0.97);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---- FOOTER ---- */

.footer {
  text-align: center;
  padding: 40px 20px 24px;
  background: var(--black);
  border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.footer__logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold-dark);
  margin: 0 auto 12px;
  object-fit: cover;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--cream);
}

.footer__loc {
  font-size: 0.8rem;
  color: var(--grey-light);
  margin: 4px 0 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__sponsor {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__sponsor a {
  color: var(--gold);
  transition: color var(--transition);
}

.footer__sponsor a:active {
  color: var(--gold-bright);
}

.footer__copy {
  font-size: 0.7rem;
  color: var(--grey);
}

/* ---- STICKY CTA (mobile) ---- */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 200;
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 480px;
  padding: 10px var(--page-pad);
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(197, 160, 89, 0.25);
  transform: translateX(-50%);
}

.sticky-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.sticky-cta__btn svg {
  width: 18px;
  height: 18px;
}

.sticky-cta__btn:active {
  transform: scale(0.96);
}

.sticky-cta__btn--call {
  flex: 0 0 auto;
  width: 48px;
  padding: 0;
  background: var(--olive-700);
  color: var(--gold);
  border: 1px solid rgba(197, 160, 89, 0.3);
}

@media (max-width: 399px) {
  .sticky-cta__btn--call {
    font-size: 0;
    gap: 0;
  }
}

@media (min-width: 400px) {
  .sticky-cta__btn--call {
    flex: 0 0 auto;
    width: auto;
    padding: 0 16px;
  }
}

.sticky-cta__btn--book {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--black);
  box-shadow: 0 4px 16px rgba(255, 184, 0, 0.3);
}

/* ---- ANIMATIONS ---- */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    filter: drop-shadow(0 0 12px rgba(197, 160, 89, 0.25));
  }
  50% {
    filter: drop-shadow(0 0 24px rgba(255, 184, 0, 0.4));
  }
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(10px);
    opacity: 0.3;
  }
}

/* ---- MOBILE REFINEMENTS ---- */

@media (max-width: 767px) {
  .features,
  .action-banner,
  .social-section,
  .contact {
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
  }

  .section-head h2 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .btn--lg {
    max-width: none;
    width: 100%;
  }

  .hero__cta-group {
    width: 100%;
  }

  .olx-widget__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .olx-widget__info > p {
    margin-bottom: 10px;
  }

  .olx-widget__stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .olx-stat {
    min-width: 0;
    padding: 8px 6px;
  }

  .olx-stat span {
    font-size: 0.58rem;
    line-height: 1.25;
  }

  .olx-widget__actions .btn--lg {
    font-size: 0.78rem;
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer {
    padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
  }

  .footer__sponsor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
  }
}

@media (max-width: 399px) {
  :root {
    --page-pad: 16px;
  }

  .header__brand span {
    font-size: 1rem;
  }

  .hero__badge {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .hero__title-line {
    font-size: clamp(2.85rem, 15vw, 3.5rem);
  }

  .hero__logo-wrap {
    width: clamp(118px, 36vw, 150px);
    margin-bottom: 14px;
  }

  .hero__tagline {
    font-size: 0.88rem;
    margin-bottom: 14px;
  }

  .feature-card {
    padding: 14px;
    gap: 12px;
  }

  .feature-card__icon {
    width: 42px;
    height: 42px;
  }

  .contact-card {
    padding: 16px;
  }

  .ig-widget__fallback-grid {
    gap: 6px;
  }
}

@media (max-width: 767px) and (max-height: 740px) {
  .hero {
    justify-content: flex-start;
    padding-top: calc(var(--header-h) + 10px + env(safe-area-inset-top, 0px));
  }

  .hero__badge {
    margin-bottom: 8px;
  }

  .hero__title-line {
    font-size: clamp(2.65rem, 13vw, 3.25rem);
  }

  .hero__logo-wrap {
    width: clamp(108px, 32vw, 140px);
    margin-bottom: 12px;
  }

  .hero__tagline {
    margin-bottom: 12px;
  }

  .hero__scroll-hint {
    display: none;
  }
}

/* ---- TABLET / DESKTOP ---- */

@media (min-width: 768px) {
  .header__inner,
  .features__list,
  .action-banner__inner,
  .contact__cards,
  .hero__content {
    max-width: 640px;
  }

  .sticky-cta {
    max-width: 640px;
  }

  .hero__logo-wrap {
    width: 240px;
  }

  .features {
    padding: 72px 32px;
  }

  .features__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .feature-card:last-child {
    grid-column: 1 / -1;
  }

  .action-banner__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    max-width: 900px;
  }

  .action-banner__flyer {
    margin-bottom: 0;
  }

  .contact__cards {
    flex-direction: row;
    max-width: 640px;
    flex-wrap: wrap;
  }

  .contact-card {
    flex: 1;
    min-width: calc(50% - 6px);
  }

  .social-section__inner,
  .ig-widget,
  .olx-widget {
    max-width: 640px;
  }

  .olx-widget__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ig-widget__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .btn--ig {
    width: auto;
    flex-shrink: 0;
  }

  .footer,
  .contact,
  .action-banner,
  .features,
  .hero {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }

  .sticky-cta {
    display: none;
  }

  .header__join,
  .header__book {
    display: inline-flex;
  }

  .olx-widget__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .features__list {
    max-width: 900px;
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-card:last-child {
    grid-column: auto;
  }

  .feature-card:nth-child(4),
  .feature-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

}
