.eyebrow{
  text-transform:uppercase;
  letter-spacing:.24em;
  font-size:.82rem;
  font-weight:600;
  color:var(--color-accent-soft);
  margin-bottom:14px;
}
.eyebrow-dark{color:#8a6b35}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 28px;
  border-radius:12px;
  border:1px solid transparent;
  transition:.25s ease;
  font-weight:600;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:var(--color-accent-gold);
  color:#1a1a1a;
}
.btn-primary:hover{filter:brightness(.95)}
.btn-secondary{
  color:#fff;
  border-color:rgba(229,211,161,.7);
  background:rgba(255,255,255,.02);
}
.btn-secondary:hover{background:rgba(255,255,255,.06)}
.btn-outline-dark{
  border-color:#8a6b35;
  color:#8a6b35;
}
.btn-outline-dark:hover{background:#8a6b35;color:#fff}
.full{width:100%}

.image-frame,
.map-frame,
.menu-card,
.feature-card,
.reservation-card{
  border-radius:24px;
  overflow:hidden;
}
.image-frame img,.map-frame img{width:100%;height:100%;object-fit:cover}
.image-frame{min-height:460px;box-shadow:var(--shadow-soft)}
.feature-card{
  border:1px solid rgba(229,211,161,.18);
  padding:32px 24px;
  background:rgba(255,255,255,.02);
}
.feature-card .icon{
  width:38px;height:38px;
  color:var(--color-accent-gold);
  margin-bottom:18px;
}
.feature-card h3{font-size:1.7rem;color:#fff}
.feature-card p{margin-bottom:0}

.menu-card{
  background:#fff;
  box-shadow:var(--shadow-soft);
}
.menu-card-media{aspect-ratio:4/3;overflow:hidden}
.menu-card-media img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease}
.menu-card:hover .menu-card-media img{transform:scale(1.05)}
.menu-card-body{padding:24px}
.price{
  display:inline-block;
  margin-top:8px;
  color:#8a6b35;
  font-weight:700;
}

.text-link{
  display:inline-block;
  margin-top:8px;
  color:var(--color-accent-soft);
  font-weight:600;
}
blockquote{
  font-family:var(--font-heading);
  font-size:1.45rem;
  color:inherit;
}
.testimonial-quote{
  font-size:2rem;
  line-height:1.2;
}
.testimonial-author{
  color:rgba(255,255,255,.72);
  margin-bottom:0;
}

.reservation-section{
  background:
    linear-gradient(180deg,var(--color-primary-dark), var(--color-primary));
  color:#fff;
}
.reservation-card{
  max-width:760px;
  margin-inline:auto;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(229,211,161,.16);
  padding:48px;
  text-align:center;
}
.reservation-card p{color:rgba(255,255,255,.8)}
.form-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin:24px 0 16px;
}
input,select{
  height:54px;
  border-radius:12px;
  border:1px solid rgba(229,211,161,.22);
  background:#fff;
  padding:0 16px;
  color:#1a1a1a;
}
input:focus,select:focus{
  outline:none;
  border-color:var(--color-accent-gold);
  box-shadow:0 0 0 3px rgba(200,169,106,.15);
}
.contact-list li{
  display:flex;align-items:center;gap:12px;
  margin-bottom:18px;color:var(--color-text-dark)
}
.contact-list img{width:24px;height:24px;color:#8a6b35}
.footer-logo{height:48px}
.site-footer{
  background:var(--color-primary-dark);
  color:#fff;
}
.site-footer h4{font-size:1.15rem;margin-bottom:12px}
.site-footer li{margin-bottom:10px;color:rgba(255,255,255,.72)}
.footer-copy{color:rgba(255,255,255,.72)}
.footer-bottom p{color:rgba(255,255,255,.6);margin:0}

.reveal{
  opacity:0;transform:translateY(18px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.visible{opacity:1;transform:none}

@media (max-width:980px){
  .form-grid{grid-template-columns:1fr}
  .reservation-card{padding:32px 24px}
}