/* ===== VARIABLES ===== */
:root{
  --bg:#060606;
  --bg-soft:#0d0d0d;
  --panel:#111111;
  --text:#f3f3f3;
  --muted:#b8b8b8;
  --line:rgba(255,255,255,.08);
  --accent:#e7d94f;
  --max:1160px;
  --radius:22px;

  --home:#f2c94c;
  --brand:#9b51e0;
  --web:#00ff9c;
  --seo:#7aa2ff;
  --portfolio:#ff4d4d;
  --contact:#b8b8b8;

  --wipe-ease:cubic-bezier(.77,0,.18,1);
  --wipe-duration-desktop:.52s;
  --wipe-duration-mobile:.40s;
  --content-enter-duration:.32s;
  --content-leave-duration:.24s;
}

/* ===== PAGE ACCENTS ===== */
body.home-page{ --accent:var(--home); }
body.brand-page{ --accent:var(--brand); }
body.web-page{ --accent:var(--web); }
body.seo-page{ --accent:var(--seo); }
body.portfolio-page{ --accent:var(--portfolio); }
body.contact-page,
body.privacy-page{ --accent:var(--contact); }
body.thank-you-page{ --accent:var(--contact); }

/* ===== GLOBAL ===== */
*{ box-sizing:border-box; }

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
}

body{
  margin:0;
  font-family:'Roboto', sans-serif;
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
  background:linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

a{
  text-decoration:none;
  color:inherit;
}

.skip-link{
  position:absolute;
  left:16px;
  top:-44px;
  z-index:1200;
  padding:10px 14px;
  border-radius:8px;
  background:#fff;
  color:#000;
  font-family:'Roboto Mono', monospace;
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  transition:top .2s ease;
}

.skip-link:focus{
  top:12px;
}

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

.wrap{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
}

/* ===== PAGE THEMES ===== */
  body.home-page{
  background:linear-gradient(180deg, #0b0b0b 0%, #1b1807 22%, #262109 55%, #1b1807 100%) !important;
}
body.brand-page{
  background:linear-gradient(180deg, #0b0b0b 0%, #2d1a47 22%, #3d2461 55%, #2d1a47 100%) !important;
}

body.web-page{
  background:linear-gradient(180deg, #0b0b0b 0%, #0a3a2f 22%, #0f5c49 55%, #0a3a2f 100%) !important;
}

body.seo-page{
  background:linear-gradient(180deg, #0b0b0b 0%, #162a52 22%, #1c3d7a 55%, #162a52 100%) !important;
}

body.portfolio-page{
  background:linear-gradient(180deg, #0b0b0b 0%, #3b1116 22%, #6f1d25 55%, #3b1116 100%) !important;
}

body.contact-page,
body.privacy-page{
  background:linear-gradient(180deg, #0b0b0b 0%, #202124 22%, #34373d 55%, #202124 100%) !important;
}

.hero,
.section,
.footer,
main{
  background:transparent !important;
}

body.brand-page .highlight{
  background:#b57cff !important;
  color:#000 !important;
}

body.web-page .highlight{
  background:#19e3a6 !important;
  color:#000 !important;
}

body.seo-page .highlight{
  background:#7aa2ff !important;
  color:#000 !important;
}

/* ===== NAV ===== */
.nav{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(5,5,5,.82) !important;
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 10px 30px rgba(0,0,0,.28);
}

.nav::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.03),
      rgba(255,255,255,0)
    ),
    repeating-linear-gradient(
      to right,
      rgba(255,255,255,.025) 0px,
      rgba(255,255,255,.025) 1px,
      transparent 1px,
      transparent 24px
    );
  opacity:.22;
}

.nav::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:linear-gradient(
    90deg,
    rgba(242,201,76,.9),
    rgba(181,124,255,.9),
    rgba(25,227,166,.9),
    rgba(122,162,255,.9)
  );
  opacity:.7;
}

.nav-inner{
  min-height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  position:relative;
  z-index:2;
}

.brand{
  display:flex;
  align-items:center;
  gap:16px;
}

.brand img{
  height:70px;
  width:auto;
  object-fit:contain;
  filter:drop-shadow(0 0 10px rgba(255,255,255,.06));
}

.home-page .brand img{
  height:110px;
}

.brand-title{
  position:relative;
  display:inline-block;
  font-family:'Roboto Mono', monospace;
  font-size:18px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.brand-title::before{
  content:"<";
  color:var(--accent);
  margin-right:8px;
  opacity:.9;
}

.brand-title::after{
  content:"/>";
  color:var(--accent);
  margin-left:8px;
  opacity:.9;
}

.brand-sub{
  margin-top:4px;
  font-family:'Roboto Mono', monospace;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
  opacity:.82;
}

.nav-links{
  display:flex;
  gap:18px;
}

.nav-links a{
  position:relative;
  padding:10px 12px;
  border-radius:10px;
  font-family:'Roboto Mono', monospace;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:
    transform .2s ease,
    background-color .2s ease,
    color .2s ease,
    text-shadow .2s ease,
    opacity .2s ease;
}

.nav-links a:nth-child(1){ color:var(--home); }
.nav-links a:nth-child(2){ color:var(--brand); }
.nav-links a:nth-child(3){ color:var(--web); }
.nav-links a:nth-child(4){ color:var(--seo); }
.nav-links a:nth-child(5){ color:var(--portfolio); }
.nav-links a:nth-child(6){ color:var(--contact); }

.nav-links a::before{
  content:"{";
  opacity:0;
  margin-right:4px;
  transition:opacity .2s ease;
}

.nav-links a::after{
  content:"}";
  opacity:0;
  margin-left:4px;
  transition:opacity .2s ease;
}

.nav-links a:hover{
  background:rgba(255,255,255,.04);
  transform:translateY(-1px);
}

.nav-links a:focus-visible,
.btn:focus-visible,
.project-submit:focus-visible,
.contact-field input:focus-visible,
.contact-field select:focus-visible,
.contact-field textarea:focus-visible,
.project-form input:focus-visible,
.project-form select:focus-visible,
.project-form textarea:focus-visible{
  outline:2px solid #fff;
  outline-offset:3px;
}

.nav-links a:hover::before,
.nav-links a:hover::after{
  opacity:.8;
}

.nav-links a:nth-child(1):hover{
  text-shadow:0 0 6px var(--home), 0 0 12px var(--home);
}
.nav-links a:nth-child(2):hover{
  text-shadow:0 0 6px var(--brand), 0 0 12px var(--brand);
}
.nav-links a:nth-child(3):hover{
  text-shadow:0 0 6px var(--web), 0 0 12px var(--web);
}
.nav-links a:nth-child(4):hover{
  text-shadow:0 0 6px var(--seo), 0 0 12px var(--seo);
}
.nav-links a:nth-child(5):hover{
  text-shadow:0 0 6px var(--portfolio), 0 0 12px var(--portfolio);
}
.nav-links a:nth-child(6):hover{
  text-shadow:0 0 6px var(--contact), 0 0 12px var(--contact);
}

body.home-page:not(.contact-page):not(.privacy-page) .nav-links a:nth-child(1),
body.brand-page .nav-links a:nth-child(2),
body.web-page .nav-links a:nth-child(3),
body.seo-page .nav-links a:nth-child(4),
body.portfolio-page .nav-links a:nth-child(5),
body.contact-page .nav-links a:nth-child(6){
  background:rgba(255,255,255,.05);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.06);
  text-shadow:0 0 8px currentColor, 0 0 18px currentColor;
}

/* ===== HERO ===== */
.hero{
  border-bottom:1px solid var(--line);
}

.hero-inner{
  padding:106px 0 82px;
}

.eyebrow{
  margin-bottom:18px;
  font-family:'Roboto Mono', monospace;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--accent);
}

h1{
  margin:0 0 24px;
  font-family:'Roboto Mono', monospace;
  font-size:clamp(44px, 7vw, 86px);
  font-weight:500;
  line-height:.98;
}

.highlight{
  display:inline;
  background:var(--accent);
  color:#000;
  padding:.06em .22em .08em .22em;
  border-radius:2px;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
}

.hero h1 .highlight{
  line-height:.92;
}

.lead{
  max-width:760px;
  margin:0 0 26px;
  font-size:clamp(18px, 2vw, 21px);
  line-height:1.72;
  color:var(--muted);
}

/* ===== BUTTONS ===== */
.btn-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  border:1px solid var(--line);
  position:relative;
  overflow:hidden;
  isolation:isolate;
  font-family:'Roboto Mono', monospace;
  font-size:14px;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:
    transform .2s ease,
    background-color .2s ease,
    color .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.btn::after{
  content:"";
  position:absolute;
  inset:-1px auto -1px -35%;
  width:30%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  transform:translateX(-180%) skewX(-18deg);
  opacity:0;
  z-index:-1;
  transition:transform .55s ease, opacity .28s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn:hover::after{
  opacity:1;
  transform:translateX(520%) skewX(-18deg);
}

.btn.primary{
  background:var(--accent);
  color:#000;
  border-color:var(--accent);
  box-shadow:0 16px 34px rgba(0,0,0,.16);
}

.btn.secondary{
  background:rgba(255,255,255,.02);
  color:var(--text);
}

/* ===== MICRO TEXT ===== */
.micro{
  margin-top:14px;
  font-family:'Roboto Mono', monospace;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.micro span::before{
  content:"// ";
  color:var(--accent);
}

.trust-strip{
  padding:24px 0;
}

.trust-strip-inner{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  color:var(--muted);
  font-family:'Roboto Mono', monospace;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.trust-strip-inner span::before{
  content:"// ";
  color:var(--accent);
}

/* ===== SECTIONS ===== */
.section{
  padding:92px 0;
  border-bottom:1px solid var(--line);
}

.section-kicker{
  margin-bottom:14px;
  font-family:'Roboto Mono', monospace;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
}

h2{
  margin:0 0 18px;
  font-family:'Roboto Mono', monospace;
  font-size:clamp(32px, 5vw, 60px);
  font-weight:500;
  line-height:1.02;
}

.section-copy{
  max-width:800px;
  color:var(--muted);
  font-size:18px;
  line-height:1.78;
}

.section-lead{
  max-width:780px;
  color:var(--muted);
  font-size:18px;
  line-height:1.78;
}

.section-copy a,
.section-lead a,
.card a{
  color:var(--accent);
}

/* ===== CARDS ===== */
.cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  margin-top:34px;
}

.card{
  padding:24px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  position:relative;
  overflow:hidden;
  background:rgba(255,255,255,.02);
  transform:perspective(1200px) translate3d(0,0,0) rotateX(var(--card-rotate-x, 0deg)) rotateY(var(--card-rotate-y, 0deg));
  transition:
    transform .24s ease,
    box-shadow .2s ease,
    border-color .2s ease,
    background-color .2s ease;
}

.card::before,
.process-card::before,
.deliverable-item::before,
.contact-box::before,
.contact-form::before,
.portfolio-item::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(
      320px circle at var(--card-glow-x, 50%) var(--card-glow-y, 50%),
      rgba(255,255,255,.08),
      transparent 62%
    );
  opacity:0;
  transition:opacity .24s ease;
}

.card:hover{
  transform:perspective(1200px) translate3d(0,-6px,0) rotateX(var(--card-rotate-x, 0deg)) rotateY(var(--card-rotate-y, 0deg));
}

.card:hover::before,
.process-card:hover::before,
.deliverable-item:hover::before,
.contact-box:hover::before,
.contact-form:hover::before,
.portfolio-item:hover::before{
  opacity:1;
}

.card h3{
  margin:0 0 12px;
  font-family:'Roboto Mono', monospace;
  font-size:18px;
  text-transform:uppercase;
}

.card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.8;
}

/* ===== SERVICE CARD COLORS ===== */
.cards .card.card-brand{
  border:1px solid rgba(181,124,255,.7) !important;
  box-shadow:0 0 18px rgba(181,124,255,.16) !important;
}

.cards .card.card-web{
  border:1px solid rgba(0,230,168,.7) !important;
  box-shadow:0 0 18px rgba(0,230,168,.16) !important;
}

.cards .card.card-seo{
  border:1px solid rgba(122,162,255,.7) !important;
  box-shadow:0 0 18px rgba(122,162,255,.16) !important;
}

.cards .card.card-brand h3{
  color:#b57cff !important;
}

.cards .card.card-web h3{
  color:#00e6a8 !important;
}

.cards .card.card-seo h3{
  color:#7aa2ff !important;
}

.cards .card.card-brand:hover{
  box-shadow:0 0 24px rgba(181,124,255,.28) !important;
  border-color:rgba(181,124,255,.95) !important;
}

.cards .card.card-web:hover{
  box-shadow:0 0 24px rgba(0,230,168,.28) !important;
  border-color:rgba(0,230,168,.95) !important;
}

.cards .card.card-seo:hover{
  box-shadow:0 0 24px rgba(122,162,255,.28) !important;
  border-color:rgba(122,162,255,.95) !important;
}

/* ===== PROCESS ===== */
.process{
  margin-top:30px;
  display:grid;
  gap:26px;
}

.step{
  display:flex;
  gap:20px;
  align-items:flex-start;
}

.step-no{
  font-family:'Roboto Mono', monospace;
  color:var(--accent);
  font-size:14px;
  min-width:40px;
}

.step h3{
  margin:0 0 6px;
  font-family:'Roboto Mono', monospace;
  text-transform:uppercase;
}

.step p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.process-grid{
  margin-top:36px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.process-card{
  padding:24px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  position:relative;
  overflow:hidden;
  background:rgba(255,255,255,.02);
  transform:perspective(1200px) translate3d(0,0,0) rotateX(var(--card-rotate-x, 0deg)) rotateY(var(--card-rotate-y, 0deg));
  transition:transform .24s ease, border-color .24s ease, box-shadow .24s ease, background-color .24s ease;
}

.process-card:hover{
  transform:perspective(1200px) translate3d(0,-6px,0) rotateX(var(--card-rotate-x, 0deg)) rotateY(var(--card-rotate-y, 0deg));
}

.process-card h3{
  margin:10px 0 12px;
  font-family:'Roboto Mono', monospace;
  font-size:18px;
  text-transform:uppercase;
}

.process-card p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-size:15px;
}

.deliverables-grid{
  margin-top:36px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.deliverable-item{
  padding:24px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  position:relative;
  overflow:hidden;
  background:rgba(255,255,255,.02);
  transform:perspective(1200px) translate3d(0,0,0) rotateX(var(--card-rotate-x, 0deg)) rotateY(var(--card-rotate-y, 0deg));
  transition:transform .24s ease, border-color .24s ease, box-shadow .24s ease, background-color .24s ease;
}

.deliverable-item:hover{
  transform:perspective(1200px) translate3d(0,-6px,0) rotateX(var(--card-rotate-x, 0deg)) rotateY(var(--card-rotate-y, 0deg));
}

.deliverable-item span{
  display:block;
  margin-bottom:12px;
  color:var(--text);
  font-family:'Roboto Mono', monospace;
  font-size:16px;
  line-height:1.42;
  text-transform:uppercase;
}

.deliverable-item p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-size:15px;
}

/* ===== CONTACT ===== */
.contact-box{
  margin-top:30px;
  padding:30px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  position:relative;
  background:rgba(255,255,255,.02);
  width:100%;
  max-width:100%;
  overflow:hidden;
  transform:perspective(1200px) translate3d(0,0,0) rotateX(var(--card-rotate-x, 0deg)) rotateY(var(--card-rotate-y, 0deg));
  transition:transform .24s ease, border-color .24s ease, box-shadow .24s ease, background-color .24s ease;
}

.contact-box:hover{
  transform:perspective(1200px) translate3d(0,-6px,0) rotateX(var(--card-rotate-x, 0deg)) rotateY(var(--card-rotate-y, 0deg));
}

.contact-email{
  display:block;
  width:100%;
  max-width:100%;
  margin:0 0 14px;
  font-family:'Roboto Mono', monospace;
  font-size:clamp(18px, 4.8vw, 42px);
  line-height:1.12;
  word-break:break-word;
  overflow-wrap:anywhere;
}

.contact-layout{
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(320px, 1.1fr);
  gap:34px;
  align-items:start;
}

.contact-points{
  margin-top:24px;
  display:grid;
  gap:12px;
  color:var(--muted);
  line-height:1.7;
}

.contact-points strong{
  color:var(--text);
}

.contact-form{
  padding:26px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  position:relative;
  overflow:hidden;
  background:rgba(255,255,255,.02);
  display:grid;
  gap:16px;
  transform:perspective(1200px) translate3d(0,0,0) rotateX(var(--card-rotate-x, 0deg)) rotateY(var(--card-rotate-y, 0deg));
  transition:transform .24s ease, border-color .24s ease, box-shadow .24s ease, background-color .24s ease;
}

.contact-form:hover{
  transform:perspective(1200px) translate3d(0,-6px,0) rotateX(var(--card-rotate-x, 0deg)) rotateY(var(--card-rotate-y, 0deg));
}

.contact-field{
  display:grid;
  gap:8px;
}

.contact-field label{
  color:var(--muted);
  font-family:'Roboto Mono', monospace;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea,
.project-form select{
  width:100%;
  padding:14px 16px;
  background:#111;
  border:1px solid rgba(255,255,255,.2);
  border-radius:6px;
  color:#fff;
  font-family:'Roboto', sans-serif;
  font-size:15px;
}

.contact-field textarea{
  min-height:150px;
  resize:vertical;
}

.legal-copy{
  max-width:860px;
}

.legal-copy h2{
  margin-top:34px;
  font-size:clamp(24px, 4vw, 38px);
}

.legal-copy p{
  color:var(--muted);
  font-size:18px;
  line-height:1.75;
}

.legal-copy a{
  color:var(--accent);
}

/* ===== FOOTER ===== */
.footer{
  padding:30px 0 46px;
  color:var(--muted);
  font-family:'Roboto Mono', monospace;
  font-size:13px;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.footer-links a,
.footer-email{
  color:var(--muted);
  text-decoration:none;
}

.footer-links a:hover,
.footer-email:hover{
  color:var(--accent);
}

.breadcrumbs{
  padding:92px 0 0;
  color:var(--muted);
  font-family:'Roboto Mono', monospace;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.breadcrumbs .wrap{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.breadcrumbs a{
  color:var(--muted);
  text-decoration:none;
}

.breadcrumbs a:hover{
  color:var(--accent);
}

.project-modal-copy a{
  color:var(--accent);
  overflow-wrap:anywhere;
}

/* ===== MOTION SYSTEM ===== */
body.motion-enabled .reveal-on-scroll{
  opacity:0;
  transform:translate3d(0, 28px, 0) scale(.985);
  filter:blur(10px);
  will-change:transform, opacity, filter;
  transition:
    opacity .82s cubic-bezier(.2,.8,.2,1),
    transform .82s cubic-bezier(.2,.8,.2,1),
    filter .82s cubic-bezier(.2,.8,.2,1);
  transition-delay:var(--reveal-delay, 0ms);
}

body.motion-enabled .reveal-on-scroll.is-visible{
  opacity:1;
  transform:translate3d(0,0,0) scale(1);
  filter:blur(0);
}

body.motion-enabled .hero .highlight{
  animation:highlightPulse 4.8s ease-in-out infinite;
}

body.motion-enabled .hero .eyebrow.is-visible,
body.motion-enabled .micro span.is-visible,
body.motion-enabled .trust-strip-inner span.is-visible{
  animation:softFloat 5.5s ease-in-out infinite;
}

body.motion-enabled .hero .eyebrow{ animation-delay:.1s; }
body.motion-enabled .micro span:nth-child(2){ animation-delay:.2s; }
body.motion-enabled .micro span:nth-child(3){ animation-delay:.4s; }
body.motion-enabled .micro span:nth-child(4){ animation-delay:.6s; }
body.motion-enabled .trust-strip-inner span:nth-child(2){ animation-delay:.2s; }
body.motion-enabled .trust-strip-inner span:nth-child(3){ animation-delay:.4s; }

@keyframes softFloat{
  0%,100%{
    transform:translate3d(0,0,0);
  }
  50%{
    transform:translate3d(0,-3px,0);
  }
}

@keyframes highlightPulse{
  0%,100%{
    box-shadow:0 0 0 rgba(0,0,0,0), 0 0 0 rgba(255,255,255,0);
  }
  50%{
    box-shadow:0 0 0 rgba(0,0,0,0), 0 0 18px rgba(255,255,255,.1);
  }
}

@media (prefers-reduced-motion: reduce){
  body.motion-enabled .reveal-on-scroll,
  body.motion-enabled .reveal-on-scroll.is-visible,
  body.motion-enabled .hero .highlight,
  body.motion-enabled .hero .eyebrow,
  body.motion-enabled .micro span,
  body.motion-enabled .trust-strip-inner span,
  .btn::after,
  .card,
  .process-card,
  .deliverable-item,
  .contact-box,
  .contact-form,
  .portfolio-item{
    animation:none !important;
    transition:none !important;
    transform:none !important;
    filter:none !important;
    opacity:1 !important;
  }

  .card::before,
  .process-card::before,
  .deliverable-item::before,
  .contact-box::before,
  .contact-form::before,
  .portfolio-item::before{
    display:none !important;
  }
}

/* ===== PROJECT FORM ===== */
.project-form{
  margin-top:10px;
}

.form-honeypot{
  position:absolute;
  left:-10000px;
  width:1px;
  height:1px;
  overflow:hidden;
}

.form-row{
  display:flex;
  gap:12px;
  margin-bottom:12px;
}

.service-field{
  display:flex;
  flex:1;
  flex-direction:column;
  gap:7px;
  color:var(--muted);
  font-family:'Roboto Mono', monospace;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.service-form-message{
  align-items:stretch;
}

.service-field-full{
  min-width:0;
}

.project-form input,
.project-form textarea{
  flex:1;
  padding:14px 16px;
  background:#111;
  border:1px solid rgba(255,255,255,.2);
  border-radius:6px;
  color:#fff;
  font-family:'Roboto', sans-serif;
  font-size:14px;
}

.project-form textarea{
  min-height:60px;
  resize:none;
}

.project-form button{
  padding:0 26px;
  background:var(--accent);
  color:#000;
  border:none;
  border-radius:40px;
  font-family:'Roboto Mono', monospace;
  letter-spacing:.08em;
  font-size:14px;
  cursor:pointer;
}

.form-success{
  display:none;
  margin-top:10px;
  color:var(--accent);
  font-family:'Roboto Mono', monospace;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* ===== PAGE TRANSITION ===== */
/* ===== PAGE TRANSITION ===== */
main{
  position:relative;
  z-index:1;
  will-change:transform, opacity;
  transform-origin:center center;
}

.page-transition-overlay{
  position:fixed;
  inset:0;
  background:#000;
  opacity:0;
  pointer-events:none;
  z-index:99999;
  will-change:opacity;
  backface-visibility:hidden;
}

/* DEFAULT PAGE TRANSITION */
body.is-leaving-default .page-transition-overlay{
  animation:overlayFadeIn .30s ease forwards;
}

body.is-entering-default .page-transition-overlay{
  animation:overlayFadeOut .34s ease forwards;
}

body.is-leaving-default main{
  opacity:.94;
  transform:scale(.988);
  transition:transform .30s ease, opacity .30s ease;
}

body.is-entering-default main{
  animation:contentInDefault .36s ease forwards;
}

@keyframes contentInDefault{
  from{
    opacity:.94;
    transform:scale(1.012);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

/* SERVICE CARD PAGE TRANSITION */
body.is-leaving-service .page-transition-overlay{
  animation:overlayFadeInStrong .36s ease forwards;
}

body.is-entering-service .page-transition-overlay{
  animation:overlayFadeOutStrong .40s ease forwards;
}

body.is-leaving-service main{
  opacity:.90;
  transform:scale(.982);
  transition:transform .34s ease, opacity .34s ease;
}

body.is-entering-service main{
  animation:contentInService .42s ease forwards;
}

@keyframes contentInService{
  from{
    opacity:.92;
    transform:scale(1.018);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

@keyframes overlayFadeIn{
  from{ opacity:0; }
  to{ opacity:.16; }
}

@keyframes overlayFadeOut{
  from{ opacity:.16; }
  to{ opacity:0; }
}

@keyframes overlayFadeInStrong{
  from{ opacity:0; }
  to{ opacity:.24; }
}

@keyframes overlayFadeOutStrong{
  from{ opacity:.24; }
  to{ opacity:0; }
}

@media (max-width:768px){
  body.is-leaving-default .page-transition-overlay{
    animation:overlayFadeIn .22s ease forwards;
  }

  body.is-entering-default .page-transition-overlay{
    animation:overlayFadeOut .26s ease forwards;
  }

  body.is-leaving-default main{
    opacity:.96;
    transform:scale(.992);
    transition:transform .22s ease, opacity .22s ease;
  }

  body.is-entering-default main{
    animation:contentInDefaultMobile .28s ease forwards;
  }

  @keyframes contentInDefaultMobile{
    from{
      opacity:.96;
      transform:scale(1.008);
    }
    to{
      opacity:1;
      transform:scale(1);
    }
  }

  body.is-leaving-service .page-transition-overlay{
    animation:overlayFadeInStrong .26s ease forwards;
  }

  body.is-entering-service .page-transition-overlay{
    animation:overlayFadeOutStrong .30s ease forwards;
  }

  body.is-leaving-service main{
    opacity:.94;
    transform:scale(.989);
    transition:transform .26s ease, opacity .26s ease;
  }

  body.is-entering-service main{
    animation:contentInServiceMobile .32s ease forwards;
  }

  @keyframes contentInServiceMobile{
    from{
      opacity:.95;
      transform:scale(1.01);
    }
    to{
      opacity:1;
      transform:scale(1);
    }
  }
}

@media (prefers-reduced-motion: reduce){
  .page-transition-overlay,
  main,
  body.is-entering-default main,
  body.is-leaving-default main,
  body.is-entering-service main,
  body.is-leaving-service main{
    animation:none !important;
    transition:none !important;
    transform:none !important;
    opacity:1 !important;
  }
}

/* SERVICE CARD TRANSITION */
body.is-leaving-service .page-fade{
  animation:serviceFadeIn .42s ease forwards;
}

body.is-entering-service .page-fade{
  animation:serviceFadeOut .42s ease forwards;
}

@keyframes serviceFadeIn{
  from{ opacity:0; }
  to{ opacity:1; }
}

@keyframes serviceFadeOut{
  from{ opacity:1; }
  to{ opacity:0; }
}

/* DEFAULT CONTENT MOTION */
body.is-leaving-default main{
  opacity:.98;
  transform:translate3d(-10px,0,0);
  transition:transform .24s ease, opacity .24s ease;
}

body.is-entering-default main{
  animation:contentInDefault .32s ease forwards;
}

@keyframes contentInDefault{
  from{
    opacity:.96;
    transform:translate3d(10px,0,0);
  }
  to{
    opacity:1;
    transform:translate3d(0,0,0);
  }
}

/* SERVICE CONTENT MOTION */
body.is-leaving-service main{
  opacity:.92;
  transform:scale(.985);
  transform-origin:center center;
  transition:transform .32s ease, opacity .32s ease;
}

body.is-entering-service main{
  animation:contentInService .36s ease forwards;
}

@keyframes contentInService{
  from{
    opacity:.94;
    transform:scale(1.015);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

@media (max-width:768px){
  body.is-leaving-default .page-wipe{
    animation:wipeInFromRight .40s cubic-bezier(.77,0,.18,1) forwards;
  }

  body.is-entering-default .page-wipe{
    animation:wipeOutToLeft .40s cubic-bezier(.77,0,.18,1) forwards;
  }

  body.is-leaving-service .page-fade{
    animation:serviceFadeIn .30s ease forwards;
  }

  body.is-entering-service .page-fade{
    animation:serviceFadeOut .30s ease forwards;
  }

  body.is-leaving-default main{
    transform:translate3d(-4px,0,0);
  }

  body.is-leaving-service main{
    opacity:.96;
    transform:scale(.992);
  }

  @keyframes contentInDefault{
    from{
      opacity:.97;
      transform:translate3d(4px,0,0);
    }
    to{
      opacity:1;
      transform:translate3d(0,0,0);
    }
  }

  @keyframes contentInService{
    from{
      opacity:.96;
      transform:scale(1.01);
    }
    to{
      opacity:1;
      transform:scale(1);
    }
  }
}

@media (prefers-reduced-motion: reduce){
  .page-wipe,
  .page-fade,
  main,
  body.is-entering-default main,
  body.is-leaving-default main,
  body.is-entering-service main,
  body.is-leaving-service main{
    animation:none !important;
    transition:none !important;
    transform:none !important;
    opacity:1 !important;
  }
}

/* ===== MOBILE ===== */
@media (max-width:768px){
  .wrap{
    width:calc(100% - 24px);
    max-width:none;
    overflow:hidden;
  }

  .nav{
    background:rgba(5,5,5,.9) !important;
  }

  .nav-inner{
    padding:14px 0 16px;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    min-height:auto;
  }

  .brand{
    width:100%;
    display:grid;
    grid-template-columns:70px 1fr;
    gap:12px;
    align-items:center;
  }

  .brand img{
    height:70px;
    width:auto;
  }

  .home-page .brand img{
    height:90px;
  }

  .brand-title{
    font-size:16px;
  }

  .brand-sub{
    font-size:11px;
  }

  .nav-links{
    width:100%;
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:8px;
  }

  .nav-links a{
    display:block;
    text-align:left;
    font-size:11px;
    line-height:1.2;
    white-space:normal;
    padding:10px 12px;
    border:1px solid rgba(255,255,255,.06);
    background:rgba(255,255,255,.02);
  }

  h1{
    font-size:30px;
    line-height:1.08;
  }

  .hero-inner{
    padding:40px 0 34px;
  }

  .hero h1 .highlight{
    padding:.05em .18em;
    line-height:.88;
  }

  .lead{
    font-size:15px;
  }

  .cards{
    grid-template-columns:1fr;
  }

  .process-grid,
  .deliverables-grid,
  .contact-layout{
    grid-template-columns:1fr;
  }

  .contact-form{
    padding:18px;
  }

  .section{
    padding:46px 0;
  }

  .btn-row{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    width:100%;
  }

  .btn{
    width:100%;
    max-width:100%;
  }

  .form-row{
    flex-direction:column;
  }

  .footer-inner,
  .footer-links{
    flex-direction:column;
    align-items:flex-start;
  }

  .breadcrumbs{
    padding-top:128px;
  }

  .project-form input,
  .project-form textarea,
  .project-form button{
    width:100%;
  }

  .project-form textarea{
    min-height:110px;
  }

  .contact-box{
    padding:18px;
  }

  .contact-email{
    font-size:16px;
    line-height:1.15;
  }

  .cards .card.card-brand{
    border:1px solid rgba(181,124,255,.8) !important;
    box-shadow:0 0 20px rgba(181,124,255,.18) !important;
  }

  .cards .card.card-web{
    border:1px solid rgba(0,230,168,.8) !important;
    box-shadow:0 0 20px rgba(0,230,168,.18) !important;
  }

  .cards .card.card-seo{
    border:1px solid rgba(122,162,255,.8) !important;
    box-shadow:0 0 20px rgba(122,162,255,.18) !important;
  }

  html, body{
    overflow-x:hidden !important;
    width:100% !important;
  }

  body.is-leaving .page-wipe{
    animation:wipeInFromRight var(--wipe-duration-mobile) var(--wipe-ease) forwards;
  }

  body.is-entering .page-wipe{
    animation:wipeOutToLeft var(--wipe-duration-mobile) var(--wipe-ease) forwards;
  }

  body.is-leaving main{
    opacity:.99;
    transform:translate3d(-4px,0,0);
  }

  @keyframes contentIn{
    from{
      opacity:.98;
      transform:translate3d(4px,0,0);
    }
    to{
      opacity:1;
      transform:translate3d(0,0,0);
    }
  }
}

/* ===== HOME PAGE NAV SPACING FIX ===== */
@media (min-width:769px){
  body.home-page .nav-inner{
    display:grid;
    grid-template-columns:auto 1fr;
    align-items:center;
    gap:48px;
  }

  body.home-page .nav-links{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
    width:100%;
  }

  body.home-page .brand{
    min-width:360px;
  }
}

/* ===== ACCESSIBILITY / REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior:auto;
  }

  .page-wipe,
  main,
  body.is-entering main,
  body.is-leaving main,
  .btn,
  .card,
  .nav-links a{
    animation:none !important;
    transition:none !important;
    transform:none !important;
    opacity:1 !important;
  }
}/* ===== SECTION TITLE WIDTH CONTROL ===== */
.section-title-narrow{
  max-width: 1100px;
}

/* ===== WHO WE WORK WITH ===== */
.who-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
  margin-top:30px;
}

.who-item{
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  background:rgba(255,255,255,.02);
  padding:18px 20px;
  min-height:72px;
  display:flex;
  align-items:center;
}

.who-item span{
  position:relative;
  display:inline-block;
  padding-left:24px;
  font-family:'Roboto Mono', monospace;
  font-size:15px;
  line-height:1.45;
  color:var(--text);
}

.who-item span::before{
  content:"//";
  position:absolute;
  left:0;
  top:0;
  color:var(--accent);
  opacity:.95;
}

/* ===== WHY BLACKSMITH ===== */
.why-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
  margin-top:30px;
}

.why-item{
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  background:rgba(255,255,255,.02);
  padding:18px 20px;
  min-height:72px;
  display:flex;
  align-items:center;
}

.why-item span{
  position:relative;
  display:inline-block;
  padding-left:24px;
  font-family:'Roboto Mono', monospace;
  font-size:15px;
  line-height:1.45;
  color:var(--text);
}

.why-item span::before{
  content:"//";
  position:absolute;
  left:0;
  top:0;
  color:var(--accent);
  opacity:.95;
}

/* ===== MOBILE ===== */
@media (max-width:768px){
  .section-title-narrow{
    max-width:100%;
  }

  .who-grid{
    grid-template-columns:1fr;
  }

  .why-grid{
    grid-template-columns:1fr;
  }

  .who-item,
  .why-item{
    min-height:auto;
    padding:16px 18px;
  }

  .who-item span,
  .why-item span{
    font-size:14px;
  }
}

/* Coming Soon Page */
.coming-soon-page {
  background: #0e0e0e;
  color: #ffffff;
  font-family: Roboto, Arial, sans-serif;
  margin: 0;
}

.coming-soon-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.coming-soon-logo {
  width: 180px;
  margin-bottom: 30px;
}

.coming-soon-title {
  font-size: 2.2rem;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto 10px auto;
}

.coming-soon-subtext {
  color: #bdbdbd;
  margin-bottom: 25px;
  max-width: 500px;
}

.coming-soon-button {
  display: inline-block;
  padding: 14px 32px;
  background: #ffffff;
  color: #0e0e0e;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: 0.2s ease;
  margin: 0 auto;
}

.coming-soon-button:hover {
  background: #dddddd;
}

.coming-soon-footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  color: #777;
  font-size: 0.85rem;
}

/* ===== PORTFOLIO CTA ===== */
.portfolio-cta-inner{
  text-align:center;
}

.portfolio-lead{
  max-width:720px;
  margin:20px auto 28px;
  color:var(--muted);
  font-size:18px;
  line-height:1.78;
}

.portfolio-btn{
  justify-content:center;
}

/* ===== PORTFOLIO PAGE ===== */
body.portfolio-page{
  --accent:var(--portfolio);
  color:#fff;
}

.portfolio-page .nav-links a:nth-child(1),
.portfolio-page .nav-links a:nth-child(2),
.portfolio-page .nav-links a:nth-child(3),
.portfolio-page .nav-links a:nth-child(4),
.portfolio-page .nav-links a:nth-child(6){
  background:none;
  box-shadow:none;
  text-shadow:none;
}

.portfolio-hero{
  padding:8.5rem 1.5rem 3.5rem;
  border-bottom:1px solid rgba(255,255,255,0.15);
}

.portfolio-wrap{
  width:min(1100px, calc(100% - 2rem));
  margin:0 auto;
}

.portfolio-title{
  margin:0 0 1.25rem;
  font-family:'Roboto Mono', monospace;
  font-size:clamp(2.8rem, 6vw, 5rem);
  line-height:.96;
  letter-spacing:-0.04em;
}

.portfolio-subtitle{
  max-width:700px;
  margin:0;
  font-size:1.08rem;
  line-height:1.8;
  color:#ccc;
}

.portfolio-hero-meta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

.portfolio-hero-meta span{
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:999px;
  color:#d8d8d8;
  background:rgba(255,255,255,.025);
  font-family:'Roboto Mono', monospace;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.portfolio-section{
  padding:4.5rem 1.5rem;
}

.portfolio-section h2{
  margin:0 0 1rem;
  font-family:'Roboto Mono', monospace;
  font-size:2rem;
  letter-spacing:-0.03em;
}

.portfolio-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1.1rem;
  margin-top:2.2rem;
}

.portfolio-item{
  display:flex;
  flex-direction:column;
  min-height:280px;
  padding:1.6rem;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.16);
  border-radius:8px;
  background:rgba(255,255,255,0.035);
  text-decoration:none;
  color:#fff;
  transform:perspective(1200px) translate3d(0,0,0) rotateX(var(--card-rotate-x, 0deg)) rotateY(var(--card-rotate-y, 0deg));
  transition:border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-item:hover{
  transform:perspective(1200px) translate3d(0,-4px,0) rotateX(var(--card-rotate-x, 0deg)) rotateY(var(--card-rotate-y, 0deg));
  border-color:var(--portfolio);
  background:rgba(255,77,77,0.08);
}

.portfolio-meta{
  margin-bottom:1rem;
  color:var(--portfolio);
  font-family:'Roboto Mono', monospace;
  font-size:.74rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.portfolio-name{
  font-family:'Roboto Mono', monospace;
  font-size:1.65rem;
  line-height:1.08;
}

.portfolio-summary{
  margin-top:.95rem;
  color:#cfcfcf;
  font-size:.98rem;
  line-height:1.72;
}

.portfolio-link{
  margin-top:auto;
  padding-top:1.4rem;
  color:#fff;
  font-family:'Roboto Mono', monospace;
  font-size:.92rem;
  word-break:break-word;
}

.portfolio-overview{
  display:grid;
  grid-template-columns:minmax(0, 1.1fr) minmax(280px, .9fr);
  gap:28px;
  align-items:end;
}

.portfolio-intro-copy{
  margin:0;
  color:#cfcfcf;
  font-size:1rem;
  line-height:1.82;
}

.portfolio-feature-shell{
  display:grid;
  grid-template-columns:minmax(0, 1.25fr) minmax(240px, .75fr);
  gap:20px;
  margin-top:2.5rem;
}

.portfolio-item-featured{
  min-height:360px;
  background:linear-gradient(180deg, rgba(255,77,77,.08), rgba(255,255,255,.035));
  border-color:rgba(255,77,77,.28);
  box-shadow:0 24px 60px rgba(0,0,0,.24);
}

.portfolio-feature-points{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:1.1rem;
}

.portfolio-feature-points span{
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:999px;
  background:rgba(255,255,255,.03);
  color:#e3e3e3;
  font-family:'Roboto Mono', monospace;
  font-size:.72rem;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.portfolio-feature-note{
  padding:1.5rem;
  border:1px solid rgba(255,255,255,.1);
  border-radius:8px;
  background:rgba(255,255,255,.02);
  align-self:stretch;
}

.portfolio-feature-note p{
  margin:0;
  color:#cfcfcf;
  font-size:.98rem;
  line-height:1.82;
}

.portfolio-cta{
  padding:4rem 1.5rem 5rem;
  border-top:1px solid rgba(255,255,255,0.15);
}

.portfolio-contact-box{
  max-width:820px;
  padding:2.3rem;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:8px;
  background:rgba(255,255,255,0.03);
  box-shadow:0 20px 60px rgba(0,0,0,0.35);
}

.portfolio-cta .section-kicker{
  margin-bottom:12px;
  font-family:'Roboto Mono', monospace;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#b8b8b8;
}

.portfolio-cta h2{
  margin:0 0 1rem;
  font-family:'Roboto Mono', monospace;
  font-size:clamp(2rem, 4vw, 3rem);
  letter-spacing:-0.03em;
}

.portfolio-cta p{
  max-width:620px;
  margin:0 0 1.5rem;
  line-height:1.7;
  color:#ccc;
}

@media (max-width:768px){
  body.portfolio-page .nav-inner{
    padding:14px 0 16px;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    min-height:auto;
  }

  body.portfolio-page .nav-links{
    width:100%;
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:8px;
  }

  body.portfolio-page .nav-links a{
    display:block;
    text-align:left;
    font-size:11px;
    line-height:1.2;
    white-space:normal;
    padding:10px 12px;
    border:1px solid rgba(255,255,255,.06);
    background:rgba(255,255,255,.02);
  }

  .portfolio-hero{
    padding:3rem 1rem 2.25rem;
  }

  .portfolio-wrap{
    width:calc(100% - 24px);
  }

  .portfolio-title{
    font-size:clamp(2.1rem, 12vw, 3.2rem);
    line-height:1.02;
    word-break:break-word;
  }

  .portfolio-subtitle{
    font-size:15px;
    line-height:1.55;
  }

  .portfolio-hero-meta{
    gap:8px;
    margin-top:18px;
  }

  .portfolio-section,
  .portfolio-cta{
    padding:2.5rem 1rem 3rem;
  }

  .portfolio-section h2{
    font-size:clamp(1.8rem, 9vw, 2.4rem);
  }

  .portfolio-list{
    grid-template-columns:1fr;
  }

  .portfolio-overview,
  .portfolio-feature-shell{
    grid-template-columns:1fr;
  }

  .portfolio-item{
    min-height:auto;
  }

  .portfolio-contact-box{
    max-width:100%;
    padding:1.1rem;
  }

  .portfolio-cta h2{
    font-size:clamp(2rem, 10vw, 2.8rem);
    line-height:1.05;
  }

  .portfolio-cta p{
    font-size:15px;
    line-height:1.55;
  }

}

.studio-split{
  position:relative;
}

.studio-split-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(320px, .92fr);
  gap:34px;
  align-items:start;
}

.studio-split-copy h2{
  max-width:10ch;
}

.studio-split-panel{
  padding:28px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.025);
}

.studio-panel-intro{
  margin:0 0 24px;
  color:var(--text);
  font-family:'Roboto Mono', monospace;
  font-size:clamp(18px, 2vw, 24px);
  line-height:1.5;
}

.studio-points{
  display:grid;
  gap:18px;
}

.studio-point{
  display:grid;
  grid-template-columns:42px 1fr;
  gap:14px;
  align-items:start;
}

.studio-point span{
  color:var(--accent);
  font-family:'Roboto Mono', monospace;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.studio-point p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.8;
}

.portfolio-feature-grid{
  display:grid;
  grid-template-columns:minmax(0, .95fr) minmax(0, 1.05fr);
  gap:30px;
  align-items:start;
}

.portfolio-feature-copy{
  position:sticky;
  top:120px;
}

.featured-work-card{
  display:flex;
  flex-direction:column;
  min-height:220px;
  padding:24px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:8px;
  background:rgba(255,255,255,.03);
  color:var(--text);
  text-decoration:none;
}

.featured-work-card-primary{
  min-height:310px;
  background:linear-gradient(180deg, rgba(255,77,77,.08), rgba(255,255,255,.025));
  border-color:rgba(255,77,77,.24);
}

.featured-work-card h3{
  margin:0 0 12px;
  font-family:'Roboto Mono', monospace;
  font-size:clamp(24px, 3vw, 34px);
  line-height:1.05;
}

.featured-work-card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.8;
}

.featured-work-tag,
.featured-work-link{
  font-family:'Roboto Mono', monospace;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.featured-work-tag{
  margin-bottom:20px;
  color:var(--portfolio);
}

.featured-work-link{
  margin-top:auto;
  padding-top:20px;
  color:var(--text);
}

.portfolio-feature-stack{
  display:grid;
  gap:18px;
}

.featured-work-side-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}

/* ===== HOME PROJECT MODAL ===== */
.project-modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:9999;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.project-modal[aria-hidden="false"]{
  display:flex;
}

.project-modal-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.project-modal-panel{
  position:relative;
  z-index:2;
  width:min(860px, 100%);
  max-height:min(90vh, 900px);
  overflow:auto;
  background:#0b0b0b;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:30px;
  box-shadow:0 24px 70px rgba(0,0,0,.55);
}

.project-modal-close{
  position:absolute;
  top:14px;
  right:16px;
  width:40px;
  height:40px;
  border:none;
  background:transparent;
  color:#fff;
  font-size:30px;
  line-height:1;
  cursor:pointer;
}

.project-modal-kicker{
  margin-bottom:10px;
  font-family:'Roboto Mono', monospace;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
}

.project-modal-title{
  margin:0 0 12px;
  font-family:'Roboto Mono', monospace;
  font-size:clamp(32px, 5vw, 48px);
  line-height:1.02;
}

.project-modal-copy{
  margin:0 0 24px;
  max-width:640px;
  color:var(--muted);
  line-height:1.7;
  font-size:16px;
}

.project-form{
  margin-top:0;
}

.project-form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.project-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.project-field-full{
  grid-column:1 / -1;
}

.project-field label{
  font-family:'Roboto Mono', monospace;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
}

.project-form input,
.project-form select,
.project-form textarea{
  width:100%;
  padding:15px 16px;
  background:#111;
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  color:#fff;
  font-family:'Roboto', sans-serif;
  font-size:15px;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
  appearance:none;
}

.project-form select{
  font-family:'Roboto', sans-serif;
  cursor:pointer;
}

.project-form textarea{
  min-height:150px;
  resize:vertical;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(242,201,76,.12);
}

.project-form-actions{
  margin-top:18px;
  display:flex;
  justify-content:flex-start;
}

.project-submit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  border:1px solid var(--accent);
  background:var(--accent);
  color:#000;
  font-family:'Roboto Mono', monospace;
  font-size:14px;
  letter-spacing:.08em;
  text-transform:uppercase;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease;
}

.project-submit:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 30px rgba(242,201,76,.18);
}

.form-success{
  display:none;
  margin-top:18px;
  padding:18px 20px;
  border:1px solid rgba(242,201,76,.35);
  border-radius:12px;
  background:rgba(242,201,76,.06);
  color:var(--accent);
  font-family:'Roboto Mono', monospace;
  font-size:13px;
  letter-spacing:.04em;
  text-transform:none;
}

@media (max-width:768px){
  .project-modal{
    padding:12px;
    align-items:flex-end;
  }

  .project-modal-panel{
    width:100%;
    max-height:92vh;
    border-radius:20px;
    padding:22px 16px 18px;
  }

  .project-form-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .project-modal-title{
    font-size:clamp(28px, 10vw, 38px);
  }

  .project-modal-copy{
    font-size:15px;
    line-height:1.55;
  }

  .project-submit{
    width:100%;
  }
}/* ===== HOME PROJECT MODAL ===== */
.project-modal{
  display:none;
  position:fixed !important;
  inset:0 !important;
  z-index:99999 !important;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.project-modal[aria-hidden="false"]{
  display:flex !important;
}

.project-modal-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.project-modal-panel{
  position:relative;
  z-index:2;
  width:min(860px, 100%);
  max-height:90vh;
  overflow:auto;
  background:#0b0b0b;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:30px;
  box-shadow:0 24px 70px rgba(0,0,0,.55);
}

.project-modal-close{
  position:absolute;
  top:14px;
  right:16px;
  width:40px;
  height:40px;
  border:none;
  background:transparent;
  color:#fff;
  font-size:30px;
  line-height:1;
  cursor:pointer;
}

.project-modal-kicker{
  margin-bottom:10px;
  font-family:'Roboto Mono', monospace;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
}

.project-modal-title{
  margin:0 0 12px;
  font-family:'Roboto Mono', monospace;
  font-size:clamp(32px, 5vw, 48px);
  line-height:1.02;
}

.project-modal-copy{
  margin:0 0 24px;
  max-width:640px;
  color:var(--muted);
  line-height:1.7;
  font-size:16px;
}

.project-form{
  margin-top:0;
}

.project-form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.project-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.project-field-full{
  grid-column:1 / -1;
}

.project-field label{
  font-family:'Roboto Mono', monospace;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
}

.project-form input,
.project-form select,
.project-form textarea{
  width:100%;
  padding:15px 16px;
  background:#111;
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  color:#fff;
  font-family:'Roboto', sans-serif;
  font-size:15px;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
  appearance:none;
  -webkit-appearance:none;
}

.project-form select{
  cursor:pointer;
}

.project-form textarea{
  min-height:150px;
  resize:vertical;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(242,201,76,.12);
}

.project-form-actions{
  margin-top:18px;
  display:flex;
  justify-content:flex-start;
}

.project-submit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  border:1px solid var(--accent);
  background:var(--accent);
  color:#000;
  font-family:'Roboto Mono', monospace;
  font-size:14px;
  letter-spacing:.08em;
  text-transform:uppercase;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease;
}

.project-submit:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 30px rgba(242,201,76,.18);
}

.form-success{
  display:none;
  margin-top:18px;
  padding:18px 20px;
  border:1px solid rgba(242,201,76,.35);
  border-radius:12px;
  background:rgba(242,201,76,.06);
  color:var(--accent);
  font-family:'Roboto Mono', monospace;
  font-size:13px;
  letter-spacing:.04em;
  text-transform:none;
}

@media (max-width:768px){
  .project-modal{
    padding:0;
    align-items:flex-end;
  }

  .project-modal-panel{
    width:100%;
    max-height:92vh;
    border-radius:20px 20px 0 0;
    padding:22px 16px 18px;
  }

  .project-form-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .project-modal-title{
    font-size:clamp(28px, 10vw, 38px);
  }

  .project-modal-copy{
    font-size:15px;
    line-height:1.55;
  }

  .project-submit{
    width:100%;
  }
}.form-success{
  display:none;
  margin-top:18px;
  padding:20px;
  border:1px solid rgba(242,201,76,.35);
  border-radius:14px;
  background:rgba(242,201,76,.06);
  color:var(--accent);
  text-transform:none;
}

.form-success.is-visible{
  display:block;
}

.form-success-title{
  font-family:'Roboto Mono', monospace;
  font-size:22px;
  line-height:1.1;
  margin-bottom:10px;
  color:#fff;
}

.form-success-copy{
  font-size:15px;
  line-height:1.6;
  color:var(--muted);
}/* ===== HOME MODAL FINAL FIX ===== */
.project-modal-panel{
  width:min(760px, calc(100% - 32px));
}

.project-form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.project-field-full{
  grid-column:1 / -1;
}

@media (max-width:768px){
  .project-modal{
    padding:10px;
    align-items:flex-end;
  }

  .project-modal-panel{
    width:min(520px, 100%);
    max-height:78vh;
    border-radius:18px 18px 0 0;
    padding:16px 14px 14px;
  }

  .project-modal-kicker{
    margin-bottom:8px;
    font-size:11px;
  }

  .project-modal-title{
    margin:0 0 10px;
    font-size:clamp(24px, 8vw, 32px);
    line-height:1.02;
  }

  .project-modal-copy{
    margin:0 0 14px;
    font-size:14px;
    line-height:1.45;
  }

  .project-form-grid{
    grid-template-columns:1fr;
    gap:10px;
  }

  .project-field{
    gap:6px;
  }

  .project-field label{
    font-size:11px;
  }

  .project-form input,
  .project-form select,
  .project-form textarea{
    padding:12px 13px;
    font-size:14px;
    border-radius:10px;
  }

  .project-form textarea{
    min-height:96px;
  }

  .project-form-actions{
    margin-top:12px;
  }

  .project-submit{
    width:100%;
    min-height:48px;
    font-size:13px;
  }

  .form-success{
    margin-top:12px;
    padding:14px;
  }

  .form-success-title{
    font-size:18px;
  }

  .form-success-copy{
    font-size:14px;
    line-height:1.5;
  }
}@media (max-width: 768px) {
  .project-modal-panel {
    width: 92%;
    max-width: 92%;
    padding: 20px;
    border-radius: 16px;
  }

  .project-modal-title {
    font-size: 28px;
  }

  .project-form-grid {
    grid-template-columns: 1fr;
  }

  .project-submit {
    width: 100%;
  }
}.form-success {
  display: none;
  margin-top: 20px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.form-success.is-visible {
  display: block;
}/* ===== HOME SEO ADDITIONS ===== */
.section-lead{
  max-width:780px;
  color:var(--muted);
  font-size:18px;
  line-height:1.78;
  margin:0 0 20px;
}

.seo-block{
  max-width:820px;
  margin:0 0 28px;
  padding:18px 20px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
}

.map-wrap{
  margin-top:28px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  overflow:hidden;
  background:rgba(255,255,255,.02);
  box-shadow:0 20px 60px rgba(0,0,0,.22);
}

.map-wrap iframe{
  display:block;
  width:100%;
  height:420px;
  border:0;
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
  margin-top:28px;
}

.faq-item{
  padding:22px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:rgba(255,255,255,.02);
}

.faq-item h3{
  margin:0 0 10px;
  font-family:'Roboto Mono', monospace;
  font-size:16px;
  line-height:1.45;
  text-transform:uppercase;
}

.faq-item p{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
}

.review-link-box{
  margin-top:28px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.02);
  max-width:760px;
}

.review-link-box p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.7;
}

@media (max-width:768px){
  .section-lead{
    font-size:15px;
    line-height:1.65;
  }

  .seo-block{
    font-size:14px;
    line-height:1.65;
    padding:16px;
  }

  .map-wrap iframe{
    height:320px;
  }

  .faq-grid{
    grid-template-columns:1fr;
  }
}/* ===== HOME SEO ADDITIONS ===== */
.section-lead{
  max-width:780px;
  color:var(--muted);
  font-size:18px;
  line-height:1.78;
  margin:0 0 20px;
}

.seo-block{
  max-width:820px;
  margin:0 0 28px;
  padding:18px 20px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
}

.map-wrap{
  position:relative;
  margin-top:28px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  overflow:hidden;
  background:rgba(255,255,255,.02);
  box-shadow:0 0 30px rgba(242,201,76,.12);
}

.map-wrap iframe{
  display:block;
  width:100%;
  height:420px;
  border:0;
  filter:grayscale(100%) invert(90%) contrast(90%) brightness(80%);
}

.map-overlay{
  position:absolute;
  inset:0;
  background:rgba(242,201,76,.08);
  pointer-events:none;
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
  margin-top:28px;
}

.faq-item{
  padding:22px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:rgba(255,255,255,.02);
}

.faq-item h3{
  margin:0 0 10px;
  font-family:'Roboto Mono', monospace;
  font-size:16px;
  line-height:1.45;
  text-transform:uppercase;
}

.faq-item p{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
}

@media (max-width:768px){
  .section-lead{
    font-size:15px;
    line-height:1.65;
  }

  .seo-block{
    font-size:14px;
    line-height:1.65;
    padding:16px;
  }

  .map-wrap iframe{
    height:320px;
  }

  .faq-grid{
    grid-template-columns:1fr;
  }
}.map-wrap{
  position:relative;
  margin-top:28px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 0 40px rgba(242,201,76,.18);
}

/* MAKE MAP DARK */
.map-wrap iframe{
  width:100%;
  height:420px;
  border:0;

  filter:
    grayscale(100%)
    brightness(40%)
    contrast(120%)
    sepia(20%)
    hue-rotate(10deg);
}

/* ADD YELLOW BRAND GLOW */
.map-overlay{
  position:absolute;
  inset:0;
  pointer-events:none;

  background:
    radial-gradient(circle at 50% 50%, rgba(242,201,76,.25), transparent 60%),
    rgba(0,0,0,.35);

  mix-blend-mode:screen;
}

/* ===== CONTACT PAGE FINAL FIX ===== */
.contact-page .contact-layout{
  grid-template-columns:minmax(0, .85fr) minmax(360px, 1fr);
  gap:40px;
  align-items:start;
}

.contact-page .contact-form{
  position:relative;
  padding:28px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  background:rgba(5,5,5,.38);
  box-shadow:0 24px 70px rgba(0,0,0,.28);
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}

.contact-page .contact-field{
  display:flex;
  flex-direction:column;
  gap:8px;
  min-width:0;
}

.contact-page .contact-field-wide{
  grid-column:1 / -1;
}

.contact-page .contact-field label{
  font-family:'Roboto Mono', monospace;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
}

.contact-page .contact-field input,
.contact-page .contact-field select,
.contact-page .contact-field textarea{
  width:100%;
  min-width:0;
  padding:15px 16px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:8px;
  background:#101010;
  color:#fff;
  font-family:'Roboto', sans-serif;
  font-size:15px;
  line-height:1.35;
  outline:none;
  appearance:none;
  transition:border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.contact-page .contact-field input:focus,
.contact-page .contact-field select:focus,
.contact-page .contact-field textarea:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(184,184,184,.12);
  background:#121212;
}

.contact-page .contact-field textarea{
  min-height:150px;
  resize:vertical;
}

.contact-page .contact-form .project-submit{
  grid-column:1 / -1;
  width:fit-content;
  min-width:190px;
  border-radius:8px;
}

.contact-page .contact-form-success{
  margin-top:0;
  padding:28px;
  border-radius:14px;
  background:rgba(5,5,5,.38);
  border:1px solid rgba(184,184,184,.35);
  box-shadow:0 24px 70px rgba(0,0,0,.28);
}

@media (max-width:900px){
  .contact-page .contact-layout,
  .contact-page .contact-form{
    grid-template-columns:1fr;
  }

  .contact-page .contact-field-wide,
  .contact-page .contact-form .project-submit{
    grid-column:auto;
  }

  .contact-page .contact-form{
    padding:20px;
  }

  .contact-page .contact-form .project-submit{
    width:100%;
  }
}

/* ===== FINAL PAGE THEME OVERRIDES ===== */
body.portfolio-page{
  --accent:var(--portfolio);
  background:linear-gradient(180deg, #0b0b0b 0%, #3b1116 22%, #6f1d25 55%, #3b1116 100%) !important;
}

body.contact-page,
body.privacy-page{
  --accent:var(--contact);
  background:linear-gradient(180deg, #0b0b0b 0%, #202124 22%, #34373d 55%, #202124 100%) !important;
}

body.portfolio-page main,
body.portfolio-page .portfolio-hero,
body.portfolio-page .portfolio-section,
body.portfolio-page .portfolio-cta,
body.contact-page main,
body.contact-page .hero,
body.contact-page .section,
body.privacy-page main,
body.privacy-page .hero,
body.privacy-page .section{
  background:transparent !important;
}

body.portfolio-page .portfolio-meta,
body.portfolio-page .portfolio-link{
  color:var(--portfolio);
}

body.portfolio-page .portfolio-title .highlight{
  font-weight:700;
}

body.portfolio-page .portfolio-item:hover{
  border-color:var(--portfolio);
  background:rgba(255,77,77,.08);
}

body.portfolio-page .btn.primary,
body.contact-page .project-submit{
  background:var(--accent);
  border-color:var(--accent);
  color:#000;
}

@media (max-width:768px){
  .trust-strip-inner{
    gap:10px;
    font-size:11px;
  }

  .review-link-box{
    padding:18px;
  }

  .hero-inner{
    padding:84px 0 64px;
  }

  .section{
    padding:76px 0;
  }

  .studio-split-grid,
  .portfolio-feature-grid,
  .featured-work-side-grid,
  .portfolio-overview,
  .portfolio-feature-shell{
    grid-template-columns:1fr;
  }

  .studio-split-panel,
  .featured-work-card,
  .portfolio-feature-note{
    padding:20px;
  }

  .studio-split-copy h2{
    max-width:none;
  }

  .portfolio-feature-copy{
    position:static;
  }

  .portfolio-item-featured{
    min-height:auto;
  }
}
