/* ========================
   RESET & TOKENS
======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #f0d830;
  --yellow-dim: rgba(240,216,48,0.12);
  --black: #080808;
  --dark: #111;
  --dark-2: #191919;
  --dark-3: #222;
  --white: #fff;
  --cream: #f4efe6;
  --cream-dark: #e8e0d2;
  --gray: #666;
  --font-display: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========================
   LOGO
======================== */
.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.3px;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  color: var(--white);
}
.logo em {
  font-style: italic;
  color: var(--yellow);
  margin: 0 1px;
}
.logo sup {
  font-size: 0.55em;
  color: var(--yellow);
  margin-left: 2px;
  vertical-align: super;
  font-style: normal;
}

/* ========================
   BUTTONS
======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn--yellow {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn--yellow:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(240,216,48,0.3);
}

.btn--white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--white:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255,255,255,0.15);
}

/* ========================
   SECTION TAG
======================== */
.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.section__tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--yellow);
}
.section__tag--light {
  color: var(--yellow);
}
.section__tag--dark {
  color: var(--yellow-dark, #b8a010);
}
.section__tag--dark::before {
  background: var(--yellow-dark, #b8a010);
}

/* ========================
   HEADER / NAV
======================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 52px;
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.nav__links {
  display: flex;
  gap: 44px;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.2s var(--ease);
  transform-origin: left;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1.5px solid rgba(240,216,48,0.5);
  padding: 9px 22px;
  border-radius: 3px;
  transition: all 0.2s;
}
/* ── Nav auth button ── */
.nav__auth {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__auth-login {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 7px 16px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav__auth-login:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.nav__auth-user {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__auth-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav__auth-user span {
  font-size: 0.82rem;
  color: var(--white);
  white-space: nowrap;
}
.nav__auth-logout {
  font-size: 0.75rem;
  color: #888;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.nav__auth-logout:hover { color: #ff6b6b; }

.nav__cta:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.25s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 28px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { text-align: center; width: 100%; }
.mobile-menu li { margin-bottom: 4px; }
.mobile-menu a {
  display: block;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.75);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu a:active { color: var(--yellow); }
.mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  padding: 8px;
}
.mobile-close:hover { opacity: 1; }

/* ========================
   HERO
======================== */
.hero {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 100vh;
}

.hero__left {
  background: var(--black);
  display: flex;
  align-items: center;
  padding: 100px 72px 60px 72px;
  position: relative;
  overflow: hidden;
}

/* Subtle dot grid */
.hero__dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 30%, transparent 80%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
  padding: 7px 16px 7px 10px;
  border: 1px solid rgba(240,216,48,0.25);
  border-radius: 100px;
  background: rgba(240,216,48,0.06);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 28px;
  letter-spacing: -2px;
}
.title-italic {
  font-style: italic;
  color: var(--yellow);
}
/* Outline/stroke text — very modern */
.title-outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
  display: inline-block;
}

.hero__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 400px;
}

/* HERO RIGHT */
.hero__right {
  background: var(--cream);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 56px;
  overflow: hidden;
}
/* Large decorative 360° watermark */
.hero__right::before {
  content: '360°';
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 900;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
/* Yellow gradient accent strip on left edge */
.hero__right::after {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--yellow), transparent);
}
.hero__img-wrap {
  position: relative;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__img-wrap img {
  max-height: 78vh;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  box-shadow: 0 48px 120px rgba(0,0,0,0.22), 0 12px 32px rgba(0,0,0,0.1);
  will-change: transform;
}
/* Offset yellow accent frame behind image */
.hero__img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  top: 16px;
  left: 16px;
  border: 2px solid rgba(240,216,48,0.55);
  border-radius: 12px;
  z-index: -1;
}

/* Floating card — glassmorphism */
.hero__float-card {
  position: absolute;
  bottom: 44px;
  left: -20px;
  background: rgba(8,8,8,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 22px 26px;
  min-width: 230px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.float-card__row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.8);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.float-card__row:last-child { border-bottom: none; }
.float-card__icon {
  color: var(--yellow);
  font-size: 0.9rem;
  font-weight: 700;
}

/* ========================
   TICKER
======================== */
.ticker {
  background: var(--yellow);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  gap: 32px;
  animation: ticker-scroll 22s linear infinite;
}
.ticker__track span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.ticker__dot {
  color: rgba(0,0,0,0.3) !important;
  font-size: 0.5rem !important;
  align-self: center;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========================
   OVERHEAD
======================== */
.overhead {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 90vh;
  background: var(--cream);
}

.overhead__img-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  background: var(--cream-dark);
  overflow: hidden;
  position: relative;
}
.overhead__img-wrap {
  position: relative;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.overhead__img-wrap img {
  max-height: 75vh;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.08);
}
/* Offset warm gold accent frame */
.overhead__img-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  bottom: 16px;
  right: 16px;
  border: 2px solid rgba(107,92,48,0.45);
  border-radius: 12px;
  z-index: -1;
}

.overhead__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  background: var(--cream);
}

.overhead__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.overhead__title em {
  font-style: italic;
  color: #6b5c30;
}

.overhead__text {
  color: rgba(10,10,10,0.65);
  margin-bottom: 14px;
  font-size: 0.98rem;
  line-height: 1.75;
}

.overhead__features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: padding-left 0.2s var(--ease), border-color 0.2s;
}
.feature-item:hover { padding-left: 8px; border-color: rgba(0,0,0,0.18); }
.feature-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--black);
  min-width: 52px;
  line-height: 1;
  letter-spacing: -1px;
}
.feature-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.feature-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--black);
}
.feature-sub {
  font-size: 0.76rem;
  color: rgba(0,0,0,0.45);
  font-weight: 400;
}
.overhead__cta {
  margin-top: 36px;
}

/* Dark section__tag for light backgrounds */
.section__tag.dark {
  color: #8a7020;
}
.section__tag.dark::before { background: #8a7020; }

/* ========================
   STATS STRIP
======================== */
.stats-strip {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 48px 0;
}

.stat-item {
  text-align: center;
  padding: 0 64px;
  flex: 1;
  max-width: 220px;
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -2px;
}
.stat-item strong span {
  color: var(--yellow);
  font-size: 0.7em;
}
.stat-item p {
  margin-top: 8px;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ========================
   O NAS
======================== */
.about {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: 'MOMENTS';
  position: absolute;
  bottom: -30px;
  right: -20px;
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.about__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 80px;
}

.about__header {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 72px;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
}
.about__title em {
  font-style: italic;
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
  display: block;
}

.about__text {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  line-height: 1.85;
  padding-top: 16px;
  max-width: 680px;
}

/* Octagon photos */
.about__photos {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: flex-end;
}

.photo-oct {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  transition: transform 0.35s var(--ease);
}
.photo-oct--mid {
  width: 340px;
  height: 340px;
  transform: translateY(-20px);
}
.photo-oct:hover { transform: translateY(-8px); }
.photo-oct--mid:hover { transform: translateY(-28px); }

.photo-oct__inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}
.photo-oct__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  border: 1px solid rgba(255,255,255,0.05);
}

/* ========================
   SOCIAL MEDIA SECTION
======================== */
.socials-section {
  background: var(--black);
  padding: 100px 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.socials-section__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.socials__tag {
  justify-content: center;
  margin-bottom: 20px;
}
.socials__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 56px;
}
.socials__title em {
  font-style: italic;
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.socials__cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 36px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  min-width: 300px;
  flex: 1;
  max-width: 380px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s;
}
.social-card:hover::before { opacity: 1; }
.social-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
}
.social-card--fb::before {
  background: linear-gradient(135deg, #1877f2, #0d5dbf);
}
.social-card--ig::before {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-card__icon {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: background 0.35s;
}
.social-card:hover .social-card__icon {
  background: rgba(255,255,255,0.2);
}
.social-card__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  position: relative;
  z-index: 1;
  flex: 1;
}
.social-card__name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}
.social-card__handle {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  transition: color 0.2s;
}
.social-card:hover .social-card__handle { color: rgba(255,255,255,0.85); }
.social-card__arrow {
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  transition: transform 0.25s var(--ease);
  opacity: 0.5;
}
.social-card:hover .social-card__arrow {
  transform: translateX(6px);
  opacity: 1;
}

@media (max-width: 860px) {
  .socials-section { padding: 72px 28px; }
  .socials__cards { flex-direction: column; align-items: center; }
  .social-card { max-width: 100%; width: 100%; min-width: unset; }
}

/* ========================
   CTA SECTION
======================== */
.cta-section {
  background: var(--yellow);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.cta-section__inner {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-section__text .section__tag {
  color: rgba(0,0,0,0.5);
}
.cta-section__text .section__tag::before {
  background: rgba(0,0,0,0.4);
}

.cta-section__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.0;
  letter-spacing: -2px;
}
.cta-section__inner h2 em {
  font-style: italic;
  -webkit-text-stroke: 2px var(--black);
  color: transparent;
}

.cta-section__deco {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 240px);
  font-weight: 900;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

/* ========================
   FOOTER
======================== */
.footer {
  background: var(--black);
  padding: 80px 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 56px;
}
.footer__logo {
  font-size: 1.6rem;
}
.footer__top > p {
  color: var(--gray);
  font-size: 0.9rem;
  max-width: 260px;
  text-align: right;
  line-height: 1.7;
}

.footer__mid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__col h4 {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
  font-weight: 600;
}

/* Social icons (horizontal list style) */
.social-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s, gap 0.2s;
}
.social-icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}
.social-icon:hover {
  color: var(--yellow);
  gap: 16px;
}
.social-icon:hover svg { transform: scale(1.1); }

/* Contact */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__contact a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--yellow); }
.contact-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}

.footer__invite {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer__btn {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yellow);
  border-bottom: 1px solid rgba(240,216,48,0.3);
  padding-bottom: 3px;
  transition: all 0.2s;
}
.footer__btn:hover {
  border-color: var(--yellow);
  letter-spacing: 2px;
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
}
.footer__bottom p {
  color: rgba(255,255,255,0.18);
  font-size: 0.8rem;
}

/* ========================
   SCROLL REVEAL (JS adds .visible)
======================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1100px) {
  .header { padding: 0 36px; }
  .hero__left { padding: 120px 48px 60px; }
  .overhead__text-col { padding: 60px 44px; }
  .about__inner { padding: 0 48px; }
  .cta-section { padding: 80px 48px; }
  .footer { padding: 70px 48px 0; }
  .stats-strip { gap: 0; }
  .stat-item { padding: 0 40px; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta, .nav__auth { display: none; }
  .burger { display: flex; }
  .header { padding: 0 28px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding: 110px 28px 56px; }
  .hero__right {
    min-height: unset;
    padding: 32px 24px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .hero__img-wrap img, .overhead__img-wrap img { max-height: 55vw; }
  .hero__float-card {
    position: static;
    min-width: unset;
    width: 100%;
  }
  .hero__title { letter-spacing: -1px; }

  .overhead { grid-template-columns: 1fr; min-height: auto; }
  .overhead__img-col { padding: 40px 28px; }
  .overhead__text-col { padding: 52px 28px; }
  .overhead__photo-placeholder { min-height: 56vw; }

  .stats-strip { flex-wrap: wrap; gap: 0; padding: 32px 0; }
  .stat-item { min-width: 50%; padding: 24px 32px; }
  .stat-divider { display: none; }

  .about { padding: 72px 0; }
  .about__inner { padding: 0 28px; }
  .about__header { grid-template-columns: 1fr; gap: 24px; }
  .about__photos {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .photo-oct, .photo-oct--mid {
    width: min(280px, 80vw); height: min(280px, 80vw);
    transform: none !important;
  }

  .cta-section { padding: 72px 28px; }
  .cta-section__inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .cta-section__deco { display: none; }

  .footer { padding: 60px 28px 0; }
  .footer__top { flex-direction: column; }
  .footer__top > p { text-align: left; }
  .footer__mid { grid-template-columns: 1fr; gap: 40px; }
  .footer__contact a { word-break: break-all; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2rem, 8vw, 2.8rem); letter-spacing: -0.5px; }
  .stat-item { min-width: 100%; }
  .hero__badge { font-size: 0.65rem; letter-spacing: 1.5px; }
  .btn { padding: 14px 24px; font-size: 0.8rem; }
  .hiw__step { padding: 0 8px; }
  .overhead__title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
}

/* ========================
   CUSTOM CURSOR
======================== */
.c-cursor__dot {
  width: 7px;
  height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  position: fixed;
  left: 0; top: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: width 0.2s, height 0.2s, background 0.2s;
  box-shadow: 0 0 10px rgba(240,216,48,0.8);
}
.c-cursor__ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(240,216,48,0.5);
  border-radius: 50%;
  position: fixed;
  left: 0; top: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.3s, background 0.3s;
}
.is-hovering .c-cursor__dot { width: 12px; height: 12px; }
.is-hovering .c-cursor__ring {
  width: 64px; height: 64px;
  border-color: rgba(240,216,48,0.25);
  background: rgba(240,216,48,0.06);
}
@media (hover: none) {
  .c-cursor__dot, .c-cursor__ring { display: none; }
}

/* ========================
   HERO ORBS
======================== */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero__orb--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(240,216,48,0.09) 0%, transparent 70%);
  top: -160px; right: -140px;
  animation: orb-drift 12s ease-in-out infinite;
}
.hero__orb--2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(240,216,48,0.05) 0%, transparent 70%);
  bottom: 80px; left: 30px;
  animation: orb-drift 16s ease-in-out infinite reverse;
}
@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(40px, -30px); }
  50% { transform: translate(15px, 45px); }
  75% { transform: translate(-35px, 15px); }
}

/* ========================
   HERO TITLE LINES
======================== */
.hero__title .tl {
  display: block;
  overflow: hidden;
}
.hero__title .tli {
  display: block;
  animation: line-up 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero__title .tl:nth-child(1) .tli { animation-delay: 0.05s; }
.hero__title .tl:nth-child(2) .tli { animation-delay: 0.22s; }
.hero__title .tl:nth-child(3) .tli { animation-delay: 0.38s; }
.hero__title .tl:nth-child(4) .tli { animation-delay: 0.54s; }
@keyframes line-up {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ========================
   HERO RIGHT PARALLAX
======================== */
.hero__right {
  perspective: 1000px;
}

/* ========================
   FLOAT CARD 3D
======================== */
.hero__float-card {
  will-change: transform;
  transition: transform 0.08s ease;
}

/* ========================
   GLOW EFFECTS
======================== */
.badge-dot {
  box-shadow: 0 0 8px 2px rgba(240,216,48,0.7);
}
.btn--yellow:hover {
  box-shadow: 0 14px 40px rgba(240,216,48,0.4), 0 0 80px rgba(240,216,48,0.12) !important;
}
.nav__cta:hover {
  box-shadow: 0 0 28px rgba(240,216,48,0.25);
}

/* ========================
   STAT COUNTER
======================== */
.stat-num {
  font-variant-numeric: tabular-nums;
}

/* ========================
   GOOGLE REVIEWS
======================== */
.reviews {
  background: var(--dark-2);
  padding: 100px 80px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: '\2605\2605\2605\2605\2605';
  position: absolute;
  font-size: 220px;
  color: rgba(240,216,48,0.025);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -5px;
  line-height: 1;
}
.reviews__tag {
  justify-content: center;
  margin-bottom: 32px;
}
.reviews__stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}
.reviews__star {
  font-size: 2.4rem;
  color: var(--yellow);
  display: inline-block;
  filter: drop-shadow(0 0 10px rgba(240,216,48,0.6));
  opacity: 0;
  transform: scale(0) rotate(-20deg);
  transition: opacity 0s, transform 0s;
}
.reviews.stars-visible .reviews__star {
  animation: star-pop 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.reviews.stars-visible .reviews__star:nth-child(1) { animation-delay: 0s; }
.reviews.stars-visible .reviews__star:nth-child(2) { animation-delay: 0.09s; }
.reviews.stars-visible .reviews__star:nth-child(3) { animation-delay: 0.18s; }
.reviews.stars-visible .reviews__star:nth-child(4) { animation-delay: 0.27s; }
.reviews.stars-visible .reviews__star:nth-child(5) { animation-delay: 0.36s; }
@keyframes star-pop {
  0% { opacity: 0; transform: scale(0) rotate(-20deg); }
  60% { opacity: 1; transform: scale(1.35) rotate(6deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.reviews__score {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -5px;
  line-height: 1;
  margin-bottom: 10px;
}
.reviews__score span { color: var(--yellow); }
.reviews__label {
  color: var(--gray);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-weight: 600;
}
.reviews__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 42px;
  background: var(--white);
  color: #1a1a1a;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  position: relative;
  z-index: 2;
}
.reviews__btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.reviews__gicon { flex-shrink: 0; }

@media (max-width: 860px) {
  .reviews { padding: 72px 28px; }
  .reviews::before { font-size: 120px; }
}

/* ========================
   SCROLL PROGRESS BAR
======================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--yellow), #fffaaa, var(--yellow));
  z-index: 10001;
  box-shadow: 0 0 14px rgba(240,216,48,0.8), 0 0 4px rgba(240,216,48,0.5);
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ========================
   BUTTON SHIMMER
======================== */
.btn--yellow::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.28), transparent);
  animation: btn-shimmer 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes btn-shimmer {
  0% { left: -120%; }
  45%, 100% { left: 160%; }
}

/* ========================
   HERO SPARKLES
======================== */
.hero__sparkle {
  position: absolute;
  border-radius: 50%;
  background: var(--yellow);
  pointer-events: none;
  animation: sparkle-rise var(--dur, 4s) ease-out var(--delay, 0s) infinite;
  opacity: 0;
  z-index: 1;
}
@keyframes sparkle-rise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  12%  { opacity: 0.9; }
  100% { transform: translateY(-200px) translateX(var(--drift, 0px)) scale(0); opacity: 0; }
}

/* ========================
   HERO SCROLL HINT
======================== */
.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  animation: fade-in-up 1.2s 1.2s both;
}
.hero__scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
}
.hero__scroll-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(240,216,48,0.8), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); opacity: 1; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 860px) {
  .hero__scroll-hint { display: none; }
}

/* ========================
   NOISE GRAIN OVERLAY
======================== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* ========================
   LOGO GLOW ON HOVER
======================== */
.logo {
  transition: filter 0.3s;
}
.logo:hover {
  filter: drop-shadow(0 0 14px rgba(240,216,48,0.45));
}

/* ========================
   SOCIAL CARD COLORED GLOW
======================== */
.social-card--fb:hover {
  box-shadow: 0 24px 64px rgba(24,119,242,0.35), 0 4px 16px rgba(24,119,242,0.2);
}
.social-card--ig:hover {
  box-shadow: 0 24px 64px rgba(220,39,67,0.3), 0 4px 16px rgba(220,39,67,0.15);
}

/* ========================
   ABOUT PHOTO HOVER
======================== */
.photo-oct {
  transition: transform 0.35s var(--ease), filter 0.35s;
}
.photo-oct:hover {
  filter: drop-shadow(0 0 28px rgba(240,216,48,0.22));
}
.photo-oct__inner {
  transition: transform 0.5s var(--ease);
}
.photo-oct:hover .photo-oct__inner {
  transform: scale(1.06);
}

/* ========================
   STAT GLOW ON HOVER
======================== */
.stat-item {
  transition: transform 0.3s var(--ease);
}
.stat-item:hover {
  transform: translateY(-4px);
}
.stat-item:hover strong {
  text-shadow: 0 0 40px rgba(240,216,48,0.35);
}

/* ========================
   FEATURE ITEM YELLOW NUM
======================== */
.feature-item:hover .feature-num {
  color: var(--yellow);
  transition: color 0.2s;
}

/* ========================
   SECTION TAG REVEAL PULSE
======================== */
.section__tag::before {
  animation: tag-pulse 2s ease-in-out infinite;
}
@keyframes tag-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ========================
   JAK TO DZIAŁA
======================== */
.how-it-works {
  background: var(--dark);
  padding: 110px 80px;
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(240,216,48,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hiw__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hiw__header {
  text-align: center;
  margin-bottom: 72px;
}
.hiw__header .section__tag { justify-content: center; }
.hiw__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
}
.hiw__title em {
  font-style: italic;
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.hiw__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.hiw__connector {
  display: flex;
  align-items: center;
  padding-top: 52px;
  flex-shrink: 0;
  padding-left: 8px;
  padding-right: 8px;
}
.hiw__step {
  flex: 1;
  max-width: 240px;
  text-align: center;
  position: relative;
}
.hiw__step-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--yellow);
  margin-bottom: 16px;
}
.hiw__step-icon {
  width: 64px;
  height: 64px;
  border: 1.5px solid rgba(240,216,48,0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--yellow);
  background: rgba(240,216,48,0.06);
  transition: all 0.3s var(--ease);
}
.hiw__step:hover .hiw__step-icon {
  background: rgba(240,216,48,0.12);
  border-color: rgba(240,216,48,0.6);
  box-shadow: 0 0 28px rgba(240,216,48,0.15);
  transform: translateY(-4px);
}
.hiw__step h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.hiw__step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .how-it-works { padding: 72px 28px; }
  .hiw__steps { flex-direction: column; align-items: center; gap: 0; }
  .hiw__connector { padding: 0; transform: rotate(90deg); margin: 8px 0; }
  .hiw__step { max-width: 100%; width: 100%; }
}

/* ========================
   FAQ
======================== */
.faq {
  background: var(--black);
  padding: 110px 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.faq__inner {
  max-width: 860px;
  margin: 0 auto;
}
.faq__header {
  margin-bottom: 56px;
}
.faq__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-top: 4px;
}
.faq__title em {
  font-style: italic;
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.faq__q:hover { color: var(--yellow); }
.faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq__item.open .faq__a {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq__a p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.75;
}

@media (max-width: 860px) {
  .faq { padding: 72px 28px; }
}
