/*
=========================================================================
   WEBOPS STUDIO — styles.css v6.0
   Audit changes from v5.0:
   - Standardized gradient formula via tokens (--gradient-*)
   - Removed green live badges → orange neutral
   - Removed amber/purple accent badges → orange only
   - Reduced card hover effect stacking (max 2 simultaneous effects)
   - Consistent surface/border layering across all sections

   Tokens → Reset → Typography → Utilities → Layout → Buttons →
   Header/Nav → Hero → Sections → Cards/Components → Pages →
   Footer → Back to Top → Animations → Responsive
=========================================================================
*/

/*
─────────────────────────────────────────────────────────────────────────
   1) DESIGN TOKENS
─────────────────────────────────────────────────────────────────────────
*/

:root {
  /* Core backgrounds */
  --color-bg:        #07070C;
  --color-surface-1: #0e0e1a;
  --color-surface-2: #14141f;
  --color-white:     #ffffff;

  /* Text */
  --color-text-1: rgba(255,255,255,1.00);
  --color-text-2: rgba(255,255,255,0.78);
  --color-text-3: rgba(255,255,255,0.50);

  /* Brand */
  --color-purple:      #3B1E6D;
  --color-purple-lt:   #c3b9d9;
  --color-purple-glow: rgba(59,30,109,0.35);
  --color-orange:      #E8620A;
  --color-orange-lt:   #ff7c2a;
  --color-orange-glow: rgba(232,98,10,0.30);

  /* Borders / shadows */
  --color-border:        rgba(255,255,255,0.07);
  --color-border-purple: rgba(59,30,109,0.40);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.45);
  --shadow-lift: 0 18px 60px rgba(0,0,0,0.55);

  /* Typography */
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', 'Open Sans', sans-serif;
  --font-mono: 'Roboto Mono', monospace;

  /* Layout */
  --max-width:   1200px;
  --section-pad: 100px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /*
    GRADIENT SYSTEM — single source of truth.
    Every section background gradient pulls from here.
    Do not write inline gradients outside of hero background-image.
  */

  /* Standard page section overlay — top to bottom, dark to slightly lighter */
  --gradient-section:
    linear-gradient(
      to bottom,
      rgba(7,7,12,0.95) 0%,
      rgba(14,14,26,0.90) 100%
    );

  /* Hero overlay — deeper fade for readability over background image */
  --gradient-hero:
    linear-gradient(
      to bottom,
      rgba(7,7,12,0.60)  0%,
      rgba(7,7,12,0.45) 30%,
      rgba(7,7,12,0.78) 78%,
      rgba(7,7,12,1.00) 100%
    );

  /* Card — subtle diagonal depth, no color cast */
  --gradient-card:
    linear-gradient(
      135deg,
      rgba(20,20,31,1.00) 0%,
      rgba(14,14,26,1.00) 100%
    );

  /* Divider — horizontal fade for section separators */
  --gradient-divider:
    linear-gradient(
      to right,
      transparent 0%,
      rgba(59,30,109,0.20) 25%,
      rgba(195,185,217,0.10) 50%,
      rgba(59,30,109,0.20) 75%,
      transparent 100%
    );

  /* Ambient glow — purple left, orange right. Used on hero only. */
  --gradient-ambient:
    radial-gradient(circle at 15% 20%, rgba(59,30,109,0.18), transparent 55%),
    radial-gradient(circle at 85% 30%, rgba(232,98,10,0.10), transparent 55%);
}

/*
─────────────────────────────────────────────────────────────────────────
   2) RESET
─────────────────────────────────────────────────────────────────────────
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text-2);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--color-purple-lt);
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover { color: var(--color-white); }

ul { list-style: none; }

button, input, textarea, select { font: inherit; }

/* Subtle film grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/*
─────────────────────────────────────────────────────────────────────────
   3) TYPOGRAPHY
─────────────────────────────────────────────────────────────────────────
*/

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--color-text-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem);   font-weight: 700; margin-bottom: 0.5em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.3rem;  font-weight: 600; margin-bottom: 0.5em; }
h4 { font-size: 1rem;    font-weight: 600; color: var(--color-purple-lt); margin-bottom: 0.4em; }

p { font-size: 1rem; margin-bottom: 1em; }

/* Section label — Roboto Mono */
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 14px;
}

.section-label + h2 { padding-bottom: 16px; }

.section-label + h2::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, var(--color-orange), transparent);
  margin-top: 12px;
}

/*
─────────────────────────────────────────────────────────────────────────
   4) UTILITIES
─────────────────────────────────────────────────────────────────────────
*/

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

section { padding: var(--section-pad) 0; }

.text-center { text-align: center; }

.section-divider {
  height: 1px;
  background: var(--gradient-divider);
}

.section-intro {
  font-size: 1rem;
  color: var(--color-text-3);
  max-width: 600px;
  margin-bottom: 40px;
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/*
─────────────────────────────────────────────────────────────────────────
   5) BUTTONS
─────────────────────────────────────────────────────────────────────────
*/

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}

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

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
}

.btn-primary:hover {
  background: var(--color-orange-lt);
  border-color: var(--color-orange-lt);
  color: var(--color-white);
  box-shadow: 0 4px 20px var(--color-orange-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--color-purple-lt);
  border-color: rgba(59,30,109,0.50);
}

.btn-ghost:hover {
  background: rgba(59,30,109,0.15);
  border-color: var(--color-purple);
  color: var(--color-white);
  box-shadow: 0 4px 16px var(--color-purple-glow);
}

.btn-sm { padding: 9px 18px; font-size: 0.74rem; }

/*
─────────────────────────────────────────────────────────────────────────
   6) HEADER + NAV
─────────────────────────────────────────────────────────────────────────
*/

#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease;
}

#site-header.scrolled {
  background: rgba(7,7,12,0.96);
  border-bottom-color: rgba(59,30,109,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

#site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.site-logo a {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-logo a:hover { color: var(--color-white); }

.logo-ops { color: var(--color-purple); }

.logo-tagline {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  color: var(--color-text-3);
  text-transform: uppercase;
  margin-top: 4px;
}

.main-nav { display: flex; align-items: center; gap: 32px; }

.nav-links { display: flex; align-items: center; gap: 28px; }

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-2);
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--color-orange);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--color-white); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a.active { color: var(--color-orange); }

.nav-cta { margin-left: 8px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 26px; height: 2px;
  background: var(--color-white);
  position: relative;
  transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  width: 26px; height: 2px;
  background: var(--color-white);
  position: absolute;
  transition: transform 0.3s ease, top 0.3s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after  { top:  8px; }

.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { transform: translateY(8px)  rotate(45deg); }
.nav-toggle.active .hamburger::after  { transform: translateY(-8px) rotate(-45deg); }

/*
─────────────────────────────────────────────────────────────────────────
   7) HERO — background image set entirely in CSS
─────────────────────────────────────────────────────────────────────────
*/

.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  background:
    var(--gradient-hero),
    url("../images/Background1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Ambient glow — hero only */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--gradient-ambient);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-up 0.7s 0.1s forwards;
}

.eyebrow-line {
  width: 32px; height: 1px;
  background: var(--color-orange);
  opacity: 0.7;
  flex-shrink: 0;
}

.eyebrow-text {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-orange);
}

/* Typographic hero title — three-line system */
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-up 0.7s 0.25s forwards;
}

.hero-title-line1 {
  font-size: clamp(3.5rem, 9vw, 7rem) !important;
  letter-spacing: 0.06em;
  color: var(--color-text-1);
  display: block;
}

.hero-title-accent {
  font-size: clamp(3.5rem, 9vw, 7rem) !important;
  letter-spacing: 0.04em;
  color: var(--color-orange);
  text-shadow: 0 0 48px rgba(232,98,10,0.25);
  display: block;
}

.hero-title-line2 {
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  letter-spacing: 0.14em;
  color: var(--color-text-3);
  font-weight: 600;
  margin-top: 14px;
  display: block;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.85;
  margin-bottom: 40px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.60);
  opacity: 0;
  animation: fade-up 0.7s 0.38s forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
  justify-content: center;
  opacity: 0;
  animation: fade-up 0.7s 0.50s forwards;
}

/* Spec pill strip — Roboto Mono */
.hero-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  opacity: 0;
  animation: fade-up 0.7s 0.62s forwards;
}

.proof-pill {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pill-label {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange);
  padding: 2px 6px;
  border: 1px solid rgba(232,98,10,0.30);
  border-radius: 2px;
  background: rgba(232,98,10,0.06);
  flex-shrink: 0;
}

.pill-value {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.10em;
  color: var(--color-text-3);
  text-transform: uppercase;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  color: var(--color-text-3);
  text-transform: uppercase;
  opacity: 0;
  animation: fade-up 0.7s 1.0s forwards;
}

.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--color-orange), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

/*
─────────────────────────────────────────────────────────────────────────
   8) PAGE HERO (About / Services / Portfolio / Contact)
─────────────────────────────────────────────────────────────────────────
*/

.page-hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background: var(--color-surface-1);
  border-bottom: 1px solid var(--color-border);
}

.page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 20px;
}

.page-hero__eyebrow-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--color-orange);
  opacity: 0.7;
}

.page-hero h1 {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: var(--color-text-3);
  max-width: 560px;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

/*
─────────────────────────────────────────────────────────────────────────
   9) ICON SYSTEM
─────────────────────────────────────────────────────────────────────────
*/

.icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(232,98,10,0.07);
  border: 1px solid rgba(232,98,10,0.15);
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

/* Removed box-shadow from icon hover — was stacking on top of card hover */
.icon-wrap:hover {
  background: rgba(232,98,10,0.12);
  border-color: rgba(232,98,10,0.30);
}

.value-icon,
.service-tile-icon,
.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card-icon {
  margin-bottom: 0;
  padding-top: 4px;
  width: 56px;
  height: 56px;
  background: rgba(232,98,10,0.07);
  border: 1px solid rgba(232,98,10,0.18);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.value-icon svg,
.service-tile-icon svg,
.service-card-icon svg,
.icon-wrap svg {
  width: 22px; height: 22px;
  stroke: var(--color-orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(232,98,10,0.22));
  transition: filter 0.2s ease;
}

.value-item:hover .value-icon svg,
.service-tile:hover .service-tile-icon svg,
.service-card:hover .service-card-icon svg {
  filter: drop-shadow(0 0 8px rgba(232,98,10,0.45));
}

/*
─────────────────────────────────────────────────────────────────────────
   10) VALUE PROPS
─────────────────────────────────────────────────────────────────────────
*/

.value-props-section { background: var(--color-surface-1); }

.value-props-section .section-label + h2 { margin-bottom: 40px; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.value-item {
  background: var(--color-surface-2);
  padding: 36px 28px;
  text-align: center;
  transition: background 0.2s ease;
}

.value-item:hover { background: var(--color-surface-1); }

.value-item h3 {
  font-size: 0.85rem;
  color: var(--color-white);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 0.82rem;
  color: var(--color-text-3);
  margin: 0;
  line-height: 1.6;
}

/*
─────────────────────────────────────────────────────────────────────────
   11) BUILD STANDARDS SECTION
─────────────────────────────────────────────────────────────────────────
*/

.build-standards-section { background: var(--color-bg); }

.build-standards-intro {
  font-size: 1rem;
  color: var(--color-text-2);
  max-width: 640px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
  max-width: 820px;
  margin-bottom: 40px;
}

.standard-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-2);
  line-height: 1.6;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.standard-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(232,98,10,0.08);
  border: 1px solid rgba(232,98,10,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.standard-check svg {
  width: 9px; height: 9px;
  stroke: var(--color-orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.standards-cta { margin-top: 8px; }

/*
─────────────────────────────────────────────────────────────────────────
   12) FEATURED WORK / PROJECT CARDS
─────────────────────────────────────────────────────────────────────────
*/

.featured-work-section { background: var(--color-surface-1); }

.featured-work-section .section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.project-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

/* Reduced: was transform + box-shadow + border-color (3 effects) → now transform + border-color (2) */
.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59,30,109,0.40);
}

.project-card-img-placeholder {
  width: 100%; height: 200px;
  background: var(--color-surface-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-3);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }

.project-card-body p {
  font-size: 0.9rem;
  color: var(--color-text-3);
  flex: 1;
  margin-bottom: 20px;
}

.project-card-body .btn { align-self: flex-start; }

/* Spec badge system — orange only */
.spec-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.spec-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.50rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  border: 1px solid;
}

/* Primary badge — orange */
.badge-type {
  color: var(--color-orange);
  border-color: rgba(232,98,10,0.25);
  background: rgba(232,98,10,0.07);
}

/* Status badges — orange accent, neutral styling. Green/amber/purple removed. */
.badge-live {
  color: var(--color-orange);
  border-color: rgba(232,98,10,0.25);
  background: rgba(232,98,10,0.07);
}

.badge-dev {
  color: var(--color-text-3);
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

.badge-concept {
  color: var(--color-text-3);
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

/*
─────────────────────────────────────────────────────────────────────────
   13) SERVICES TEASER (Home)
─────────────────────────────────────────────────────────────────────────
*/

.services-teaser-section { background: var(--color-bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

.service-tile {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

/* Reduced: was transform + border + box-shadow → now transform + border */
.service-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(232,98,10,0.25);
}

.service-tile h3 { font-size: 1rem; margin-bottom: 10px; }

.service-tile p {
  font-size: 0.88rem;
  color: var(--color-text-3);
  margin: 0;
  line-height: 1.6;
}

/*
─────────────────────────────────────────────────────────────────────────
   14) SERVICES PAGE
─────────────────────────────────────────────────────────────────────────
*/

.services-page-section { background: var(--color-bg); }

.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.service-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,98,10,0.20);
}

.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.service-card .service-tagline {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-orange);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.service-includes { margin-bottom: 20px; flex: 1; }

.service-includes li {
  font-size: 0.88rem;
  color: var(--color-text-2);
  padding: 5px 0 5px 16px;
  position: relative;
}

.service-includes li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-size: 0.8rem;
}

.service-timeline {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--color-text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pricing-note {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-purple);
  border-radius: var(--radius-md);
  padding: 36px;
  text-align: center;
  margin-bottom: 60px;
}

.pricing-note h3 { color: var(--color-orange); margin-bottom: 12px; }
.pricing-note p  { color: var(--color-text-2); max-width: 560px; margin: 0 auto; }

/*
─────────────────────────────────────────────────────────────────────────
   15) FAQ
─────────────────────────────────────────────────────────────────────────
*/

.faq-section { background: var(--color-surface-1); }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:first-child { border-top: 1px solid var(--color-border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-1);
  text-align: left;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-question:hover,
.faq-question.open { color: var(--color-orange); }

.faq-icon {
  width: 20px; height: 20px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--color-text-3);
  transition: transform 0.3s ease, color 0.2s ease;
}

.faq-question.open .faq-icon {
  transform: rotate(45deg);
  color: var(--color-orange);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open { max-height: 420px; padding-bottom: 20px; }

.faq-answer p {
  font-size: 0.95rem;
  color: var(--color-text-2);
  margin: 0;
  line-height: 1.75;
}

/*
─────────────────────────────────────────────────────────────────────────
   16) PORTFOLIO PAGE
─────────────────────────────────────────────────────────────────────────
*/

.portfolio-section { background: var(--color-bg); }

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text-3);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.filter-btn:hover { border-color: var(--color-orange); color: var(--color-orange); }

.filter-btn.active {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

/* Reduced: was transform + box-shadow + border-color → now transform + border-color */
.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,98,10,0.25);
}

.portfolio-card[data-hidden="true"] { display: none; }

.portfolio-card-img-placeholder {
  width: 100%; height: 200px;
  background: var(--color-surface-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--color-text-3);
  text-transform: uppercase;
}

.portfolio-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  background: rgba(232,98,10,0.08);
  color: var(--color-orange);
  border: 1px solid rgba(232,98,10,0.20);
}

.portfolio-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; }

.portfolio-card-body p {
  font-size: 0.88rem;
  color: var(--color-text-3);
  flex: 1;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Status badge — orange for live, neutral for in-progress/concept */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.status-live {
  background: rgba(232,98,10,0.08);
  color: var(--color-orange);
  border: 1px solid rgba(232,98,10,0.25);
}

.status-progress {
  background: rgba(255,255,255,0.04);
  color: var(--color-text-3);
  border: 1px solid rgba(255,255,255,0.10);
}

.status-concept {
  background: rgba(255,255,255,0.04);
  color: var(--color-text-3);
  border: 1px solid rgba(255,255,255,0.10);
}

.status-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

/* Case study */
.case-study {
  background: var(--color-surface-1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 40px;
}

.case-study-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.case-study-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 28px;
}

.meta-item { display: flex; flex-direction: column; gap: 4px; }

.meta-label {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-3);
}

.meta-value { font-size: 0.9rem; color: var(--color-text-2); }

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.case-section h4 {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--color-orange);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.case-section p,
.case-section li {
  font-size: 0.92rem;
  color: var(--color-text-2);
  line-height: 1.7;
}

.case-section ul li {
  padding-left: 14px;
  position: relative;
  margin-bottom: 6px;
}

.case-section ul li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--color-orange);
}

/*
─────────────────────────────────────────────────────────────────────────
   17) ABOUT PAGE
─────────────────────────────────────────────────────────────────────────
*/

.about-section { background: var(--color-bg); }

.about-two-col {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.about-process {
  background: var(--color-surface-1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px;
  margin-bottom: 40px;
}

.about-process h3 { margin-bottom: 28px; font-size: 1rem; }

.process-steps { display: flex; flex-direction: column; gap: 24px; }

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

.step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h4 { font-size: 0.85rem; color: var(--color-white); margin-bottom: 4px; }
.step-content p  { font-size: 0.85rem; color: var(--color-text-3); margin: 0; line-height: 1.6; }

.about-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-purple);
  border-radius: var(--radius-md);
  padding: 32px;
  position: sticky;
  top: 90px;
}

.about-card h3 {
  font-size: 0.85rem;
  margin-bottom: 24px;
  color: var(--color-orange);
}

.expect-list { display: flex; flex-direction: column; gap: 14px; }
.expect-item { display: flex; gap: 12px; align-items: flex-start; }

.expect-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(232,98,10,0.08);
  border: 1px solid rgba(232,98,10,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.expect-check svg { width: 9px; height: 9px; stroke: var(--color-orange); fill: none; }

.expect-item p { font-size: 0.85rem; color: var(--color-text-2); margin: 0; line-height: 1.5; }

.bio-section { background: var(--color-surface-1); }

.bio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.bio-block {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.bio-block h4 {
  color: var(--color-orange);
  margin-bottom: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.bio-block p { font-size: 0.88rem; color: var(--color-text-2); margin: 0; line-height: 1.65; }

/*
─────────────────────────────────────────────────────────────────────────
   18) CONTACT PAGE
─────────────────────────────────────────────────────────────────────────
*/

.contact-section { background: var(--color-bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--color-surface-1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px;
}

.contact-form-wrap h2 { font-size: 1.4rem; margin-bottom: 28px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-3);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-1);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(232,98,10,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-3); }

.select-wrap { position: relative; }

.select-wrap::after {
  content: "▾";
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-3);
  pointer-events: none;
  font-size: 0.8rem;
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--color-surface-1); }

.radio-group { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 4px; }

.radio-option { display: flex; align-items: center; gap: 8px; cursor: pointer; }

.radio-option input[type="radio"] { display: none; }

.radio-custom {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
  flex-shrink: 0;
}

.radio-custom::after {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-orange);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom { border-color: var(--color-orange); }
.radio-option input[type="radio"]:checked + .radio-custom::after { opacity: 1; }
.radio-option span { font-size: 0.85rem; color: var(--color-text-2); }

.contact-info-panel {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-purple);
  border-radius: var(--radius-md);
  padding: 36px;
  position: sticky;
  top: 90px;
}

.contact-info-panel h3 {
  font-size: 0.85rem;
  color: var(--color-orange);
  margin-bottom: 28px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.info-label {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-3);
  margin-bottom: 5px;
}

.info-value { font-size: 0.92rem; color: var(--color-text-1); }
.info-value a { color: var(--color-text-1); }
.info-value a:hover { color: var(--color-orange); }

.what-next h4 {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: var(--color-orange);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.next-steps { display: flex; flex-direction: column; gap: 12px; }
.next-step  { display: flex; gap: 12px; align-items: flex-start; }

.next-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(232,98,10,0.08);
  border: 1px solid rgba(232,98,10,0.25);
  color: var(--color-orange);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.next-step p {
  font-size: 0.82rem;
  color: var(--color-text-3);
  margin: 0;
  line-height: 1.5;
  padding-top: 2px;
}

.form-status {
  margin: 14px 0 18px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  color: var(--color-text-2);
  font-size: 0.9rem;
  display: none;
}

.form-status.success {
  display: block;
  border-color: rgba(232,98,10,0.35);
  background: rgba(232,98,10,0.08);
  color: rgba(255,255,255,0.92);
}

.form-status.error {
  display: block;
  border-color: rgba(239,68,68,0.35);
  background: rgba(239,68,68,0.08);
  color: rgba(255,255,255,0.92);
}

/*
─────────────────────────────────────────────────────────────────────────
   19) TESTIMONIAL
─────────────────────────────────────────────────────────────────────────
*/

.testimonial-section { background: var(--color-surface-1); }

.testimonial-block {
  max-width: 740px;
  margin: 0 auto;
  background: var(--color-surface-2);
  border: 1px solid rgba(59,30,109,0.20);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.testimonial-block blockquote {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-style: italic;
  color: var(--color-text-1);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-block cite {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-orange);
  font-style: normal;
}

/*
─────────────────────────────────────────────────────────────────────────
   20) EMAIL SIGNUP SECTION
─────────────────────────────────────────────────────────────────────────
*/

.email-signup-section {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.email-signup-section h2 { margin-bottom: 14px; }

.email-signup-sub {
  color: var(--color-text-3);
  font-size: 0.95rem;
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.email-embed-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: var(--color-surface-1);
  border: 1px solid var(--color-border-purple);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}

.email-microcopy {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-3);
  margin-top: 18px;
  margin-bottom: 0;
}

/*
─────────────────────────────────────────────────────────────────────────
   21) CTA STRIP
─────────────────────────────────────────────────────────────────────────
*/

.cta-strip {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border);
  padding: 80px 0;
  text-align: center;
}

.cta-strip h2 { margin-bottom: 16px; }

.cta-strip p {
  color: var(--color-text-3);
  max-width: 480px;
  margin: 0 auto 36px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/*
─────────────────────────────────────────────────────────────────────────
   22) FOOTER
─────────────────────────────────────────────────────────────────────────
*/

footer {
  background: var(--color-bg);
  border-top: 1px solid rgba(59,30,109,0.15);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 28px;
}

.footer-brand .site-logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.85rem;
  color: var(--color-text-3);
  max-width: 260px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-text-3);
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.88rem; color: var(--color-text-3); transition: color 0.2s ease; }
.footer-col ul a:hover { color: var(--color-orange); }

.footer-contact-items { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item  { font-size: 0.85rem; color: var(--color-text-3); }
.footer-contact-item a { color: var(--color-text-3); }
.footer-contact-item a:hover { color: var(--color-orange); }

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

.footer-bottom p,
.footer-bottom a {
  font-size: 0.78rem;
  color: var(--color-text-3);
  margin: 0;
}

.footer-bottom a:hover { color: var(--color-orange); }

/*
─────────────────────────────────────────────────────────────────────────
   23) BACK TO TOP
─────────────────────────────────────────────────────────────────────────
*/

.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 500;
  width: 42px; height: 42px;
  background: var(--color-orange);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
  box-shadow: 0 4px 16px var(--color-orange-glow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-orange-lt);
  transform: translateY(-2px);
}

/*
─────────────────────────────────────────────────────────────────────────
   24) ANIMATIONS
─────────────────────────────────────────────────────────────────────────
*/

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1.0; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/*
─────────────────────────────────────────────────────────────────────────
   25) RESPONSIVE
─────────────────────────────────────────────────────────────────────────
*/

@media (max-width: 1024px) {
  .project-grid           { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid         { grid-template-columns: repeat(2, 1fr); }
  .about-two-col          { grid-template-columns: 1fr; }
  .about-card             { position: static; }
  .contact-grid           { grid-template-columns: 1fr; }
  .contact-info-panel     { position: static; }
  .case-study-grid        { grid-template-columns: 1fr; }
  .footer-grid            { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .nav-toggle { display: block; }
  .nav-cta    { display: none; }
  .main-nav   { gap: 16px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    height: 100vh;
    background: rgba(7,7,12,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
    backdrop-filter: blur(16px);
    padding-top: 80px;
  }

  .nav-links.active { display: flex; }
  .nav-links a { font-size: 1.4rem; }

  .hero-section { padding: 120px 0 80px; }

  .hero-title-line1,
  .hero-title-accent { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-title-line2  { font-size: clamp(0.8rem, 3.5vw, 1.1rem); margin-top: 10px; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }

  .hero-proof-strip { gap: 10px 16px; }

  .value-grid    { grid-template-columns: repeat(2, 1fr); }

  .project-grid,
  .portfolio-grid,
  .services-grid,
  .bio-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .services-detailed-grid { grid-template-columns: 1fr !important; }

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

  .page-hero { padding: 120px 0 60px; }

  .case-study        { padding: 28px; }
  .contact-form-wrap { padding: 28px; }
  .testimonial-block { padding: 32px 24px; }
  .email-embed-wrap  { padding: 24px 20px; }

  .featured-work-section .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .value-grid        { grid-template-columns: 1fr; }
  .portfolio-filters { gap: 8px; }
  .filter-btn        { font-size: 0.62rem; padding: 7px 14px; }
  .hero-proof-strip  { flex-direction: column; gap: 10px; }
}

@media (min-width: 769px) {
  .nav-links  { display: flex !important; }
  .nav-toggle { display: none  !important; }
}
