/* ============================================================
   SKIP LINK (accessibility)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  padding: 12px 20px;
  background: #5CB5F2;
  color: #fff;
  font-weight: 600;
  z-index: 100001;
  border-radius: 6px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 20px;
  outline: 3px solid #1a1a1a;
  outline-offset: 2px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
a { text-decoration: none; }
header { text-align: center; }

body {
  position: relative;
  background: #0A0A0A;
  color: #E0E0E0;
  font-family: "soleil", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  background: url(../img/41.png) no-repeat center center;
  background-size: cover;
  display: table;
  width: 100%;
  min-height: 100vh;
}

.hero-headline {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  max-width: 700px;
  margin: 0 auto;
  color: #1a1a1a;
  text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

.hero-ctas {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: "soleil", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  cursor: pointer;
  text-align: center;
}

.cta-primary {
  background: #5CB5F2;
  color: #fff;
}
.cta-primary:hover {
  background: #3A9FE8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(92, 181, 242, 0.35);
}

.cta-secondary {
  background: rgba(0,0,0,0.06);
  color: #1a1a1a;
  border: 1px solid rgba(0,0,0,0.15);
}
.cta-secondary:hover {
  background: rgba(0,0,0,0.1);
  color: #1a1a1a;
  transform: translateY(-2px);
}

.cta-tertiary {
  background: transparent;
  color: #1a1a1a;
  border: 1px solid rgba(0,0,0,0.2);
}
.cta-tertiary:hover {
  background: rgba(0,0,0,0.05);
  color: #1a1a1a;
  transform: translateY(-2px);
}

.hero-event-banner {
  margin: 26px auto 0;
  max-width: 660px;
  padding: 18px 22px 22px;
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
  text-align: left;
  backdrop-filter: blur(8px);
}

.hero-event-kicker {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-event-title {
  margin: 0;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-event-title span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-top: 6px;
}

.hero-event-meta {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.hero-event-meta-sub {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.hero-event-btn {
  margin-top: 16px;
}

/* Focus states (accessibility) */
a:focus-visible,
button:focus-visible,
.cta-btn:focus-visible {
  outline: 3px solid #5CB5F2;
  outline-offset: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
.cta-btn:focus:not(:focus-visible) {
  outline: none;
}

header {
  width: 100%;
  margin-top: 180px;
  margin-bottom: 200px;
  height: auto;
  overflow: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: 100000;
  transition: all 0.1s;
}

nav.sticky {
  opacity: 1;
  z-index: 100000;
  transition: all 0.5s;
}

/* Active section indicator - underline on current section */
.navbar .navbar-nav > li.active > a,
.navbar .navbar-nav > li.active > a:hover,
.navbar .navbar-nav > li.active > a:focus {
  color: #1a1a1a;
  font-weight: 600;
  border-bottom: 2px solid #1a1a1a;
  padding-bottom: 8px;
}

p.header {
  display: inline-block;
  line-height: 1.8;
  padding-top: 20px;
  font-size: 17px;
  max-width: 640px;
  font-weight: 300;
  letter-spacing: 0.5px;
  vertical-align: top;
  color: #333;
  font-family: "soleil", sans-serif;
  text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

img.logo {
  border: 0;
  float: left;
  margin-left: 30px;
  margin-top: 16px;
}

img.avatar {
  border-radius: 80px;
}

img.icons {
  margin-bottom: 10px;
  height: 80px;
  opacity: 0.85;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  position: relative;
  background-color: #EEABA0;
  background-size: cover;
  width: 100%;
  padding: 120px 20px;
  text-align: left;
}

.about-heading {
  font-size: 2em;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.about-copy {
  font-size: 17px;
  line-height: 1.8;
  color: #202020;
  max-width: 680px;
  margin-bottom: 16px;
  font-weight: 400;
}

.fun-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.chip {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0,0,0,0.08);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.3px;
  border: 1px solid rgba(0,0,0,0.06);
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  color: #1a1a1a;
  font-weight: 500;
  margin-right: 16px;
  font-size: 14px;
  text-transform: lowercase;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.social-links a:hover {
  border-bottom-color: #1a1a1a;
}

#about .jumbotron {
  background: transparent;
  padding: 0;
  margin: 0;
}

#about .jumbotron h3 {
  color: #1a1a1a;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  opacity: 0.6;
}

#about .jumbotron h2 {
  color: #1a1a1a;
}

#about .jumbotron p a {
  color: #1a1a1a;
  font-weight: 500;
  margin-right: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

#about .jumbotron p a:hover {
  border-bottom-color: #1a1a1a;
}

/* ============================================================
   WHAT I DO (4 tiles)
   ============================================================ */
#what {
  position: relative;
  background-color: #F9FCFE;
  width: 100%;
  padding: 100px 0 120px;
  text-align: left;
}

#what h1 {
  text-align: center;
  color: #1a1a1a;
  font-size: 2em;
  margin-bottom: 48px;
}

/* Bento grid - 8 tiles, elite layout */
.bento-grid {
  display: grid;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  grid-template-columns: repeat(12, 1fr);
}

.bento-tile {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 24px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 140px;
}

.bento-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.bento-tile .bento-icon {
  display: inline-block;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.bento-tile .bento-icon svg {
  width: 32px;
  height: 32px;
  transition: transform 0.25s ease;
}

.bento-tile:hover .bento-icon svg {
  transform: scale(1.03);
}

.bento-tile .bento-icon svg,
.bento-tile .bento-icon svg * {
  fill: none;
  stroke: currentColor;
}

.bento-tile h3 {
  color: #1a1a1a;
  font-size: 1.05em;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.bento-tile p {
  color: #555;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.85;
}

/* Bento span modifiers - desktop 12-col */
.bento-tile.span-3 { grid-column: span 3; }
.bento-tile.span-4 { grid-column: span 4; }
.bento-tile.span-6 { grid-column: span 6; }
.bento-tile.span-8 { grid-column: span 8; }
.bento-tile.span-12 { grid-column: span 12; }

@media (max-width: 1023px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-tile.span-3,
  .bento-tile.span-4,
  .bento-tile.span-6,
  .bento-tile.span-8,
  .bento-tile.span-12 {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bento-tile,
  .bento-tile .bento-icon svg {
    transition: none;
  }
  .bento-tile:hover {
    transform: none;
  }
  .bento-tile:hover .bento-icon svg {
    transform: none;
  }
}

/* ============================================================
   ENGINEERING
   ============================================================ */
#engineering {
  position: relative;
  background: #111;
  width: 100%;
  padding: 100px 0 120px;
}

.section-title {
  text-align: center;
  color: #fff;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: "soleil", sans-serif;
}

.section-title-dark {
  color: #1a1a1a;
}

.section-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.section-subtitle-dark {
  color: #555;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.25s, border-color 0.25s;
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(92,181,242,0.4);
}

.info-card h4 {
  color: #5CB5F2;
  font-size: 1em;
  margin-bottom: 8px;
  font-weight: 600;
}

.info-card p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================================
   WORK / PROJECTS
   ============================================================ */
#work {
  position: relative;
  background: #F9FCFE;
  width: 100%;
  display: block;
  padding-top: 80px;
  padding-bottom: 40px;
  overflow: hidden;
}

.subsection-heading {
  text-align: center;
  color: #999;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 32px 0 24px;
  font-weight: 600;
}

.creator-highlights {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.highlight-card {
  flex: 1 1 250px;
  max-width: 280px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.highlight-inner {
  padding: 32px 24px;
  text-align: center;
}

.highlight-inner h4 {
  color: #1a1a1a;
  font-size: 1.1em;
  margin-bottom: 8px;
}

.highlight-inner p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

/* ============================================================
   MIXROOM
   ============================================================ */
#mixroom {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  width: 100%;
  padding: 100px 0 120px;
}

.mixroom-cta {
  text-align: center;
  margin-top: 32px;
}

/* ============================================================
   CARS & LIFESTYLE
   ============================================================ */
#cars {
  position: relative;
  background: #111;
  width: 100%;
  padding: 100px 0 120px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ============================================================
   NOW
   ============================================================ */
#now {
  position: relative;
  background: #F9FCFE;
  width: 100%;
  padding: 80px 0 100px;
}

.now-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.now-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.now-list li:last-child {
  border-bottom: none;
}

.now-list strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* ============================================================
   HIGHLIGHTS (Apple-tier minimal + YC-founder premium)
   ============================================================ */
.highlights {
  --hl-radius: 16px;
  --hl-border: 1px solid rgba(255, 255, 255, 0.1);
  --hl-bg: rgba(255, 255, 255, 0.04);
  --hl-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  --hl-glow: 0 0 24px rgba(255, 255, 255, 0.06);
  --hl-pad: 28px;
  --hl-gap: 20px;
  --hl-title: 16px;
  --hl-subtitle: 14px;
  --hl-icon: 36px;
}

.highlights,
#clients {
  position: relative;
  background: #0a0a0a;
  width: 100%;
  padding: 120px 0 140px;
}

.highlights .highlights-title,
.highlights .section-title {
  color: #fff;
  margin-bottom: 56px;
  font-size: 2.2em;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.highlights .highlights-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--hl-gap);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.highlights .highlights-card {
  border-radius: var(--hl-radius);
  border: var(--hl-border);
  background: var(--hl-bg);
  padding: var(--hl-pad);
  min-height: 140px;
  text-align: left;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.highlights .highlights-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 28px rgba(255, 255, 255, 0.06);
}

.highlights .highlights-card .bento-icon {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 18px;
  display: inline-block;
  transition: transform 220ms ease;
}

.highlights .highlights-card:hover .bento-icon {
  transform: scale(1.03);
}

.highlights .highlights-card .bento-icon svg {
  width: var(--hl-icon);
  height: var(--hl-icon);
}

.highlights .highlights-card .bento-icon svg,
.highlights .highlights-card .bento-icon svg * {
  fill: none;
  stroke: currentColor;
}

.highlights .highlights-card h3 {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--hl-title);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  line-height: 1.3;
}

.highlights .highlights-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--hl-subtitle);
  line-height: 1.45;
  margin-bottom: 0;
}

/* Bento spans - desktop */
.highlights .highlights-card.span-3 { grid-column: span 3; }

@media (max-width: 1023px) {
  .highlights .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .highlights .highlights-card.span-3 {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .highlights .highlights-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .highlights {
    padding: 80px 0 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .highlights .highlights-card,
  .highlights .highlights-card .bento-icon {
    transition: none;
  }
  .highlights .highlights-card:hover {
    transform: none;
  }
  .highlights .highlights-card:hover .bento-icon {
    transform: none;
  }
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  position: relative;
  background-color: #0A0A0A;
  width: 100%;
  padding: 80px 0 100px;
}

.contact h2 {
  color: #fff;
}

.contact h2 a {
  color: #5CB5F2;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.contact h2 a:hover {
  border-bottom-color: #5CB5F2;
}

.contact p a {
  color: rgba(255,255,255,0.6);
  margin-right: 16px;
  font-size: 14px;
  transition: color 0.2s;
}

.contact p a:hover {
  color: #fff;
}

/* ============================================================
   CSS3 ANIMATIONS (preserved from original)
   ============================================================ */
.css3_div {
  height: auto;
  min-height: 400px;
  overflow: hidden;
  animation-duration: 3s;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-name: first;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: both;
  -webkit-animation-name: first;
}

@keyframes first {
  0% { transform: translate(0, 1500px); }
  20% { transform: translate(0, 65px); }
  25%, 65%, 75% { transform: translate(0, 85px); }
  100% { transform: translate(0, 0); }
}
@-webkit-keyframes first {
  0% { -webkit-transform: translate(0, 1500px); }
  20% { -webkit-transform: translate(0, 65px); }
  25%, 65%, 75% { -webkit-transform: translate(0, 85px); }
  100% { -webkit-transform: translate(0, 0); }
}

.txtcss {
  vertical-align: top;
  color: #1a1a1a;
  font-family: "soleil", sans-serif;
  font-weight: 400;
  height: auto;
  animation-delay: 1.3s;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-name: txtcss;
}

@keyframes txtcss {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@-webkit-keyframes txtcss {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.txtcss2 {
  vertical-align: top;
  text-align: center;
  color: #333;
  font-family: "soleil", sans-serif;
  font-weight: 400;
  height: auto;
  animation-delay: 3s;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-name: txtcss;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
  40% { -webkit-transform: translateY(-30px); transform: translateY(-30px); }
  60% { -webkit-transform: translateY(-15px); transform: translateY(-15px); }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-30px); }
  60% { transform: translateY(-15px); }
}

.arrow {
  position: absolute;
  left: 50%;
  margin: 120px 0 0 -20px;
  animation: bounce 2s infinite;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.affix {
  top: 0;
}

.affix + .container {
  padding-top: 70px;
}

/* ============================================================
   OVERLAY (preserved)
   ============================================================ */
#overlay {
  position: fixed;
  z-index: 100000;
  display: none;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: #f9f9f9;
  transition: all 0.3s;
}

#overlay img {
  overflow: hidden;
  position: fixed;
  z-index: 100001;
  max-width: 640px;
  max-height: 640px;
  display: block;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* ============================================================
   CONTACT DETAILS (preserved)
   ============================================================ */
.up-btn { width: 50px; height: 50px; border-radius: 50%; background: #5CB5F2; display: block; margin: 0 auto; color: #fff; font-size: 18px; line-height: 46px; text-align: center; position: absolute; left: 0; right: 0; margin-left: auto; margin-right: auto; box-shadow: 0 1px 2px rgba(0,0,0,0.3); }
.up-btn:hover { color: #fff; background: #59B1F6; }
.contact-details h2 { font-size: 20px; }
.contact-details h2 span { display: block; color: #72B6EC; text-transform: uppercase; letter-spacing: 1px; font-size: 20px; margin-top: 15px; }
.light-box { background-color: #fff; box-shadow: 0 2px 3px rgba(0,0,0,0.1); padding: 60px 0; }
.light-box:hover { box-shadow: 0 2px 6px rgba(0,0,0,0.15); cursor: pointer; transform: translateY(-4px); }
.box-hover { transition: all 0.35s cubic-bezier(0.46, 0.03, 0.52, 0.96), z-index 0s; }

/* ============================================================
   MISC TYPOGRAPHY
   ============================================================ */
h1.contact {
  color: #FFF;
  font-weight: 500;
  margin-top: 80px;
  text-align: center;
  font-family: "soleil", sans-serif;
  font-size: 56px;
}

span.blue {
  color: #5CB5F2;
}

i.fa {
  color: #202020;
  font-size: 28px;
}

/* ============================================================
   SOCIAL ICONS (preserved)
   ============================================================ */
.social-wrapper { padding: 20px; text-align: center; }
.social-icons .fa { width: 36px; height: 36px; line-height: 36px; top: 20px; text-align: center; transition: all .3s; }
.social-icons .fa:hover { opacity: .8; }
.social-icons.icon-circle .fa { border-radius: 50%; }
.social-icons.icon-rounded .fa { border-radius: 5px; }
.social-icons .fa:hover, .social-icons .fa:active { background-color: rgba(255,255,255, 0.4); transition: all 0.15s ease-in-out; }
.social-icons .fa-instagram { color: #FFF; font-size: 20px; }
.social-icons .fa-github { color: #FFF; font-size: 20px; }
.social-icons .fa-linkedin { color: #FFF; font-size: 20px; }
.social-icons .fa-twitter { color: #FFF; font-size: 20px; }

/* ============================================================
   RESPONSIVE: TABLET (768px)
   ============================================================ */
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .hero-headline {
    font-size: 1.5rem;
    padding: 0 16px;
  }

  p.header {
    font-size: 15px;
    padding: 20px 16px 0;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
  }

  .cta-btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-event-banner {
    margin-top: 22px;
    text-align: center;
    padding: 16px;
  }

  .hero-event-title {
    font-size: 1.2rem;
  }

  .hero-event-btn {
    width: 100%;
    max-width: none;
  }

  #about {
    padding: 80px 20px;
  }

  .creator-highlights {
    flex-direction: column;
    align-items: center;
  }

  .highlight-card {
    max-width: 100%;
    width: 100%;
  }

  header {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .section-title {
    font-size: 1.6em;
  }
}

/* ============================================================
   RESPONSIVE: MOBILE (414px)
   ============================================================ */
@media (max-width: 414px) {
  #hero {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  header {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .hero-headline {
    font-size: 1.3rem;
  }

  p.header {
    font-size: 14px;
  }

  #about {
    padding: 60px 16px;
  }

  .about-copy {
    font-size: 15px;
  }

  #what {
    padding: 60px 0 80px;
  }

  #engineering,
  #mixroom,
  #cars {
    padding: 60px 0 80px;
  }

  #now {
    padding: 60px 0 80px;
  }

  .chip {
    font-size: 12px;
    padding: 5px 12px;
  }

  .section-title {
    font-size: 1.4em;
  }

  .section-subtitle {
    font-size: 15px;
    padding: 0 16px;
  }

  .now-list li {
    font-size: 14px;
  }

  .highlights {
    padding: 80px 0 100px;
  }

  .contact h2 {
    font-size: 1.3em;
    padding: 0 16px;
  }
}

/* ============================================================
   LARGE SCREENS
   ============================================================ */
@media (min-width: 1440px) {
  .hero-headline {
    font-size: 2.6rem;
    max-width: 800px;
  }

  p.header {
    font-size: 19px;
    max-width: 700px;
  }
}
