/* ============================================================
   WORKPIXIE — Global Stylesheet
   Palette: Deep Charcoal · Light Grey · White · Vibrant Red
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --charcoal:     #1a1a1a;
  --charcoal-700: #2d2d2d;
  --charcoal-600: #3d3d3d;
  --charcoal-400: #6b6b6b;
  --charcoal-200: #a8a8a8;
  --grey-100:     #f3f3f3;
  --grey-50:      #f9f9f9;
  --white:        #ffffff;
  --red:          #CC0000;
  --red-dark:     #a50000;
  --red-faint:    rgba(204,0,0,.08);

  --font-h:  'Playfair Display', Georgia, serif;
  --font-b:  'Inter', system-ui, sans-serif;

  --ease:    all .35s cubic-bezier(.4,0,.2,1);
  --sh-sm:   0 2px 10px rgba(0,0,0,.07);
  --sh-md:   0 6px 28px rgba(0,0,0,.12);
  --sh-lg:   0 12px 48px rgba(0,0,0,.18);

  --max:     1280px;
  --sp:      100px 0;
  --sp-sm:   60px 0;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utilities ─────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.section    { padding: var(--sp); }
.section-sm { padding: var(--sp-sm); }
.bg-grey    { background: var(--grey-100); }
.bg-dark    { background: var(--charcoal); color: var(--white); }
.text-red   { color: var(--red); }
.text-center { text-align: center; }

.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-label { /* overline above section titles */
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
h1,h2,h3,h4,h5 { font-family: var(--font-h); line-height: 1.22; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { color: var(--charcoal-400); line-height: 1.8; }
.lead { font-size: 1.1rem; color: var(--charcoal-600); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 36px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--ease);
}
.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-outline {
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }
.btn-outline-white {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--charcoal); }

/* Divider line */
.divider {
  width: 50px;
  height: 3px;
  background: var(--red);
  margin: 18px 0 28px;
}
.divider.center { margin: 18px auto 28px; }

/* ── Navigation ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--ease);
  background: transparent;
}
#navbar.scrolled {
  background: var(--charcoal);
  box-shadow: var(--sh-md);
  height: 68px;
}
.nav-logo {
  font-family: var(--font-h);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.nav-logo span { color: var(--red); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  position: relative;
  transition: var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--charcoal);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-h);
  font-size: 1.9rem;
  color: var(--white);
  opacity: .85;
  transition: var(--ease);
}
.mobile-nav a:hover { color: var(--red); opacity: 1; }

/* ── Hero Slider ─────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20,20,20,.78) 0%,
    rgba(20,20,20,.35) 60%,
    rgba(20,20,20,.05) 100%
  );
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  padding: 0 40px;
}
.hero-content .tag { color: rgba(255,255,255,.75); }
.hero-content h1 { color: var(--white); max-width: 640px; margin-bottom: 20px; }
.hero-content p  { color: rgba(255,255,255,.75); max-width: 480px; margin-bottom: 36px; font-size: 1.05rem; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Slider controls */
.hero-arrows {
  position: absolute;
  bottom: 48px;
  right: 60px;
  z-index: 3;
  display: flex;
  gap: 12px;
}
.hero-arrows button {
  width: 48px; height: 48px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.hero-arrows button:hover {
  background: var(--red);
  border-color: var(--red);
}
.hero-dots {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: var(--ease);
  cursor: pointer;
}
.hero-dot.active { background: var(--red); transform: scale(1.4); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 60px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,.4);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--red);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine { to { left: 100%; } }

/* ── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero {
  padding-top: 80px; /* navbar height */
  height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,.75), rgba(20,20,20,.25));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 40px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.page-hero-content h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.breadcrumb {
  color: rgba(255,255,255,.65);
  font-size: .82rem;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.breadcrumb a { color: var(--red); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Intro / Comparison ──────────────────────────────────────── */
.comparison-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.comparison-image {
  position: relative;
  overflow: hidden;
}
.comparison-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.comparison-image:hover img { transform: scale(1.04); }
.comparison-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
  background: linear-gradient(to top, rgba(20,20,20,.8), transparent);
  color: var(--white);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}
.comparison-text {
  padding: 72px 64px;
  background: var(--charcoal);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.comparison-text .section-label { color: var(--red); }
.comparison-text h2 { color: var(--white); margin-bottom: 8px; }
.comparison-text p  { color: rgba(255,255,255,.68); margin-bottom: 28px; }

/* Toggle tabs */
.view-toggle {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 2px;
  overflow: hidden;
  width: fit-content;
}
.toggle-btn {
  padding: 10px 22px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  background: transparent;
  transition: var(--ease);
  cursor: pointer;
  border: none;
}
.toggle-btn.active, .toggle-btn:hover {
  background: var(--red);
  color: var(--white);
}

/* ── About & Awards ──────────────────────────────────────────── */
.about-awards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-stack {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 88%;
  object-fit: cover;
  box-shadow: var(--sh-lg);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 52%;
  object-fit: cover;
  border: 8px solid var(--white);
  box-shadow: var(--sh-lg);
}
.experience-badge {
  position: absolute;
  top: 36px; right: 20%;
  background: var(--red);
  color: var(--white);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--sh-md);
}
.experience-badge .num {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.experience-badge .label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; opacity: .85; }

.awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.award-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--grey-100);
  border-radius: 2px;
  transition: var(--ease);
}
.award-item:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--sh-sm); }
.award-icon {
  width: 38px; height: 38px;
  background: var(--red-faint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  font-size: .9rem;
}
.award-item h5 { font-size: .85rem; margin-bottom: 3px; }
.award-item p { font-size: .78rem; }

/* ── Services Grid ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--grey-100);
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  padding: 48px 36px;
  text-align: center;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); z-index: 1; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 66px; height: 66px;
  background: var(--red-faint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  color: var(--red);
  font-size: 1.5rem;
  transition: var(--ease);
}
.service-card:hover .service-icon { background: var(--red); color: var(--white); }
.service-card h4 { margin-bottom: 10px; font-size: 1rem; }
.service-card p { font-size: .86rem; }

/* ── Projects Grid ───────────────────────────────────────────── */
.projects-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/3;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.project-card:hover img { transform: scale(1.06); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,.82) 0%, transparent 55%);
  opacity: 0;
  transition: var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay-content h4 { color: var(--white); margin-bottom: 4px; font-size: 1.05rem; }
.project-overlay-content span {
  font-size: .76rem;
  color: var(--red);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Project filter (projects page) */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-tab {
  padding: 10px 26px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--charcoal-400);
  border: 1px solid var(--grey-100);
  border-radius: 2px;
  background: var(--white);
  transition: var(--ease);
  cursor: pointer;
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.projects-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 2px;
  transition: var(--ease);
}
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-item-info { opacity: 1; }
.gallery-item-info h4 { color: var(--white); margin-bottom: 4px; font-size: .95rem; }
.gallery-item-info span {
  font-size: .73rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* Featured large card (spans 2 cols) */
.gallery-item.featured { grid-column: span 2; aspect-ratio: 8/5; }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-section { background: var(--charcoal); }
.testimonials-section .section-label { color: rgba(255,255,255,.5); }
.testimonials-section h2 { color: var(--white); }
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 40px 36px;
  border-radius: 2px;
  transition: var(--ease);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-4px);
}
.quote-mark {
  font-family: var(--font-h);
  font-size: 4rem;
  color: var(--red);
  line-height: .8;
  margin-bottom: 18px;
  opacity: .8;
}
.testimonial-card p {
  color: rgba(255,255,255,.72);
  font-style: italic;
  line-height: 1.85;
  margin-bottom: 28px;
  font-size: .95rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--charcoal-600);
  overflow: hidden;
  flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 600; color: var(--white); font-size: .9rem; }
.author-role { font-size: .76rem; color: rgba(255,255,255,.45); letter-spacing: .06em; }
.stars { color: var(--red); font-size: .85rem; margin-bottom: 4px; }

/* ── Stats Banner ────────────────────────────────────────────── */
.stats-band {
  background: var(--red);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-h);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

/* ── Instagram Grid ──────────────────────────────────────────── */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 40px;
}
.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.insta-item:hover img { transform: scale(1.08); }
.insta-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(204,0,0,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  opacity: 0;
  transition: var(--ease);
}
.insta-item:hover .insta-item-overlay { opacity: 1; }

/* ── Blog Grid ───────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.blog-card {
  border-radius: 2px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--sh-sm);
  transition: var(--ease);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 28px 24px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .76rem;
  color: var(--charcoal-200);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.blog-meta .cat { color: var(--red); font-weight: 600; }
.blog-card h4 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  transition: var(--ease);
}
.blog-card:hover h4 { color: var(--red); }
.blog-card p { font-size: .88rem; margin-bottom: 18px; }
.read-more {
  font-size: .8rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--ease);
}
.read-more:hover { gap: 12px; }

/* ── FAST Section (About) ────────────────────────────────────── */
.fast-section { background: var(--grey-50); }
.fast-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--grey-100);
}
.fast-card {
  padding: 52px 36px;
  border-right: 1px solid var(--grey-100);
  text-align: center;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.fast-card:last-child { border-right: none; }
.fast-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  opacity: 0;
  transition: var(--ease);
  z-index: 0;
}
.fast-card:hover::after { opacity: 1; }
.fast-card > * { position: relative; z-index: 1; }
.fast-letter {
  font-family: var(--font-h);
  font-size: 5rem;
  font-weight: 700;
  color: var(--grey-100);
  position: absolute;
  top: 16px; right: 20px;
  z-index: 0;
  transition: var(--ease);
}
.fast-card:hover .fast-letter { color: rgba(255,255,255,.05); }
.fast-icon {
  width: 60px; height: 60px;
  background: var(--red-faint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--red);
  font-size: 1.4rem;
  transition: var(--ease);
}
.fast-card:hover .fast-icon { background: var(--red); color: var(--white); }
.fast-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  transition: var(--ease);
}
.fast-card:hover h3 { color: var(--white); }
.fast-card p { font-size: .87rem; transition: var(--ease); }
.fast-card:hover p { color: rgba(255,255,255,.65); }

/* ── Team ────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.team-card {
  text-align: center;
}
.team-photo {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 18px;
  aspect-ratio: 3/4;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-social {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(20,20,20,.85);
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 14px;
  transform: translateY(100%);
  transition: var(--ease);
}
.team-card:hover .team-social { transform: translateY(0); }
.team-social a {
  color: var(--white);
  font-size: .95rem;
  transition: var(--ease);
}
.team-social a:hover { color: var(--red); }
.team-card h4 { margin-bottom: 4px; }
.team-card span { font-size: .8rem; color: var(--red); letter-spacing: .06em; text-transform: uppercase; }

/* ── Services Page ───────────────────────────────────────────── */
.services-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--grey-100);
}
.services-detailed:last-child { border-bottom: none; margin-bottom: 0; }
.services-detailed.reverse .service-detail-text { order: 2; }
.services-detailed.reverse .service-detail-img  { order: 1; }
.service-detail-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--sh-lg);
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-features {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--charcoal-600);
}
.service-feature i { color: var(--red); margin-top: 3px; flex-shrink: 0; }

/* Process steps */
.process-section { background: var(--charcoal); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(10% + 36px);
  right: calc(10% + 36px);
  height: 1px;
  background: rgba(255,255,255,.12);
}
.process-step { text-align: center; padding: 0 20px; }
.step-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-h);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 600;
  position: relative;
  z-index: 1;
  transition: var(--ease);
}
.process-step:hover .step-number { background: var(--red); border-color: var(--red); }
.process-step h4 { color: var(--white); font-size: .95rem; margin-bottom: 8px; }
.process-step p  { color: rgba(255,255,255,.5); font-size: .83rem; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--grey-100);
}
.contact-detail:last-child { border-bottom: none; }
.contact-icon {
  width: 48px; height: 48px;
  background: var(--red-faint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail h5 { margin-bottom: 4px; font-size: .9rem; }
.contact-detail p { font-size: .88rem; }

.contact-form { background: var(--white); padding: 52px 48px; box-shadow: var(--sh-lg); border-radius: 2px; }
.contact-form h3 { margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--charcoal-600);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--grey-100);
  border-radius: 2px;
  font-family: var(--font-b);
  font-size: .92rem;
  color: var(--charcoal);
  background: var(--grey-50);
  transition: var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--red-faint);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* Map placeholder */
.map-section {
  height: 400px;
  background: var(--grey-100);
  position: relative;
  overflow: hidden;
}
.map-section iframe { width: 100%; height: 100%; border: 0; }

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
  background-image: linear-gradient(rgba(20,20,20,.78), rgba(20,20,20,.78)),
    url('https://images.unsplash.com/photo-1631679706909-1844bbd07221?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--charcoal-700);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo { font-size: 1.5rem; margin-bottom: 16px; display: block; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .88rem; margin-bottom: 24px; max-width: 260px; }
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  transition: var(--ease);
}
.footer-socials a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-col h5 {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: var(--ease);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a:hover { color: var(--red); padding-left: 4px; }
.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .88rem;
  color: rgba(255,255,255,.5);
}
.footer-contact-line i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: var(--red); }

/* ── Animations ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .12s; }
.fade-up:nth-child(3) { transition-delay: .24s; }
.fade-up:nth-child(4) { transition-delay: .36s; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid         { grid-template-columns: repeat(2, 1fr); }
  .projects-preview      { grid-template-columns: repeat(2, 1fr); }
  .fast-grid             { grid-template-columns: repeat(2, 1fr); }
  .team-grid             { grid-template-columns: repeat(2, 1fr); }
  .stats-grid            { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .stat-item             { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 24px; }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.2); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4)    { border-bottom: none; }
  .process-steps         { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .process-steps::before { display: none; }
  .footer-grid           { grid-template-columns: 1fr 1fr; }
  .instagram-grid        { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  :root { --sp: 72px 0; --sp-sm: 48px 0; }
  .container { padding: 0 24px; }
  #navbar { padding: 0 24px; }
  .nav-links    { display: none; }
  .hamburger    { display: flex; }
  .comparison-section { grid-template-columns: 1fr; }
  .comparison-text    { padding: 48px 32px; }
  .about-awards       { grid-template-columns: 1fr; gap: 48px; }
  .about-img-stack    { height: 400px; }
  .awards-grid        { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .contact-layout     { grid-template-columns: 1fr; gap: 48px; }
  .contact-form       { padding: 36px 24px; }
  .services-detailed  { grid-template-columns: 1fr; gap: 40px; }
  .services-detailed.reverse .service-detail-text { order: 1; }
  .services-detailed.reverse .service-detail-img  { order: 2; }
  .blog-grid          { grid-template-columns: repeat(2, 1fr); }
  .hero-arrows        { right: 24px; bottom: 32px; }
  .scroll-indicator   { left: 24px; }
  .projects-gallery   { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.featured { grid-column: span 1; aspect-ratio: 4/3; }
  .form-row           { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .services-grid        { grid-template-columns: 1fr; }
  .projects-preview     { grid-template-columns: 1fr; }
  .fast-grid            { grid-template-columns: 1fr; }
  .team-grid            { grid-template-columns: repeat(2, 1fr); }
  .footer-grid          { grid-template-columns: 1fr; gap: 36px; }
  .instagram-grid       { grid-template-columns: repeat(3, 1fr); }
  .blog-grid            { grid-template-columns: 1fr; }
  .process-steps        { grid-template-columns: 1fr 1fr; }
  .projects-gallery     { grid-template-columns: 1fr; }
  .hero-content p       { display: none; }
  .hero-btns            { flex-direction: column; gap: 10px; }
  .stats-grid           { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,.2); }
  .footer-bottom        { flex-direction: column; gap: 8px; text-align: center; }
}
