@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg:      #000000;
  --s1:      #0A0A0A;
  --s2:      #111111;
  --rim:     #1A1A1A;
  --rim2:    #2A2A2A;
  --orange:  #FF5722;
  --text:    #F5F5F7;
  --muted:   #6E6E73;
  --sub:     #A1A1A6;
  --font:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font); background: var(--bg); color: var(--text);
  -webkit-font-smoothing: antialiased; overflow-x: hidden; line-height: 1;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
::selection { background: rgba(255,87,34,.2); }
::-webkit-scrollbar { width: 0; }

/* ─── NAV ───────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 900;
  height: 52px; padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0,0,0,.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-color: var(--rim);
}
.nav-logo {
  font-size: .9rem; font-weight: 600; letter-spacing: -.01em;
  display: flex; align-items: center; gap: 8px;
}
.logo-pip {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
  transition: transform .35s var(--ease);
}
.nav-logo:hover .logo-pip { transform: scale(1.8); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: .8rem; font-weight: 400; color: var(--muted); transition: color .15s; white-space: nowrap; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 6px 14px; border-radius: 980px;
  background: var(--orange); color: #fff !important;
  font-weight: 600 !important; font-size: .78rem !important;
  transition: opacity .15s !important;
}
.nav-cta:hover { opacity: .85; }
.hamburger { display: none; flex-direction: column; gap: 4.5px; z-index: 901; }
.hamburger span { display: block; width: 18px; height: 1px; background: var(--text); transition: all .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  height: 100svh; min-height: 600px;
  display: grid; place-items: center;
  text-align: center;
  padding: 52px 24px 0;
  position: relative; overflow: hidden;
}
.hero-noise {
  position: absolute; inset: 0; pointer-events: none;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 55%, rgba(255,87,34,.11) 0%, transparent 65%);
}
.hero-inner { position: relative; z-index: 1; max-width: 960px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp .5s .1s var(--ease) forwards;
}
.hero-h1 {
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 700; line-height: .97; letter-spacing: -.04em;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp .6s .2s var(--ease) forwards;
}
.hero-h1 span { color: var(--orange); }
.hero-p {
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  font-weight: 300; line-height: 1.6; color: var(--sub);
  max-width: 520px; margin: 0 auto 40px;
  opacity: 0; animation: fadeUp .6s .32s var(--ease) forwards;
}
.hero-btns {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; animation: fadeUp .6s .44s var(--ease) forwards;
}
.btn-fill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px; border-radius: 980px;
  background: var(--orange); color: #fff;
  font-size: .875rem; font-weight: 600;
  transition: opacity .15s, transform .2s var(--ease);
}
.btn-fill:hover { opacity: .86; transform: scale(1.02); }
.btn-fill svg { flex-shrink: 0; transition: transform .2s var(--ease); }
.btn-fill:hover svg { transform: translateX(2px); }
.btn-line {
  display: inline-flex; align-items: center;
  padding: 12px 24px; border-radius: 980px;
  border: 1px solid var(--rim2); color: var(--sub);
  font-size: .875rem; font-weight: 500;
  transition: border-color .15s, color .15s, transform .2s var(--ease);
}
.btn-line:hover { border-color: var(--rim2); color: var(--text); transform: scale(1.02); }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: .72rem; color: var(--muted); letter-spacing: .08em;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp .5s .7s var(--ease) forwards;
}
.scroll-pip {
  width: 1px; height: 32px; background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPip 2s 1s ease-in-out infinite;
}
@keyframes scrollPip { 0%,100% { opacity: .3 } 50% { opacity: 1 } }

/* ─── SECTION SHELL ─────────────────────────────────── */
.sec {
  padding: 120px 48px;
  border-top: 1px solid var(--rim);
}
.sec.dark { background: var(--s1); }
.sec.darker { background: var(--s2); }
.eyebrow {
  font-size: .68rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 16px;
}
.sec-h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700; letter-spacing: -.035em; line-height: 1.05;
  margin-bottom: 20px;
}
.sec-h2 span { color: var(--orange); }
.sec-lead {
  font-size: 1rem; font-weight: 300; color: var(--sub); line-height: 1.7;
}

/* ─── SERVICES ──────────────────────────────────────── */
.svc-layout {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 0; align-items: start;
}
.svc-sticky { position: sticky; top: 72px; padding-right: 60px; }
.svc-sticky .sec-lead { max-width: 300px; margin-top: 16px; }
.svc-rows { border-top: 1px solid var(--rim); }
.svc-row {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 24px; padding: 36px 0;
  border-bottom: 1px solid var(--rim);
  transition: background .2s;
  cursor: default;
}
.svc-row:hover { background: rgba(255,87,34,.03); }
.svc-n { font-size: .7rem; font-weight: 500; color: var(--muted); padding-top: 5px; letter-spacing: .05em; }
.svc-name { font-size: 1.15rem; font-weight: 600; letter-spacing: -.02em; margin-bottom: 10px; }
.svc-desc { font-size: .875rem; color: var(--muted); line-height: 1.7; font-weight: 400; }

/* ─── WORK ──────────────────────────────────────────── */
.work-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 56px;
}
.work-card {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  border: 1px solid var(--rim);
  cursor: default;
}
.work-bg {
  position: absolute; inset: 0;
  transition: transform .8s var(--ease);
}
.work-card:hover .work-bg { transform: scale(1.04); }
.work-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(0,0,0,.85) 100%);
}
.work-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px;
}
.work-tag { font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.work-body h3 { font-size: 1.3rem; font-weight: 600; letter-spacing: -.02em; }
.work-body p { font-size: .82rem; color: var(--sub); margin-top: 6px; line-height: 1.55; }

/* ─── SHOP ──────────────────────────────────────────── */
.shop-head {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; margin-bottom: 56px;
}
.shop-tabs {
  display: inline-flex; gap: 3px; margin-top: 32px;
  background: var(--rim); border-radius: 980px; padding: 3px;
}
.tab {
  padding: 9px 22px; border-radius: 980px;
  font-size: .82rem; font-weight: 500; color: var(--muted);
  transition: background .2s, color .2s; cursor: pointer; font-family: var(--font);
}
.tab.active { background: var(--s2); color: var(--text); }

/* Pricing grid — always 3 columns, never wraps */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
}
[data-panel] { display: none; }
[data-panel].active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.p-card {
  background: var(--s1); border: 1px solid var(--rim);
  border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
  min-width: 0; /* prevent blowout */
}
.p-card:hover { border-color: var(--rim2); transform: translateY(-2px); }
.p-card.pop { border-color: rgba(255,87,34,.4); background: rgba(255,87,34,.05); }
.p-badge {
  display: inline-block; width: fit-content;
  font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange); border: 1px solid rgba(255,87,34,.3);
  border-radius: 980px; padding: 4px 10px; margin-bottom: 20px;
}
.p-name { font-size: .9rem; font-weight: 600; letter-spacing: -.01em; margin-bottom: 8px; }
.p-desc { font-size: .8rem; color: var(--muted); line-height: 1.6; margin-bottom: 28px; flex: 1; }
.p-price {
  font-size: 2.6rem; font-weight: 700; letter-spacing: -.05em; line-height: 1;
  margin-bottom: 4px;
}
.p-price sup { font-size: 1.1rem; font-weight: 600; vertical-align: super; margin-right: 1px; }
.p-price small { font-size: .9rem; font-weight: 400; color: var(--muted); letter-spacing: 0; }
.p-period { font-size: .75rem; color: var(--muted); margin-bottom: 24px; }
.p-feats { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.p-feats li {
  font-size: .8rem; color: var(--sub); line-height: 1.4;
  display: flex; align-items: flex-start; gap: 9px;
}
.p-feats li::before {
  content: ''; width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px;
  border-radius: 50%; border: 1px solid rgba(255,87,34,.3);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 10 8' fill='none'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23FF5722' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/8px no-repeat;
}
.p-btn {
  width: 100%; padding: 12px; border-radius: 980px;
  font-size: .875rem; font-weight: 600; font-family: var(--font);
  transition: opacity .15s, transform .15s; cursor: pointer;
}
.p-btn-fill { background: var(--orange); color: #fff; border: none; }
.p-btn-fill:hover { opacity: .86; }
.p-btn-ghost { background: transparent; color: var(--sub); border: 1px solid var(--rim2); }
.p-btn-ghost:hover { border-color: rgba(255,87,34,.4); color: var(--text); }

/* ─── ABOUT ─────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: start;
}
.about-left { position: sticky; top: 80px; }
.about-right { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.about-right p { font-size: .9rem; color: var(--muted); line-height: 1.85; font-weight: 400; }
.about-right strong { color: var(--sub); font-weight: 500; }

/* ─── CTA ────────────────────────────────────────────── */
.cta-box {
  border: 1px solid var(--rim);
  border-radius: 24px; padding: 80px 72px;
  background: var(--s1);
  display: flex; justify-content: space-between; align-items: center; gap: 60px;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,87,34,.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-box h2 { font-size: clamp(1.6rem, 2.5vw, 2.4rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.15; margin-bottom: 12px; }
.cta-box h2 span { color: var(--orange); }
.cta-box p { font-size: .9rem; color: var(--muted); font-weight: 300; }
.cta-right { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; position: relative; z-index: 1; }
.cta-email { font-size: .75rem; color: var(--muted); }

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  padding: 24px 48px;
  border-top: 1px solid var(--rim);
  display: flex; justify-content: space-between; align-items: center;
}
.f-left { display: flex; align-items: center; gap: 24px; }
.f-copy { font-size: .72rem; color: var(--muted); }
.f-links { list-style: none; display: flex; gap: 16px; }
.f-links a { font-size: .72rem; color: var(--muted); transition: color .15s; }
.f-links a:hover { color: var(--sub); }
.f-right { display: flex; gap: 16px; }
.f-right a { font-size: .72rem; color: var(--muted); transition: color .15s; }
.f-right a:hover { color: var(--orange); }

/* ─── REVEAL ─────────────────────────────────────────── */
.r { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.r.on { opacity: 1; transform: none; }
.d1 { transition-delay: .07s; }
.d2 { transition-delay: .14s; }
.d3 { transition-delay: .21s; }

@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ─── MOBILE ─────────────────────────────────────────── */
@media (max-width: 880px) {
  .nav { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: fixed; inset: 0; background: rgba(0,0,0,.96);
    backdrop-filter: blur(20px); gap: 28px; font-size: 1.1rem; z-index: 900;
  }
  .hamburger { display: flex; }
  .hero { padding: 52px 20px 0; }
  .sec { padding: 80px 20px; }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-sticky { position: static; padding-right: 0; margin-bottom: 40px; }
  .svc-row { grid-template-columns: 40px 1fr; gap: 16px; }
  .work-grid { grid-template-columns: 1fr; }
  /* Shop: stack to 1 col on mobile */
  [data-panel].active { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-left { position: static; }
  .cta-box { flex-direction: column; align-items: flex-start; padding: 40px 32px; gap: 32px; }
  .cta-right { align-items: flex-start; }
  footer { flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
