*{
  box-sizing:border-box;
}

html,body{
  margin:0;
  font-family: Georgia, 'Times New Roman', serif;
  background:#f7f4ef;
  color:#111;
}

.page{
  min-height:100vh;
}

.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
  background-image:url('hero.jpg');
  background-size:cover;
  background-position:center;
}

.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,.25) 45%, rgba(0,0,0,.45));
}

.content{
  position:relative;
  width:min(680px, 100%);
  padding:34px 24px;
  text-align:center;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(180,151,95,.45);
  border-radius:28px;
  box-shadow:0 22px 60px rgba(0,0,0,.25);
  backdrop-filter:blur(5px);
}

.logo{
  width:min(330px, 82%);
  height:auto;
  margin-bottom:12px;
}

.tagline{
  margin:0;
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:13px;
  color:#8a6d3b;
}

h1{
  margin:18px 0 10px;
  font-size:clamp(34px, 7vw, 62px);
  line-height:1.02;
  font-weight:400;
}

.intro{
  max-width:520px;
  margin:0 auto 24px;
  font-size:18px;
  line-height:1.55;
  font-family:Arial, Helvetica, sans-serif;
}

.buttons{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:22px;
}

.btn{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 16px;
  border-radius:999px;
  text-decoration:none;
  font-family:Arial, Helvetica, sans-serif;
  font-weight:700;
  color:#111;
  border:1px solid #111;
  background:rgba(255,255,255,.75);
}

.btn.primary{
  grid-column:1 / -1;
  color:white;
  background:#111;
  border-color:#111;
}

.card{
  max-width:760px;
  margin:34px auto;
  padding:30px 24px;
  text-align:center;
  background:#fff;
  border-radius:24px;
  box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.card h2{
  margin:0 0 8px;
  font-size:34px;
  font-weight:400;
}

.card p{
  margin:0 0 20px;
  font-family:Arial, Helvetica, sans-serif;
  color:#444;
}

.contact-line{
  color:#8a6d3b !important;
  font-weight:700;
}

.menu-link{
  color:#8a6d3b;
  font-family:Arial, Helvetica, sans-serif;
  font-weight:700;
}

@media (max-width:560px){
  .hero{
    padding:18px;
    align-items:flex-end;
  }

  .content{
    padding:28px 18px;
    border-radius:24px;
  }

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

  .btn.primary{
    grid-column:auto;
  }
}
