
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; background: #fff; color: #0a0a0a; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
    img  { display: block; max-width: 100%; height: auto; }
    a    { text-decoration: none; color: inherit; }
    ul   { list-style: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }

    :root { --red:#DC2626; --black:#0a0a0a; --grey:#f4f4f2; --mid:#888880; --border:#e5e5e0; }

    .wrap { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
    .rule { border: none; border-top: 1px solid var(--border); }
    .label-tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); }

    /* ── PILLS ── */
    .pill { display: inline-flex; align-items: center; gap: 10px; padding: 10px 22px; border-radius: 999px; font-size: 0.78rem; font-weight: 600; transition: all 0.2s; cursor: pointer; }
    .pill-white { background: #fff; color: var(--black); }
    .pill-white:hover { background: #eee; }
    .pill-outline-dark { border: 1.5px solid var(--black); color: var(--black); background: transparent; }
    .pill-outline-dark:hover { background: var(--black); color: #fff; }
    .pill-outline-white { border: 1.5px solid rgba(255,255,255,0.5); color: #fff; background: transparent; }
    .pill-outline-white:hover { background: #fff; color: var(--black); }
    .btn-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--red); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0; }
    .btn-icon-dark { width: 28px; height: 28px; border-radius: 50%; background: var(--black); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0; }

    /* ══════════════════════════════════════
       NAVIGATION — completely self-contained
    ══════════════════════════════════════ */
    .site-header {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 500;
      transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
    }
    .site-header.scrolled {
      background: rgba(10,10,10,0.95);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 40px;
    }
    .nav-logo img { height: 34px; width: auto; display: block; }

    /* Desktop links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
    }
    .nav-links a {
      font-size: 0.78rem; font-weight: 500;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.03em;
      transition: color 0.2s;
    }
    .nav-links a:hover, .nav-links a.active { color: #fff; }

    /* Desktop CTA */
    .nav-cta { display: flex; align-items: center; }

    /* Hamburger — hidden on desktop */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px; height: 40px;
      cursor: pointer;
      background: none; border: none;
      z-index: 1001;
      position: relative;
    }
    .nav-hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all 0.3s ease;
      transform-origin: center;
    }
    /* Animate to X when open */
    .nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ══════════════════════════════════════
       MOBILE OVERLAY MENU
    ══════════════════════════════════════ */
    .mobile-nav {
      /* Hidden by default — CRITICAL: use visibility+opacity so it never affects layout */
      visibility: hidden;
      opacity: 0;
      pointer-events: none;

      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: #0a0a0a;
      z-index: 999;

      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 40px 40px;

      transition: opacity 0.35s ease, visibility 0.35s ease;
    }
    .mobile-nav.is-open {
      visibility: visible;
      opacity: 1;
      pointer-events: all;
    }
    .mobile-nav-logo {
      position: absolute;
      top: 20px; left: 40px;
    }
    .mobile-nav-logo img { height: 30px; }
    .mobile-nav-close {
      position: absolute;
      top: 18px; right: 24px;
      background: none; border: none; cursor: pointer;
      color: rgba(255,255,255,0.5);
      font-size: 1.6rem;
      transition: color 0.2s;
      display: flex; align-items: center;
    }
    .mobile-nav-close:hover { color: #fff; }
    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-bottom: 40px;
    }
    .mobile-nav-links li {
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .mobile-nav-links a {
      display: block;
      font-size: clamp(2.2rem, 7vw, 3.8rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      color: rgba(255,255,255,0.5);
      padding: 14px 0;
      transition: color 0.2s;
    }
    .mobile-nav-links a:hover { color: #fff; }
    .mobile-nav-links a.active { color: #fff; }
    .mobile-nav-cta a {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 14px 28px; border-radius: 999px;
      background: var(--red); color: #fff;
      font-size: 0.92rem; font-weight: 700;
    }

    /* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
    .hero {
      position: relative; width: 100%;
      min-height: 100vh;
      display: flex; flex-direction: column;
      justify-content: space-between;
      overflow: hidden; background: #1c1a17;
    }
    .hero-photo {
      position: absolute; inset: 0;
      background:
        linear-gradient(to bottom, rgba(10,8,6,0.55) 0%, rgba(10,8,6,0.2) 40%, rgba(10,8,6,0.65) 100%),
        radial-gradient(ellipse at 72% 35%, #4a3a28 0%, #2a2018 35%, #1a1410 60%, #0e0c0a 100%);
    }
    .hero-photo::after {
      content: '';
      position: absolute; top: 8%; right: 12%;
      width: 44%; height: 58%;
      background: radial-gradient(ellipse at 50% 40%, rgba(180,140,80,0.14) 0%, transparent 70%);
    }
    .hero-content {
      position: relative; z-index: 2;
      flex: 1;
      display: flex; align-items: center; justify-content: center;
      padding: 100px 40px 20px;
    }
    .hero-bottom-row {
      display: flex; align-items: center;
      justify-content: center;
      gap: 60px;
    }
    .hero-brand-name {
      font-size: clamp(3.5rem, 9vw, 10rem);
      font-weight: 900; letter-spacing: -0.04em;
      line-height: 0.88; color: #fff; flex-shrink: 0;
    }
    .hero-brand-name span { color: var(--red); }
    .hero-side {
      display: flex; flex-direction: column;
      align-items: flex-start; max-width: 380px;
    }
    .hero-tagline {
      font-size: 1.45rem; font-weight: 500;
      color: rgba(255,255,255,0.88); line-height: 1.5;
      margin-bottom: 28px;
    }
    .hero-bar {
      display: flex; align-items: center; justify-content: space-between;
      padding: 13px 40px;
      position: relative; z-index: 2;
      border-top: 1px solid rgba(255,255,255,0.09);
      background: rgba(0,0,0,0.18);
    }
    .hero-bar span { font-size: 0.7rem; color: rgba(255,255,255,0.35); letter-spacing: 0.04em; }

    /* ── ABOUT ── */
    .about-section { padding: 72px 0; border-bottom: 1px solid var(--border); }
    .about-inner { display: grid; grid-template-columns: 300px 1fr; gap: 80px; align-items: start; }
    .about-stat { font-size: 3.6rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; color: var(--black); }
    .about-stat sup { font-size: 1.6rem; color: var(--red); vertical-align: super; }
    .about-stat-note { font-size: 0.78rem; color: var(--mid); font-style: italic; margin-top: 10px; line-height: 1.5; }
    .about-statement { font-size: clamp(1.6rem, 2.8vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; color: var(--black); margin-bottom: 32px; }
    .about-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
    .avatar-stack { display: flex; align-items: center; }
    .av { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; display: inline-flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 700; color: #fff; }
    .av:first-child { margin-left: 0; }
    .av-1 { background: #6b5ce7; } .av-2 { background: var(--red); } .av-3 { background: #2d9cdb; }
    .av-plus { width: 36px; height: 36px; border-radius: 50%; background: var(--black); border: 2px solid #fff; margin-left: -10px; display: inline-flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; color: #fff; }

    /* ── FEATURE CARDS ── */
    .features-section { background: var(--grey); padding: 60px 0; }
    .features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
    .feature-card { background: #fff; padding: 36px 32px; transition: background 0.2s; }
    .feature-card:hover { background: #fafaf8; }
    .feature-card-icon { width: 44px; height: 44px; border: 1.5px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 1rem; color: #444; }
    .feature-card-icon.accent { background: var(--red); border-color: var(--red); color: #fff; }
    .feature-card h4 { font-size: 0.95rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }
    .feature-card p  { font-size: 0.8rem; line-height: 1.65; color: #666; margin-bottom: 20px; }
    .learn-more-link { font-size: 0.78rem; font-weight: 600; color: var(--black); display: inline-flex; align-items: center; gap: 6px; border-bottom: 1.5px solid var(--black); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
    .learn-more-link:hover { color: var(--red); border-color: var(--red); }

    /* ── PORTFOLIO ── */
    .portfolio-section { padding: 80px 0 0; }
    .portfolio-intro { display: grid; grid-template-columns: 200px 1fr; gap: 60px; align-items: start; margin-bottom: 48px; }
    .portfolio-intro-label { font-size: 0.75rem; color: var(--mid); font-style: italic; line-height: 1.5; }
    .portfolio-intro-statement { font-size: clamp(1.5rem, 2.6vw, 2.4rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; }
    .portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
    .portfolio-item { position: relative; overflow: hidden; cursor: pointer; }
    .portfolio-thumb { width: 100%; aspect-ratio: 4/3.2; position: relative; overflow: hidden; }
    .pf-1 { background: linear-gradient(135deg,#2d1f0e,#4a3520,#3a2a15); }
    .pf-2 { background: linear-gradient(135deg,#0e1f2d,#1a3040,#243545); }
    .pf-3 { background: linear-gradient(135deg,#1f0e2d,#2d1540,#3a2050); }
    .portfolio-thumb-inner { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:3.5rem; transition:transform 0.5s; }
    .portfolio-item:hover .portfolio-thumb-inner { transform:scale(1.06); }
    .portfolio-status { position:absolute; bottom:14px; right:14px; padding:5px 12px; border-radius:999px; font-size:0.62rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:#fff; }
    .status-red { background:var(--red); } .status-dark { background:rgba(0,0,0,0.7); } .status-green { background:#16a34a; }
    .portfolio-label-overlay { position:absolute; bottom:14px; left:14px; background:rgba(0,0,0,0.55); backdrop-filter:blur(6px); color:#fff; font-size:0.75rem; font-weight:600; padding:6px 12px; border-radius:6px; }
    .portfolio-meta { padding:16px 0 32px; border-bottom:1px solid var(--border); }
    .portfolio-meta h4 { font-size:0.9rem; font-weight:700; margin-bottom:4px; }
    .portfolio-meta p  { font-size:0.75rem; color:var(--mid); }

    /* ── SERVICES ── */
    .services-section { padding:80px 0; }
    .services-top { display:grid; grid-template-columns:1fr 280px; gap:60px; align-items:start; margin-bottom:56px; }
    .services-headline { font-size:clamp(2rem,4vw,3.8rem); font-weight:900; letter-spacing:-0.04em; line-height:1.05; }
    .services-label-note { font-size:0.75rem; color:var(--mid); font-style:italic; line-height:1.5; margin-top:8px; }
    .services-bottom { display:grid; grid-template-columns:1fr 380px; gap:60px; align-items:start; }
    .accordion-item { border-top:1px solid var(--border); }
    .accordion-item:last-child { border-bottom:1px solid var(--border); }
    .accordion-header { display:flex; align-items:center; gap:20px; padding:20px 0; cursor:pointer; user-select:none; }
    .accordion-num { font-size:0.68rem; font-weight:700; color:var(--mid); letter-spacing:0.08em; min-width:28px; }
    .accordion-title { flex:1; font-size:1.05rem; font-weight:700; letter-spacing:-0.02em; }
    .accordion-icon { font-size:0.75rem; color:var(--mid); transition:transform 0.25s; }
    .accordion-item.open .accordion-icon { transform:rotate(180deg); }
    .accordion-body { display:none; padding:0 0 20px 48px; }
    .accordion-item.open .accordion-body { display:block; }
    .accordion-body p { font-size:0.82rem; line-height:1.7; color:#555; margin-bottom:14px; max-width:420px; }
    .services-image { border-radius:12px; aspect-ratio:1/1; background:linear-gradient(135deg,#1a1210,#2d1f14,#221810); display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
    .asterisk-accent { position:absolute; top:20px; left:20px; font-size:2rem; color:var(--red); font-weight:900; }

    /* ── CTA + TESTIMONIALS ── */
    .cta-section { border-top:1px solid var(--border); }
    .cta-inner { display:grid; grid-template-columns:420px 1fr; min-height:460px; }
    .cta-image { background:linear-gradient(145deg,#1c120a,#2d1e10,#3d280e); display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
    .cta-image::after { content:''; position:absolute; bottom:0; left:0; right:0; height:40%; background:linear-gradient(to top,rgba(0,0,0,0.4),transparent); }
    .cta-image-label { position:absolute; bottom:20px; left:50%; transform:translateX(-50%); background:var(--red); color:#fff; font-size:0.65rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; padding:6px 14px; border-radius:999px; white-space:nowrap; z-index:1; }
    .cta-content { padding:56px; display:flex; flex-direction:column; }
    .cta-label { font-size:0.72rem; color:var(--mid); font-style:italic; margin-bottom:20px; }
    .cta-headline { font-size:clamp(1.6rem,2.6vw,2.4rem); font-weight:900; letter-spacing:-0.035em; line-height:1.1; margin-bottom:28px; }
    .testimonials-bar { border-top:1px solid var(--border); margin-top:40px; padding-top:24px; }
    .testimonials-bar-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; }
    .testimonials-bar-top span { font-size:0.75rem; color:var(--mid); }
    .testimonials-bar-top a { font-size:0.75rem; font-weight:600; color:var(--red); }
    .testimonials-bar-top a:hover { text-decoration:underline; }
    .testimonials-grid { display:grid; grid-template-columns:1fr 1fr; gap:32px; padding-bottom:48px; }
    .testimonial-quote { font-size:0.8rem; line-height:1.65; color:#333; margin-bottom:12px; }
    .testimonial-credit { font-size:0.72rem; color:var(--mid); }
    .testimonial-credit strong { color:var(--black); }

    /* ── FOOTER ── */
    .site-footer { background:#0a0a0a; color:rgba(255,255,255,0.55); padding-top:60px; }
    .footer-grid { display:grid; grid-template-columns:1fr 1fr 1.8fr 0.8fr; gap:40px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,0.08); }
    .footer-col-label { font-size:0.68rem; color:rgba(255,255,255,0.3); letter-spacing:0.06em; margin-bottom:14px; display:block; }
    .footer-col p { font-size:0.82rem; line-height:1.7; }
    .footer-col ul li { margin-bottom:8px; }
    .footer-col ul a { font-size:0.82rem; color:rgba(255,255,255,0.55); transition:color 0.2s; }
    .footer-col ul a:hover { color:#fff; }
    .footer-email-link { display:block; font-size:clamp(1.1rem,2.2vw,2rem); font-weight:900; letter-spacing:-0.03em; color:#fff; line-height:1.2; transition:color 0.2s; }
    .footer-email-link:hover { color:var(--red); }
    .footer-social-links { display:flex; gap:16px; margin-top:4px; }
    .footer-social-links a { font-size:0.78rem; color:rgba(255,255,255,0.4); transition:color 0.2s; }
    .footer-social-links a:hover { color:#fff; }
    .footer-bottom-bar { display:flex; align-items:center; justify-content:space-between; padding:16px 0; border-bottom:1px solid rgba(255,255,255,0.05); }
    .footer-bottom-bar span, .footer-bottom-bar a { font-size:0.7rem; color:rgba(255,255,255,0.25); }
    .footer-bottom-bar a:hover { color:rgba(255,255,255,0.6); }
    .footer-display { overflow:hidden; padding:20px 0 0; }
    .footer-display-text { font-size:clamp(5rem,16vw,18rem); font-weight:900; letter-spacing:-0.04em; line-height:0.82; color:rgba(255,255,255,0.06); white-space:nowrap; user-select:none; margin-bottom:-0.12em; }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 1024px) {
      .about-inner { grid-template-columns:220px 1fr; gap:48px; }
      .portfolio-grid { grid-template-columns:1fr 1fr; }
      .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
      .services-top { grid-template-columns:1fr; gap:20px; }
      .services-bottom { grid-template-columns:1fr; }
      .services-image { display:none; }
      .cta-inner { grid-template-columns:1fr; }
      .cta-image { min-height:260px; }
    }

    @media (max-width: 900px) {
      .hero-bottom-row { flex-direction:column; align-items:center; gap:28px; text-align:center; }
      .hero-brand-name { font-size:clamp(3rem,14vw,7rem); text-align:center; }
      .hero-side { align-items:center; max-width:520px; }
      .hero-tagline { font-size:1.1rem; text-align:center; }
    }

    /* MOBILE — hamburger visible, desktop links hidden */
    @media (max-width: 768px) {
      .wrap { padding:0 20px; }
      .nav-inner { padding:14px 20px; }

      /* Hide desktop nav items */
      .nav-links { display:none !important; }
      .nav-cta   { display:none !important; }

      /* Show hamburger */
      .nav-hamburger { display:flex !important; }

      /* Hero */
      .hero-content { padding:80px 20px 20px; }
      .hero-bar { padding:12px 20px; }
      .hero-bottom-row { flex-direction:column; align-items:center; gap:20px; text-align:center; }
      .hero-brand-name { font-size:clamp(2.8rem,15vw,5rem); text-align:center; line-height:0.9; }
      .hero-side { align-items:center; max-width:100%; }
      .hero-tagline { font-size:1rem; text-align:center; margin-bottom:20px; }

      /* Sections */
      .about-inner { grid-template-columns:1fr; gap:28px; }
      .features-grid { grid-template-columns:1fr; }
      .portfolio-intro { grid-template-columns:1fr; gap:12px; }
      .portfolio-grid { grid-template-columns:1fr; }
      .footer-grid { grid-template-columns:1fr 1fr; gap:24px; }
      .testimonials-grid { grid-template-columns:1fr; }
      .cta-content { padding:32px 20px; }
    }

    @media (max-width: 480px) {
      .footer-grid { grid-template-columns:1fr; }
      .hero-brand-name { font-size:clamp(2.4rem,17vw,3.8rem); }
    }
  

/* ─── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  background: #fff;
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── TOKENS ─────────────────────────────────────── */
:root {
  --red:    #DC2626;
  --black:  #0a0a0a;
  --white:  #ffffff;
  --grey:   #f4f4f2;
  --mid:    #888880;
  --border: #e5e5e0;
}

/* ─── LAYOUT ─────────────────────────────────────── */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.rule { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ─── TYPOGRAPHY ─────────────────────────────────── */
.label-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.label-grey {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--mid);
  font-style: italic;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  cursor: pointer;
}
.pill-outline-dark  { border: 1.5px solid var(--black); color: var(--black); background: transparent; }
.pill-outline-dark:hover { background: var(--black); color: #fff; }
.pill-outline-white { border: 1.5px solid rgba(255,255,255,0.5); color: #fff; background: transparent; }
.pill-outline-white:hover { background: #fff; color: var(--black); }
.pill-white { background: #fff; color: var(--black); border: none; }
.pill-white:hover { background: #f0f0f0; }
.pill-red   { background: var(--red); color: #fff; border: none; }
.pill-red:hover { background: #b91c1c; }

.btn-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
}
.btn-icon-dark {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--black); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
}

/* ─── NAVIGATION ─────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
}
.nav-logo img { height: 34px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.7); letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { display: flex; align-items: center; }

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center;
  align-items: center; gap: 5px;
  width: 40px; height: 40px;
  cursor: pointer; background: none; border: none;
  z-index: 1001; padding: 0;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.3s ease; transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE OVERLAY MENU ─────────────────────────── */
.mobile-nav {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #0a0a0a;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 40px;
  transition: opacity 0.45s cubic-bezier(0.22,1,0.36,1), visibility 0.45s ease;
}
.mobile-nav.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-logo { position: absolute; top: 20px; left: 40px; }
.mobile-nav-logo img { height: 30px; display: block; }
.mobile-nav-close {
  position: absolute; top: 18px; right: 24px;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.5); font-size: 1.6rem;
  display: flex; align-items: center; line-height: 1;
  transition: color 0.2s;
}
.mobile-nav-close:hover { color: #fff; }
.mobile-nav-links {
  display: flex; flex-direction: column; margin-bottom: 40px;
}
.mobile-nav-links li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}
.mobile-nav-links a {
  display: block;
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.03em;
  /* Force visible white — never let animation override this */
  color: rgba(255,255,255,0.75) !important;
  padding: 14px 0;
  transition: color 0.25s ease;
}
.mobile-nav-links a:hover { color: #ffffff !important; }
.mobile-nav-links li {
  /* Base state — always visible, transitions handled by animations.css */
  opacity: 1;
}
.mobile-nav-cta a {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 28px; border-radius: 999px;
  background: #DC2626; color: #fff;
  font-size: 0.92rem; font-weight: 700;
}

/* ─── PAGE HERO (inner pages) ─────────────────────── */
.page-hero {
  background: var(--black);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(220,38,38,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .label-tag { display: block; margin-bottom: 20px; }
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #fff;
  max-width: 900px;
  margin-bottom: 28px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  line-height: 1.65;
}

/* ─── SECTION DEFAULTS ────────────────────────────── */
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-dark { background: var(--black); }
.section-grey { background: var(--grey); }

/* ─── LEARN MORE LINK ─────────────────────────────── */
.learn-more-link {
  font-size: 0.78rem; font-weight: 600; color: var(--black);
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1.5px solid var(--black); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.learn-more-link:hover { color: var(--red); border-color: var(--red); }

/* ─── FEATURE CARDS ───────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
}
.feature-card { background: #fff; padding: 36px 32px; transition: background 0.2s; }
.feature-card:hover { background: #fafaf8; }
.feature-card-icon {
  width: 44px; height: 44px; border: 1.5px solid var(--border);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 24px; color: #333;
}
.feature-card-icon.accent { background: var(--red); border-color: var(--red); }
.feature-card h4 { font-size: 0.95rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }
.feature-card p  { font-size: 0.8rem; line-height: 1.65; color: #666660; margin-bottom: 20px; }

/* ─── ACCORDION ───────────────────────────────────── */
.accordion-item { border-top: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: 1px solid var(--border); }
.accordion-header {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 0; cursor: pointer; user-select: none;
}
.accordion-num  { font-size: 0.68rem; font-weight: 700; color: var(--mid); letter-spacing: 0.08em; min-width: 28px; }
.accordion-title { flex: 1; font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; color: var(--black); }
.accordion-icon { font-size: 0.85rem; color: var(--mid); transition: transform 0.25s; width: 20px; text-align: center; }
.accordion-item.open .accordion-icon { transform: rotate(180deg); }
.accordion-body { display: none; padding: 0 0 20px 48px; }
.accordion-item.open .accordion-body { display: block; }
.accordion-body p { font-size: 0.82rem; line-height: 1.7; color: #555550; margin-bottom: 14px; max-width: 420px; }

/* ─── PORTFOLIO ───────────────────────────────────── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.portfolio-item { position: relative; overflow: hidden; cursor: pointer; }
.portfolio-thumb {
  width: 100%; aspect-ratio: 4/3.2;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  transition: transform 0.5s ease;
}
.portfolio-item:hover .portfolio-thumb { transform: scale(1.05); }
.portfolio-status {
  position: absolute; bottom: 14px; right: 14px;
  padding: 5px 12px; border-radius: 999px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #fff;
}
.status-red   { background: var(--red); }
.status-dark  { background: rgba(0,0,0,0.7); }
.status-green { background: #16a34a; }
.portfolio-label-overlay {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
  color: #fff; font-size: 0.75rem; font-weight: 600;
  padding: 6px 12px; border-radius: 6px;
}
.portfolio-meta { padding: 16px 0 32px; border-bottom: 1px solid var(--border); }
.portfolio-meta h4 { font-size: 0.9rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; }
.portfolio-meta p  { font-size: 0.75rem; color: var(--mid); }

/* ─── TESTIMONIAL ─────────────────────────────────── */
.testimonial-quote  { font-size: 0.82rem; line-height: 1.7; color: #333330; margin-bottom: 12px; }
.testimonial-credit { font-size: 0.72rem; color: var(--mid); }
.testimonial-credit strong { color: var(--black); }

/* ─── CONTACT FORM ────────────────────────────────── */
.form-field { margin-bottom: 32px; }
.form-label {
  display: block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 10px;
}
.form-input, .form-textarea, .form-select {
  width: 100%; background: transparent;
  border: none; border-bottom: 1.5px solid var(--border);
  padding: 10px 0; font-family: 'Inter', sans-serif;
  font-size: 1rem; color: var(--black);
  transition: border-color 0.2s; border-radius: 0;
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-bottom-color: var(--black);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }

/* ─── FOOTER ──────────────────────────────────────── */
.site-footer { background: #0a0a0a; color: rgba(255,255,255,0.55); padding-top: 60px; }
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1.8fr 0.8fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col-label { font-size: 0.68rem; color: rgba(255,255,255,0.3); letter-spacing: 0.06em; margin-bottom: 14px; display: block; }
.footer-col p   { font-size: 0.82rem; line-height: 1.7; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: 0.82rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }
.footer-email-link {
  display: block; font-size: clamp(1.1rem, 2.2vw, 2rem);
  font-weight: 900; letter-spacing: -0.03em; color: #fff;
  line-height: 1.2; transition: color 0.2s;
}
.footer-email-link:hover { color: var(--red); }
.footer-social-links { display: flex; gap: 16px; margin-top: 4px; }
.footer-social-links a { font-size: 0.78rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-social-links a:hover { color: #fff; }
.footer-bottom-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-bar span, .footer-bottom-bar a { font-size: 0.7rem; color: rgba(255,255,255,0.25); }
.footer-bottom-bar a:hover { color: rgba(255,255,255,0.6); }
.footer-display { overflow: hidden; padding: 20px 0 0; }
.footer-display-text {
  font-size: clamp(5rem, 16vw, 18rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 0.82;
  color: rgba(255,255,255,0.06); white-space: nowrap;
  user-select: none; margin-bottom: -0.12em;
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; }
  /* Hide desktop nav, show hamburger */
  .nav-links     { display: none !important; }
  .nav-cta       { display: none !important; }
  .nav-hamburger { display: flex !important; }
  /* Page sections */
  .page-hero { padding: 130px 0 60px; }
  .page-hero h1 { font-size: clamp(2.4rem, 10vw, 4rem); }
  .features-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .section { padding: 56px 0; }
}

/* ─── IMAGE PLACEHOLDERS ─────────────────────────── */
.img-placeholder {
  width: 100%;
  background: linear-gradient(135deg, #f0eeeb 0%, #e8e4df 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #aaa9a0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220,38,38,0.04) 0%, transparent 60%);
}
.img-placeholder i { font-size: 2.2rem; color: #ccc9c0; margin-bottom: 4px; }
.img-placeholder-dark {
  background: linear-gradient(135deg, #1a1a18 0%, #222220 100%);
  color: rgba(255,255,255,0.2);
}
.img-placeholder-dark i { color: rgba(255,255,255,0.15); }
.img-placeholder-dark::before {
  background: linear-gradient(135deg, rgba(220,38,38,0.08) 0%, transparent 60%);
}
.img-ph-hero { aspect-ratio: 16/7; }
.img-ph-square { aspect-ratio: 1/1; }
.img-ph-card  { aspect-ratio: 4/3; }
.img-ph-wide  { aspect-ratio: 16/9; }
.img-ph-tall  { aspect-ratio: 3/4; }

/* ─── SERVICE DETAIL PAGE ────────────────────────── */
.service-detail-hero { padding: 160px 0 80px; background: var(--black); position: relative; overflow: hidden; }
.service-detail-hero::after { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 80% 50%, rgba(220,38,38,0.07) 0%, transparent 60%); pointer-events:none; }
.service-detail-hero .wrap { position: relative; z-index: 1; }

.service-process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.service-process-step:first-child { border-top: 1px solid var(--border); }
.step-num {
  font-size: 0.68rem; font-weight: 700;
  color: var(--red); letter-spacing: 0.1em;
  padding-top: 3px;
}
.step-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.step-body p  { font-size: 0.85rem; line-height: 1.7; color: #666; }

/* ─── PROJECT DETAIL PAGE ────────────────────────── */
.project-hero { padding: 160px 0 0; background: var(--black); position: relative; }
.project-hero-inner { position: relative; z-index: 1; }
.project-hero h1 { color: #fff; font-size: clamp(2.8rem,6vw,6rem); font-weight:900; letter-spacing:-0.04em; line-height:0.95; margin-bottom:24px; }
.project-meta-row {
  display: flex; align-items: center; gap: 32px;
  padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.09);
  flex-wrap: wrap;
}
.project-meta-item { }
.project-meta-label { font-size: 0.65rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.3); margin-bottom:5px; }
.project-meta-value { font-size: 0.85rem; font-weight:600; color:rgba(255,255,255,0.75); }
.project-meta-value a { color: var(--red); transition: color 0.2s; }
.project-meta-value a:hover { color: #fff; }
.project-hero-img { margin-top: 48px; }

.project-body { padding: 80px 0; }
.project-body-grid { display: grid; grid-template-columns: 320px 1fr; gap: 80px; align-items: start; }
.project-sidebar { position: sticky; top: 100px; }
.project-sidebar-section { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.project-sidebar-section:last-child { border-bottom: none; }
.project-sidebar-label { font-size: 0.65rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--mid); margin-bottom:14px; display:block; }
.project-sidebar-tag { display:inline-flex; align-items:center; padding:5px 12px; border-radius:999px; background:var(--grey); font-size:0.72rem; font-weight:600; margin:3px; }
.project-content h2 { font-size: clamp(1.6rem,3vw,2.4rem); font-weight:900; letter-spacing:-0.03em; margin-bottom:20px; }
.project-content p  { font-size:0.92rem; line-height:1.8; color:#555; margin-bottom:20px; }
.project-content h3 { font-size:1.1rem; font-weight:800; letter-spacing:-0.02em; margin:36px 0 14px; }
.project-img-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin:36px 0; }

.project-nav-bar {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.project-nav-bar a { font-size:0.82rem; font-weight:700; color:var(--black); display:inline-flex; align-items:center; gap:8px; transition:color 0.2s; }
.project-nav-bar a:hover { color: var(--red); }

@media (max-width: 900px) {
  .project-body-grid { grid-template-columns: 1fr; gap: 40px; }
  .project-sidebar { position: static; }
  .project-img-grid { grid-template-columns: 1fr; }
}

/* ── Hero safety — elements always visible by default.
   GSAP animates FROM these values, not TO them.
   This prevents any flash of invisible content. ── */
.hero-brand-name,
.hero-tagline,
.hero-bar,
#heroCta { opacity: 1 !important; }


/* ═══════════════════════════════════════════════
   DIGITS CONNECT — animations.css
   Micro-interactions only — GSAP handles reveals
═══════════════════════════════════════════════ */

/* ── Button arrow nudge ── */
.pill .btn-icon,
.pill .btn-icon-dark {
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
}
.pill:hover .btn-icon,
.pill:hover .btn-icon-dark {
  transform: translateX(4px);
}

/* ── Nav link underline slide ── */
.nav-links a { position: relative; }
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: #fff;
  transition: width 0.25s cubic-bezier(0.22,1,0.36,1);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ── Card hover lift ── */
.feature-card {
  transition: background 0.2s,
              transform 0.3s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.3s cubic-bezier(0.22,1,0.36,1);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(10,10,10,0.08);
}

/* ── Accordion smooth ── */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  display: block !important;
  transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1),
              opacity 0.3s ease,
              padding 0.3s ease;
  opacity: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.accordion-item.open .accordion-body {
  max-height: 300px;
  opacity: 1;
  padding-top: 0 !important;
  padding-bottom: 20px !important;
}
.accordion-icon {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.accordion-item.open .accordion-icon { transform: rotate(180deg); }

/* ── Learn more link ── */
.learn-more-link {
  transition: color 0.2s, border-color 0.2s, gap 0.2s cubic-bezier(0.22,1,0.36,1);
}
.learn-more-link:hover { gap: 10px; }

/* ── Footer link hover ── */
.footer-col ul a {
  transition: color 0.2s, padding-left 0.2s cubic-bezier(0.22,1,0.36,1);
}
.footer-col ul a:hover { padding-left: 6px; }

/* ── Service row hover ── */
.service-row {
  transition: padding-left 0.25s cubic-bezier(0.22,1,0.36,1);
}
.service-row:hover { padding-left: 8px; }

/* ── Mobile menu link stagger ──
   Always opacity:1 — never hidden by default
──────────────────────────────────────────── */
.mobile-nav-links li {
  opacity: 1 !important;
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
              opacity 0.35s ease;
}
.mobile-nav:not(.is-open) .mobile-nav-links li {
  transform: translateX(-24px);
  opacity: 0 !important;
}
.mobile-nav.is-open .mobile-nav-links li:nth-child(1) { transition-delay: 0.07s; }
.mobile-nav.is-open .mobile-nav-links li:nth-child(2) { transition-delay: 0.13s; }
.mobile-nav.is-open .mobile-nav-links li:nth-child(3) { transition-delay: 0.19s; }
.mobile-nav.is-open .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.is-open .mobile-nav-links li:nth-child(5) { transition-delay: 0.31s; }

.mobile-nav-cta {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.36s,
              transform 0.4s cubic-bezier(0.22,1,0.36,1) 0.36s;
}
.mobile-nav.is-open .mobile-nav-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ── Portfolio thumb zoom ── */
.portfolio-thumb-inner {
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.portfolio-item:hover .portfolio-thumb-inner { transform: scale(1.05); }

.portfolio-label-overlay {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
  transform: translateY(4px); opacity: 0.7;
}
.portfolio-item:hover .portfolio-label-overlay { transform: translateY(0); opacity: 1; }

/* ── Hero photo parallax ── */
.hero-photo { will-change: transform; }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* WP Fixes */
body { margin:0!important; padding:0!important; }
.hero { width:100vw!important; max-width:100vw!important; }
.admin-bar .site-header { top:32px; }
.home .site-main, .home main, .home #content, .home #primary { max-width:none!important; padding:0!important; margin:0!important; }
.page-hero { background:var(--black); padding:160px 0 80px; position:relative; overflow:hidden; }
.page-hero::after { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 80% 50%,rgba(220,38,38,0.07) 0%,transparent 60%); pointer-events:none; }
.page-hero-inner { position:relative; z-index:1; }
.page-hero .label-tag { display:block; margin-bottom:20px; }
.page-hero h1 { font-size:clamp(3rem,7vw,7rem); font-weight:900; letter-spacing:-0.04em; line-height:0.95; color:#fff; max-width:900px; margin-bottom:24px; }
.page-hero p  { color:rgba(255,255,255,0.55); max-width:520px; font-size:1.05rem; line-height:1.65; }
.entry-content h2, .entry-content h3 { margin:2rem 0 1rem; }
.entry-content p { margin-bottom:1.2rem; font-size:0.95rem; line-height:1.8; color:#444; }
.entry-content ul, .entry-content ol { padding-left:1.5rem; margin-bottom:1.2rem; }
.entry-content a { color:var(--red); }
.aligncenter { display:block; margin:0 auto; }
.screen-reader-text { clip:rect(1px,1px,1px,1px); position:absolute!important; height:1px; width:1px; overflow:hidden; }
@media screen and (max-width:782px) { .admin-bar .site-header { top:46px; } }
