*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #1a0e04;
  min-height: 100vh;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('bg.png') center center / cover no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 245, 200, 0.60) 0%,
    rgba(255, 245, 200, 0.10) 30%,
    rgba(0,0,0,0) 60%
  );
  z-index: 1;
}

.top-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem 1.5rem;
}
```css
.brand-title {
  font-family: sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 4px rgba(255,245,200,0.8);
}
.brand-location {
  font-family: sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.25rem;
  letter-spacing: 0.04em;
  text-shadow: 1px 1px 3px rgba(255,245,200,0.9);
}
.brand-gst {
  font-family: sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.25rem;
  letter-spacing: 0.04em;
  text-shadow: 1px 1px 3px rgba(255,245,200,0.9);
}
.brand-email {
  font-family: sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
  text-shadow: 1px 1px 3px rgba(255,245,200,0.8);
}
```
