*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* ── HORNET PALETTE ── */
  --gold:        #FDB913;
  --gold-deep:   #C98A00;
  --gold-bright: #FFD54D;
  --ink:         #16130F;
  --charcoal:    #221E1A;
  --paper:       #F7F4EE;
  --white:       #ffffff;
  --stone:       #8A8378;
  --shadow:      0 4px 24px rgba(22,19,15,0.16);
  --tr:          all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ══════════════════ SPLASH ══════════════════ */
.splash {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, #221c14 0%, var(--ink) 55%, #0a0806 100%);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.7s ease-out;
  overflow: hidden;
}
.splash.fade-out { opacity: 0; pointer-events: none; }

/* ── DESKTOP: hexagons flying in from the corners (original design) ── */
.hex-field-desktop {
  display: none;
  position: fixed; inset: 0;
  pointer-events: none;
}
.hex-piece {
  position: absolute;
  width: 70px; height: 80px;
  opacity: 0;
}
.hex-piece svg { width: 100%; height: 100%; }
.hex-piece { animation: hexConverge 1.1s cubic-bezier(0.22,1,0.36,1) forwards; }
.hex-piece:nth-child(1) { top: 18%; left: 12%;  --tx: 210px; --ty: 90px;  animation-delay: 0.05s; }
.hex-piece:nth-child(2) { top: 70%; left: 15%;  --tx: 180px; --ty: -70px; animation-delay: 0.12s; }
.hex-piece:nth-child(3) { top: 15%; left: 78%;  --tx: -190px; --ty: 100px; animation-delay: 0.08s; }
.hex-piece:nth-child(4) { top: 75%; left: 80%;  --tx: -160px; --ty: -80px; animation-delay: 0.18s; }
.hex-piece:nth-child(5) { top: 42%; left: 6%;   --tx: 230px; --ty: 8px;   animation-delay: 0.02s; }
.hex-piece:nth-child(6) { top: 45%; left: 90%;  --tx: -220px; --ty: 0px;  animation-delay: 0.15s; }
@keyframes hexConverge {
  0%   { opacity: 0; transform: translate(0,0) scale(0.4) rotate(-25deg); }
  55%  { opacity: 0.9; }
  100% { opacity: 0.16; transform: translate(var(--tx), var(--ty)) scale(1) rotate(0deg); }
}

/* ── MOBILE: hexagons flying in as a background layer.
   top/left = final resting spot (hand-spaced, guaranteed no overlap).
   --fx/--fy = entry offset in vw/vh, so the piece flies in from that
   direction and settles exactly at its top/left position. ── */
.hex-field-mobile-fly {
  display: block;
  position: fixed; inset: 0;
  pointer-events: none;
}
.hex-piece-m {
  position: absolute;
  width: 13vw; height: 15vw;
  max-width: 54px; max-height: 62px;
  min-width: 40px; min-height: 46px;
  opacity: 0;
}
.hex-piece-m svg { width: 100%; height: 100%; }
.hex-piece-m { animation: hexConvergeM 0.9s cubic-bezier(0.22,1,0.36,1) forwards; }
.hex-piece-m:nth-child(1) { top: 12%; left: 12%; --fx: -20vw; --fy: -8vh;  animation-delay: 0.05s; }
.hex-piece-m:nth-child(2) { top: 9%;  left: 66%; --fx: 20vw;  --fy: -8vh;  animation-delay: 0.14s; }
.hex-piece-m:nth-child(3) { top: 33%; left: 38%; --fx: -16vw; --fy: 12vh;  animation-delay: 0.08s; }
.hex-piece-m:nth-child(4) { top: 58%; left: 8%;  --fx: -20vw; --fy: 9vh;   animation-delay: 0.2s; }
.hex-piece-m:nth-child(5) { top: 61%; left: 74%; --fx: 18vw;  --fy: 10vh;  animation-delay: 0.02s; }
.hex-piece-m:nth-child(6) { top: 81%; left: 40%; --fx: 14vw;  --fy: -12vh; animation-delay: 0.17s; }
@keyframes hexConvergeM {
  0%   { opacity: 0; transform: translate(var(--fx), var(--fy)) scale(0.4) rotate(-25deg); }
  55%  { opacity: 0.85; }
  100% { opacity: 0.14; transform: translate(0,0) scale(1) rotate(0deg); }
}

@media (min-width: 769px) {
  .hex-field-desktop { display: block; }
  .hex-field-mobile-fly { display: none; }
}

.splash-inner { position: relative; z-index: 2; text-align: center; }

.logo-wrap { position: relative; display: inline-block; }

/* Flash ring on impact, centered behind the logo */
.sting-ring {
  position: absolute; top: 50%; left: 50%;
  width: 40px; height: 40px;
  margin: -20px 0 0 -20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: ringPulse 0.6s ease-out 0.85s forwards;
}
@keyframes ringPulse {
  0%   { opacity: 0.9; transform: scale(0.3); }
  100% { opacity: 0; transform: scale(6); }
}

.splash-wordmark {
  width: 380px; height: auto;
  display: block; margin: 0 auto;
  opacity: 0;
  animation: stingIn 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.85s forwards;
  filter: drop-shadow(0 0 26px rgba(253,185,19,0.3));
}
@keyframes stingIn {
  0%   { opacity: 0; transform: scale(0.6); }
  60%  { opacity: 1; transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); }
}
.splash-tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.55);
  margin-top: 0.9rem;
  opacity: 0;
  animation: fadeUp 0.6s ease-out 1.45s forwards;
}
.splash-bar {
  width: 0; height: 2px;
  background: var(--gold);
  margin: 1.4rem auto 0;
  border-radius: 2px;
  animation: barGrow 1.4s ease-out 1.5s forwards;
}
@keyframes fadeUp {
  from { opacity:0; transform: translateY(14px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes barGrow { from { width: 0; } to { width: 100px; } }

/* ══════════════════ MAIN ══════════════════ */
.main { opacity: 0; transition: opacity 0.6s ease-in; }
.main.show { opacity: 1; }

/* ── HEADER ── */
.header {
  background: linear-gradient(160deg, var(--ink) 0%, var(--charcoal) 55%, #2b241a 100%);
  padding: 52px 20px 86px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Honeycomb lattice texture */
.header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='96' viewBox='0 0 84 96'%3E%3Cpath d='M42 0 L84 24 L84 72 L42 96 L0 72 L0 24 Z' fill='none' stroke='%23FDB913' stroke-opacity='0.06' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 84px 96px;
  pointer-events: none;
}
.header::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,185,19,0.10) 0%, transparent 70%);
  top: -100px; right: -80px;
  pointer-events: none;
}

.profile-wrap { position: relative; z-index: 1; animation: fadeUp 0.8s ease-out 0.1s both; }

.header-wordmark {
  width: 340px; max-width: 82%; height: auto;
  display: block; margin: 0 auto;
}
.profile-title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.9rem;
  margin-bottom: 0.55rem;
}
.profile-location {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.8rem;
  color: rgba(247,244,238,0.5);
  font-weight: 400;
}
.profile-location svg { width: 12px; height: 12px; stroke: var(--gold); }

/* ── ACTION BUTTONS ── */
.action-buttons {
  display: flex; justify-content: center; gap: 0;
  margin-top: -40px;
  padding: 0 20px;
  position: relative; z-index: 10;
  animation: fadeUp 0.7s ease-out 0.3s both;
}
.action-btn {
  flex: 1; max-width: 130px;
  background: var(--white);
  color: var(--charcoal);
  padding: 19px 10px;
  text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  border: 1px solid rgba(22,19,15,0.08);
  transition: var(--tr);
  position: relative; overflow: hidden;
}
.action-btn:first-child { border-radius: 14px 0 0 14px; }
.action-btn:last-child  { border-radius: 0 14px 14px 0; }
.action-btn:not(:last-child) { border-right: none; }
.action-btn svg { width: 21px; height: 21px; stroke: var(--gold-deep); transition: var(--tr); }
.action-btn span {
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.action-btn:hover {
  background: var(--ink); color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(22,19,15,0.3);
}
.action-btn:hover svg { stroke: var(--gold); transform: scale(1.12); }
.action-btn:active { transform: translateY(-1px); }

/* ── CONTAINER ── */
.container {
  max-width: 580px; margin: 0 auto;
  padding: 36px 20px 48px;
}

/* ── CONTACT CARD ── */
.contact-card {
  background: var(--white);
  border-radius: 18px;
  padding: 26px 26px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease-out 0.5s both;
  border: 1px solid rgba(22,19,15,0.06);
}
.contact-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(22,19,15,0.05);
  transition: var(--tr);
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-item:hover { transform: translateX(4px); }

/* Hexagon icon badge — signature shape echoed from the logo */
.contact-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(253,185,19,0.12);
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 17px; height: 17px; stroke: var(--gold-deep); }

.contact-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.contact-value {
  font-size: 0.97rem; font-weight: 500;
  color: var(--charcoal); text-decoration: none;
  transition: var(--tr);
}
a.contact-value:hover { color: var(--gold-deep); }
.contact-label {
  font-size: 0.78rem; color: var(--stone); font-weight: 400;
}
.map-link {
  display: inline-block; margin-top: 6px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-deep); text-decoration: none;
  transition: var(--tr);
}
.map-link:hover { color: var(--ink); transform: translateX(3px); }

/* Logo strip inside contact card */
.card-logo-strip {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  margin-top: 4px;
  border-top: 1px solid rgba(22,19,15,0.05);
}
.card-logo-strip img {
  width: 150px; height: auto;
  opacity: 0.55;
  transition: opacity 0.3s ease;
}
.card-logo-strip:hover img { opacity: 0.85; }

/* ── SECTION LABEL ── */
.section-label {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone);
  text-align: center;
  margin: 24px 0 16px;
  animation: fadeUp 0.7s ease-out 0.7s both;
}

/* ── SOCIAL ── */
.social-row {
  display: flex; justify-content: center; gap: 14px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s ease-out 0.8s both;
}
.social-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  transition: var(--tr);
  position: relative; overflow: hidden;
}
.social-btn svg { width: 21px; height: 21px; fill: var(--white); }
.social-btn:hover { transform: translateY(-5px) scale(1.1); box-shadow: 0 10px 28px rgba(0,0,0,0.2); }
.social-btn:active { transform: translateY(-2px) scale(1.05); }

.soc-wa { background: #25d366; }
.soc-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.soc-fb { background: #1877f2; }
.soc-li { background: #0077b5; }

/* ── DOWNLOAD / SHARE BUTTONS ── */
.btn-dl, .btn-share {
  width: 100%; padding: 17px;
  border: none; border-radius: 13px;
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: var(--tr);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 12px;
}
.btn-dl {
  background: linear-gradient(135deg, var(--ink) 0%, var(--charcoal) 100%);
  color: var(--gold);
  box-shadow: 0 4px 18px rgba(22,19,15,0.25);
  animation: fadeUp 0.7s ease-out 0.9s both;
}
.btn-share {
  background: var(--white); color: var(--charcoal);
  border: 2px solid rgba(22,19,15,0.1);
  animation: fadeUp 0.7s ease-out 1s both;
}
.btn-dl:hover   { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(22,19,15,0.35); }
.btn-share:hover { background: var(--paper); border-color: var(--gold); color: var(--gold-deep); transform: translateY(-3px); }
.btn-dl svg, .btn-share svg { width: 18px; height: 18px; }
.btn-dl svg { stroke: var(--gold); }
.btn-share svg { stroke: currentColor; }

/* desktop-only / mobile-only */
.desktop-only { display: flex; flex-direction: column; }
.mobile-only  { display: none; }

/* ── FLOATING BUTTONS (MOBILE) ── */
.fab-wrap {
  position: fixed; bottom: 22px; right: 18px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 1000;
}
.fab {
  width: 54px; height: 54px; border-radius: 50%;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: var(--tr);
  opacity: 0;
}
.fab svg { width: 20px; height: 20px; }
.fab-share {
  background: var(--white); border: 2px solid rgba(22,19,15,0.1);
  animation: fabIn 0.5s ease-out 0.3s forwards;
}
.fab-share svg { stroke: var(--charcoal); }
.fab-dl {
  background: linear-gradient(135deg, var(--ink), var(--charcoal));
  animation: fabIn 0.5s ease-out 0.5s forwards;
}
.fab-dl svg { stroke: var(--gold); }
.fab:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,0.22); }
@keyframes fabIn {
  from { opacity:0; transform: translateX(80px) scale(0.5); }
  to   { opacity:1; transform: translateX(0) scale(1); }
}

/* ── FOOTER ── */
.footer {
  text-align: center; padding: 28px 20px;
  font-size: 0.78rem; color: var(--stone); font-weight: 400;
}
.footer a { color: var(--gold-deep); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only  { display: flex !important; }
  .action-btn { padding: 17px 10px; }
  .header { padding: 40px 20px 72px; }
  .header-wordmark { width: 280px; }
}
@media (min-width: 769px) {
  .mobile-only  { display: none !important; }
  .desktop-only { display: flex !important; flex-direction: column; }
}
@media (max-width: 480px) {
  .action-btn { max-width: 108px; }
  .profile-title { font-size: 0.6rem; }
  .header-wordmark { width: 240px; }
  .splash-wordmark { width: 300px; }
}

/* ── NOTIFICATION ── */
.notif {
  position: fixed; top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--ink), var(--charcoal));
  color: var(--gold);
  padding: 14px 22px; border-radius: 12px;
  font-size: 0.85rem; font-weight: 500;
  box-shadow: 0 6px 24px rgba(22,19,15,0.35);
  z-index: 10001;
  animation: slideInR 0.3s ease-out, slideOutR 0.3s ease-out 2.7s forwards;
}
@keyframes slideInR {
  from { transform: translateX(300px); opacity:0; }
  to   { transform: translateX(0); opacity:1; }
}
@keyframes slideOutR {
  from { transform: translateX(0); opacity:1; }
  to   { transform: translateX(300px); opacity:0; }
}