:root{
  --bg:#ffffff;
  --panel:#ffffff;
  --text:#111111;
  --muted:#5a5a5a;
  --brand:#c79a3b;         /* warm gold */
  --border: rgba(0,0,0,.10);
  --shadow: 0 10px 20px rgba(0,0,0,.06);
  --max: 1100px;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }

img{ max-width:100%; display:block; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

/* =========================
   HEADER / NAV
========================= */
header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 8px 0; /* reduced so bigger logo doesn't make header too tall */
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight: 900;
  letter-spacing: .2px;
  min-width: 220px;
}

.brand img{
  height: 95px;  /* bigger logo */
  width: auto;
}

.navlinks{
  display:flex;
  align-items:center;
  gap:18px;
  font-weight: 800;
}

.navlinks a{
  opacity:.85;
  padding: 8px 8px;
  border-radius: 10px;
}

.navlinks a:hover{
  opacity:1;
  background: rgba(0,0,0,.04);
}

.phone{
  color: var(--muted);
  font-weight: 900;
  white-space: nowrap;
}

/* =========================
   BUTTONS
========================= */
.btn{
  display:inline-block;
  background: var(--brand);
  color:#111;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
}

.btn:hover{ filter: brightness(1.05); }

/* =========================
   SECTIONS / TYPOGRAPHY
========================= */
.section{
  padding: 56px 0;
}

.section h2{
  margin: 0 0 10px;
  font-size: 30px;
}

.section p.lead{
  margin: 0 0 26px;
  color: var(--muted);
  max-width: 820px;
}

/* =========================
   HERO (2 slides)
========================= */
.hero{
  position: relative;
  min-height: 520px;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom: 1px solid var(--border);
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .6s ease;
}

/* white overlay like the reference site */
.hero-slide::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.90),
    rgba(255,255,255,.35)
  );
}

.hero-slide.active{ opacity: 1; }

.hero-content{
  position: relative;
  padding: 72px 0;
  max-width: 560px;
}

.hero-eyebrow{
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero h1{
  margin: 10px 0 18px;
  font-size: 48px;
  line-height: 1.05;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* =========================
   GRIDS / CARDS
========================= */
.grid{
  display:grid;
  gap: 18px;
}

.grid.cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img{
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.card .pad{
  padding: 16px;
}

.card h3{
  margin: 0 0 8px;
  font-size: 18px;
}

.card p{
  margin: 0;
  color: var(--muted);
}

/* =========================
   CALLOUT (Visit Us)
========================= */
.callout{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  box-shadow: var(--shadow);
}

.callout h3{
  margin: 0 0 6px;
  font-size: 22px;
}

.callout p{
  margin: 0;
  color: var(--muted);
}

/* =========================
   PAGE HERO (Menu/Contact top area)
========================= */
.page-hero{
  padding: 44px 0 22px;
  border-bottom: 1px solid var(--border);
}

.breadcrumb{
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

/* =========================
   MENU STACK (images)
========================= */
.stack{
  display:flex;
  flex-direction:column;
  gap: 18px;
}

.menu-img{
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow:hidden;
  box-shadow: var(--shadow);
}

.menu-img img{
  width: 100%;
  display:block;
}

/* =========================
   CONTACT FORM
========================= */
form{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.formgrid{
  display:grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  outline: none;
}

input:focus, textarea:focus{
  border-color: rgba(199,154,59,.6);
  box-shadow: 0 0 0 3px rgba(199,154,59,.18);
}

textarea{
  min-height: 120px;
  grid-column: 1 / -1;
  resize: vertical;
}

/* =========================
   FOOTER
========================= */
footer{
  border-top: 1px solid var(--border);
  padding: 34px 0;
  color: var(--muted);
  background: #fff;
}

.footergrid{
  display:grid;
  gap: 18px;
  grid-template-columns: 1.2fr .8fr 1fr;
  align-items:start;
}

.footergrid h4{
  margin: 0 0 10px;
  color: var(--text);
  font-size: 16px;
}

.small{ font-size: 14px; }

.backtop{
  display:inline-block;
  margin-top: 14px;
  opacity: .9;
}

.backtop:hover{ opacity: 1; }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px){
  .grid.cols-3{ grid-template-columns: 1fr; }
  .grid.cols-4{ grid-template-columns: 1fr 1fr; }

  .hero h1{ font-size: 40px; }

  .footergrid{ grid-template-columns: 1fr; }
  .formgrid{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .grid.cols-4{ grid-template-columns: 1fr; }

  .navlinks{ gap: 10px; }
  .phone{ display:none; }

  .brand{
    min-width: unset;
  }

  .brand img{
    height: 70px; /* smaller on mobile */
  }
}
