@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

:root{
  --text:#111;
  --muted:#555;
  --bg:#fff;
}

*{ box-sizing:border-box; }

html,body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a{
  color:inherit;
  text-decoration:none;
}

a:hover{
  text-decoration:underline;
}

.page{
  min-height:100vh;
  display:grid;
  grid-template-columns: 1fr 420px;
}

@media (max-width: 980px){
  .page{ grid-template-columns: 1fr; }
}

.photo{
  background-image: url("./hero.jpg");
  background-size: cover;
  background-position: center;
  min-height: 56vh;
}

.right{
  padding: 48px 42px;
  display:flex;
  flex-direction:column;
  gap: 18px;
}

.brand{
  font-size: 29px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.menu{
  display:flex;
  flex-direction:column;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content{
  max-width: 52ch;
  line-height: 1.6;
  font-size: 14px;
  color: var(--text);
}

.small{
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

hr{
  border:0;
  border-top:1px solid #eee;
  margin: 6px 0;
}

.back{
  font-size: 13px;
  color: var(--muted);
}
.logo-br{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 120px;      /* change size */
  height: auto;
  opacity: 0.9;      /* change if needed */
  pointer-events: none; /* so it never blocks clicks */
}