/* ═══════════════════════════════════════════════════════════
   REMARKABLE IMAGES — styles.css
   Linked from index.html as: <link rel="stylesheet" href="styles.css">
═══════════════════════════════════════════════════════════ */

/* ═══════════ RESET & DESIGN TOKENS ═══════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blood:       #c01020;
  --blood-dark:  #8a0b17;
  --blood-glow:  rgba(192, 16, 32, 0.3);
  --black:       #0d0d0d;
  --charcoal:    #161616;
  --stone:       #2a2a2a;
  --white:       #f8f6f2;
  --off-white:   #edebe6;
  --gray:        #9a9590;
  --gray-light:  #e4e0da;
  --serif:       'DM Serif Display', Georgia, serif;
  --display:     'Bebas Neue', Impact, sans-serif;
  --body:        'DM Sans', system-ui, sans-serif;
  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.4, 0.64, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--blood); border-radius: 2px; }
::selection { background: var(--blood); color: #fff; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }


/* ═══════════ CURSOR ═══════════ */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--blood); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  will-change: transform; mix-blend-mode: multiply;
}
@media (hover: none) { .cursor-dot { display: none; } }


/* ═══════════ HEADER ═══════════ */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.25rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding 0.3s var(--ease-out), background 0.3s, box-shadow 0.3s;
}
.header.scrolled {
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 3rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}
.logo {
  font-family: var(--display); font-size: 1.75rem;
  letter-spacing: 0.05em; color: var(--white);
  text-decoration: none; line-height: 1; flex-shrink: 0;
}
.logo em { color: var(--blood); font-style: normal; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(248, 246, 242, 0.65); text-decoration: none;
  transition: color 0.2s; position: relative; white-space: nowrap;
}
.nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--blood);
  transition: width 0.25s var(--ease-out);
}
.nav a:hover, .nav a.active { color: var(--white); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav .nav-cta {
  background: var(--blood); color: var(--white) !important;
  padding: 0.5rem 1.2rem; border-radius: 3px; letter-spacing: 0.1em;
}
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { background: var(--blood-dark); }
.menu-toggle {
  display: none; flex-direction: column; justify-content: space-between;
  width: 26px; height: 18px; background: none; border: none;
  cursor: pointer; z-index: 1001; padding: 0;
}
.menu-toggle span {
  display: block; height: 2px; background: var(--white);
  border-radius: 2px; transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 100vh; background: var(--black);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 0 5rem; position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-radial {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 75% 65% at 65% 45%, rgba(192,16,32,0.13) 0%, transparent 70%);
}
.hero-noise {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-tagline-side {
  position: absolute; top: 50%; left: 2.5rem;
  writing-mode: vertical-rl; transform: rotate(180deg) translateY(50%);
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(248,246,242,0.22); font-weight: 400; user-select: none;
}
.hero-bg-num {
  position: absolute; right: 0; bottom: -2rem;
  font-family: var(--display); font-size: clamp(18vw, 22vw, 28vw);
  color: rgba(255,255,255,0.02); line-height: 1;
  pointer-events: none; user-select: none; letter-spacing: -0.04em;
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  padding: 0 3rem; padding-top: 7rem;
}
.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--blood); font-weight: 500; margin-bottom: 1.6rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 1px; background: var(--blood); }
.hero-headline {
  font-family: var(--display); font-size: clamp(4rem, 6.5vw, 8.5rem);
  line-height: 0.9; color: var(--white); letter-spacing: 0.02em; margin-bottom: 2rem;
}
.hero-headline .accent { color: var(--blood); }
.hero-headline .italic-line {
  font-family: var(--serif); font-style: italic;
  font-size: 0.7em; color: rgba(248,246,242,0.5);
  letter-spacing: 0; display: block; line-height: 1.1; margin-top: 0.15em;
}
.hero-sub {
  font-size: 1rem; color: rgba(248,246,242,0.48); max-width: 42ch;
  margin-bottom: 2.8rem; font-weight: 300; line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-illustration { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-svg-wrap { width: 100%; max-width: 520px; margin: 0 auto; filter: drop-shadow(0 0 30px rgba(192,16,32,0.18)); }
.hero-svg-wrap svg { width: 100%; height: auto; }
.hero-svg-wrap .wl {
  stroke: var(--blood); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 400; stroke-dashoffset: 400; animation: drawLine 1.4s var(--ease-out) forwards;
}
.hero-svg-wrap .wl2 {
  stroke: rgba(192,16,32,0.55); stroke-width: 1.1; fill: none; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 300; stroke-dashoffset: 300; animation: drawLine 1.8s 0.2s var(--ease-out) forwards;
}
.hero-svg-wrap .wf  { fill: rgba(192,16,32,0.07); stroke: var(--blood); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.hero-svg-wrap .wt  { font-family: 'DM Sans', sans-serif; fill: rgba(192,16,32,0.45); font-size: 13px; letter-spacing: 3px; font-weight: 500; }
.hero-svg-wrap .wt2 { font-family: 'DM Sans', sans-serif; fill: rgba(248,246,242,0.2); font-size: 10px; letter-spacing: 2px; }
.hero-svg-wrap .wdot  { fill: var(--blood); opacity: 0.7; }
.hero-svg-wrap .wring { stroke: rgba(192,16,32,0.3); stroke-width: 1; fill: none; stroke-dasharray: 4 6; stroke-linecap: round; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.hero-bottom {
  position: absolute; bottom: 2.2rem; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; z-index: 2;
}
.hero-dots { display: flex; gap: 0.65rem; }
.hdot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: none;
  cursor: pointer; transition: 0.3s; padding: 0; flex-shrink: 0;
}
.hdot.active { background: var(--blood); width: 22px; border-radius: 3px; }
.hero-scroll-ind {
  display: flex; align-items: center; gap: 0.75rem;
  color: rgba(248,246,242,0.28); font-size: 0.62rem;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.scroll-bar {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--blood) 0%, transparent 100%);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.35; transform: scaleY(0.5); }
}


/* ═══════════ GLOBAL LAYOUT ═══════════ */
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(192,16,32,0.4), transparent); }
.section { padding: 5.5rem 0; }
.section-dark    { background: var(--black); color: var(--white); }
.section-off     { background: var(--off-white); }
.container       { max-width: 1260px; margin: 0 auto; padding: 0 3rem; width: 100%; }
.section-label {
  font-size: 0.68rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--blood); font-weight: 600; margin-bottom: 1.1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before { content: ''; display: block; width: 22px; height: 1px; background: var(--blood); }
.section-title {
  font-family: var(--display); font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.93; letter-spacing: 0.025em; margin-bottom: 1.4rem;
}
.section-title .accent { color: var(--blood); }
.section-title .soft   { font-family: var(--serif); font-style: italic; font-size: 0.75em; color: var(--gray); letter-spacing: 0; }
.section-dark .section-title .soft { color: rgba(248,246,242,0.35); }
.section-body { font-size: 1rem; font-weight: 300; line-height: 1.85; color: var(--gray); max-width: 54ch; }
.section-dark .section-body { color: rgba(248,246,242,0.48); }


/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  padding: 0.9rem 2rem; border-radius: 3px;
  transition: all 0.28s var(--ease-out); cursor: pointer; border: none; white-space: nowrap;
}
.btn-primary { background: var(--blood); color: var(--white); }
.btn-primary:hover { background: var(--blood-dark); transform: translateY(-2px); box-shadow: 0 10px 28px var(--blood-glow); }
.btn-ghost   { background: transparent; color: rgba(248,246,242,0.72); border: 1px solid rgba(248,246,242,0.22); }
.btn-ghost:hover { border-color: var(--white); color: var(--white); transform: translateY(-2px); }


/* ═══════════ ABOUT ═══════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 5rem; align-items: center; margin-top: 4.5rem; }
.about-card { background: var(--charcoal); border-radius: 8px; padding: 3rem 2.8rem; position: relative; overflow: hidden; }
.about-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%; background: linear-gradient(to bottom, var(--blood), transparent);
}
.about-card::after {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 140px; height: 140px; border-radius: 50%; border: 1px solid rgba(192,16,32,0.08);
}
.about-card-label  { font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--blood); margin-bottom: 1.4rem; font-weight: 600; }
.about-card-text   { font-size: 1.5rem; font-family: var(--serif); font-style: italic; color: var(--white); line-height: 1.55; }
.stats-row {
  display: flex; gap: 2.5rem; margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07); flex-wrap: wrap;
}
.stat-num   { font-family: var(--display); font-size: 2.8rem; color: var(--blood); line-height: 1; letter-spacing: 0.02em; }
.stat-label { font-size: 0.68rem; letter-spacing: 0.12em; color: rgba(248,246,242,0.35); text-transform: uppercase; margin-top: 0.3rem; }
.about-pillars { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.pillar {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 1.4rem;
  border-radius: 5px; border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.25s, background 0.25s;
}
.pillar:hover { border-color: rgba(192,16,32,0.4); background: rgba(192,16,32,0.04); }
.pillar-icon {
  width: 34px; height: 34px; background: var(--blood); border-radius: 4px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.pillar-icon svg { width: 15px; height: 15px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pillar-body h4 { font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.pillar-body p  { font-size: 0.82rem; color: rgba(248,246,242,0.42); line-height: 1.65; }


/* ═══════════ SERVICES ═══════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--gray-light); margin-top: 4rem; border-radius: 8px; overflow: hidden;
}
.service-tile { background: var(--white); padding: 2.8rem 2.2rem; position: relative; transition: background 0.3s; cursor: pointer; }
.service-tile:hover                    { background: var(--black); }
.service-tile:hover .tile-title,
.service-tile:hover .tile-body         { color: var(--white); }
.service-tile:hover .tile-num          { color: rgba(255,255,255,0.04); }
.service-tile:hover .tile-icon         { background: var(--blood); }
.service-tile:hover .tile-icon svg     { stroke: white; }
.service-tile:hover .tile-learn        { opacity: 1; transform: translateX(0); }
.tile-num   { font-family: var(--display); font-size: 4.5rem; color: var(--off-white); line-height: 1; margin-bottom: 0.9rem; letter-spacing: 0.02em; transition: color 0.3s; }
.tile-icon  { width: 40px; height: 40px; background: var(--off-white); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; transition: background 0.3s; }
.tile-icon svg { width: 17px; height: 17px; stroke: var(--blood); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s; }
.tile-title { font-size: 0.95rem; font-weight: 700; color: var(--black); margin-bottom: 0.55rem; letter-spacing: -0.01em; transition: color 0.3s; }
.tile-body  { font-size: 0.82rem; font-weight: 300; color: var(--gray); line-height: 1.75; transition: color 0.3s; margin-bottom: 1rem; }
.tile-learn {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blood); display: flex; align-items: center; gap: 0.4rem;
  opacity: 0; transform: translateX(-6px); transition: opacity 0.25s, transform 0.25s;
}
.tile-learn svg { width: 12px; height: 12px; stroke: var(--blood); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }


/* ═══════════ SERVICE MODAL ═══════════ */
.svc-modal-overlay {
  position: fixed; inset: 0; background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease-out); padding: 1.5rem;
}
.svc-modal-overlay.open { opacity: 1; pointer-events: all; }
.svc-modal {
  background: var(--charcoal); border-radius: 10px; max-width: 620px; width: 100%;
  max-height: 90vh; overflow-y: auto; position: relative;
  transform: translateY(20px); transition: transform 0.35s var(--ease-out);
}
.svc-modal-overlay.open .svc-modal { transform: translateY(0); }
.svc-modal-head   { padding: 2.5rem 2.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 1.8rem; }
.svc-modal-num    { font-family: var(--display); font-size: 4rem; color: rgba(192,16,32,0.15); line-height: 1; margin-bottom: 0.5rem; }
.svc-modal-title  { font-family: var(--display); font-size: 2.5rem; color: var(--white); letter-spacing: 0.03em; line-height: 1; margin-bottom: 0.8rem; }
.svc-modal-sub    { font-size: 0.85rem; color: rgba(248,246,242,0.45); font-weight: 300; line-height: 1.7; }
.svc-modal-body   { padding: 2rem 2.8rem 2.5rem; }
.svc-modal-section { margin-bottom: 1.8rem; }
.svc-modal-section h4 { font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--blood); font-weight: 600; margin-bottom: 0.9rem; }
.svc-modal-section ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.svc-modal-section ul li { font-size: 0.88rem; color: rgba(248,246,242,0.55); display: flex; align-items: center; gap: 0.6rem; font-weight: 300; }
.svc-modal-section ul li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--blood); flex-shrink: 0; }
.svc-turnaround { display: flex; gap: 2rem; flex-wrap: wrap; }
.svc-turn-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 6px; padding: 1rem 1.4rem; flex: 1; min-width: 120px; }
.svc-turn-item strong { display: block; font-family: var(--display); font-size: 1.6rem; color: var(--blood); letter-spacing: 0.03em; line-height: 1; margin-bottom: 0.25rem; }
.svc-turn-item span   { font-size: 0.72rem; color: rgba(248,246,242,0.35); text-transform: uppercase; letter-spacing: 0.1em; }
.svc-modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1);
  background: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: rgba(248,246,242,0.5); transition: 0.2s;
}
.svc-modal-close:hover { background: var(--blood); border-color: var(--blood); color: white; }
.svc-modal-close svg   { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.svc-modal-cta { margin-top: 1.8rem; display: flex; gap: 1rem; flex-wrap: wrap; }


/* ═══════════ PORTFOLIO SECTION ═══════════ */
.portfolio-section { padding: 4.5rem 0; background: var(--off-white); }

.pf-controls {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; margin-bottom: 1.5rem;
}
.portfolio-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pf-btn {
  font-family: var(--body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.48rem 1.1rem; border-radius: 3px;
  border: 1px solid var(--gray-light); background: transparent; color: var(--gray); cursor: pointer; transition: 0.22s;
}
.pf-btn:hover  { border-color: var(--blood); color: var(--blood); }
.pf-btn.active { background: var(--blood); border-color: var(--blood); color: white; }
.pf-nav        { display: flex; gap: 0.6rem; align-items: center; }
.pf-nav-btn {
  width: 38px; height: 38px; border: 1px solid var(--gray-light); background: transparent;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--gray); transition: 0.2s; flex-shrink: 0;
}
.pf-nav-btn:hover    { border-color: var(--blood); background: var(--blood); color: white; }
.pf-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.pf-nav-btn svg      { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pf-count      { font-size: 0.7rem; color: var(--gray); letter-spacing: 0.08em; white-space: nowrap; }
.pf-count span { color: var(--blood); font-weight: 600; }

.portfolio-carousel { position: relative; overflow: hidden; margin: 0 -3rem; padding: 0 3rem; }
.portfolio-track    { display: flex; gap: 1.2rem; transition: transform 0.45s var(--ease-out); will-change: transform; }
.pg-item {
  position: relative; border-radius: 6px; overflow: hidden; cursor: pointer;
  background: var(--charcoal); flex: 0 0 calc(33.333% - 0.8rem);
  aspect-ratio: 3/4; transition: box-shadow 0.3s, transform 0.3s var(--ease-out);
}
.pg-item:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(13,13,13,0.3); }
.pg-item.has-photo { background: var(--black); }
.pg-item.has-photo .pg-overlay {
  background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.1) 60%, transparent 100%);
}

/* Portfolio placeholder tiles */
.pg-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.pg-placeholder::before { content: ''; position: absolute; inset: 0; }
.pg-ph-0::before { background: linear-gradient(135deg, #1a0a0d 0%, #3d0b14 50%, #1a0a0d 100%); }
.pg-ph-1::before { background: linear-gradient(135deg, #0d0d0d 0%, #2a0a12 50%, #0d0d0d 100%); }
.pg-ph-2::before { background: linear-gradient(135deg, #1a1010 0%, #4a0e1c 50%, #1a1010 100%); }
.pg-ph-3::before { background: linear-gradient(135deg, #0a0a0a 0%, #350c16 50%, #0a0a0a 100%); }
.pg-ph-4::before { background: linear-gradient(135deg, #120808 0%, #3d0f19 50%, #120808 100%); }
.pg-ph-5::before { background: linear-gradient(135deg, #0d0d0d 0%, #280911 50%, #0d0d0d 100%); }
.pg-ph-6::before { background: linear-gradient(135deg, #0a0809 0%, #3a0b15 50%, #0a0809 100%); }
.pg-ph-7::before { background: linear-gradient(135deg, #111010 0%, #450d1a 50%, #111010 100%); }
.pg-ph-8::before { background: linear-gradient(135deg, #0d0b0b 0%, #310a13 50%, #0d0b0b 100%); }
.pg-illustration     { position: relative; z-index: 1; width: 65%; max-width: 160px; opacity: 0.55; }
.pg-illustration svg { width: 100%; height: auto; }

/* SVG icon classes used inside portfolio tiles */
.gi-line { stroke: rgba(192,16,32,0.7); stroke-width: 1.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.gi-fill { fill: rgba(192,16,32,0.1); stroke: rgba(192,16,32,0.5); stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.gi-text { font-family: 'DM Sans', sans-serif; fill: rgba(192,16,32,0.4); font-size: 9px; letter-spacing: 2px; }

/* Hover overlay on tiles */
.pg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.2) 55%, transparent 100%);
  opacity: 0; transition: opacity 0.3s var(--ease-out); z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem;
}
.pg-item:hover .pg-overlay { opacity: 1; }
.pg-cat   { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blood); font-weight: 600; margin-bottom: 0.35rem; }
.pg-title { font-family: var(--display); font-size: 1.3rem; color: var(--white); letter-spacing: 0.03em; line-height: 1; margin-bottom: 0.4rem; }
.pg-desc  { font-size: 0.75rem; color: rgba(248,246,242,0.55); font-weight: 300; }

/* Progress bar under carousel */
.pf-progress      { height: 2px; background: var(--gray-light); border-radius: 2px; margin-top: 1.4rem; overflow: hidden; }
.pf-progress-fill { height: 100%; background: var(--blood); border-radius: 2px; transition: width 0.4s var(--ease-out); width: 33.33%; }


/* ═══════════ LIGHTBOX ═══════════ */
.lightbox {
  position: fixed; inset: 0; background: rgba(13,13,13,0.96); z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s; padding: 2rem;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-content     { max-width: 900px; width: 100%; text-align: center; position: relative; }
.lb-close {
  position: absolute; top: -3rem; right: 0;
  width: 36px; height: 36px; background: none; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; cursor: pointer; color: white;
  display: flex; align-items: center; justify-content: center; transition: 0.2s;
}
.lb-close:hover     { background: var(--blood); border-color: var(--blood); }
.lb-close svg       { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lb-img-wrap        { border-radius: 8px; overflow: hidden; background: var(--charcoal); min-height: 400px; display: flex; align-items: center; justify-content: center; }
.lb-img-wrap svg    { width: 60%; max-width: 480px; opacity: 0.7; }
.lb-meta            { margin-top: 1.5rem; text-align: left; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; }
.lb-cat             { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blood); margin-bottom: 0.3rem; }
.lb-title           { font-family: var(--display); font-size: 2rem; color: var(--white); letter-spacing: 0.03em; }
.lb-nav             { display: flex; gap: 0.6rem; }
.lb-nav-btn {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.15);
  background: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: white; transition: 0.2s;
}
.lb-nav-btn:hover { background: var(--blood); border-color: var(--blood); }
.lb-nav-btn svg   { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }


/* ═══════════ PROCESS ═══════════ */
.process-list { margin-top: 4rem; }
.process-row {
  display: grid; grid-template-columns: 72px 200px 1fr; align-items: start;
  gap: 2rem; padding: 2.5rem 0; border-top: 1px solid var(--gray-light);
  transition: background 0.22s, padding 0.22s, margin 0.22s; cursor: default;
}
.process-row:last-child { border-bottom: 1px solid var(--gray-light); }
.process-row:hover { background: var(--off-white); margin: 0 -3rem; padding: 2.5rem 3rem; }
.process-num  { font-family: var(--display); font-size: 3.2rem; color: var(--blood); line-height: 1; opacity: 0.45; }
.process-name { font-size: 0.95rem; font-weight: 700; padding-top: 0.65rem; letter-spacing: -0.01em; }
.process-desc { font-size: 0.88rem; font-weight: 300; color: var(--gray); line-height: 1.8; padding-top: 0.5rem; }


/* ═══════════ PORTFOLIO REQUEST ═══════════ */
.portfolio-request { background: var(--black); padding: 4rem 0; position: relative; overflow: hidden; }
.portfolio-request::before {
  content: 'PORTFOLIO'; position: absolute; font-family: var(--display);
  font-size: clamp(12vw, 18vw, 22vw); color: rgba(255,255,255,0.018);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  white-space: nowrap; pointer-events: none; user-select: none; letter-spacing: 0.06em;
}
.pr-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.pr-text .section-label { color: rgba(248,246,242,0.3); }
.pr-text h2 {
  font-family: var(--display); font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--white); letter-spacing: 0.02em; line-height: 0.95; margin-bottom: 1.2rem;
}
.pr-text h2 em {
  font-family: var(--serif); font-size: 0.82em; color: rgba(248,246,242,0.3);
  display: block; font-style: italic; letter-spacing: 0; margin-top: 0.2rem;
}
.pr-text p { color: rgba(248,246,242,0.42); font-size: 0.95rem; font-weight: 300; max-width: 40ch; line-height: 1.85; margin-bottom: 2rem; }
.pr-form {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 2.2rem;
}
.pr-form-title { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blood); font-weight: 600; margin-bottom: 1.4rem; }
.pr-fields     { display: flex; flex-direction: column; gap: 0.85rem; }
.pr-field      { display: flex; flex-direction: column; gap: 0.3rem; }
.pr-field label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(248,246,242,0.32); font-weight: 600; }
.pr-field input,
.pr-field select {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 4px; padding: 0.8rem 0.95rem; color: var(--white);
  font-family: var(--body); font-size: 0.88rem;
  transition: border-color 0.2s, background 0.2s; appearance: none; -webkit-appearance: none; width: 100%;
}
.pr-field input::placeholder { color: rgba(248,246,242,0.18); }
.pr-field select option       { background: var(--charcoal); color: var(--white); }
.pr-field input:focus,
.pr-field select:focus { outline: none; border-color: var(--blood); background: rgba(192,16,32,0.04); box-shadow: 0 0 0 3px rgba(192,16,32,0.1); }
.pr-note { font-size: 0.72rem; color: rgba(248,246,242,0.22); margin-top: 0.8rem; line-height: 1.6; }


/* ═══════════ STATS INLINE (merged with testimonials) ═══════════ */
.stats-inline {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 3rem 0; border-bottom: 1px solid var(--gray-light); flex-wrap: wrap;
}
.si-item          { text-align: center; flex: 1; min-width: 120px; }
.si-item .big-stat { font-family: var(--display); font-size: clamp(3rem, 5vw, 5rem); color: var(--blood); line-height: 1; letter-spacing: 0.02em; }
.si-item .big-stat-label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); margin-top: 0.5rem; font-weight: 400; }
.si-divider { width: 1px; height: 60px; background: var(--gray-light); flex-shrink: 0; }
.t-body { margin-top: 0; }


/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials { padding: 5rem 0; }
.t-slide { display: none; animation: tFadeIn 0.5s var(--ease-out) both; }
.t-slide.active { display: block; }
@keyframes tFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.t-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem); color: var(--black);
  line-height: 1.6; max-width: 68ch; margin-bottom: 2.2rem;
  position: relative; padding-left: 1.2rem;
}
.t-quote::before {
  content: '\201C'; position: absolute; left: -0.1rem; top: -0.3rem;
  font-size: 5rem; color: var(--blood); line-height: 1;
  font-family: var(--serif); opacity: 0.5;
}
.t-author  { display: flex; align-items: center; gap: 1rem; }
.t-avatar  { width: 40px; height: 40px; background: var(--blood); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 1.05rem; color: white; letter-spacing: 0.04em; flex-shrink: 0; }
.t-name    { font-weight: 700; font-size: 0.9rem; letter-spacing: -0.01em; }
.t-company { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-top: 0.1rem; }
.t-footer  { display: flex; align-items: center; justify-content: space-between; margin-top: 2.8rem; flex-wrap: wrap; gap: 1rem; }
.t-pips    { display: flex; gap: 0.5rem; align-items: center; }
.t-pip { width: 7px; height: 7px; border-radius: 50%; background: var(--gray-light); border: none; cursor: pointer; padding: 0; transition: 0.25s; }
.t-pip.active { background: var(--blood); width: 22px; border-radius: 3px; }
.t-controls { display: flex; gap: 0.75rem; }
.t-btn {
  width: 42px; height: 42px; border: 1px solid var(--gray-light); background: none;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: 0.2s; color: var(--black);
}
.t-btn:hover { border-color: var(--blood); background: var(--blood); color: white; }
.t-btn svg   { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }


/* ═══════════ CONTACT ═══════════ */
.contact-section           { padding: 5rem 0 6rem; background: var(--black); color: var(--white); }
.contact-section .section-title { margin-bottom: 0.8rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.55fr; gap: 4rem; margin-top: 2.5rem; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 0.9rem; margin-bottom: 1.8rem; }
.contact-icon {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
  transition: border-color 0.2s, background 0.2s;
}
.contact-detail:hover .contact-icon { border-color: var(--blood); background: rgba(192,16,32,0.08); }
.contact-icon svg   { width: 15px; height: 15px; stroke: var(--blood); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact-label      { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(248,246,242,0.3); margin-bottom: 0.2rem; }
.contact-value      { font-size: 0.9rem; color: var(--white); }
.contact-value a    { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-value a:hover { color: var(--blood); }
.contact-map {
  margin-top: 2rem; border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07); height: 180px; background: var(--stone); position: relative;
}
.contact-map iframe      { width: 100%; height: 100%; border: none; filter: grayscale(1) invert(1) contrast(0.85); }
.contact-map-label {
  position: absolute; top: 0.7rem; left: 0.7rem;
  background: var(--blood); color: white; font-size: 0.62rem; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.3rem 0.6rem; border-radius: 3px; font-weight: 600; pointer-events: none;
}
.contact-whatsapp {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  padding: 0.75rem 1.4rem; border: 1px solid rgba(255,255,255,0.12); border-radius: 3px; transition: 0.2s;
}
.contact-whatsapp:hover { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.35); color: #25d366; }
.contact-whatsapp svg   { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Contact form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field.full { grid-column: span 2; }
.form-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(248,246,242,0.38); font-weight: 600; }
.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 4px; padding: 0.82rem 0.95rem; color: var(--white);
  font-family: var(--body); font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  appearance: none; -webkit-appearance: none; width: 100%;
}
.form-field select { cursor: pointer; }
.form-field select option { background: var(--charcoal); color: var(--white); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none; border-color: var(--blood);
  background: rgba(192,16,32,0.04); box-shadow: 0 0 0 3px rgba(192,16,32,0.1);
}
.form-field.error input,
.form-field.error textarea,
.form-field.error select { border-color: rgba(255,100,80,0.6); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(248,246,242,0.18); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-error-msg { font-size: 0.7rem; color: rgba(255,120,100,0.8); margin-top: 0.2rem; display: none; }
.form-field.error .form-error-msg { display: block; }


/* ═══════════ FOOTER ═══════════ */
.footer { background: var(--charcoal); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: 1260px; margin: 0 auto; padding: 2.2rem 3rem; }
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem; padding-bottom: 1.8rem; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo { font-family: var(--display); font-size: 1.5rem; color: rgba(248,246,242,0.55); letter-spacing: 0.05em; line-height: 1; }
.footer-logo em { color: var(--blood); font-style: normal; }
.footer-links   { display: flex; gap: 1.8rem; flex-wrap: wrap; align-items: center; }
.footer-links a { font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(248,246,242,0.32); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--blood); }
.footer-socials { display: flex; gap: 0.9rem; align-items: center; }
.social-icon {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(248,246,242,0.42); text-decoration: none; transition: 0.2s; flex-shrink: 0;
}
.social-icon svg  { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.social-icon:hover { border-color: var(--blood); color: var(--blood); background: rgba(192,16,32,0.08); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.4rem; }
.footer-copy    { font-size: 0.7rem; color: rgba(248,246,242,0.2); }
.footer-tagline { font-size: 0.7rem; color: rgba(248,246,242,0.15); letter-spacing: 0.12em; text-transform: uppercase; }


/* ═══════════ FLOATING UI ═══════════ */
.sticky-cta {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--blood); color: white; font-family: var(--body);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 0.75rem 1.35rem; border-radius: 3px;
  box-shadow: 0 6px 22px rgba(192,16,32,0.45); transition: 0.25s var(--ease-bounce); z-index: 900;
}
.sticky-cta:hover { transform: scale(1.05) translateY(-2px); background: var(--blood-dark); }
.back-top {
  position: fixed; bottom: 2rem; left: 2rem; width: 42px; height: 42px;
  background: rgba(13,13,13,0.9); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; text-decoration: none; z-index: 900; transition: 0.2s; backdrop-filter: blur(8px);
}
.back-top:hover { background: var(--blood); border-color: var(--blood); }
.back-top svg   { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.wa-float {
  position: fixed; bottom: 5.2rem; right: 2rem; width: 44px; height: 44px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; text-decoration: none; z-index: 900;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: 0.25s var(--ease-bounce);
}
.wa-float:hover { transform: scale(1.1); background: #20b958; }
.wa-float svg   { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.wa-tooltip {
  position: absolute; right: 54px; top: 50%; transform: translateY(-50%);
  background: var(--black); color: white; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; white-space: nowrap; padding: 0.35rem 0.7rem; border-radius: 3px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }


/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }


/* ═══════════════════════════════════════════
   RESPONSIVE — desktop → mobile
═══════════════════════════════════════════ */
@media (min-width: 1400px) {
  .container   { max-width: 1380px; }
  .hero-content { padding: 0 4rem; padding-top: 8rem; }
  .hero-bottom  { padding: 0 4rem; }
}
@media (max-width: 1279px) {
  .container            { padding: 0 2.5rem; }
  .header               { padding: 1.1rem 2.5rem; }
  .header.scrolled      { padding: 0.75rem 2.5rem; }
  .hero-content         { padding: 0 2.5rem; padding-top: 7rem; gap: 2.5rem; }
  .hero-bottom          { padding: 0 2.5rem; }
  .nav                  { gap: 1.6rem; }
  .process-row:hover    { margin: 0 -2.5rem; padding: 2.5rem 2.5rem; }
  .footer-inner         { padding: 2rem 2.5rem; }
  .pr-inner             { gap: 3.5rem; }
}
@media (max-width: 1023px) {
  .container            { padding: 0 2rem; }
  .header               { padding: 1rem 2rem; }
  .header.scrolled      { padding: 0.7rem 2rem; }
  .nav                  { gap: 1.3rem; }
  .nav a                { font-size: 0.72rem; letter-spacing: 0.08em; }
  .nav .nav-cta         { padding: 0.45rem 1rem; }
  .hero-content         { grid-template-columns: 1fr; padding: 0 2rem; padding-top: 8rem; gap: 2rem; justify-items: center; text-align: center; }
  .hero-eyebrow         { justify-content: center; }
  .hero-sub             { max-width: 100%; }
  .hero-actions         { justify-content: center; }
  .hero-tagline-side    { display: none; }
  .hero-illustration    { width: 100%; max-width: 440px; }
  .hero-bottom          { padding: 0 2rem; }
  .section              { padding: 6rem 0; }
  .about-grid           { grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3.5rem; }
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .process-row          { grid-template-columns: 60px 180px 1fr; gap: 1.5rem; }
  .process-row:hover    { margin: 0 -2rem; padding: 2.5rem 2rem; }
  .contact-grid         { grid-template-columns: 1fr 1.4fr; gap: 3.5rem; }
  .contact-section      { padding: 4.5rem 0 5rem; }
  .portfolio-carousel   { margin: 0 -2rem; padding: 0 2rem; }
  .si-divider           { display: none; }
  .stats-inline         { justify-content: center; gap: 2rem; }
  .pr-inner             { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .pr-text p            { max-width: 100%; }
  .footer-inner         { padding: 2rem; }
  .footer-links         { gap: 1.4rem; }
}
@media (max-width: 767px) {
  .container            { padding: 0 1.5rem; }
  .header               { padding: 0.9rem 1.5rem; }
  .header.scrolled      { padding: 0.65rem 1.5rem; }
  .nav {
    display: none; flex-direction: column; position: fixed; inset: 0;
    background: rgba(13,13,13,0.97); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
    justify-content: center; align-items: center; gap: 2.2rem; z-index: 999;
  }
  .nav.open             { display: flex; }
  .nav a                { font-size: 1.15rem; letter-spacing: 0.13em; color: rgba(248,246,242,0.8); }
  .nav .nav-cta         { padding: 0.65rem 2rem; font-size: 0.95rem; }
  .menu-toggle          { display: flex; }
  .hero                 { padding: 0 0 4.5rem; }
  .hero-content         { padding: 0 1.5rem; padding-top: 7rem; gap: 1.5rem; }
  .hero-headline        { font-size: clamp(3.2rem, 10vw, 5.5rem); }
  .hero-bg-num          { display: none; }
  .hero-bottom          { padding: 0 1.5rem; bottom: 1.5rem; }
  .hero-scroll-ind      { display: none; }
  .hero-illustration    { max-width: 300px; }
  .section              { padding: 5rem 0; }
  .about-grid           { grid-template-columns: 1fr; gap: 2.5rem; margin-top: 3rem; }
  .stats-row            { gap: 2rem; }
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .svc-modal-head       { padding: 2rem 1.8rem 1.4rem; }
  .svc-modal-body       { padding: 1.6rem 1.8rem 2rem; }
  .process-row          { grid-template-columns: 50px 1fr; gap: 1rem; padding: 2rem 0; }
  .process-name         { padding-top: 0.4rem; }
  .process-desc         { grid-column: span 2; padding-top: 0.15rem; }
  .process-row:hover    { margin: 0 -1.5rem; padding: 2rem 1.5rem; }
  .portfolio-carousel   { margin: 0 -1.5rem; padding: 0 1.5rem; }
  .stats-inline         { gap: 1.5rem; padding: 2.5rem 0; }
  .si-item .big-stat    { font-size: clamp(2.5rem, 7vw, 3.5rem); }
  .contact-grid         { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-section      { padding: 4rem 0 5rem; }
  .contact-map          { height: 160px; }
  .form-grid            { grid-template-columns: 1fr 1fr; }
  .footer-inner         { padding: 1.8rem 1.5rem; }
  .footer-top           { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .footer-links         { gap: 1.2rem; }
  .footer-bottom        { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .sticky-cta           { bottom: 1.2rem; right: 1.2rem; font-size: 0.7rem; padding: 0.65rem 1.1rem; }
  .back-top             { bottom: 1.2rem; left: 1.2rem; width: 38px; height: 38px; }
  .wa-float             { bottom: 4.5rem; right: 1.2rem; width: 40px; height: 40px; }
  .pr-inner             { gap: 2.5rem; }
}
@media (max-width: 479px) {
  .container            { padding: 0 1.1rem; }
  .header               { padding: 0.85rem 1.1rem; }
  .hero-content         { padding: 0 1.1rem; padding-top: 6rem; }
  .hero-headline        { font-size: clamp(2.8rem, 12.5vw, 4rem); }
  .hero-headline .italic-line { font-size: 0.65em; }
  .hero-sub             { font-size: 0.92rem; }
  .hero-actions         { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero-illustration    { max-width: 260px; }
  .section-title        { font-size: clamp(2.2rem, 10vw, 3rem); }
  .services-grid        { grid-template-columns: 1fr; }
  .tile-num             { font-size: 4rem; }
  .portfolio-carousel   { margin: 0 -1.1rem; padding: 0 1.1rem; }
  .stats-inline         { flex-direction: column; align-items: center; gap: 1.5rem; padding: 2rem 0; }
  .form-grid            { grid-template-columns: 1fr; }
  .form-field.full      { grid-column: span 1; }
  .stats-row            { flex-direction: column; gap: 1.5rem; }
  .footer-inner         { padding: 1.5rem 1.1rem; }
  .footer-links         { gap: 0.9rem; flex-wrap: wrap; }
  .sticky-cta           { bottom: 1rem; right: 1rem; font-size: 0.68rem; padding: 0.6rem 1rem; }
  .back-top             { bottom: 1rem; left: 1rem; width: 36px; height: 36px; }
  .wa-float             { bottom: 4.2rem; right: 1rem; width: 38px; height: 38px; }
  .t-quote              { padding-left: 0.6rem; }
  .pr-inner             { grid-template-columns: 1fr; }
  .svc-turnaround       { flex-direction: column; }
}
@media (hover: none) and (pointer: coarse) {
  .service-tile:hover                { background: var(--white); }
  .service-tile:hover .tile-title,
  .service-tile:hover .tile-body    { color: var(--black); }
  .service-tile:hover .tile-num     { color: var(--off-white); }
  .service-tile:hover .tile-icon    { background: var(--off-white); }
  .service-tile:hover .tile-icon svg { stroke: var(--blood); }
  .service-tile:hover .tile-learn   { opacity: 0; }
  .btn-primary:hover, .btn-ghost:hover { transform: none; box-shadow: none; }
  .process-row:hover { background: transparent; margin: 0; padding: 2.5rem 0; }
}
