:root{
  --text:#111;
  --muted:#666;
  --line:#ececec;
  --bg:#fff;
  --max:1240px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.4;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.container{width:min(calc(100% - 48px), var(--max));margin:0 auto}

/* Header */
.top-logo{
  padding:18px 0 10px;
  display:flex;
  justify-content:center;
}
.top-logo img{
  max-width:120px;
  max-height:74px;
  width:auto;
  height:auto;
  object-fit:contain;
}
.logo-fallback{
  width:120px;
  height:60px;
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  font-size:12px;
  color:#999;
  letter-spacing:.08em;
}
.site-header{
  background:#fff;
}
.nav{
  min-height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.nav-links{
  display:flex;
  gap:30px;
  font-size:14px;
}
.nav-links a.active{font-weight:700}
.insta{
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  font-size:13px;
  color:var(--muted);
}

/* Home */
.hero-copy{
  text-align:center;
  padding-top:34px;
}
.hero-copy .small{
  font-size:26px;
  letter-spacing:.12em;
  line-height:1.08;
}
.hero-copy .dash{
  font-size:30px;
  margin:2px 0;
}
.hero-copy h1{
  margin:0;
  font-size:56px;
  line-height:1.04;
  letter-spacing:.05em;
  font-weight:700;
}
.hero-copy p{
  width:min(760px, calc(100% - 40px));
  margin:28px auto 34px;
  font-size:18px;
  line-height:1.62;
}
.full-bleed{width:100%;margin:0}
.full-bleed img{
  width:100%;
  height:auto;
  display:block;
}

/* Generic page */
.page-wrap{
  padding-top:20px;
}
.page-title{
  text-align:center;
  font-size:56px;
  line-height:1.04;
  letter-spacing:.05em;
  margin:0 0 24px;
  font-weight:700;
}
.rule{
  width:100%;
  border-top:1px solid var(--line);
  margin:20px 0 22px;
}

/* Work */
.showreel-img img,
.project-img img,
.clients-hero img{
  width:100%;
  height:auto;
}
.our-work{
  text-align:center;
  margin:44px 0 20px;
}
.project-list{
  text-align:center;
  display:grid;
  gap:30px;
}
.project-name{
  font-size:30px;
  line-height:1.18;
}
.project-card{
  margin-top:-8px;
}

/* Clients */
.logo-grid{
  width:min(calc(100% - 48px), 1020px);
  margin:40px auto 0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:34px 44px;
  align-items:center;
}
.logo-box{
  min-height:62px;
  display:grid;
  place-items:center;
  text-align:center;
}
.logo-box img{
  max-width:150px;
  max-height:54px;
  width:auto;
  height:auto;
  object-fit:contain;
  filter:grayscale(100%);
}
.logo-text{
  font-size:18px;
  color:#333;
}
.note{
  color:#777;
  font-size:14px;
  text-align:center;
  margin-top:20px;
}

/* Footer */
.footer{
  padding:56px 0 86px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr;
  justify-items:center;
  text-align:center;
  gap:8px;
}
.footer .brand{
  font-size:28px;
  margin-bottom:4px;
}
.footer p{
  margin:0;
  font-size:17px;
}
.hours{
  margin-top:10px;
}

/* Responsive */
@media (max-width: 900px){
  .logo-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 780px){
  .container{width:min(calc(100% - 28px), var(--max))}
  .top-logo img{max-width:96px;max-height:58px}
  .logo-fallback{width:96px;height:52px}
  .nav-links{gap:18px;font-size:13px}
  .hero-copy .small{font-size:18px}
  .hero-copy .dash{font-size:22px}
  .hero-copy h1,.page-title{font-size:34px}
  .hero-copy p{font-size:16px}
  .project-name{font-size:22px}
  .footer .brand{font-size:22px}
  .footer p{font-size:15px}
  .logo-grid{grid-template-columns:1fr;gap:22px}
  .logo-text{font-size:16px}
}