/* Vastushilpa main site */
@import url("fonts.css");

:root {
  --accent: #e85d1a;
  --accent-dark: #c45c26;
  --ink: #1a1a1a;
  --muted: #555;
  --bg: #f3f0eb;
  --bg-warm: #ebe6de;
  --white: #fff;
  --wa: #25d366;
  --page-max: 1180px;
  --page-wide: 1320px;
  --surface: rgba(255, 255, 255, 0.92);
  --line: #e4e0da;
}

* { box-sizing: border-box; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  margin: 0;
}
a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--page-max); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .wrap { padding: 0 1.5rem; } }
@media (min-width: 1024px) {
  .wrap { max-width: 92vw; padding: 0 2rem; }
}
.wrap--wide { max-width: min(var(--page-wide), 96vw); }
.wrap--carousel { max-width: min(var(--page-wide), 100%); }
@media (min-width: 1024px) {
  .wrap--wide,
  .wrap--carousel { max-width: 92vw; }
}

/* Loaders removed — never show */
.page-loader,
.page-loader__bar,
.mqa-preloader,
.mqa-preloader__bar {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.premium-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(165deg, #f7f4ef 0%, #efe9e1 38%, #f5f2ed 70%, #e8e2d9 100%);
  overflow: hidden;
}
.premium-bg::before {
  content: "";
  position: absolute;
  width: 160%;
  height: 160%;
  top: -30%;
  left: -30%;
  background:
    radial-gradient(ellipse 55% 45% at 15% 18%, rgba(232, 93, 26, 0.11), transparent 58%),
    radial-gradient(ellipse 45% 38% at 88% 12%, rgba(196, 92, 38, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 42% at 72% 82%, rgba(26, 42, 58, 0.06), transparent 52%);
  animation: drift 32s ease-in-out infinite alternate;
}
.premium-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}
@keyframes drift { to { transform: translate(4%, 3%) rotate(1deg); } }

.surface-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 8px 28px rgba(26, 26, 26, 0.05);
}
.surface-card--section {
  padding: 1.35rem 1.25rem 1.5rem;
}
@media (min-width: 768px) {
  .surface-card { padding: 1.5rem 1.75rem; }
  .surface-card--section { padding: 1.75rem 2rem 2rem; }
}
.surface-card--section h2 { margin-top: 0; margin-bottom: 0.35rem; }
.section-intro {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 1.15rem;
  max-width: 42rem;
}
.home-band { padding-top: 1rem; padding-bottom: 1rem; }
@media (min-width: 768px) { .home-band { padding-top: 1.25rem; padding-bottom: 1.25rem; } }

.site-banner {
  background: #fff;
  border-bottom: 3px solid var(--accent);
}
.site-banner__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0.35rem 1.25rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .site-banner__inner { max-width: 92vw; padding: 0.55rem 0; }
}
.site-banner img,
.site-banner__img {
  max-height: clamp(88px, 16vw, 150px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .site-banner__img {
    width: 92%;
    max-width: 92%;
    max-height: clamp(110px, 11vw, 200px);
  }
  .site-nav__inner { max-width: 92vw; padding: 0.85rem 2rem; }
}
.section--carousel-first { padding-top: 0.75rem; }

.site-nav__brand {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none !important;
  letter-spacing: -0.02em;
}
.site-nav__brand:hover { color: var(--accent); }

.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e8e4de;
}
.site-nav__inner {
  max-width: var(--page-max); margin: 0 auto; padding: 0.7rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.site-nav__inner--end {
  justify-content: flex-end;
}
@media (min-width: 769px) {
  .site-nav__inner--end .site-nav__toggle { display: none; }
}
.site-nav__links { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; font-size: 0.88rem; }
.site-nav__links a.is-active { color: var(--accent); font-weight: 700; }
.site-nav__cta {
  background: var(--wa) !important; color: #fff !important;
  padding: 0.45rem 0.9rem; border-radius: 4px; font-weight: 600; text-decoration: none !important;
}
.site-nav__toggle {
  display: none;
  font-size: 1.35rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.55rem;
  min-width: 44px;
  min-height: 44px;
  color: var(--ink);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .site-nav__toggle { display: flex; align-items: center; justify-content: center; }
  .site-nav__inner { position: relative; flex-wrap: wrap; }
  .site-nav__inner--end { justify-content: flex-end; }
  .site-nav__links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    z-index: 120;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1rem;
    border-bottom: 1px solid #eee;
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
    gap: 0.65rem;
  }
  .site-nav__links.is-open { display: flex; }
  .site-nav__links a { padding: 0.35rem 0; }
}

.page-hero { padding: 1.5rem 0 1rem; text-align: center; }
.page-hero--compact { padding: 1.25rem 0 0.75rem; }
.page-hero h1 { font-size: clamp(1.35rem, 4.5vw, 2.25rem); margin-bottom: 0.45rem; line-height: 1.15; font-weight: 600; }
.page-hero p { color: var(--muted); max-width: 34rem; margin: 0 auto; font-size: clamp(0.88rem, 2.5vw, 1rem); }

.section { padding: 1.5rem 0; }
@media (min-width: 768px) { .section { padding: 2rem 0; } }
@media (min-width: 1024px) { .section { padding: 3.25rem 0; } }
.section h2 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: 0.85rem;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .section h2 {
    font-size: clamp(2rem, 2.8vw, 2.85rem);
    margin-bottom: 1.35rem;
    line-height: 1.1;
  }
  .section--carousel h2 { margin-bottom: 1rem; }
}
.section--carousel { padding-top: 0.5rem; }
@media (min-width: 1024px) {
  .section--carousel { padding-top: 1rem; }
}
.section--carousel h2 { margin-bottom: 0.65rem; }

/* Home overview accordions */
.overview-stack { display: flex; flex-direction: column; gap: 0.6rem; }
.overview-item {
  background: #fff; border: 1px solid #e4e0da; border-radius: 8px; overflow: hidden;
}
.overview-item summary {
  padding: 1rem 1.15rem; cursor: pointer; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.overview-item summary::-webkit-details-marker { display: none; }
.overview-item summary::after { content: "+"; color: var(--accent); font-size: 1.2rem; font-weight: 400; }
.overview-item[open] summary::after { content: "−"; }
.overview-item__body { padding: 0 1.15rem 1.15rem; font-size: 0.92rem; color: var(--muted); }
.overview-item__body ul { margin: 0.5rem 0 0 1.1rem; }

.scroll-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.scroll-track { display: flex; gap: 1rem; width: max-content; animation: marquee 50s linear infinite; }
.scroll-track:hover { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.scroll-tile {
  flex: 0 0 240px; width: 240px; height: 240px; position: relative;
  border-radius: 8px; overflow: hidden; background: #ddd;
}
.scroll-tile img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.scroll-tile__cap {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 0.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,.75)); color: #fff; font-size: 0.7rem;
}

/* Home — one-at-a-time project carousel */
.work-carousel { width: 100%; }
.work-carousel__frame {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.work-carousel__viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  background: #ddd8d0;
  box-shadow: 0 10px 32px rgba(0,0,0,.08);
  min-height: clamp(200px, 56vw, 400px);
}
.work-carousel__track {
  display: flex;
  will-change: transform;
}
.work-carousel__slide {
  flex: 0 0 auto;
  position: relative;
  min-height: clamp(200px, 56vw, 400px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ddd8d0;
}
.work-carousel__slide img {
  width: 100%;
  height: clamp(200px, 56vw, 400px);
  object-fit: contain;
  object-position: center;
  display: block;
}
.work-carousel__more { margin-top: 0.85rem; }
.work-carousel__cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.work-carousel__cap strong { font-size: clamp(0.88rem, 2.5vw, 1rem); }
.work-carousel__cap em { font-size: 0.7rem; opacity: 0.9; font-style: normal; text-transform: uppercase; letter-spacing: 0.05em; }
.work-carousel__btn {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.work-carousel__btn:hover { border-color: var(--accent); color: var(--accent); }
.work-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  padding-top: 0.65rem;
  position: relative;
  z-index: 3;
}
.work-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  /* larger tap target without changing visual dot */
  box-shadow: 0 0 0 10px transparent;
}
.work-carousel__dot.is-active { background: var(--accent); transform: scale(1.2); }

@media (max-width: 520px) {
  .work-carousel__frame { gap: 0; }
  .work-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
    background: rgba(255,255,255,.92);
  }
  .work-carousel__prev { left: 0.5rem; }
  .work-carousel__next { right: 0.5rem; }
}
@media (min-width: 521px) {
  .work-carousel__frame { position: static; }
}

/* Laptop — near full-screen carousel (80% viewport height) */
@media (min-width: 1024px) {
  .section--carousel .wrap--carousel {
    max-width: 96vw;
    padding-left: 0;
    padding-right: 0;
  }
  .section--carousel-first {
    padding-top: 0.35rem;
    padding-bottom: 0.5rem;
  }
  .work-carousel:not(.work-carousel--panel) {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }
  .work-carousel:not(.work-carousel--panel) .work-carousel__frame {
    gap: 1.25rem;
  }
  .work-carousel:not(.work-carousel--panel) .work-carousel__viewport,
  .work-carousel:not(.work-carousel--panel) .work-carousel__slide {
    min-height: 80vh;
    height: 80vh;
    max-height: 920px;
    border-radius: 12px;
  }
  .work-carousel:not(.work-carousel--panel) .work-carousel__viewport {
    background: #1a1a1a;
  }
  .work-carousel:not(.work-carousel--panel) .work-carousel__slide {
    background: #1a1a1a;
  }
  .work-carousel:not(.work-carousel--panel) .work-carousel__slide img {
    height: 80vh;
    min-height: 80vh;
    max-height: 920px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    padding: 0;
    display: block;
  }
  .work-carousel:not(.work-carousel--panel) .work-carousel__btn {
    width: 3rem;
    height: 3rem;
    font-size: 1.75rem;
  }
  .work-carousel__cap {
    padding: 1.25rem 1.35rem;
  }
  .work-carousel__cap strong { font-size: 1.2rem; }
}

.home-lead { color: var(--muted); font-size: 0.9rem; margin: -0.25rem 0 0.85rem; }
.home-lead--tight { margin-top: 0.75rem; margin-bottom: 0; }
.home-about p { color: var(--muted); margin: 0; }
.home-about h2 { margin-top: 0; }

/* About — spotlight band on laptop */
.home-about-spotlight {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}
.home-about-spotlight__years {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  opacity: 0.9;
}
.home-about-spotlight__years::after {
  content: " years";
  display: block;
  font-size: 0.28em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-weight: 600;
}
@media (min-width: 1024px) {
  .home-about-spotlight {
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    padding: 2.5rem 2.75rem !important;
    border-left: 5px solid var(--accent);
  }
  .home-about-spotlight__years { font-size: 5.5rem; }
  .home-about-spotlight h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    margin-bottom: 0.65rem;
  }
  .home-about-spotlight p {
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 52rem;
  }
}

.home-services {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* What we provide — 3-column service boxes */
.services-box-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 0.85rem;
}
@media (min-width: 640px) {
  .services-box-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (min-width: 960px) {
  .services-box-grid { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
}
@media (min-width: 1024px) {
  .services-box-grid { gap: 1.5rem; margin-top: 1.25rem; }
  .service-box {
    padding: 2rem 1.75rem 2.1rem;
    min-height: 220px;
    border-radius: 14px;
    border-top: 3px solid var(--accent);
  }
  .service-box__num {
    font-size: 3.25rem;
    margin-bottom: 0.75rem;
  }
  .service-box h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
  .service-box p { font-size: 1rem; line-height: 1.65; }
}
.service-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.35rem 1.25rem 1.4rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.service-box:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.service-box__num {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: rgba(232, 93, 26, 0.22);
  line-height: 1;
  margin-bottom: 0.55rem;
}
.service-box h3 {
  font-size: 1rem;
  margin: 0 0 0.55rem;
}
.service-box p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.page-link-bar { margin-top: 1rem; font-weight: 600; text-align: center; }
.page-link-bar--left { text-align: left; }

.reels-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.reels-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}
.reel-card {
  flex: 0 0 min(200px, 44vw);
  scroll-snap-align: start;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid var(--line);
  aspect-ratio: 9 / 16;
  max-height: 360px;
  display: block;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
}
.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reel-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.7rem;
  background: linear-gradient(transparent, rgba(0,0,0,.88));
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
}
.reel-card__play {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .reel-card { flex-basis: 260px; max-height: 460px; }
  .home-lead { font-size: 1rem; margin-bottom: 1rem; }
  .page-link-bar { margin-top: 1.5rem; font-size: 1rem; }
  .home-founder-strip {
    padding: 2rem 2rem;
    gap: 2rem;
    border-radius: 14px;
  }
  .home-founder-strip h3 { font-size: 1.35rem; }
  .home-team-grid { gap: 1.25rem; }
  .home-team-card { padding: 1.35rem 1.25rem; }
  .home-team-card h3 { font-size: 1.05rem; }
  .review-box-grid { gap: 1.35rem; }
  .review-box { padding: 1.5rem 1.35rem; min-height: 180px; }
  .review-box__text { font-size: 0.95rem; }
  .home-contact-box { padding: 1.5rem 1.35rem; }
  .home-contact-box strong { font-size: 1.05rem; }
}

/* Studio / team — profile + roster (TAO-inspired, mobile-first) */
.studio-section { padding-top: 0.5rem; }
.studio-profile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.studio-profile__body { min-width: 0; }
.studio-profile__label {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-bottom: 0.45rem;
}
.studio-profile__body h2 {
  font-size: clamp(1.05rem, 3.5vw, 1.25rem);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}
.studio-profile__role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.88rem;
  margin: 0;
}
.studio-profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.65rem 0 0.5rem;
}
.studio-profile__tags span {
  background: var(--bg);
  padding: 0.28rem 0.55rem;
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 600;
}
.studio-profile__bio {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}
.studio-avatar {
  flex-shrink: 0;
  object-fit: cover;
  background: #e8e4de;
}
.studio-avatar--lg {
  width: min(100%, 160px);
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  margin: 0 auto;
}
.studio-avatar--sm {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
.studio-avatar--initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, #ece8e2, #d5cfc5);
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.studio-avatar--lg.studio-avatar--initial { font-size: 1.6rem; }
.studio-avatar--sm.studio-avatar--initial { font-size: 0.72rem; }
.studio-roster { display: flex; flex-direction: column; }
.studio-member {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}
.studio-member:last-child { border-bottom: none; }
.studio-member__body { min-width: 0; flex: 1; }
.studio-member h3 {
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.3;
}
.studio-member__role {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.12rem 0 0;
}
.studio-member__exp {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
}
@media (min-width: 640px) {
  .studio-profile {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .studio-avatar--lg {
    width: 180px;
    margin: 0;
  }
}
@media (min-width: 768px) {
  .studio-roster--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
  }
  .studio-roster--grid .studio-member:nth-last-child(-n+2) { border-bottom: none; }
}

.team-preview-grid--full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .team-preview-grid--full { grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
}
@media (min-width: 1024px) {
  .team-preview-grid--full { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}

.member-card--text {
  text-align: left;
  padding: 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  min-height: 118px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.member-card--text:hover {
  border-color: rgba(232, 93, 26, 0.35);
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
}
.member-card__initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), #c45c26);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  letter-spacing: 0.02em;
}
.member-card--founder .member-card__initial {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.72rem;
}
.member-card--text h3 { font-size: 0.9rem; margin-bottom: 0.15rem; line-height: 1.3; }
.member-card--text p { font-size: 0.78rem; margin: 0; color: var(--muted); }
.member-card--text .member-card__qual { margin: 0 0 0.2rem; font-size: 0.7rem; }
.member-card--text .member-card__exp {
  display: block;
  margin-top: auto;
  padding-top: 0.45rem;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
}
.member-card--founder {
  border-color: rgba(232, 93, 26, 0.45);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,248,244,.95));
  box-shadow: 0 4px 18px rgba(232, 93, 26, 0.08);
}
@media (min-width: 1024px) {
  .member-card--founder { grid-column: span 2; min-height: 128px; }
}

.founder-duo {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .founder-duo { grid-template-columns: 1fr 1.15fr; gap: 1rem; }
}
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 6px 22px rgba(0,0,0,.04);
}
.info-card--accent { border-color: rgba(232, 93, 26, 0.35); }
.info-card__label {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}
.info-card h2 { font-size: 1.05rem; margin-bottom: 0.25rem; line-height: 1.3; }
.info-card__sub { color: var(--accent); font-weight: 600; font-size: 0.85rem; margin: 0 0 0.65rem; }
.info-card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.info-card__tags span {
  background: var(--bg);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
}
.info-card p { color: var(--muted); font-size: 0.9rem; margin: 0; }

.member-grid--text { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }

.contact-card-row {
  display: grid;
  gap: 0.85rem;
  max-width: 100%;
}
@media (min-width: 600px) {
  .contact-card-row { grid-template-columns: 1fr 1fr; gap: 1.15rem; }
}
.contact-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  text-decoration: none !important;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.contact-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
}
.contact-card__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
}
.contact-card--wa .contact-card__icon { border-color: rgba(37, 211, 102, 0.35); background: rgba(37, 211, 102, 0.08); }
.contact-card--email .contact-card__icon { border-color: rgba(232, 93, 26, 0.35); background: rgba(232, 93, 26, 0.08); }
.contact-card strong { font-size: 1rem; color: var(--ink); display: block; }
.contact-card span { font-size: 0.8rem; color: var(--muted); display: block; margin-top: 0.1rem; }
.contact-card--wa { border-left: 4px solid var(--wa); }
.contact-card--email { border-left: 4px solid var(--accent); }
.home-contact .home-lead--tight { text-align: center; margin-top: 1.1rem; }
.member-card__badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
  margin-bottom: 0.35rem;
}
.member-card__qual {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  margin: -0.1rem 0 0.2rem;
}

.review-box-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .review-box-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (min-width: 960px) {
  .review-box-grid { grid-template-columns: repeat(3, 1fr); }
}
.review-box {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.2rem 1.25rem;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  min-height: 150px;
  position: relative;
}
.review-box::before {
  content: "\201C";
  position: absolute;
  top: 0.5rem;
  right: 0.85rem;
  font-size: 2rem;
  line-height: 1;
  color: rgba(232, 93, 26, 0.2);
  font-family: Georgia, serif;
}
.review-box__who { font-weight: 700; font-size: 0.95rem; }
.review-box__place { font-size: 0.78rem; color: var(--accent); margin: 0.2rem 0 0.65rem; font-weight: 600; }
.review-box__text { font-size: 0.88rem; color: var(--muted); margin: 0; flex: 1; line-height: 1.55; }

.top-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .top-projects-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (min-width: 1024px) {
  .top-projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .top-project-card {
    border-radius: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  .top-project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  }
  .top-project-card img {
    height: clamp(240px, 28vw, 340px);
  }
  .top-project-card__meta {
    font-size: 0.75rem;
    padding: 0.85rem 1.15rem 0;
  }
  .top-project-card strong {
    font-size: 1.12rem;
    padding: 0.35rem 1.15rem 1.15rem;
  }
}
@media (min-width: 1400px) {
  .top-projects-grid { grid-template-columns: repeat(4, 1fr); }
  .top-project-card img { height: 260px; }
}
.top-project-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  color: inherit;
  text-decoration: none !important;
}
.top-project-card:hover { border-color: var(--accent); }
.top-project-card img {
  width: 100%;
  height: clamp(140px, 22vw, 200px);
  object-fit: cover;
  display: block;
}
.top-project-card__meta {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  padding: 0.65rem 0.85rem 0;
}
.top-project-card strong {
  display: block;
  padding: 0.25rem 0.85rem 0.85rem;
  font-size: 0.9rem;
  line-height: 1.35;
}

.team-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}

.home-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.btn--outline {
  display: inline-block;
  padding: 0.55rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
}
.btn--outline:hover { border-color: var(--accent); text-decoration: none; }

.project-panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 1rem;
  box-shadow: 0 4px 18px rgba(0,0,0,.04);
}
.project-panel summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.project-panel summary::-webkit-details-marker { display: none; }
.project-panel summary::after {
  content: "+";
  margin-left: auto;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}
.project-panel[open] summary::after { content: "−"; }
.project-panel__thumb { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.project-panel__meta { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); display: block; }
.project-panel__body { padding: 0 1.15rem 1.15rem; border-top: 1px solid #eee; }
.project-panel__short { font-size: 0.9rem; color: var(--muted); margin: 0.75rem 0; }
.link-more { font-size: 0.88rem; font-weight: 600; }

.project-panel__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 0.85rem;
}
@media (min-width: 768px) {
  .project-panel__grid {
    grid-template-columns: 1.25fr 1fr;
    gap: 1.5rem;
    align-items: start;
  }
}
.project-panel__media { min-width: 0; }
.project-panel__single img {
  width: 100%;
  height: clamp(240px, 44vw, 560px);
  object-fit: contain;
  background: #111;
  border-radius: 10px;
  display: block;
}
.project-panel__info { font-size: 0.92rem; margin: 0; }
.project-panel__info > p { color: var(--muted); margin: 0 0 0.75rem; line-height: 1.55; }
.project-panel__info dt { font-size: 0.68rem; text-transform: uppercase; color: #888; margin-top: 0.55rem; }
.project-panel__info dd { font-weight: 500; margin: 0; }

.work-carousel--panel .work-carousel__viewport,
.work-carousel--panel .work-carousel__slide {
  min-height: clamp(200px, 34vw, 360px);
}
.work-carousel--panel .work-carousel__slide img {
  width: 100%;
  height: clamp(200px, 34vw, 360px);
  object-fit: cover;
  border-radius: 10px;
}
.work-carousel--panel .work-carousel__dots { padding-top: 0.5rem; }

.projects-page .project-panel summary strong { font-size: clamp(0.95rem, 2.2vw, 1.1rem); }

.founder-card {
  display: grid; gap: 1.5rem; background: #fff; border: 2px solid var(--accent);
  border-radius: 12px; padding: 1.5rem; margin-bottom: 2rem;
}
@media (min-width: 700px) { .founder-card { grid-template-columns: 220px 1fr; } }
.founder-card__placeholder {
  aspect-ratio: 3/4; background: linear-gradient(145deg, #ece8e2, #ddd8d0);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  text-align: center; color: #888; font-size: 0.85rem; font-weight: 600;
}
.founder-card__photo { width: 100%; border-radius: 8px; }
.founder-badge {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.55rem; border-radius: 3px;
}
.founder-qual { color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.founder-stats { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.75rem 0; }
.founder-stats span { background: var(--bg); padding: 0.35rem 0.7rem; border-radius: 4px; font-size: 0.82rem; font-weight: 600; }

.member-grid {
  display: grid; gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.member-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.15rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.03);
}
.member-card__avatar {
  width: 56px; height: 56px; margin: 0 auto 0.65rem; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.member-card h3 { font-size: 0.92rem; margin-bottom: 0.15rem; }
.member-card p { font-size: 0.8rem; color: var(--muted); }
.member-card__exp { font-size: 0.75rem; color: var(--accent); font-weight: 600; }

.review-card {
  background: #fff; border: 1px solid #e4e0da; border-radius: 8px; padding: 1.25rem; margin-bottom: 1rem;
}
.review-card__who { font-weight: 700; margin-bottom: 0.15rem; }
.review-card__place { font-size: 0.8rem; color: var(--accent); margin-bottom: 0.65rem; }
.review-card--short .review-card__text { font-size: 0.9rem; color: var(--muted); }

.contact-hero { text-align: center; padding: 2rem 0 1rem; }
.contact-wa-big {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  max-width: 400px; margin: 1.5rem auto; padding: 1rem 1.25rem;
  background: var(--wa); color: #fff !important; border-radius: 8px; font-weight: 700; text-decoration: none !important;
}
.map-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .map-grid { grid-template-columns: repeat(2, 1fr); } }
.map-card { background: #fff; border: 1px solid #e4e0da; border-radius: 8px; padding: 1rem; }
.map-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.map-card .badge { font-size: 0.65rem; background: var(--accent); color: #fff; padding: 0.15rem 0.4rem; border-radius: 3px; vertical-align: middle; }
.map-embed { margin: 0.75rem 0; border-radius: 6px; overflow: hidden; aspect-ratio: 16/10; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.map-card > a { font-size: 0.85rem; font-weight: 600; }

.social-row { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; margin-bottom: 0.75rem; }
.social-row--fb { margin-top: 0.25rem; }
.social-btn {
  padding: 0.55rem 1rem; border-radius: 6px; font-size: 0.85rem; font-weight: 600;
  color: #fff !important; text-decoration: none !important;
}
.social-btn--insta { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn--wa { background: var(--wa); }
.social-btn--in { background: #0a66c2; }
.social-btn--fb { background: #1877f2; }

.btn { display: inline-block; padding: 0.65rem 1.2rem; border-radius: 6px; font-weight: 600; font-size: 0.9rem; text-decoration: none !important; }
.btn--wa { background: var(--wa); color: #fff !important; margin-top: 0.75rem; }

.site-footer {
  background: var(--ink); color: #aaa; padding: 2rem 1.25rem; margin-top: 3rem; text-align: center;
}
.site-footer__copy { margin-top: 1rem; font-size: 0.85rem; }
.site-footer__legal { margin-top: 0.5rem; font-size: 0.8rem; }
.site-footer__legal a { color: #ccc; }

.wa-sticky {
  position: fixed; bottom: 1rem; right: 1rem; z-index: 200;
  background: var(--wa); color: #fff !important; padding: 0.7rem 1.1rem;
  border-radius: 50px; font-weight: 700; font-size: 0.88rem;
  box-shadow: 0 6px 20px rgba(37,211,102,.4); text-decoration: none !important;
}

.page-link-bar { text-align: center; margin-top: 1rem; }
.page-link-bar a { font-weight: 600; }

/* Media & awards page */
.media-page__block { scroll-margin-top: 5rem; }
.media-jump {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0 0 1rem;
  margin-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.media-jump::-webkit-scrollbar { display: none; }
.media-jump a {
  flex-shrink: 0;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none !important;
  background: var(--surface);
}
.media-jump a:hover,
.media-jump a:focus-visible {
  border-color: var(--accent);
  color: var(--accent-dark);
}
.media-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.media-list__item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 0.75rem 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.media-list__item:last-child { border-bottom: none; padding-bottom: 0; }
.media-list__year {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1.35;
}
.media-list__body h3 {
  font-size: 0.95rem;
  margin: 0 0 0.2rem;
  line-height: 1.35;
}
.media-list__body h3 a { color: inherit; text-decoration: none !important; }
.media-list__body h3 a:hover { color: var(--accent-dark); text-decoration: underline !important; }
.media-list__org {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  font-weight: 600;
}
.media-list__detail {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0.45rem 0 0;
  line-height: 1.55;
}
.media-empty {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
  padding: 0.5rem 0;
  line-height: 1.55;
}
@media (min-width: 640px) {
  .media-list__item {
    grid-template-columns: 4.5rem 1fr;
    gap: 1rem 1.5rem;
    padding: 1.15rem 0;
  }
  .media-list__year { font-size: 0.85rem; }
  .media-list__body h3 { font-size: 1rem; }
}
@media (min-width: 768px) {
  .media-jump {
    justify-content: center;
    overflow: visible;
    flex-wrap: wrap;
  }
}

/* Theme toggle — sun / moon icon */
.theme-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent-dark); }
.theme-toggle__icon { display: block; }
.site-nav__links .theme-toggle { align-self: center; }

/* Home — team, reviews, contact closing sections */
.home-section-link {
  text-align: center;
  margin: 1.25rem 0 0;
  font-weight: 600;
  font-size: 0.9rem;
}
.home-founder-strip {
  display: grid;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .home-founder-strip {
    grid-template-columns: 140px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}
.home-founder-strip__avatar .studio-avatar--lg {
  width: 100%;
  margin: 0;
}
.home-founder-strip__label {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-bottom: 0.4rem;
}
.home-founder-strip__body h3 {
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  margin: 0 0 0.2rem;
}
.home-founder-strip__role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.86rem;
  margin: 0 0 0.5rem;
}
.home-founder-strip__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.home-founder-strip__tags span {
  background: var(--bg);
  padding: 0.28rem 0.55rem;
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink);
}
.home-founder-strip__bio {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}
.home-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .home-team-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
}
@media (min-width: 960px) {
  .home-team-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
.home-team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.home-team-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}
.home-team-card h3 {
  font-size: 0.92rem;
  margin: 0 0 0.15rem;
}
.home-team-card__role {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}
.home-team-card__exp {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
}
.home-review-grid { margin-top: 0.25rem; }
.home-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .home-contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .home-contact-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
.home-contact-box {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.25rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none !important;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.home-contact-box:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}
.home-contact-box__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.home-contact-box strong {
  font-size: 0.95rem;
  color: var(--ink);
  word-break: break-word;
}
.home-contact-box span:last-child {
  font-size: 0.8rem;
  color: var(--muted);
}
.home-contact-box--wa { border-top: 3px solid var(--wa); }
.home-contact-box--email { border-top: 3px solid var(--accent); }
.home-contact-box--offices { border-top: 3px solid #6b8cae; }

/* Classic site — dark mode */
html[data-theme="dark"] body:not(.theme-mqa) {
  --ink: #eee;
  --muted: #aaa;
  --bg: #272727;
  --bg-warm: #323232;
  --white: #2e2e2e;
  --surface: rgba(50, 50, 50, 0.95);
  --line: #3a3a3a;
}
html[data-theme="dark"] body:not(.theme-mqa) .premium-bg {
  background: linear-gradient(165deg, #2a2a2a 0%, #1f1f1f 100%);
}
html[data-theme="dark"] body:not(.theme-mqa) .site-nav {
  background: rgba(39, 39, 39, 0.97);
  border-bottom-color: var(--line);
}
html[data-theme="dark"] body:not(.theme-mqa) .site-banner { background: #2e2e2e; }
html[data-theme="dark"] body:not(.theme-mqa) .surface-card,
html[data-theme="dark"] body:not(.theme-mqa) .project-panel,
html[data-theme="dark"] body:not(.theme-mqa) .review-box,
html[data-theme="dark"] body:not(.theme-mqa) .map-card,
html[data-theme="dark"] body:not(.theme-mqa) .member-card,
html[data-theme="dark"] body:not(.theme-mqa) .overview-item {
  background: var(--surface);
  border-color: var(--line);
  color: var(--muted);
}
html[data-theme="dark"] body:not(.theme-mqa) h1,
html[data-theme="dark"] body:not(.theme-mqa) h2,
html[data-theme="dark"] body:not(.theme-mqa) h3,
html[data-theme="dark"] body:not(.theme-mqa) .review-box__who,
html[data-theme="dark"] body:not(.theme-mqa) .site-nav__brand { color: var(--ink); }
html[data-theme="dark"] body:not(.theme-mqa) .home-founder-strip,
html[data-theme="dark"] body:not(.theme-mqa) .home-team-card,
html[data-theme="dark"] body:not(.theme-mqa) .home-contact-box {
  background: var(--surface);
  border-color: var(--line);
}
html[data-theme="dark"] body:not(.theme-mqa) .home-founder-strip__body h3,
html[data-theme="dark"] body:not(.theme-mqa) .home-team-card h3,
html[data-theme="dark"] body:not(.theme-mqa) .home-contact-box strong { color: var(--ink); }

/* Full-width hero video — Vatsalya walkthrough on home */
.site-video-hero {
  position: relative;
  width: 100%;
  min-height: 52vh;
  max-height: 80vh;
  overflow: hidden;
  background: #111;
}
.site-video-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.site-video-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.site-video-hero__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.5rem 1.25rem 1.75rem;
  color: #fff;
}
.site-video-hero__tag {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.35rem;
}
.site-video-hero__cap strong {
  display: block;
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.site-video-hero__link {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (min-width: 1024px) {
  .site-video-hero { min-height: 80vh; max-height: 920px; }
}

.project-video {
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  margin-bottom: 1rem;
}
.project-video video {
  display: block;
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  background: #111;
}
.project-video__cap {
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.project-videos-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .project-videos-grid { grid-template-columns: 1fr 1fr; }
}
.project-videos-grid__meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.35rem;
}
.section-intro--spaced { margin-top: 1.75rem; }

@media (prefers-reduced-motion: reduce) {
  .site-video-hero__video { display: none; }
  .site-video-hero {
    min-height: 40vh;
    background: #1a1a1a center / cover no-repeat;
  }
}
