/* ═══════════════════════════════════════════════════════════
   BEDROSS — LOCAL FONT FACE
   Place font files in the same folder as style.css
   (or adjust the path in url() accordingly)
═══════════════════════════════════════════════════════════ */
@font-face {
  font-family: 'Bedross';
  src: url('css/bedross-regular.otf') format('opentype'),
       url('css/bedross-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bedross';
  src: url('css/bedross-normal.otf') format('opentype'),
       url('css/bedross-italic.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════════ */
:root {
  /* Colours */
  --red:        #FF4242;
  --red-dim:    #ff6b6b;
  --red-pale:   #FFE8E8;
  --ink:        #1A1A18;
  --ink-soft:   #3A3A38;
  --muted:      #888884;
  --muted-lt:   #BABAB6;
  --gray:       #F5F5F5;
  --gray-dk:    #EBEBEB;
  --gray-dkk:   #DEDEDE;
  --white:      #FFFFFF;

  /* Typography */
  --display:    'Bedross', Georgia, serif;
  --sans:       'Work Sans', system-ui, sans-serif;

  /* Motion */
  --ease:       cubic-bezier(.4, 0, .2, 1);
}

/* ═══════════════════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 4.5rem;
  transition: padding .4s var(--ease), background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.1rem 4.5rem;
  border-bottom-color: var(--gray-dk);
}

.nav-logo {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--ink);
}

.nav-logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: .65rem 1.6rem;
  transition: background .2s, transform .15s;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--red-dim);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}

.nav-hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  display: block;
  transition: all .3s;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  overflow: hidden;
}

/* Left column */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 4.5rem 5rem;
  position: relative;
  z-index: 2;
  background: var(--white);
}

.hero-avail {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--gray);
  padding: .45rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 2.2rem;
  width: fit-content;
  opacity: 0;
  animation: fadeUp .7s .15s forwards;
}

.avail-dot {
  width: 7px;
  height: 7px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse-green 2.2s infinite;
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--display);
  font-size: clamp(3.4rem, 5.8vw, 6rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: .01em;
  color: var(--ink);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .8s .3s forwards;
}

.hero-h1 .line-accent {
  color: var(--red);
}

.hero-h1 .line-outline {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp .8s .45s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .6s forwards;
}

.btn-primary {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: .9rem 2.1rem;
  transition: background .2s, transform .15s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.btn-ghost {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1.5px solid var(--red);
  padding-bottom: 3px;
  transition: color .2s;
}

.btn-ghost:hover {
  color: var(--red);
}

.hero-stats {
  display: flex;
  gap: 3.5rem;
  margin-top: 4.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-dkk);
  opacity: 0;
  animation: fadeUp .8s .75s forwards;
}

.hstat-num {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--ink);
  margin-bottom: .2rem;
}

.hstat-num sup {
  font-size: 1.3rem;
  color: var(--red);
  font-family: var(--sans);
}

.hstat-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Right column */
.hero-right {
  position: relative;
  background: var(--gray);
  overflow: hidden;
}

.hero-right-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-photo {
  width: 85%;
  max-width: 500px;
  height: 93%;
  object-fit: cover;
  object-position: top center;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1.2s .4s forwards;
  filter: grayscale(10%);
}

.hero-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-initials {
  font-family: var(--display);
  font-size: 10rem;
  font-weight: 400;
  color: var(--gray-dkk);
  letter-spacing: .02em;
  line-height: 1;
  user-select: none;
}

.hero-right-label {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted-lt);
  white-space: nowrap;
  z-index: 5;
}

.hero-deco-num {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  font-family: var(--display);
  font-size: 14rem;
  font-weight: 400;
  color: var(--gray-dkk);
  line-height: 1;
  letter-spacing: .02em;
  z-index: 1;
  user-select: none;
  pointer-events: none;
}

.hero-red-bar {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 42%;
  height: 7px;
  background: var(--red);
  z-index: 6;
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════════ */
.marquee-wrap {
  background: var(--ink);
  padding: 1.15rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  padding: 0 2.2rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-sep {
  color: var(--red);
  padding: 0;
  flex-shrink: 0;
  font-size: .72rem;
  align-self: center;
}

/* ═══════════════════════════════════════════════════════════
   SHARED SECTION UTILITIES
═══════════════════════════════════════════════════════════ */
section {
  padding: 7.5rem 4.5rem;
}

.sec-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  display: block;
}

.sec-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: .01em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.sec-title em {
  font-style: normal;
  color: var(--red);
}

.sec-title .outline {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
#about {
  background: var(--gray);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 7rem;
  align-items: start;
}

.about-pull {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: .01em;
  color: var(--ink);
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--red);
}

.about-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.about-body strong {
  font-weight: 600;
  color: var(--ink);
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 2rem;
}

.about-pill {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--gray-dkk);
  padding: .35rem .9rem;
  border-radius: 100px;
  transition: border-color .2s, color .2s;
}

.about-pill:hover {
  border-color: var(--red);
  color: var(--red);
}

.about-sign {
  font-family: var(--display);
  font-style: normal;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--red);
  margin-top: 2.5rem;
  letter-spacing: .02em;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════ */
#services {
  background: var(--white);
}

.services-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}

.services-tagline {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 440px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1.5px solid var(--gray-dk);
}

.svc-card {
  padding: 3rem 2.5rem 2.8rem;
  border-right: 1.5px solid var(--gray-dk);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.svc-card:last-child {
  border-right: none;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.svc-card:hover {
  background: var(--gray);
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-num {
  font-family: var(--display);
  font-size: 3.8rem;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--gray-dkk);
  line-height: 1;
  margin-bottom: 1.8rem;
  transition: color .3s;
}

.svc-card:hover .svc-num {
  color: var(--red-pale);
}

.svc-name {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.svc-desc {
  font-size: .88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.8rem;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.svc-tag {
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red-pale);
  padding: .25rem .7rem;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════════════════════════ */
#portfolio {
  background: var(--ink);
  padding: 7.5rem 4.5rem;
}

#portfolio .sec-label {
  color: var(--red);
}

#portfolio .sec-title {
  color: var(--white);
}

#portfolio .sec-title .outline {
  -webkit-text-stroke-color: rgba(255, 255, 255, .35);
}

.portfolio-intro {
  font-size: .95rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 4.5rem;
  line-height: 1.8;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.pcard {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.pcard-bg {
  position: absolute;
  inset: 0;
  transition: transform .6s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pcard:hover .pcard-bg {
  transform: scale(1.07);
}

.pcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 24, .96) 0%,
    rgba(26, 26, 24, .35) 55%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 2rem 1.8rem;
}

.pcard:hover .pcard-overlay {
  opacity: 1;
}

.pcard-cat {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .4rem;
}

.pcard-title {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--white);
  line-height: 1.2;
}

.pcard-meta {
  font-size: .75rem;
  font-weight: 300;
  color: var(--muted-lt);
  margin-top: .35rem;
}

/* Card background palettes */
.bg-riu    { background: linear-gradient(135deg, #251010 0%, #591213 100%); }
.bg-zulma  { background: linear-gradient(135deg, #142a40 0%, #144270 100%); }
.bg-ateams { background: linear-gradient(135deg, #251010 0%, #810303 100%); }
.bg-simpleshow { background: linear-gradient(135deg, #1a2b4a 0%, #612a16 100%); }
.bg-spg    { background: linear-gradient(135deg, #193a47 0%, #1e4b34 100%); }
.bg-shobr  { background: linear-gradient(135deg, #1f3c36 0%, #226b5d 100%); }

.pcard-logo-text {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: .01em;
  text-align: center;
  padding: 1rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, .07);
}

.pcard-icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .4);
  border: 1px solid rgba(255, 255, 255, .1);
}

.portfolio-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio-count {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.portfolio-count span {
  color: var(--red);
}

.btn-outline-cream {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .25);
  padding: .85rem 2rem;
  transition: border-color .2s, color .2s;
  display: inline-block;
}

.btn-outline-cream:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ═══════════════════════════════════════════════════════════
   CLIENTS
═══════════════════════════════════════════════════════════ */
#clients {
  background: var(--gray);
}

.clients-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1.5px solid var(--gray-dkk);
  margin: 3.5rem 0 5rem;
}

.cli-cell {
  padding: 2.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1.5px solid var(--gray-dkk);
  gap: .5rem;
  transition: background .2s;
  text-align: center;
}

.cli-cell:last-child {
  border-right: none;
}

.cli-cell:hover {
  background: var(--white);
}

.cli-name {
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--muted-lt);
  transition: color .2s;
  line-height: 1.25;
}

.cli-cell:hover .cli-name {
  color: var(--red);
}

.cli-industry {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-lt);
  opacity: .6;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testi {
  background: var(--white);
  padding: 2.8rem;
  border-top: 3px solid var(--red);
  transition: transform .3s;
}

.testi:hover {
  transform: translateY(-3px);
}

.testi-quote {
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--red-pale);
  line-height: 1;
  margin-bottom: .8rem;
  letter-spacing: .01em;
}

.testi-text {
  font-size: .97rem;
  font-weight: 300;
  font-style: normal;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testi-author {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
}

.testi-role {
  font-size: .8rem;
  font-weight: 300;
  color: var(--muted);
  margin-top: .2rem;
}

/* ═══════════════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════════════ */
#process {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 4.5rem;
  border-top: 1.5px solid var(--gray-dk);
}

.proc-step {
  padding: 3rem 2.5rem 3rem 0;
  border-right: 1.5px solid var(--gray-dk);
}

.proc-step:last-child {
  border-right: none;
}

.proc-step:not(:first-child) {
  padding-left: 2.5rem;
  padding-right: 0;
}

.proc-step:last-child {
  padding-right: 0;
}

.proc-num {
  font-family: var(--display);
  font-size: 4.5rem;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--gray-dkk);
  line-height: 1;
  margin-bottom: 1.3rem;
  transition: color .3s;
}

.proc-step:hover .proc-num {
  color: var(--red-pale);
}

.proc-title {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--ink);
  margin-bottom: .7rem;
}

.proc-desc {
  font-size: .86rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
#contact {
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: start;
  padding: 7.5rem 4.5rem;
}

#contact .sec-label {
  color: var(--red);
}

#contact .sec-title {
  color: var(--white);
}

#contact .sec-title .outline {
  -webkit-text-stroke-color: rgba(255, 255, 255, .35);
}

.contact-copy {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .45);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-list {
  margin-bottom: 3rem;
}

.contact-row {
  display: flex;
  gap: 1.2rem;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.contact-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.c-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  min-width: 85px;
  flex-shrink: 0;
}

.c-val {
  font-size: .9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .8);
}

.c-val a {
  transition: color .2s;
}

.c-val a:hover {
  color: var(--red);
}

/* Form */
.fg {
  margin-bottom: 1.4rem;
}

.fg label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: .6rem;
}

.fg input,
.fg textarea,
.fg select {
  width: 100%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .85);
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 300;
  padding: .9rem 1.1rem;
  outline: none;
  transition: border-color .2s;
  resize: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(255, 255, 255, .2);
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--red);
}

.fg textarea {
  min-height: 110px;
}

.fg select option {
  background: var(--ink);
  color: var(--white);
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-form {
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  padding: 1.05rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: .5rem;
}

.btn-form:hover {
  background: var(--red-dim);
  transform: translateY(-1px);
}

.btn-form:active {
  transform: scale(.99);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer {
  background: #111110;
  padding: 2rem 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .05);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .8);
}

.footer-logo span {
  color: var(--red);
}

.footer-copy {
  font-size: .72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .80);
  letter-spacing: .06em;
}

.footer-links {
  display: flex;
  gap: 1.8rem;
}

.footer-links a {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--red);
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .45); }
  50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.rd1 { transition-delay: .08s; }
.rd2 { transition-delay: .16s; }
.rd3 { transition-delay: .24s; }
.rd4 { transition-delay: .32s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 1100px
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  #navbar             { padding: 1.5rem 2.5rem; }
  #navbar.scrolled    { padding: 1rem 2.5rem; }
  .nav-links          { gap: 1.8rem; }
  section             { padding: 5.5rem 2.5rem; }
  #hero               { grid-template-columns: 1fr; }
  .hero-left          { padding: 8rem 2.5rem 3.5rem; }
  .hero-right         { height: 56vw; max-height: 460px; }
  #about              { grid-template-columns: 1fr; gap: 3rem; }
  .services-top       { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-grid      { grid-template-columns: 1fr; }
  .svc-card           { border-right: none; border-bottom: 1.5px solid var(--gray-dk); }
  .svc-card:last-child { border-bottom: none; }
  .portfolio-grid     { grid-template-columns: 1fr 1fr; }
  .clients-logos      { grid-template-columns: repeat(3, 1fr); }
  .cli-cell:nth-child(3) { border-right: none; }
  .testi-grid         { grid-template-columns: 1fr; }
  .process-grid       { grid-template-columns: 1fr 1fr; }
  .proc-step:nth-child(2) { border-right: none; }
  .proc-step:nth-child(3) { border-top: 1.5px solid var(--gray-dk); padding-left: 0; }
  .proc-step:nth-child(4) { border-top: 1.5px solid var(--gray-dk); border-right: none; }
  #contact            { grid-template-columns: 1fr; gap: 3.5rem; padding: 5.5rem 2.5rem; }
  footer              { padding: 1.8rem 2.5rem; flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 720px
═══════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  #navbar             { padding: 1.2rem 1.5rem; }
  #navbar.scrolled    { padding: .9rem 1.5rem; }
  .nav-links,
  .nav-cta            { display: none; }
  .nav-hamburger      { display: flex; }
  section             { padding: 4.5rem 1.5rem; }
  .hero-left          { padding: 7rem 1.5rem 3rem; }
  .hero-stats         { gap: 2rem; }
  .portfolio-grid     { grid-template-columns: 1fr; }
  .clients-logos      { grid-template-columns: repeat(2, 1fr); }
  .cli-cell:nth-child(2) { border-right: none; }
  .cli-cell:nth-child(3) { border-top: 1.5px solid var(--gray-dkk); }
  .process-grid       { grid-template-columns: 1fr; }
  .proc-step          { border-right: none; border-bottom: 1.5px solid var(--gray-dk); padding: 2.2rem 0; }
  .proc-step:not(:first-child) { padding-left: 0; border-top: none; }
  .fg-row             { grid-template-columns: 1fr; }
  footer              { padding: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   LANGUAGE SWITCHER
═══════════════════════════════════════════════════════════ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-right: .5rem;
}

.lang-btn {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem .1rem;
  transition: color .2s;
  line-height: 1;
}

.lang-btn:hover {
  color: var(--ink);
}

.lang-btn.active {
  color: var(--red);
}

.lang-divider {
  font-size: .65rem;
  color: var(--gray-dkk);
  user-select: none;
}

/* hide switcher text on very small screens, show icon only */
@media (max-width: 720px) {
  .lang-switcher {
    display: flex; /* keep visible on mobile */
    margin-right: .25rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   PORTFOLIO CARDS — clickable (case study pages)
═══════════════════════════════════════════════════════════ */
.pcard[data-href] {
  cursor: pointer;
}

.pcard-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: .8rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s .1s, transform .3s .1s;
}

.pcard:hover .pcard-arrow {
  opacity: 1;
  transform: translateX(0);
}

.pcard-arrow::after {
  content: '→';
  color: var(--red);
}

/* ═══════════════════════════════════════════════════════════
   MOBILE MENU — open state (toggled via JS .menu-open class)
═══════════════════════════════════════════════════════════ */
#navbar.menu-open .nav-links {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(253,250,247,.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
  z-index: 199;
  list-style: none;
  padding: 0;
  margin: 0;
}

#navbar.menu-open .nav-links li { display: block; }

#navbar.menu-open .nav-links a {
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s;
}

#navbar.menu-open .nav-links a:hover { color: var(--red); }

/* Keep hamburger and lang switcher above the overlay */
#navbar.menu-open .nav-hamburger,
#navbar.menu-open .lang-switcher {
  position: relative;
  z-index: 200;
}

/* Hamburger → X animation */
#navbar.menu-open .nav-hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
#navbar.menu-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}
#navbar.menu-open .nav-hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}
