/* ═══════════════════════════════════════════════════════════════
   MADE KNOWN PICTURES — Main Stylesheet (v2)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --black:        #000000;
  --near-black:   #0d0d0d;
  --dark:         #1a1a1a;
  --mid:          #444444;
  --muted:        #888888;
  --light:        #cccccc;
  --border:       #e5e5e5;
  --bg:           #ffffff;
  --bg-off:       #f7f7f5;
  --bg-dark:      #0d0d0d;
  --text:         #111111;
  --text-muted:   #666666;
  --text-light:   #999999;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --nav-h:        68px;
  --trans:        0.2s ease;
  --radius:       8px;
  --radius-lg:    12px;
}

/* ─── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
select, input, textarea { font: inherit; color: inherit; background: none; border: none; outline: none; }

/* ─── Container ─────────────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── Reveal ────────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.revealed { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.18s; }
.reveal:nth-child(4) { transition-delay: 0.26s; }

/* ─── Eyebrow ────────────────────────────────────────────────────────────── */
.eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   NAV — white, clean
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
}
.nav__logo-img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
/* On white nav show dark logo, hide light */
.nav__logo-img--light { display: none; }
.nav__logo-img--dark  { display: block; }
.nav__logo-text { letter-spacing: 0.16em; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__links a {
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 4px;
  transition: color var(--trans);
}
.nav__links a:hover { color: var(--black); }
.nav__cta {
  background: var(--black) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 4px !important;
  transition: background var(--trans) !important;
}
.nav__cta:hover { background: var(--dark) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px; padding: 4px 0;
}
.nav__toggle span { display: block; height: 2px; background: var(--black); border-radius: 2px; }

/* ═══════════════════════════════════════════════════════════════
   HERO — full-bleed slideshow
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 560px;
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero__slide.active { opacity: 1; }

/* Made Known production photos */
.hero__slide:nth-child(1) { background-image: url('../images/hero.jpg'); background-position: center 40%; }
.hero__slide:nth-child(2) { background-image: url('../images/scottmadeknown.com10.jpeg'); background-position: center 25%; }
.hero__slide:nth-child(3) { background-image: url('../images/hero.png'); background-position: center 50%; }
.hero__slide:nth-child(4) { background-image: url('../images/madeknown.com03.jpg'); background-position: center 30%; }
.hero__slide:nth-child(5) { background-image: url('../images/madeknown.com07.jpg'); background-position: center 50%; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 64px;
  max-width: 900px;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 28px;
}
.hero__headline em { display: block; font-style: italic; }

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #fff;
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  width: fit-content;
  transition: background var(--trans), color var(--trans);
}
.hero__cta:hover { background: rgba(255,255,255,0.88); }
.hero__cta svg { width: 16px; height: 16px; }

/* Slide dots */
.hero__dots {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.hero__dot.active {
  background: #fff;
  width: 28px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   STATS — true black, massive numbers
   ═══════════════════════════════════════════════════════════════ */
.stats {
  background: var(--black);
  padding: 80px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.stat__number {
  font-family: var(--font-sans);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #555;
}

/* ═══════════════════════════════════════════════════════════════
   LOGO CAROUSEL
   ═══════════════════════════════════════════════════════════════ */
.logo-carousel {
  background: var(--bg);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logo-carousel__inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}
.logo-carousel__label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 28px;
}
.logo-carousel__stage {
  position: relative;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-carousel__img {
  position: absolute;
  max-height: 80px;
  max-width: 320px;
  width: auto;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.logo-carousel__img.active { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT — section photo
   ═══════════════════════════════════════════════════════════════ */
.about__photo {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 72px;
  display: block;
}

/* Contact decorative image */
.contact__img-wrap {
  margin-top: 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 220px;
}
.contact__img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   WHAT WE OFFER — white, 3-col image cards
   ═══════════════════════════════════════════════════════════════ */
.offers {
  padding: 100px 0;
  background: var(--bg);
}
.offers__header {
  text-align: center;
  margin-bottom: 64px;
}
.offers__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--black);
  line-height: 1.15;
}
.offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.offer-card {}
.offer-card__img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  background: #eee;
}
.offer-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.offer-card:hover .offer-card__img img { transform: scale(1.04); }
.offer-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
}
.offer-card__body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   PORTFOLIO — dark header banner + light grid
   ═══════════════════════════════════════════════════════════════ */
.portfolio-banner {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.portfolio-banner__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/madeknown.com08.jpg');
  background-size: cover;
  background-position: center 30%;
}
.portfolio-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
}
.portfolio-banner__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 48px;
  max-width: 1280px;
  margin: 0 auto;
}
.portfolio-banner__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.portfolio-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.05;
}

/* Layout */
.portfolio-body {
  background: var(--bg-dark);
  padding: 56px 0 80px;
}
.portfolio-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Sidebar: plain text list ─────────────────────────────────────────────── */
.sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.sidebar__label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 20px;
}
.sidebar__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar__list li button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 7px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  border-radius: 4px;
  transition: color var(--trans), background var(--trans);
}
.sidebar__list li button:hover { color: #fff; background: rgba(255,255,255,0.06); }
.sidebar__list li button.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
}

/* Sidebar search */
.sidebar__search {
  position: relative;
  margin-bottom: 28px;
}
.sidebar__search svg {
  position: absolute;
  left: 10px; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  color: #555;
  pointer-events: none;
}
.sidebar__search input {
  width: 100%;
  padding: 9px 10px 9px 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 0.78rem;
  color: #fff;
  transition: border-color var(--trans);
}
.sidebar__search input::placeholder { color: #555; }
.sidebar__search input:focus { border-color: rgba(255,255,255,0.3); }

/* ── Toolbar ─────────────────────────────────────────────────────────────── */
.portfolio-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.results-count { font-size: 0.75rem; color: #555; }
.sort-select {
  padding: 7px 28px 7px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 0.75rem;
  color: #aaa;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 10px;
  background-color: rgba(255,255,255,0.06);
}

/* ── Video Grid ──────────────────────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── Video Card ──────────────────────────────────────────────────────────── */
.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: #111;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(255,255,255,0.06);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

/* Thumb: autoplay iframe */
.video-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0a0a14;
}
.video-card__thumb iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 177.78%;   /* 16:9 at 100% height */
  height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}
/* Fallback static thumb */
.video-card__thumb .thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.video-card__thumb .thumb-img.hidden { opacity: 0; }

/* Overlay with title */
.video-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  pointer-events: none;
}
.video-card__cat {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}
.video-card__title-overlay {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
}

/* Play button (shows on hover) */
.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.video-card:hover .video-card__play { opacity: 1; }
.play-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
}
.play-circle svg { width: 20px; height: 20px; color: #fff; margin-left: 3px; }

/* Card body */
.video-card__body {
  padding: 16px 20px 20px;
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.video-card__client-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 4px;
}
.video-card__client-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ddd;
}
.video-card__blurb {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.6;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card__tags {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-top: 12px;
}
.tag {
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.07);
  color: #888;
  border: 1px solid rgba(255,255,255,0.1);
}

/* No results */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
  color: #555;
}
.no-results p { margin-bottom: 16px; }
.btn-clear {
  padding: 10px 20px;
  border: 1px solid #333;
  border-radius: 4px;
  font-size: 0.78rem;
  color: #888;
  transition: all var(--trans);
}
.btn-clear:hover { border-color: #666; color: #ccc; }

/* Mobile filter btn */
.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
  transition: all var(--trans);
}
.mobile-filter-btn:hover { color: #fff; }
.mobile-filter-btn svg { width: 14px; height: 14px; }
.filter-badge {
  min-width: 18px; height: 18px;
  border-radius: 10px;
  background: #fff;
  color: #000;
  font-size: 0.62rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.about__intro { max-width: 720px; margin-bottom: 72px; }
.about__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 24px;
  line-height: 1.2;
}
.about__lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about__body { font-size: 0.95rem; color: var(--text-muted); line-height: 1.85; }

.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
.founder {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-off);
  display: flex;
  gap: 24px;
  transition: border-color var(--trans);
}
.founder:hover { border-color: #aaa; }
.founder__avatar-inner {
  width: 120px; height: 120px;
  border-radius: 12px;
  background: var(--black);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  overflow: hidden;
}
.founder__avatar-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.founder__role {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}
.founder__name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 14px;
}
.founder__bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 10px;
}
.founder__bio em { font-style: italic; color: var(--text); }
.founder__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--black);
  border-left: 3px solid var(--border);
  padding-left: 14px;
  margin: 14px 0;
  line-height: 1.6;
}
.founder__tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px;
}
.founder__tags span {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.about__awards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.award {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 14px;
  transition: border-color var(--trans);
}
.award:hover { border-color: #aaa; }
.award__icon { font-size: 1rem; color: var(--black); flex-shrink: 0; margin-top: 2px; }
.award__title { font-weight: 600; font-size: 0.88rem; color: var(--black); margin-bottom: 4px; }
.award__body { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.award__body em { font-style: italic; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact {
  padding: 100px 0;
  background: var(--bg-off);
  border-top: 1px solid var(--border);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.2;
}
.contact__title em { font-style: italic; }
.contact__sub { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.calendly-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--black);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 32px;
  transition: background var(--trans), transform var(--trans);
}
.calendly-btn:hover { background: var(--dark); transform: translateY(-1px); }
.calendly-btn svg { width: 16px; height: 16px; }

.contact__detail {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-muted);
  margin-bottom: 12px;
}
.contact__detail svg { width: 16px; height: 16px; color: var(--black); flex-shrink: 0; }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 11px 13px;
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text);
  transition: border-color var(--trans);
  resize: vertical;
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23999'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
  background-color: var(--bg-off);
  cursor: pointer;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-light); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--black); }

.btn-submit {
  width: 100%;
  padding: 13px;
  background: var(--black);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--trans);
}
.btn-submit:hover { background: var(--dark); }
.btn-submit.sent { background: #1a6b3a; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  padding: 56px 0 32px;
  background: var(--black);
  border-top: 1px solid #1a1a1a;
}
.footer__inner {
  display: flex; justify-content: space-between;
  gap: 40px; margin-bottom: 40px; flex-wrap: wrap;
}
.footer__logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; margin-bottom: 14px;
}
.footer__logo-img {
  width: 40px; height: 40px; flex-shrink: 0;
}
.footer__tagline { font-size: 0.82rem; color: #555; max-width: 300px; line-height: 1.7; }
.footer__links { display: flex; gap: 48px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-title {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #444; margin-bottom: 4px;
}
.footer__col a { font-size: 0.82rem; color: #666; transition: color var(--trans); }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid #1a1a1a;
  font-size: 0.75rem; color: #444; flex-wrap: wrap; gap: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════════════ */
.modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal.active { opacity: 1; pointer-events: all; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
}
.modal__container {
  position: relative; z-index: 1;
  width: 100%; max-width: 880px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: scale(0.96) translateY(16px);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.modal.active .modal__container { transform: scale(1) translateY(0); }
.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans);
}
.modal__close:hover { background: rgba(255,255,255,0.1); }
.modal__close svg { width: 15px; height: 15px; color: #fff; }
.modal__video-wrap { position: relative; padding-bottom: 56.25%; background: #000; }
.modal__video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.modal__info { padding: 22px 26px; }
.modal__title {
  font-family: var(--font-serif); font-size: 1.25rem;
  font-weight: 400; font-style: italic; color: #fff; margin-bottom: 4px;
}
.modal__client {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #666; margin-bottom: 10px;
}
.modal__blurb { font-size: 0.85rem; color: #888; line-height: 1.7; margin-bottom: 12px; }
.modal__tags { display: flex; gap: 6px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .portfolio-layout { grid-template-columns: 1fr; }
  .sidebar {
    position: fixed; top: 0; bottom: 0; left: 0;
    width: 280px; z-index: 900;
    background: #0d0d0d; border-right: 1px solid rgba(255,255,255,0.08);
    padding: 80px 24px 24px;
    transform: translateX(-100%);
    transition: transform var(--trans);
    overflow-y: auto;
  }
  .sidebar.open { transform: translateX(0); }
  .mobile-filter-btn { display: flex; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .founders { grid-template-columns: 1fr; }
  .about__awards { grid-template-columns: 1fr 1fr; }
  .offers__grid { grid-template-columns: 1fr 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .container, .portfolio-layout { padding: 0 20px; }
  .nav__inner { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav.mobile-open .nav__links {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 12px;
  }
  .nav.mobile-open .nav__links a { display: block; padding: 13px 16px; }

  .hero { height: 85vh; }
  .hero__content { padding: 0 24px; }
  .hero__dots { right: 24px; }

  .stats__grid { grid-template-columns: 1fr; gap: 48px; }

  .offers { padding: 64px 0; }
  .offers__grid { grid-template-columns: 1fr; }

  .portfolio-banner { height: 240px; }
  .portfolio-banner__content { padding: 32px 20px; }

  .video-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; }
  .footer__links { flex-direction: column; gap: 28px; }
  .footer__bottom { flex-direction: column; }

  .founders { grid-template-columns: 1fr; }
  .about__awards { grid-template-columns: 1fr; }
  .founder { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
