:root {
  --bg: #070707;
  --panel: #101010;
  --panel-2: #151515;
  --text: #ffffff;
  --muted: #b7b7b7;
  --soft: #777777;
  --line: rgba(255,255,255,0.1);
  --accent: #ff7a00;
  --accent-2: #ffb000;
  --glow: rgba(255,122,0,0.35);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top left, rgba(255,122,0,0.12), transparent 28%), var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(7,7,7,0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand img { width: 168px; height: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color .25s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .25s ease;
}
.nav a:hover,
.nav a.active { color: var(--text); }
.nav a:hover::after,
.nav a.active::after { width: 100%; }

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.header-cta,
.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111;
  box-shadow: 0 0 0 rgba(255,122,0,0);
}
.header-cta:hover,
.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px var(--glow);
}
.btn.ghost {
  border-color: var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}
.btn.ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(255,122,0,0.45);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.btn.full { width: 100%; margin-top: 14px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 24px 70px;
}
.hero-content { position: relative; z-index: 2; }
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 18px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(42px, 7vw, 88px);
  line-height: .92;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}
.hero-text, .page-hero p, .section-heading p, .section-copy {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  max-width: 740px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0; }
.hero-actions.centre { justify-content: center; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  max-width: 680px;
}
.hero-stats div,
.card,
.project-card,
.service-card,
.about-panel,
.contact-card,
.process-list div,
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-stats div { padding: 18px; }
.hero-stats strong { display: block; font-size: 28px; color: var(--accent); }
.hero-stats span { color: var(--muted); font-size: 13px; }

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  transform: none;
  animation: floatCard 5s ease-in-out infinite;
}
.browser-top {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}
.browser-top span { width: 11px; height: 11px; border-radius: 50%; background: var(--accent); opacity: .9; }
.browser-body { padding: 42px; }
.mini-tag {
  display: inline-block;
  color: #111;
  background: var(--accent);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 24px;
}
.browser-body h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1; letter-spacing: -0.04em; }
.browser-body p { color: var(--muted); line-height: 1.6; }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.mini-grid span { padding: 18px; background: rgba(255,255,255,0.05); border-radius: 16px; color: var(--muted); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(40px); opacity: .55; pointer-events: none; }
.hero-glow.one { width: 220px; height: 220px; background: var(--accent); right: 18%; top: 28%; opacity: .28; filter: blur(85px); }
.hero-glow.two { width: 140px; height: 140px; background: var(--accent-2); left: 6%; bottom: 14%; opacity: .25; filter: blur(70px); }

.section,
.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 24px;
}
.page-hero { padding-top: 110px; }
.page-hero h1, .section-heading h2, .split h2, .cta-section h2 { font-size: clamp(36px, 5vw, 62px); line-height: 1; letter-spacing: -0.05em; margin-bottom: 18px; }
.section-heading { margin-bottom: 36px; }
.row-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.text-link { color: var(--accent); font-weight: 900; text-decoration: none; }
.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 28px; }
.card-icon { color: var(--accent); font-weight: 900; }
.card h3 { font-size: 24px; margin: 20px 0 12px; }
.card p, .project-content p, .service-card p, .about-panel li, .contact-card li { color: var(--muted); line-height: 1.65; }
.hover-card { transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.hover-card:hover { transform: translateY(-10px); border-color: rgba(255,122,0,0.45); box-shadow: 0 30px 90px rgba(0,0,0,0.42), 0 0 34px rgba(255,122,0,0.10); }

.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.portfolio-grid.full { grid-template-columns: repeat(2, 1fr); }
.project-card { overflow: hidden; }
.project-preview {
  height: 250px;
  display: flex;
  align-items: end;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.project-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 35%);
  transition: transform .4s ease;
}
.project-card:hover .project-preview::before { transform: scale(1.1); }
.project-preview span {
  position: relative;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.04em;
}
.psychology { background: linear-gradient(135deg, #6f4bd8, #c898ff); }
.tattoo { background: linear-gradient(135deg, #1d1d1d, #6d0f1b); }
.dental { background: linear-gradient(135deg, #e8f4ff, #52a6ff); color: #07111f; }
.audio { background: linear-gradient(135deg, #04122f, #155dff); }
.project-content { padding: 26px; }
.project-type { color: var(--accent) !important; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.project-content h3 { font-size: 28px; margin-bottom: 10px; }
.project-content a { color: var(--accent); text-decoration: none; font-weight: 900; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.process-list { display: grid; gap: 14px; }
.process-list div { padding: 20px; display: grid; grid-template-columns: 48px 1fr; column-gap: 16px; }
.process-list strong { grid-row: span 2; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: #111; }
.process-list span { font-weight: 900; font-size: 20px; }
.process-list p { grid-column: 2; color: var(--muted); margin: 4px 0 0; }

.service-list { display: grid; gap: 18px; }
.service-card { padding: 30px; display: grid; grid-template-columns: 80px 1fr; gap: 14px; align-items: start; }
.service-card span { color: var(--accent); font-weight: 950; font-size: 26px; }
.service-card h2 { margin-bottom: 8px; }
.muted-card { opacity: .8; }
.about-panel, .contact-card { padding: 32px; }
ul { padding-left: 18px; }
li { margin-bottom: 12px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.dark-card { background: linear-gradient(180deg, rgba(255,122,0,0.09), rgba(255,255,255,0.025)); }
.cta-section {
  max-width: var(--max);
  margin: 40px auto 90px;
  padding: 70px 24px;
  text-align: center;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,122,0,0.18), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,122,0,0.22);
}
.cta-section p { color: var(--muted); font-size: 18px; }

.footer {
  padding: 48px 24px;
  text-align: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer img { width: 150px; margin: 0 auto 18px; }

.section-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.section-reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
  .site-header { padding: 14px 20px; }
  .brand img { width: 138px; }
  .menu-toggle {
    display: block;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
    color: var(--text);
    border-radius: 12px;
    padding: 10px 13px;
    font-size: 22px;
  }
  .header-cta { display: none; }
  .nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #0e0e0e;
    border: 1px solid var(--line);
    border-radius: 20px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 64px; }
  .hero-card { transform: none; animation: none; min-height: 360px; }
  .hero-stats, .cards.three, .portfolio-grid, .portfolio-grid.full, .split, .contact-layout { grid-template-columns: 1fr; }
  .row-heading { align-items: start; flex-direction: column; }
  .service-card { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .hero, .section, .page-hero { padding-left: 18px; padding-right: 18px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .project-preview { height: 210px; }
  .browser-body { padding: 28px; }
}

/* Final contact icon buttons, no visible email, phone, or handle */
.icon-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.icon-contact {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  border-radius: 22px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.icon-contact svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.45));
}
.icon-contact span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}
.icon-contact:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255,122,0,.75);
  background: rgba(255,122,0,0.1);
  box-shadow: 0 18px 46px rgba(255,122,0,.22);
}
.icon-contact.gmail { color: #fff; }
.icon-contact.whatsapp { color: #25D366; }
.icon-contact.instagram { color: #ff7a00; }
@media (max-width: 640px){
  .icon-contact-grid { grid-template-columns: 1fr; }
  .icon-contact { min-height: 92px; }
}


/* Final straight hero fix */
.hero-card {
  transform: none !important;
  rotate: 0deg !important;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%);
  background: var(--accent);
  opacity: .18;
  filter: blur(120px);
  pointer-events: none;
}
.browser-body, .browser-top { position: relative; z-index: 1; }
.site-header .nav { gap: 34px; }
