/* =========================================
   ARVINDO MEDIA – Professional Stylesheet
   ========================================= */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #1A2B3C; background: #fff; line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === CSS VARIABLES === */
:root {
  --navy: #445d87;
  --navy-mid: #6f86ad;
  --orange: #72afb5;
  --orange-l: #e8f4f4;
  --orange-m: #9cc8cc;
  --white: #FFF;
  --offwhite: #f5f8fb;
  --bg: #edf3f7;
  --muted: #60718d;
  --border: #dbe4ee;
  --shadow-sm: 0 2px 8px rgba(68,93,135,.08);
  --shadow-md: 0 8px 28px rgba(68,93,135,.14);
  --shadow-lg: 0 20px 60px rgba(68,93,135,.18);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
}

/* === UTILITIES === */
.container { width: 100%; max-width: 1360px; margin: 0 auto; padding: 0 32px; }
.section-badge { display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); background: var(--orange-l); padding: .35em .9em; border-radius: 50px; margin-bottom: 1rem; }
.section-badge--light { color: #fff; background: rgba(255,255,255,.15); }
.section-title { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; color: var(--navy); margin-bottom: 1rem; }
.section-title em { font-style: italic; color: var(--orange); }
.section-title--light { color: #fff; }
.section-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.7; }
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .875rem 2rem; border-radius: 50px; font-size: .95rem; font-weight: 600; cursor: pointer; transition: all .25s ease; border: 2px solid transparent; }
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: #5f99a0; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(114,175,181,.35); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn--ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.btn--full { width: 100%; justify-content: center; }

/* === FADE-UP ANIMATION === */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* === PROGRESS BAR === */
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: var(--orange); z-index: 9999; transition: width .1s linear; }

/* === NAVBAR === */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.2rem 0; transition: all .3s ease; }
.nav.scrolled { background: rgba(255,255,255,.97); box-shadow: var(--shadow-sm); padding: .85rem 0; backdrop-filter: blur(10px); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav__brand { display: flex; align-items: center; flex-shrink: 0; }
.nav__brand-logo { position: relative; display: block; width: min(32vw, 260px); min-width: 190px; aspect-ratio: 2018 / 387; }
.nav__logo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: left center; transition: opacity .25s ease; }
.nav__logo--color { opacity: 0; }
.nav.scrolled .nav__logo--white { opacity: 0; }
.nav.scrolled .nav__logo--color { opacity: 1; }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { font-size: .9rem; font-weight: 500; color: #fff; transition: color .2s; }
.nav.scrolled .nav__links a { color: var(--navy); }
.nav__links a:hover { color: var(--orange); }
.nav__cta { background: var(--orange) !important; color: #fff !important; padding: .55rem 1.4rem; border-radius: 50px; }
.nav__cta:hover { background: #5f99a0 !important; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s ease; }
.nav.scrolled .nav__burger span { background: var(--navy); }

/* === HERO === */
.hero { min-height: 100vh; background: var(--navy); display: flex; flex-direction: column; justify-content: center; padding: 130px 0 90px; position: relative; overflow: hidden; }
.hero__bg-grid { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px); background-size: 30px 30px; pointer-events: none; z-index: 0; }
.hero::before { content: ''; position: absolute; top: -150px; right: 5%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(114,175,181,.22) 0%, transparent 65%); pointer-events: none; z-index: 1; }
.hero::after { content: ''; position: absolute; bottom: -80px; left: 25%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(111,134,173,.58) 0%, transparent 65%); pointer-events: none; z-index: 1; }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 2; }
.hero__badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(114,175,181,.18); color: #b7d9db; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .45em 1.1em; border-radius: 50px; border: 1px solid rgba(114,175,181,.3); margin-bottom: 1.4rem; }
.hero__h1 { font-family: 'DM Serif Display', serif; font-size: clamp(2.5rem, 4.5vw, 4rem); color: #fff; line-height: 1.08; margin-bottom: 1.25rem; }
.hero__h1 em { font-style: italic; color: #a8d1d4; }
.hero__sub { color: rgba(255,255,255,.68); font-size: 1.05rem; line-height: 1.75; max-width: 480px; margin-bottom: 2.25rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn--outline-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); transform: translateY(-2px); }
.hero__trusted { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero__trusted-label { font-size: .75rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
.hero__trusted-logos { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.hero__trusted-logos img { height: 36px; width: auto; object-fit: contain; filter: grayscale(1) opacity(.55); transition: filter .3s, transform .18s ease, opacity .18s ease; }
.hero__trusted-logos img:hover { filter: grayscale(0) opacity(1); transform: translateY(-4px); }
/* Make Starbucks logo whiter in hero and marquee (higher brightness + opacity) */
.hero__trusted-logos img[src$="client_starbuck.png"],
.marquee__item img[src$="client_starbuck.png"] {
  filter: grayscale(1) brightness(1.9) contrast(1.05) opacity(.92) !important;
  transition: filter .25s ease, opacity .18s ease, transform .18s ease;
}
.hero__trusted-logos img[src$="client_starbuck.png"]:hover,
.marquee__item img[src$="client_starbuck.png"]:hover {
  filter: grayscale(0) opacity(1) brightness(1) contrast(1) !important;
  transform: translateY(-4px);
}

/* Image stack */
.hero__stack { position: relative; height: 520px; }
.hero__stack-main { position: absolute; left: 0; top: 0; width: 60%; height: 100%; border-radius: 22px; overflow: hidden; box-shadow: 0 40px 90px rgba(0,0,0,.5); }
.hero__stack-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.hero__stack-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease, opacity .6s ease; opacity: 1; }
.hero__stack-main:hover img { transform: scale(1.04); }
.hero__stack-sm { position: absolute; right: 0; width: 38%; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.hero__stack-sm--top { top: 0; height: 47%; }
.hero__stack-sm--bot { bottom: 0; height: 47%; }
.hero__stack-sm img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease, opacity .6s ease; opacity: 1; }
.hero__stack-sm:hover img { transform: scale(1.05); }
.hero__float-stat { position: absolute; bottom: 2.5rem; left: -1.8rem; background: var(--orange); color: #fff; padding: 1.1rem 1.6rem; border-radius: 18px; text-align: center; box-shadow: 0 16px 40px rgba(114,175,181,.4); z-index: 3; }
.hero__float-stat strong { display: block; font-family: 'DM Serif Display', serif; font-size: 2.4rem; line-height: 1; }
.hero__float-stat span { font-size: .76rem; opacity: .88; font-weight: 500; }
.hero__float-badge { position: absolute; top: -0.8rem; right: -1.2rem; background: #fff; color: var(--navy); padding: .6rem 1.1rem; border-radius: 50px; font-size: .78rem; font-weight: 700; box-shadow: 0 10px 30px rgba(0,0,0,.18); white-space: nowrap; display: flex; align-items: center; gap: .4rem; z-index: 3; }
.hero__float-badge svg { color: var(--orange); flex-shrink: 0; }
.hero__scroll-hint { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.4); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; z-index: 2; }
.hero__scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,.35), transparent); animation: scrollLine 1.6s ease infinite; }
@keyframes scrollLine { 0%,100% { opacity: .35; transform: scaleY(1); transform-origin: top; } 50% { opacity: .9; transform: scaleY(.45); transform-origin: top; } }

/* === STATS === */
.stats { background: var(--navy); padding: 3rem 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { text-align: center; padding: 1.5rem 2rem; border-right: 1px solid rgba(255,255,255,.08); }
.stat:last-child { border-right: none; }
.stat__num { font-family: 'DM Serif Display', serif; font-size: 3rem; color: var(--orange-m); font-weight: 400; }
.stat__unit { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--orange-m); }
.stat p { color: rgba(255,255,255,.6); font-size: .85rem; margin-top: .25rem; }

/* === CLIENTS MARQUEE === */
.clients { padding: 4rem 0 2rem; background: var(--offwhite); overflow: hidden; }
.clients__head { text-align: center; margin-bottom: 2rem; }
.clients__head p { font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; color: var(--muted); }
.marquee__track { overflow: hidden; position: relative; }
.marquee__track::before, .marquee__track::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; }
.marquee__track::before { left: 0; background: linear-gradient(to right, var(--offwhite), transparent); }
.marquee__track::after { right: 0; background: linear-gradient(to left, var(--offwhite), transparent); }
.marquee__inner { display: flex; gap: 3rem; width: max-content; animation: marquee 28s linear infinite; }
.marquee__inner:hover { animation-play-state: paused; }
.marquee__item { display: flex; align-items: center; flex-shrink: 0; }
.marquee__item img { height: 44px; width: auto; object-fit: contain; filter: grayscale(1) opacity(.55); transition: filter .3s; }
.marquee__item img:hover { filter: grayscale(0) opacity(1); }
/* End marquee rules */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === ABOUT === */
.about { padding: 7rem 0; }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about__content p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.25rem; }
.about__pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.about__pills span { background: var(--orange-l); color: var(--orange); font-size: .82rem; font-weight: 600; padding: .35em .9em; border-radius: 50px; }
.about__img-wrap { position: relative; border-radius: var(--r-xl); overflow: hidden; }
.about__img-wrap img { width: 100%; height: 460px; object-fit: cover; }
.about__img-badge { position: absolute; bottom: 1.5rem; right: 1.5rem; background: var(--orange); color: #fff; text-align: center; padding: 1rem 1.5rem; border-radius: var(--r-md); }
.about__img-badge strong { display: block; font-family: 'DM Serif Display', serif; font-size: 2rem; line-height: 1; }
.about__img-badge span { font-size: .8rem; opacity: .85; }

/* === VISI MISI === */
.vm { padding: 0 0 7rem; }
.vm__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.vm__card { background: var(--offwhite); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2.5rem 2rem; transition: transform .3s, box-shadow .3s; }
.vm__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.vm__icon { font-size: 2rem; margin-bottom: 1rem; }
.vm__card h3 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 1rem; }
.vm__card p, .vm__card li { color: var(--muted); font-size: .95rem; line-height: 1.7; }
.vm__card ul { padding-left: 1.2rem; list-style: disc; }
.vm__card li + li { margin-top: .5rem; }

/* === SERVICES === */
.services { padding: 7rem 0; background: var(--bg); }
.tabs { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.5rem; }
.tab { padding: .65rem 1.5rem; border-radius: 50px; border: 1.5px solid var(--border); background: #fff; color: var(--muted); font-size: .9rem; font-weight: 600; cursor: pointer; transition: all .2s; }
.tab.active, .tab:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.svc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 2rem; transition: all .3s; }
.svc-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.svc-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.svc-card h4 { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: .6rem; }
.svc-card p { color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* === PORTFOLIO === */
.portfolio { padding: 7rem 0; }
.pf__filters { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin: 2rem 0 2.5rem; }
.pf__btn { padding: .6rem 1.4rem; border-radius: 50px; border: 1.5px solid var(--border); background: #fff; color: var(--muted); font-size: .875rem; font-weight: 600; cursor: pointer; transition: all .22s; }
.pf__btn.active, .pf__btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.pf__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.pf__item { border-radius: var(--r-md); overflow: hidden; }
.pf__item.hidden { display: none; }
.pf__img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--bg); }
.pf__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pf__item:hover .pf__img-wrap img { transform: scale(1.07); }
.pf__overlay { position: absolute; inset: 0; background: rgba(68,93,135,.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.pf__item:hover .pf__overlay { opacity: 1; }
.pf__zoom { background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.4); color: #fff; border-radius: 50%; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s; backdrop-filter: blur(4px); }
.pf__zoom:hover { background: var(--orange); border-color: var(--orange); }
.pf__caption { font-size: .8rem; color: var(--muted); text-align: center; padding: .6rem .5rem; }

/* === GALLERY === */
.gallery { padding: 7rem 0; background: var(--bg); }
.gal__tabs { display: flex; gap: .5rem; justify-content: center; margin-bottom: 2.5rem; }
.gal__tab { padding: .65rem 1.8rem; border-radius: 50px; border: 1.5px solid var(--border); background: #fff; color: var(--muted); font-size: .9rem; font-weight: 600; cursor: pointer; transition: all .22s; }
.gal__tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.gal__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.gal__item { border-radius: var(--r-md); overflow: hidden; position: relative; aspect-ratio: 4/3; background: var(--border); }
.gal__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gal__item:hover img { transform: scale(1.07); }
.gal__overlay { position: absolute; inset: 0; background: rgba(68,93,135,.45); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.gal__item:hover .gal__overlay { opacity: 1; }
.gal__overlay button { background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.4); color: #fff; border-radius: 50%; width: 48px; height: 48px; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; cursor: pointer; backdrop-filter: blur(4px); }

/* === EXPERIENCES === */
.exp { position: relative; background-size: cover; background-position: center; background-attachment: fixed; padding: 8rem 0; }
.exp__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom right, rgba(68,93,135,.88), rgba(68,93,135,.72)); }
.exp__inner { position: relative; z-index: 2; }
.exp__inner .section-badge, .exp__inner .section-title { display: block; text-align: center; margin-bottom: 1rem; }
.exp__inner .section-title { margin-bottom: 3rem; }
.exp__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
.exp__card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: 2rem; transition: all .3s; backdrop-filter: blur(4px); }
.exp__card:hover { background: rgba(255,255,255,.13); transform: translateY(-4px); }
.exp__icon { font-size: 2rem; margin-bottom: 1rem; }
.exp__card h4 { color: #fff; font-family: 'DM Serif Display', serif; font-size: 1.15rem; margin-bottom: .6rem; }
.exp__card p { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.65; }

/* === MACHINES === */
.machines { padding: 7rem 0; background: var(--offwhite); }
.mach__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.mach__card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: all .3s; }
.mach__card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--orange); }
.mach__img { height: 200px; overflow: hidden; background: var(--bg); }
.mach__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.mach__card:hover .mach__img img { transform: scale(1.06); }
.mach__body { padding: 1.25rem; }
.mach__body h4 { font-family: 'DM Serif Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: .4rem; }
.mach__body p { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* === TEAM === */
.team { padding: 7rem 0; }
.team__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem; margin-top: 3rem; }
.team__card { text-align: center; }
.team__photo { border-radius: var(--r-xl); overflow: hidden; position: relative; aspect-ratio: 3/4; margin-bottom: 1.25rem; background: var(--bg); }
.team__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s; }
.team__card:hover .team__photo img { transform: scale(1.05); }
.team__info h4 { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: .3rem; }
.team__info span { font-size: .82rem; color: var(--orange); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

/* === CTA === */
.cta { background: linear-gradient(135deg, var(--orange) 0%, #4e7199 100%); padding: 6rem 0; }
.cta__inner { text-align: center; }
.cta__inner h2 { font-family: 'DM Serif Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 1rem; }
.cta__inner p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 2rem; }

/* === CONTACT === */
.contact { padding: 7rem 0; background: var(--bg); }
.contact__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact__info .section-title { margin-bottom: 1rem; }
.contact__info > p { color: var(--muted); margin-bottom: 2rem; }
.contact__list { display: flex; flex-direction: column; gap: .9rem; }
.contact__list li { display: flex; gap: .6rem; align-items: flex-start; }
.contact__ico { font-size: 1rem; margin-top: .06rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.contact__ico svg, .contact__ico img { width: 20px; height: 20px; display: block; color: var(--navy); }
.contact__list strong { display: block; font-size: .78rem; font-weight: 700; color: var(--navy); margin-bottom: .12rem; }
.contact__value { display: block; font-size: .82rem; color: var(--muted); line-height: 1.24; margin-top: 0; }
/* make contact links noticeable */
.contact-link { color: var(--orange); text-decoration: none; font-weight: 600; }
.contact-link:hover { text-decoration: underline; filter: brightness(.95); }
.contact__form { background: #fff; border-radius: var(--r-xl); padding: 2.5rem; box-shadow: var(--shadow-md); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__group { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.25rem; }
.form__group label { font-size: .85rem; font-weight: 600; color: var(--navy); }
.form__group input, .form__group select, .form__group textarea { padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: .95rem; font-family: inherit; color: var(--navy); background: var(--offwhite); transition: border-color .2s; resize: none; }
.form__group input:focus, .form__group select:focus, .form__group textarea:focus { outline: none; border-color: var(--orange); background: #fff; }

/* === FOOTER === */
.footer { background: var(--navy); color: rgba(255,255,255,.7); }
.footer__top { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; padding: 5rem 0 4rem; }
.footer__brand { display: flex; align-items: flex-start; gap: 1rem; }
.footer__logo { width: min(100%, 300px); margin-bottom: .9rem; }
.footer__brand p { font-size: .85rem; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__cols h5 { color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: .08em; }
.footer__cols a { font-size: .82rem; color: rgba(255,255,255,.55); transition: color .2s; display: block; margin-bottom: .5rem; }
.footer__cols a:hover { color: var(--orange-m); }
.footer__cols li { font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: .5rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer__bottom-inner { display: flex; justify-content: space-between; padding: 1.5rem 0; font-size: .82rem; color: rgba(255,255,255,.35); }

/* === LIGHTBOX === */
.lightbox { position: fixed; inset: 0; z-index: 9998; background: rgba(0,0,0,.93); display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox__content { max-width: 90vw; max-height: 90vh; text-align: center; }
.lightbox__content img { max-width: 88vw; max-height: 80vh; object-fit: contain; border-radius: var(--r-md); }
.lightbox__content p { color: rgba(255,255,255,.6); font-size: .9rem; margin-top: 1rem; }
.lightbox__close { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lightbox__close:hover { background: var(--orange); border-color: var(--orange); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 2rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s; }
.lightbox__nav:hover { background: var(--orange); }
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .mach__grid { grid-template-columns: repeat(3, 1fr); }
  .team__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .hero__inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero__stack { height: 380px; }
  .hero__float-stat { left: 0; bottom: 1.5rem; }
  .hero__float-badge { top: -.5rem; right: 0; }
  .about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about__img-wrap img { height: 340px; }
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer__top { grid-template-columns: 1fr; gap: 3rem; }
  .exp__grid { grid-template-columns: repeat(2, 1fr); }
  .pf__grid { grid-template-columns: repeat(3, 1fr); }
  .gal__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav__brand-logo { width: 190px; min-width: 190px; }
  .nav__links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: #fff; flex-direction: column; align-items: flex-start; gap: 0; padding: 5rem 2rem 2rem; box-shadow: -5px 0 30px rgba(0,0,0,.15); transition: right .3s ease; z-index: 99; }
  .nav__links.open { right: 0; }
  .nav__links a { color: var(--navy) !important; padding: .8rem 0; font-size: 1rem; border-bottom: 1px solid var(--border); width: 100%; }
  .nav__burger { display: flex; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .vm__grid { grid-template-columns: 1fr; }
  .svc__grid { grid-template-columns: repeat(2, 1fr); }
  .pf__grid { grid-template-columns: repeat(2, 1fr); }
  .gal__grid { grid-template-columns: repeat(2, 1fr); }
  .exp__grid { grid-template-columns: 1fr; }
  .mach__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hero__stack { height: 260px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav__brand-logo { width: 170px; min-width: 170px; }
  .svc__grid { grid-template-columns: 1fr; }
  .pf__grid { grid-template-columns: 1fr; }
  .gal__grid { grid-template-columns: 1fr; }
  .mach__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; gap: .5rem; text-align: center; }
  .hero__actions { flex-direction: column; }
  .hero__stack { height: 280px; }
  .hero__float-stat { display: none; }
  .hero__float-badge { display: none; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
}
