/* ══════════════════════════════════════════════════════════════════
   CLOTHING DESIGN — Main Stylesheet
   ══════════════════════════════════════════════════════════════════ */

/* ── 1. CUSTOM PROPERTIES (Design Tokens) ─────────────────────── */
:root {
  /* Primary palette */
  --yellow:   #FFD600;
  --coral:    #FF6B6B;
  --teal:     #4ECDC4;
  --purple:   #A855F7;
  --orange:   #F97316;
  --green:    #22C55E;
  --navy:     #1a1a2e;
  --dark:     #0f0f1a;

  /* Neutral */
  --white:    #ffffff;
  --off-white:#F8F7F4;
  --light:    #F2F0EC;
  --mid-gray: #888;
  --gray:     #555;
  --border:   rgba(0,0,0,0.08);

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Outfit', 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  /* Border radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.16);
  --shadow-xl: 0 40px 100px rgba(0,0,0,0.2);

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --duration:   0.3s;
  --duration-md: 0.5s;
  --duration-lg: 0.8s;

  /* Nav height */
  --nav-h: 80px;
}

/* ── 2. CSS RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

address { font-style: normal; }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── 3. UTILITY CLASSES ───────────────────────────────────────── */
.container {
  width: min(90%, 1280px);
  margin-inline: auto;
}

.section-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.section-title {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-title em {
  font-style: normal;
  color: var(--coral);
  position: relative;
}

.section-desc {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── 4. BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  transition: background var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--yellow);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 214, 0, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--navy);
  transition: all var(--duration) var(--ease-out);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-nav-cta {
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 214, 0, 0.5);
}

/* ── 5. PRELOADER ─────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.preloader-logo {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--yellow);
  letter-spacing: 0.1em;
  animation: pulse 1s ease-in-out infinite;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  margin: 1.5rem auto 1rem;
  overflow: hidden;
}
.preloader-bar span {
  display: block;
  height: 100%;
  background: var(--yellow);
  border-radius: var(--radius-full);
  animation: loading-bar 1.8s var(--ease-out) forwards;
}

.preloader-text {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
}

@keyframes loading-bar {
  from { width: 0; }
  to   { width: 100%; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* ── 6. NAVIGATION ────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out),
              backdrop-filter var(--duration);
}

#navbar.scrolled {
  background: rgba(248, 247, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(92%, 1280px);
  margin-inline: auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease-out);
}
.nav-logo:hover .logo-mark { transform: rotate(-5deg) scale(1.05); }

.logo-mark--light {
  background: var(--yellow);
  color: var(--navy);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--navy);
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--mid-gray);
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  color: var(--navy);
  transition: all var(--duration) var(--ease-out);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 2px;
  background: var(--yellow);
  border-radius: var(--radius-full);
  transition: transform var(--duration) var(--ease-out);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}
.nav-link:hover { color: var(--navy); }

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--duration);
}
.hamburger:hover { background: rgba(0,0,0,0.05); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease-out);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(248, 247, 244, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1.5rem 1.5rem 2rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(-110%);
  transition: transform 0.4s var(--ease-out);
  z-index: 999;
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
}

.mobile-link {
  font-weight: 700;
  font-size: 1.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--duration);
}
.mobile-link:hover { color: var(--coral); }

.btn-mobile-cta {
  margin-top: 1rem;
  display: inline-flex;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  width: fit-content;
  transition: background var(--duration);
}
.btn-mobile-cta:hover { background: var(--yellow); color: var(--navy); }

/* ── 7. HERO SECTION ──────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 2rem) 0 3rem;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

/* Decorative background shapes */
.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,214,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(78,205,196,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Bento Grid */
.hero-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1.25rem;
  width: min(92%, 1280px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Card base */
.bento-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-md) var(--ease-out),
              box-shadow var(--duration-md) var(--ease-out);
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Hero Main (spans 2 cols, 2 rows) */
.hero-main {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background: var(--yellow);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  min-height: 520px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.headline-line {
  display: block;
  overflow: hidden;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(26, 26, 46, 0.75);
  line-height: 1.65;
  max-width: 380px;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-img-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transform: rotate(2deg);
  transition: transform var(--duration-lg) var(--ease-out);
}
.hero-main:hover .hero-main-img { transform: rotate(0deg) scale(1.02); }

.hero-float-stat {
  position: absolute;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  text-align: center;
  animation: float 4s ease-in-out infinite;
}
.hero-float-stat strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--yellow);
}
.hero-float-stat span {
  font-size: 0.7rem;
  opacity: 0.8;
  white-space: nowrap;
}
.stat-1 { bottom: 10%; left: -8%; animation-delay: 0s; }
.stat-2 { top: 8%;    right: -6%; animation-delay: 1s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* Hero Stat Card (col 3, row 1) */
.hero-stat-card {
  grid-column: 3;
  grid-row: 1;
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-card-inner { text-align: center; }
.stat-icon { font-size: 2rem; color: var(--yellow); display: block; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.8rem; opacity: 0.7; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.1em; }
.stat-number { font-family: var(--font-display); font-size: 4.5rem; color: var(--yellow); line-height: 1; }
.stat-progress {
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  margin-top: 1rem;
  overflow: hidden;
}
.stat-progress span {
  display: block;
  height: 100%;
  background: var(--yellow);
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1.5s var(--ease-out);
}

/* Hero Brands Card (col 3, row 2) */
.hero-brands-card {
  grid-column: 3;
  grid-row: 2;
  background: var(--off-white);
  padding: 1.5rem 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.brands-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--mid-gray);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  padding-right: 1.5rem;
}
.brands-marquee { overflow: hidden; }
.brands-track {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
  animation: scroll-x 18s linear infinite;
}
.brands-track span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--navy);
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity var(--duration);
}
.brands-track span:hover { opacity: 1; }

/* Hero Award Card */
.hero-award-card {
  grid-column: 1;
  grid-row: 3;
  background: var(--coral);
  color: var(--white);
  padding: 1.75rem;
  text-align: center;
}
.award-emoji { font-size: 2.5rem; margin-bottom: 0.5rem; }
.award-title { font-weight: 800; font-size: 1.05rem; margin-bottom: 0.25rem; }
.award-sub { font-size: 0.78rem; opacity: 0.85; line-height: 1.4; margin-bottom: 0.5rem; }
.award-stars { font-size: 1rem; color: var(--yellow); letter-spacing: 0.15em; }

/* Hero CTA Card */
.hero-cta-card {
  grid-column: 2 / 4;
  grid-row: 3;
  background: var(--teal);
  color: var(--navy);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cta-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.cta-card-heading {
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.3;
  max-width: 280px;
}
.btn-cta-card {
  display: inline-flex;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration);
}
.btn-cta-card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-md);
}

/* Scroll Indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  color: var(--mid-gray);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--navy), transparent);
  border-radius: var(--radius-full);
  animation: scroll-down 1.8s ease-in-out infinite;
}
@keyframes scroll-down {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── 8. TICKER BAR ────────────────────────────────────────────── */
.ticker-bar {
  background: var(--navy);
  color: var(--yellow);
  padding: 1rem 0;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: scroll-x 30s linear infinite;
}
.ticker-track span { flex-shrink: 0; }

@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 9. SERVICES SECTION ──────────────────────────────────────── */
.services-section {
  padding: var(--space-xl) 0;
  background: var(--off-white);
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-md) var(--ease-out),
              box-shadow var(--duration-md) var(--ease-out);
  border: 1px solid var(--border);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent, var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-md) var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: scaleX(1); }

/* Featured service card (full width) */
.service-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--navy);
  color: var(--white);
  align-items: center;
}
.service-featured .service-title { color: var(--white); }
.service-featured .service-desc { color: rgba(255,255,255,0.75); }
.service-featured::before { background: var(--yellow); }

.service-card-content {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease-out);
}
.service-card:hover .service-icon-wrap { transform: rotate(-10deg) scale(1.1); }

.service-title {
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

.service-featured-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
}
.service-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-lg) var(--ease-out);
}
.service-featured:hover .service-featured-img img { transform: scale(1.05); }

.service-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.service-tag-list span {
  background: rgba(0,0,0,0.06);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}
.service-featured .service-tag-list span {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* ── 10. STATS BAND ───────────────────────────────────────────── */
.stats-band {
  background: var(--yellow);
  padding: 3.5rem 0;
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  text-align: center;
}
.stat-item strong {
  display: inline;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--navy);
}
.stat-item > span {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--navy);
}
.stat-item p {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(26, 26, 46, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ── 11. PORTFOLIO SECTION ────────────────────────────────────── */
.portfolio-section {
  padding: var(--space-xl) 0;
  background: var(--light);
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.filter-btn {
  background: var(--white);
  color: var(--gray);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: all var(--duration) var(--ease-out);
}
.filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.filter-btn.active {
  background: var(--navy);
  color: var(--yellow);
  border-color: var(--navy);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 380px;
  gap: 1.25rem;
}

.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  grid-column: span 1;
  transition: transform var(--duration-md) var(--ease-out),
              opacity var(--duration-md) var(--ease-out);
}
.portfolio-item.hidden { opacity: 0; pointer-events: none; transform: scale(0.92); }

.portfolio-item--wide {
  grid-column: span 2;
}

.portfolio-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-lg) var(--ease-out);
}
.portfolio-item:hover .portfolio-img-wrap img { transform: scale(1.08); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.95) 0%, rgba(26,26,46,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transform: translateY(0);
  transition: all var(--duration-md) var(--ease-out);
  opacity: 0;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  width: fit-content;
}
.portfolio-overlay h3 {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.portfolio-overlay p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}

.portfolio-view-btn {
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration);
}
.portfolio-view-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(255,214,0,0.5);
}

.portfolio-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
}
.portfolio-client {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}
.portfolio-year {
  background: rgba(26,26,46,0.75);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.portfolio-more {
  text-align: center;
  margin-top: var(--space-md);
}

/* ── 12. ABOUT SECTION ────────────────────────────────────────── */
.about-section {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}
.about-img-primary {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-img-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-lg) var(--ease-out);
}
.about-img-primary:hover img { transform: scale(1.04); }

.about-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-year-badge {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  background: var(--yellow);
  color: var(--navy);
  text-align: center;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  animation: float 5s ease-in-out infinite;
}
.about-year-badge strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.about-year-badge span {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
}

.about-text {
  color: var(--gray);
  font-size: 0.975rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-text strong { color: var(--navy); }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  transition: transform var(--duration) var(--ease-out);
}
.pillar:hover { transform: translateX(6px); }
.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.pillar strong { display: block; font-weight: 700; font-size: 0.95rem; margin-bottom: 0.2rem; }
.pillar p { font-size: 0.85rem; color: var(--gray); }

/* ── 13. PROCESS SECTION ──────────────────────────────────────── */
.process-section {
  padding: var(--space-xl) 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,214,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.process-section .section-tag { background: var(--yellow); }
.process-section .section-title { color: var(--white); }
.process-section .section-desc { color: rgba(255,255,255,0.6); }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin-inline: auto;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem 0;
  position: relative;
}
.process-step:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  transition: color var(--duration) var(--ease-out);
}
.process-step:hover .step-number { color: var(--yellow); }

.step-content h3 {
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.step-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform var(--duration) var(--ease-out);
  justify-self: center;
}
.process-step:hover .step-icon { transform: rotate(-15deg) scale(1.1); }

.process-connector {
  width: 2px;
  height: 24px;
  background: rgba(255,255,255,0.12);
  margin-left: 40px;
  border-radius: var(--radius-full);
}

/* ── 14. TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section {
  padding: var(--space-xl) 0;
  background: var(--off-white);
}

.testimonial-swiper {
  padding-bottom: 3rem !important;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 1px solid var(--border);
  transition: box-shadow var(--duration-md) var(--ease-out),
              transform var(--duration-md) var(--ease-out);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testimonial-text::before { content: '"'; color: var(--coral); font-size: 1.5rem; font-style: normal; line-height: 0; vertical-align: -0.35em; }
.testimonial-text::after  { content: '"'; color: var(--coral); font-size: 1.5rem; font-style: normal; line-height: 0; vertical-align: -0.35em; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--mid-gray); }

/* Swiper overrides */
.swiper-button-prev,
.swiper-button-next {
  width: 44px !important;
  height: 44px !important;
  background: var(--navy) !important;
  border-radius: 50% !important;
  color: var(--white) !important;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1rem !important;
  color: var(--white) !important;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--yellow) !important;
}
.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: var(--navy) !important;
}
.swiper-pagination-bullet {
  background: var(--navy) !important;
  opacity: 0.3 !important;
}
.swiper-pagination-bullet-active {
  background: var(--navy) !important;
  opacity: 1 !important;
}

/* ── 15. CLIENTS MARQUEE ──────────────────────────────────────── */
.clients-section {
  padding: 3rem 0;
  background: var(--white);
  overflow: hidden;
}
.clients-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--mid-gray);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.clients-marquee { overflow: hidden; }
.clients-track {
  display: flex;
  gap: 2rem;
  animation: scroll-x 25s linear infinite;
}
.client-logo-item {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--navy);
  opacity: 0.2;
  padding: 0.75rem 2rem;
  border: 2px solid rgba(26,26,46,0.12);
  border-radius: var(--radius-sm);
  transition: opacity var(--duration);
}
.client-logo-item:hover { opacity: 0.7; }

/* ── 16. CONTACT SECTION ──────────────────────────────────────── */
.contact-section {
  padding: var(--space-xl) 0;
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-intro {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin: 1.25rem 0 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease-out);
}
.contact-item:hover { transform: translateX(6px); }
.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; margin-bottom: 0.25rem; }
.contact-link { color: var(--coral); font-weight: 600; transition: color var(--duration); }
.contact-link:hover { color: var(--navy); }
.contact-address { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }
.contact-hours { color: var(--gray); font-size: 0.9rem; }

.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--white);
  transition: all var(--duration) var(--ease-out);
  font-size: 0.75rem;
  font-weight: 700;
}
.social-btn:hover {
  background: var(--navy);
  color: var(--yellow);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.form-group label span { color: var(--coral); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--off-white);
  transition: border-color var(--duration), box-shadow var(--duration), background var(--duration);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26,26,46,0.08);
}
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: var(--coral);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(26,26,46,0.35); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231a1a2e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 16px; padding-right: 2.5rem; }

.form-error {
  font-size: 0.78rem;
  color: var(--coral);
  font-weight: 600;
  min-height: 1.2em;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out),
              box-shadow var(--duration);
  position: relative;
  overflow: hidden;
}
.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-md) var(--ease-out);
  z-index: 0;
}
.btn-submit:hover::before { transform: scaleX(1); }
.btn-submit:hover { color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,214,0,0.4); }
.btn-text, .btn-icon { position: relative; z-index: 1; }

.form-success {
  background: rgba(34,197,94,0.1);
  border: 1px solid var(--green);
  color: var(--navy);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

/* ── 17. FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: var(--space-lg) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.footer-logo .logo-name,
.footer-logo .logo-sub { color: var(--white); }

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-col h4 {
  font-weight: 800;
  color: var(--white);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--duration), transform var(--duration);
  display: inline-block;
}
.footer-col ul a:hover { color: var(--yellow); transform: translateX(4px); }

.footer-contact-col address p { margin-bottom: 1rem; font-size: 0.875rem; line-height: 1.6; }
.footer-contact-col address strong { color: var(--white); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-contact-col address a { color: rgba(255,255,255,0.55); transition: color var(--duration); }
.footer-contact-col address a:hover { color: var(--yellow); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { transition: color var(--duration); }
.footer-legal a:hover { color: var(--yellow); }

/* ── 18. BACK TO TOP ──────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out),
              opacity var(--duration);
  opacity: 0;
  transform: translateY(10px);
}
.back-to-top:not([hidden]) {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--yellow);
  color: var(--navy);
  transform: translateY(-3px);
}

/* ── 19. PORTFOLIO MODALS ─────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.3s var(--ease-out);
}
.modal-overlay[hidden] { display: none; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s var(--ease-out);
  scrollbar-width: thin;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: sticky;
  top: 1rem;
  float: right;
  margin: 1rem 1rem 0 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--off-white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration), transform var(--duration);
  z-index: 10;
}
.modal-close:hover { background: var(--coral); color: var(--white); transform: rotate(90deg); }

.modal-content { padding: 0 2rem 2rem; }
.modal-content img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.modal-content h2 { font-weight: 900; font-size: 1.75rem; margin-bottom: 0.5rem; }
.modal-content .modal-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.modal-content p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 0.75rem; }
.modal-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  margin-top: 1.25rem;
}
.modal-meta div strong { display: block; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.2rem; }
.modal-meta div span { font-size: 0.9rem; color: var(--gray); }

/* ── 20. AOS ADJUSTMENTS ──────────────────────────────────────── */
[data-aos] { will-change: transform, opacity; }

/* ── 21. MEDIA QUERIES (Responsive) ───────────────────────────── */

/* ─ Large tablets / small desktops (≤1100px) */
@media (max-width: 1100px) {
  .hero-bento {
    grid-template-columns: 1fr 1fr;
  }
  .hero-main {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .hero-stat-card {
    grid-column: 1;
    grid-row: 2;
  }
  .hero-brands-card {
    grid-column: 2;
    grid-row: 2;
  }
  .hero-award-card {
    grid-column: 1;
    grid-row: 3;
  }
  .hero-cta-card {
    grid-column: 2;
    grid-row: 3;
  }

  .services-bento {
    grid-template-columns: 1fr 1fr;
  }
  .service-featured {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-item--wide { grid-column: 1 / -1; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─ Tablets (≤768px) */
@media (max-width: 768px) {
  :root {
    --nav-h: 68px;
  }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-bento {
    grid-template-columns: 1fr;
  }
  .hero-main {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2rem;
  }
  .hero-img-wrap { display: none; }
  .hero-stat-card,
  .hero-brands-card { grid-column: 1; }
  .hero-award-card { grid-column: 1; }
  .hero-cta-card {
    grid-column: 1;
    flex-direction: column;
    align-items: flex-start;
  }

  .services-bento { grid-template-columns: 1fr; }
  .service-featured { grid-template-columns: 1fr; }
  .service-featured-img { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img-secondary { display: none; }

  .process-step { grid-template-columns: 60px 1fr 60px; gap: 1rem; }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }
  .portfolio-item--wide { grid-column: 1; }
  .portfolio-overlay { opacity: 1; }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid { gap: 1.5rem; }
}

/* ─ Mobile (≤480px) */
@media (max-width: 480px) {
  .hero-headline { font-size: 4rem; }

  .section-title { font-size: 2rem; }

  .process-step { grid-template-columns: 1fr; text-align: center; }
  .step-number { font-size: 2.5rem; }
  .step-icon { margin-inline: auto; }
  .process-connector { margin-left: auto; margin-right: auto; }

  .contact-form-wrap { padding: 1.5rem; }

  .portfolio-filters { gap: 0.5rem; }
  .filter-btn { padding: 0.45rem 0.9rem; font-size: 0.8rem; }

  .back-to-top { bottom: 1.5rem; right: 1.5rem; }

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

/* ── 22. PRINT STYLES ─────────────────────────────────────────── */
@media print {
  #preloader, #navbar, .back-to-top, .ticker-bar,
  .hero-cta-group, .portfolio-filters, .portfolio-more,
  .testimonials-section, .clients-section, .contact-section,
  .footer-social, .social-links { display: none !important; }

  body { background: white; color: black; }
  .container { width: 100%; }
}
