
:root{
  --ink:#111;
  --muted:#5f6368;
  --paper:#fff;
  --cream:#fff8f2;
  --red:#ff4a45;
  --pink:#ff2c8b;
  --orange:#ff8a24;
  --blue:#24b9ff;
  --purple:#7b4dff;
  --gold:#d7a63a;
  --shadow:0 20px 60px rgba(0,0,0,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.6;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
.container{width:min(1220px,92%);margin-inline:auto}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.nav-wrap{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.brand img{
  width:170px;
  height:58px;
  object-fit:contain;
}
.nav-links{
  display:flex;
  gap:28px;
  align-items:center;
  font-weight:800;
}
.nav-links a{position:relative}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-7px;
  width:0;
  height:3px;
  border-radius:3px;
  background:linear-gradient(90deg,var(--pink),var(--orange),var(--blue));
  transition:.25s ease;
}
.nav-links a:hover::after{width:100%}
.menu-btn{
  display:none;
  border:0;
  background:none;
  font-size:1.7rem;
  cursor:pointer;
}

/* WHITE TOP BANNER */
.hero{
  padding:24px 0 0;
  background:#fff;
}
.hero-shell{
  position:relative;
  min-height:690px;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  align-items:center;
  gap:24px;
  background:#fff;
  border:1px solid #ececec;
  border-radius:42px;
  box-shadow:var(--shadow);
  overflow:hidden;
  padding:56px 48px;
}
.hero-shell::before{
  content:"";
  position:absolute;
  right:-180px;
  top:-180px;
  width:520px;
  height:520px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(36,185,255,.13),transparent 68%);
}
.hero-shell::after{
  content:"";
  position:absolute;
  left:-180px;
  bottom:-220px;
  width:560px;
  height:560px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,44,139,.10),transparent 70%);
}
.hero-copy-block{
  position:relative;
  z-index:3;
  max-width:650px;
}
.marble{
  width:92px;
  height:92px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:22px;
  box-shadow:0 14px 40px rgba(69,101,255,.22);
  animation:marbleFloat 3.8s ease-in-out infinite;
}
@keyframes marbleFloat{
  0%,100%{transform:translateY(0) rotate(0deg)}
  50%{transform:translateY(-10px) rotate(4deg)}
}

.eyebrow,.section-kicker{
  font-size:.78rem;
  font-weight:950;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.eyebrow{color:#db7f15}
.hero h1{
  margin:.5rem 0 1rem;
  font-size:clamp(3rem,5.2vw,5.9rem);
  line-height:.93;
  letter-spacing:-.065em;
}
.hero-copy{
  font-size:clamp(1.06rem,1.45vw,1.3rem);
  color:#505050;
  max-width:670px;
}

.hero-art-wrap{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:560px;
  perspective:1000px;
}
.hero-art{
  width:min(760px,100%);
  transform:translate3d(0,0,0);
  transition:transform .16s ease-out;
  filter:drop-shadow(0 22px 35px rgba(0,0,0,.10));
  will-change:transform;
}
.hero-art-wrap::after{
  content:"";
  position:absolute;
  width:68%;
  height:42px;
  border-radius:50%;
  bottom:22px;
  background:rgba(0,0,0,.08);
  filter:blur(18px);
  z-index:-1;
}

.splash-cta{
  margin:30px 0 22px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.splash-word{
  display:inline-block;
  padding:11px 16px;
  border-radius:999px 42% 999px 44%;
  font-weight:950;
  color:#fff;
  background:linear-gradient(135deg,var(--pink),var(--orange));
  box-shadow:0 10px 30px rgba(255,68,90,.22);
  opacity:0;
  transform:translateY(20px) scale(.65) rotate(-8deg);
  animation:splashIn .72s cubic-bezier(.2,.9,.25,1.35) forwards;
}
.splash-word:nth-child(2){background:linear-gradient(135deg,var(--orange),#ffc928)}
.splash-word:nth-child(3){background:linear-gradient(135deg,var(--blue),var(--purple))}
.splash-word:nth-child(4){background:linear-gradient(135deg,var(--purple),var(--pink))}
.delay-1{animation-delay:.2s}
.delay-2{animation-delay:.85s}
.delay-3{animation-delay:1.5s}
.delay-4{animation-delay:2.15s}

@keyframes splashIn{
  0%{opacity:0;transform:translateY(24px) scale(.4) rotate(-12deg)}
  70%{opacity:1;transform:translateY(-5px) scale(1.1) rotate(3deg)}
  100%{opacity:1;transform:translateY(0) scale(1) rotate(0)}
}

.hero-contact{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:18px 0 24px;
}
.contact-line{
  display:flex;
  align-items:center;
  gap:12px;
  width:max-content;
  max-width:100%;
  font-size:1.05rem;
}
.contact-icon{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#111;
  color:#fff;
  flex:0 0 34px;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:16px;
  font-weight:900;
  transition:.22s ease;
}
.btn-dark{background:#111;color:#fff}
.btn-outline{border:1px solid #d8d8d8;background:#fff}
.btn-light-dark{background:#fff;color:#111}

.hover-pop{
  transition:transform .2s ease,filter .2s ease;
}
.hover-pop:hover{
  animation:hoverWiggle .55s ease both;
  filter:brightness(1.04) saturate(1.06);
}
.splash-word:hover{
  animation:hoverWiggle .55s ease both;
}
@keyframes hoverWiggle{
  0%{transform:translateY(0) rotate(0)}
  25%{transform:translateY(-8px) rotate(-2deg)}
  50%{transform:translateY(-3px) rotate(2deg)}
  75%{transform:translateY(-8px) rotate(-1deg)}
  100%{transform:translateY(0) rotate(0)}
}

.section{padding:96px 0}
.section-kicker{color:#d24a38}
.section h2{
  font-size:clamp(2.2rem,4vw,4.4rem);
  line-height:1;
  letter-spacing:-.05em;
  margin:.65rem 0 1.2rem;
}
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}
.brand-art{
  border-radius:38px;
  padding:28px;
  background:linear-gradient(145deg,#fff6e7,#fff);
  box-shadow:var(--shadow);
}
.brand-story p{font-size:1.08rem;color:#4f4f4f}

.services{background:#111;color:#fff}
.services .section-kicker{color:#ffbd5f}
.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:42px;
}
.card{
  min-height:260px;
  padding:30px;
  border-radius:28px;
  background:linear-gradient(145deg,#1d1d1d,#101010);
  border:1px solid rgba(255,255,255,.08);
  transition:.25s ease;
}
.card:hover{transform:translateY(-8px);border-color:rgba(255,255,255,.22)}
.card-number{font-size:.8rem;color:#ffcd76;font-weight:900}
.card h3{font-size:1.5rem;margin:1rem 0 .4rem}
.card p{color:#c8c8c8}

.feature-panel{
  background:linear-gradient(135deg,#fff5ed,#fff);
  border-radius:42px;
  padding:50px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
  box-shadow:var(--shadow);
}
.feature-image img{border-radius:30px}
.float-card{animation:softFloat 5s ease-in-out infinite}
@keyframes softFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}
.mini-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:24px;
  font-weight:800;
}

.global{background:#faf7f3}
.wide-copy{font-size:1.15rem;max-width:830px;color:#555}
.global-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:34px;
}
.global-card{
  padding:24px;
  min-height:125px;
  display:flex;
  align-items:center;
  background:#fff;
  border-radius:24px;
  font-size:1.12rem;
  font-weight:900;
  box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.contact-panel{
  background:linear-gradient(135deg,#111,#242424);
  color:#fff;
  border-radius:42px;
  padding:52px;
  display:flex;
  justify-content:space-between;
  gap:35px;
  align-items:center;
}
.contact-panel .section-kicker{color:#ffcf74}
.contact-panel h2{margin-bottom:.6rem}
.contact-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:12px;
  min-width:min(100%,420px);
}
.big-phone{
  font-size:clamp(1.7rem,3.4vw,3.25rem);
  line-height:1;
  white-space:nowrap;
  font-weight:950;
  letter-spacing:-.04em;
}
.email-link{
  font-size:1.05rem;
  font-weight:800;
  word-break:break-word;
}

footer{
  padding:46px 0;
  border-top:1px solid #eee;
}
.footer-wrap{
  display:grid;
  grid-template-columns:1fr auto auto;
  align-items:center;
  gap:30px;
  color:#555;
}
.credit a{
  font-weight:900;
  color:#111;
  text-decoration:underline;
  text-underline-offset:4px;
}

@media (max-width: 980px){
  .menu-btn{display:block}
  .nav-links{
    position:absolute;
    top:78px;
    left:4%;
    right:4%;
    display:none;
    flex-direction:column;
    align-items:stretch;
    background:#fff;
    padding:20px;
    border-radius:20px;
    box-shadow:var(--shadow);
  }
  .nav-links.open{display:flex}
  .hero-shell{
    grid-template-columns:1fr;
    padding:48px 36px;
  }
  .hero-copy-block{max-width:760px}
  .hero-art-wrap{min-height:450px}
  .two-col,.feature-panel{grid-template-columns:1fr}
  .service-grid{grid-template-columns:1fr 1fr}
  .global-grid{grid-template-columns:1fr 1fr}
  .contact-panel{flex-direction:column;align-items:flex-start}
  .contact-actions{align-items:flex-start}
  .footer-wrap{grid-template-columns:1fr}
}

@media (max-width: 620px){
  .brand img{width:140px}
  .hero{padding-top:10px}
  .hero-shell{
    width:96%;
    padding:36px 22px;
    border-radius:28px;
  }
  .hero h1{font-size:clamp(2.7rem,14vw,4.5rem)}
  .marble{width:78px;height:78px}
  .hero-art-wrap{min-height:340px}
  .service-grid,.global-grid,.mini-list{grid-template-columns:1fr}
  .section{padding:72px 0}
  .feature-panel,.contact-panel{padding:30px;border-radius:28px}
  .splash-word{font-size:.9rem}
  .big-phone{font-size:clamp(1.55rem,8vw,2.25rem)}
  .contact-line{font-size:.95rem}
}
