/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* BASE */
body {
  font-family: Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.5;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-weight: 600;
}

h1 {
  font-size: 3rem;
  line-height: 1.1;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.1rem;
  margin-top: 10px;
  margin-bottom: 5px;
}

p {
  max-width: 600px;
}

/* HERO */
.hero {
  display: block;
}

/* HERO TOP ROW */
.hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1000px;
  margin: auto;
  padding: 60px 20px 40px;
  gap: 40px;
}

/* HERO LOGO */
.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
}

/* HERO COPY */
.hero-copy {
  max-width: 500px;
}

.hero-text {
  margin-top: 15px;
  font-size: 1rem;
}

/* HERO VIDEO STRIP */
.hero-video {
  width: 100%;
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: auto;
  display: block;
}

/* BUTTONS */
.cta {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  margin-right: 10px;
  padding: 10px 16px;
  border: 2px solid #111;
  text-decoration: none;
  color: #111;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn:hover {
  background: #111;
  color: #fff;
}

.btn.primary {
  background: #111;
  color: #fff;
  border: none;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
  border-top: 1px solid #eee;
}

/* SERVICE CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  border: 1px solid #ddd;
  padding: 20px;
}

/* SELECTED WORK */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.work-item h3 {
  margin-top: 10px;
}

/* VIDEO EMBEDS */
.embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.embed iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: none;
}

/* PROCESS */
.process-list {
  list-style: none;
}

.process-list li {
  margin-bottom: 20px;
}

.process-list strong {
  display: block;
  margin-bottom: 5px;
}

/* CONTACT */
.contact a {
  color: #111;
  text-decoration: none;
  font-weight: bold;
}

.contact a:hover {
  text-decoration: underline;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* MOBILE */
@media (max-width: 700px) {
  h1 {
    font-size: 2rem;
  }

  .hero-top {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-logo img {
    max-width: 180px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}