/* ============================================================
   PIXELWORX STUDIO — Main Stylesheet
   Modern Minimalist Theme · v1.0.0
   ============================================================ */

/* ─── RESET & ROOT ─────────────────────────────────────── */
:root {
  --black:      #111111;
  --charcoal:   #36454F;
  --slate:      #708090;
  --light:      #D3D3D3;
  --white:      #FAFAF8;
  --accent:     #C9A96E;
  --brand:      #ff4d00;
  --bg:         #F5F4F1;
  --card-bg:    #EEEDE9;
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --transition:   0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── NAV ───────────────────────────────────────────────── */
.pws-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 4rem;
  background: rgba(245, 244, 241, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(211, 211, 211, 0.4);
  transition: border-color var(--transition);
}

.pws-nav.scrolled { border-bottom-color: rgba(211,211,211,0.7); }

.nav-logo {
  text-decoration: none;
  display: flex; align-items: center;
  height: 28px;
}
.nav-logo svg { height: 28px; width: auto; }

.nav-links {
  display: flex; gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }

.nav-cta {
  font-family: var(--font-display) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  color: var(--white) !important;
  background: var(--charcoal) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 2rem !important;
  transition: background 0.2s !important;
  text-transform: none !important;
}
.nav-cta:hover { background: var(--black) !important; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--charcoal); transition: var(--transition);
}

/* Mobile nav open state */
.nav-links.is-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 73px; left: 0; right: 0;
  background: rgba(245,244,241,0.97);
  backdrop-filter: blur(20px);
  padding: 2rem 4rem;
  border-bottom: 1px solid var(--light);
  gap: 1.5rem;
  align-items: flex-start;
}

/* ─── HERO ──────────────────────────────────────────────── */
.pws-hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 4rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(8rem, 18vw, 22rem);
  color: rgba(54, 69, 79, 0.045);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--transition) 0.3s forwards;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 7.5vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--charcoal);
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 0.9s var(--transition) 0.5s forwards;
}
.hero-headline em {
  font-style: italic; font-weight: 400; color: var(--slate);
}

.hero-bottom {
  margin-top: 3rem;
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--transition) 0.8s forwards;
}

.hero-sub {
  font-size: 1rem; font-weight: 300;
  color: var(--slate); max-width: 380px; line-height: 1.7;
}

.hero-meta {
  text-align: right; font-size: 0.75rem;
  letter-spacing: 0.06em; color: var(--light); line-height: 2;
}
.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--charcoal); line-height: 1;
}

.hero-scroll {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--light);
  margin-top: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--transition) 1.1s forwards;
}
.hero-scroll::before {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--light);
}

/* ─── MARQUEE ────────────────────────────────────────────── */
.marquee-wrap {
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
  padding: 1rem 0; overflow: hidden;
  background: var(--charcoal);
}
.marquee-track {
  display: flex; gap: 3rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap; width: max-content;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--light); flex-shrink: 0;
  display: flex; align-items: center; gap: 3rem;
}
.marquee-item::after {
  content: '◆'; font-size: 0.45rem; color: var(--accent);
}

/* ─── SECTION SHARED ─────────────────────────────────────── */
.pws-section { padding: 8rem 4rem; }

.section-label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 3rem;
}
.section-label::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.pws-about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 8rem 4rem;
}

.about-left .section-title { max-width: 460px; margin-bottom: 2rem; }
.about-left p {
  color: var(--slate); font-size: 1.05rem;
  line-height: 1.8; font-weight: 300; max-width: 420px;
}
.about-left p + p { margin-top: 1.2rem; }

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  margin-top: 3rem;
  border-top: 1px solid var(--light);
  border-left: 1px solid var(--light);
}
.stat {
  padding: 1.8rem;
  border-right: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 800;
  letter-spacing: -0.04em; color: var(--charcoal); line-height: 1;
}
.stat-label {
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--slate); margin-top: 0.4rem;
}

.about-right { position: relative; }
.about-img-frame {
  width: 100%; aspect-ratio: 3/4;
  background: var(--card-bg); border-radius: 4px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-img-inner {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  padding: 2rem;
}
.about-img-inner svg { width: 180px; height: 180px; }

.about-caption {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--slate); text-align: center;
}

.about-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--charcoal); color: var(--white);
  padding: 1.2rem 1.5rem; border-radius: 4px;
}
.about-badge span {
  display: block; font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1;
}
.about-badge small {
  display: block; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--slate); margin-top: 0.3rem;
}

/* ─── SERVICES ────────────────────────────────────────────── */
.pws-services { background: var(--bg); padding: 8rem 4rem; }

.services-header {
  display: flex; justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem; padding-bottom: 2rem;
  border-bottom: 1px solid var(--light);
}
.services-header-right {
  max-width: 280px; font-size: 0.9rem;
  color: var(--slate); line-height: 1.7; font-weight: 300;
}

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--light);
  border-left: 1px solid var(--light);
}

.service-card {
  padding: 2.5rem;
  border-right: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
  transition: background var(--transition);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.service-card:hover::after { width: 100%; }
.service-card:hover { background: var(--white); }

.service-num {
  font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.15em; color: var(--accent); margin-bottom: 2rem;
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  letter-spacing: -0.02em; color: var(--charcoal);
  margin-bottom: 0.8rem; line-height: 1.2;
}
.service-desc {
  font-size: 0.88rem; color: var(--slate);
  line-height: 1.7; font-weight: 300;
}
.service-tags {
  margin-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.tag {
  font-size: 0.68rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--slate);
  border: 1px solid var(--light);
  padding: 0.25rem 0.6rem; border-radius: 2rem;
}

/* ─── WORKS ───────────────────────────────────────────────── */
.pws-works {
  background: var(--charcoal); padding: 8rem 4rem;
}
.pws-works .section-label { color: var(--accent); }
.pws-works .section-label::before { background: var(--accent); }
.pws-works .section-title { color: var(--white); margin-bottom: 1rem; }
.works-meta {
  font-size: 0.88rem; color: var(--slate);
  max-width: 320px; line-height: 1.7; margin-bottom: 4rem; font-weight: 300;
}

.works-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5px; background: rgba(255,255,255,0.06);
}
.work-card {
  background: rgba(54, 69, 79, 0.6);
  padding: 3rem; position: relative; overflow: hidden;
  cursor: pointer; transition: background var(--transition);
  aspect-ratio: 4/3;
  display: flex; flex-direction: column; justify-content: flex-end;
  text-decoration: none;
}
.work-card:hover { background: rgba(54, 69, 79, 0.3); }

.work-card-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.07;
  font-family: var(--font-display);
  font-size: 10rem; font-weight: 800; color: var(--white);
  transition: opacity var(--transition), transform var(--transition);
  letter-spacing: -0.05em; pointer-events: none;
}
.work-card:hover .work-card-bg { opacity: 0.14; transform: scale(1.05); }

.work-card-thumb {
  position: absolute; inset: 0;
  opacity: 0.25; transition: opacity var(--transition);
}
.work-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.work-card:hover .work-card-thumb { opacity: 0.4; }

.work-category {
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.7rem;
  position: relative; z-index: 1;
}
.work-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--white); letter-spacing: -0.02em;
  line-height: 1.15; margin-bottom: 0.5rem;
  position: relative; z-index: 1;
}
.work-desc {
  font-size: 0.82rem; color: rgba(211,211,211,0.7);
  line-height: 1.6; font-weight: 300;
  position: relative; z-index: 1;
}

.work-arrow {
  position: absolute; top: 2.5rem; right: 2.5rem;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem;
  opacity: 0; transform: translateY(8px);
  transition: var(--transition); z-index: 1;
}
.work-card:hover .work-arrow { opacity: 1; transform: translateY(0); }

/* ─── SINGLE WORK ─────────────────────────────────────────── */
.single-work-hero {
  min-height: 60vh;
  background: var(--charcoal);
  display: flex; align-items: flex-end;
  padding: 8rem 4rem 4rem;
  position: relative; overflow: hidden;
}
.single-work-hero .work-category { font-size: 0.8rem; margin-bottom: 1rem; }
.single-work-hero .work-title { font-size: clamp(2rem, 5vw, 5rem); }

.single-work-content {
  max-width: 760px; margin: 5rem auto; padding: 0 4rem;
}
.single-work-content p {
  font-size: 1.05rem; color: var(--slate);
  line-height: 1.85; font-weight: 300; margin-bottom: 1.5rem;
}
.single-work-content h2 {
  font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--charcoal); margin: 3rem 0 1rem;
}

.work-featured-image {
  width: 100%; aspect-ratio: 16/9;
  background: var(--card-bg); overflow: hidden;
}
.work-featured-image img { width: 100%; height: 100%; object-fit: cover; }

/* ─── PROCESS ─────────────────────────────────────────────── */
.pws-process { background: var(--white); padding: 8rem 4rem; }

.process-layout {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 6rem; align-items: start;
}
.process-left .section-title { margin-bottom: 1.5rem; }
.process-left p {
  font-size: 0.95rem; color: var(--slate);
  line-height: 1.8; font-weight: 300;
}

.process-steps { display: flex; flex-direction: column; }
.process-step {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 2rem; padding: 2.5rem 0;
  border-bottom: 1px solid var(--light);
  align-items: start;
}
.process-step:first-child { border-top: 1px solid var(--light); }

.step-num {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; color: var(--accent); padding-top: 0.3rem;
}
.step-name {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.step-desc {
  font-size: 0.88rem; color: var(--slate);
  line-height: 1.7; font-weight: 300;
}

/* ─── SUB-BRANDS ─────────────────────────────────────────── */
.pws-subbands { background: var(--bg); padding: 6rem 4rem; }

.brands-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.brand-card {
  padding: 2.8rem; border: 1px solid var(--light);
  border-radius: 4px; background: var(--white);
  transition: var(--transition); position: relative; overflow: hidden;
}
.brand-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.brand-card:hover::before { transform: scaleX(1); }
.brand-card:hover { border-color: var(--charcoal); }

.brand-icon {
  width: 48px; height: 48px; background: var(--charcoal);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.8rem;
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.9rem; color: var(--white); letter-spacing: -0.02em;
}
.brand-name {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 0.5rem; letter-spacing: -0.02em;
}
.brand-tagline {
  font-size: 0.78rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
}
.brand-desc {
  font-size: 0.88rem; color: var(--slate); line-height: 1.7; font-weight: 300;
}

/* ─── TEAM ────────────────────────────────────────────────── */
.pws-team { background: var(--white); padding: 8rem 4rem; }

.team-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  margin-top: 4rem;
  border-top: 1px solid var(--light);
  border-left: 1px solid var(--light);
}
.team-card {
  border-right: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
  padding: 2rem 1.5rem;
  transition: background var(--transition);
}
.team-card:hover { background: var(--bg); }

.team-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; color: var(--charcoal);
  margin-bottom: 1.2rem;
  border: 2px solid var(--light); background: var(--card-bg);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }

.team-name {
  font-family: var(--font-display); font-size: 0.95rem;
  font-weight: 700; color: var(--charcoal);
  margin-bottom: 0.25rem; letter-spacing: -0.01em;
}
.team-role {
  font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem;
}
.team-bio {
  font-size: 0.8rem; color: var(--slate); line-height: 1.6; font-weight: 300;
}

/* ─── CONTACT ─────────────────────────────────────────────── */
.pws-contact {
  background: var(--black); padding: 9rem 4rem;
}
.contact-inner { max-width: 680px; }

.pws-contact .section-label { color: var(--accent); }
.pws-contact .section-label::before { background: var(--accent); }

.contact-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 0.95; letter-spacing: -0.035em;
  color: var(--white); margin-bottom: 2rem;
}
.contact-title em {
  font-style: italic; font-weight: 400; color: var(--slate);
}
.contact-sub {
  font-size: 1rem; color: rgba(211,211,211,0.6);
  line-height: 1.7; font-weight: 300;
  max-width: 440px; margin-bottom: 3rem;
}

.contact-form {
  display: flex; flex-direction: column; gap: 1.2rem;
  max-width: 520px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--slate);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); padding: 0.9rem 1rem;
  font-family: var(--font-body); font-size: 0.9rem;
  border-radius: 2px; outline: none;
  transition: border-color 0.2s; resize: none;
}
.form-group select option { background: var(--black); color: var(--white); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

.form-submit {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: var(--accent); color: var(--black);
  font-family: var(--font-display); font-size: 0.9rem;
  font-weight: 700; letter-spacing: 0.04em;
  padding: 1rem 2rem; border: none; border-radius: 2rem;
  cursor: pointer; transition: var(--transition);
  margin-top: 0.5rem; align-self: flex-start;
}
.form-submit:hover { background: var(--white); transform: translateX(4px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-message {
  font-size: 0.85rem; padding: 0.8rem;
  border-radius: 2px; display: none;
}
.form-message.success {
  background: rgba(201,169,110,0.15);
  color: var(--accent); border: 1px solid rgba(201,169,110,0.3);
  display: block;
}
.form-message.error {
  background: rgba(255,77,0,0.1);
  color: #ff4d00; border: 1px solid rgba(255,77,0,0.3);
  display: block;
}

.contact-details {
  margin-top: 4rem; padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 4rem;
}
.contact-detail-label {
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--slate); margin-bottom: 0.5rem;
}
.contact-detail-value {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 500; color: var(--white);
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.pws-footer {
  background: #0D0D0D; padding: 3rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-left { display: flex; align-items: center; gap: 1rem; }
.footer-logo svg { height: 22px; width: auto; }
.footer-sep { color: rgba(255,255,255,0.15); }
.footer-reg { font-size: 0.72rem; color: rgba(255,255,255,0.25); letter-spacing: 0.06em; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.2); letter-spacing: 0.06em; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ─── INTERIOR PAGES ─────────────────────────────────────── */
.page-hero {
  padding: 10rem 4rem 5rem;
  background: var(--white);
  border-bottom: 1px solid var(--light);
}
.page-hero .section-label { margin-bottom: 1.5rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--charcoal); line-height: 1.05;
  max-width: 700px;
}

.page-content {
  max-width: 760px; margin: 5rem auto; padding: 0 4rem;
}
.page-content p {
  font-size: 1.05rem; color: var(--slate);
  line-height: 1.85; font-weight: 300; margin-bottom: 1.5rem;
}
.page-content h2 {
  font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--charcoal); margin: 3rem 0 1rem;
}

/* ─── 404 ─────────────────────────────────────────────────── */
.pws-404 {
  min-height: 80vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 4rem;
}
.pws-404 .err-num {
  font-family: var(--font-display); font-size: 10rem;
  font-weight: 800; color: rgba(54,69,79,0.08);
  letter-spacing: -0.05em; line-height: 1;
}
.pws-404 h1 {
  font-family: var(--font-display); font-size: 2.5rem;
  font-weight: 700; color: var(--charcoal);
  margin: -2rem 0 1rem;
}
.pws-404 p { color: var(--slate); max-width: 400px; margin-bottom: 2rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--charcoal); color: var(--white);
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.9rem; padding: 0.9rem 2rem;
  border-radius: 2rem; transition: background 0.2s;
}
.btn-primary:hover { background: var(--black); color: var(--white); }

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .pws-nav { padding: 1.5rem 2rem; }
  .pws-hero,
  .pws-section,
  .pws-about,
  .pws-services,
  .pws-works,
  .pws-process,
  .pws-subbands,
  .pws-team,
  .pws-contact,
  .pws-footer { padding-left: 2rem; padding-right: 2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pws-about { grid-template-columns: 1fr; }
  .about-right { display: none; }
  .process-layout { grid-template-columns: 1fr; gap: 3rem; }
  .page-content { padding: 0 2rem; }
  .page-hero { padding: 9rem 2rem 4rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-headline { font-size: clamp(2.4rem, 10vw, 4rem); }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-meta { text-align: left; }
  .services-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }
  .brands-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-details { flex-direction: column; gap: 1.5rem; }
  .pws-footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-left { flex-direction: column; gap: 0.5rem; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .single-work-hero { padding: 8rem 2rem 3rem; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}
