:root {
  --frame: #d8cbb6;
  --text: #e6dfd2;
}

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

body {
  background: var(--frame);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

/* Outer beige margin */
.page-frame {
  padding: 60px;
}

/* Hero container */
.hero {
  position: relative;
  height: calc(100vh - 120px);
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  color: var(--text);
}

/* Dark overlay for readability */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

/* Keep content above overlay */
.logo,
.headline,
.address {
  position: absolute;
  z-index: 2;
}

/* Logo top-right */
.logo {
  top: 40px;
  right: 60px;
}

.logo img {
  width: 120px;
  opacity: 0.9;
}

/* Headline bottom-left */
.headline {
  bottom: 80px;
  left: 80px;
  font-size: 72px;
  letter-spacing: -1px;
}

/* Address bottom-right */
.address {
  bottom: 90px;
  right: 80px;
  font-size: 18px;
  line-height: 1.8;
  text-align: left;
  opacity: 0.9;
}
