* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #111;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #111;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.brand h1 {
  margin: 0;
  font-size: 1.7rem;
  letter-spacing: 0.5px;
}

.brand p {
  margin: 2px 0 0;
  color: #cfcfcf;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: #fff;
  font-weight: 600;
}

.nav a:hover {
  color: #ffd54a;
}

.hero {
  background:
    linear-gradient(135deg, rgba(0,0,0,0.86), rgba(20,20,20,0.76)),
    url('images/hero-restaurant-placeholder.jpg') center/cover no-repeat;
  color: #fff;
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffd54a;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.hero-text h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.lead {
  font-size: 1.08rem;
  color: #e9e9e9;
  max-width: 700px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.point-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(4px);
}

.point-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.point-card p {
  margin: 0;
  color: #e4e4e4;
  font-size: 0.95rem;
}

.form-card {
  background: #fff;
  color: #111;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.22);
}

.form-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.form-card p {
  margin-top: 0;
  color: #555;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-row label {
  font-weight: 700;
  margin-bottom: 6px;
  color: #222;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid #d7d7d7;
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(255, 213, 74, 0.25);
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 24px;
  transition: 0.25s ease;
}

.btn-primary {
  width: 100%;
  background: #111;
  color: #fff;
}

.btn-primary:hover {
  background: #2a2a2a;
}

.btn-secondary {
  background: #ffd54a;
  color: #111;
}

.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.form-status {
  margin-top: 12px;
  font-weight: 600;
  color: #157347;
}

.section {
  padding: 80px 0;
}

.section.light {
  background: #fff;
}

.section.dark {
  background: #111;
}

.section-head {
  margin-bottom: 34px;
}

.section-head.center {
  text-align: center;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: #555;
  max-width: 760px;
}

.light-text h2,
.light-text p {
  color: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card,
.benefit-card {
  background: #f8f8f8;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.image-card .image-wrap {
  height: 280px;
  overflow: hidden;
  background: #ececec;
}

.image-card .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 24px;
}

.card-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: #1c1c1c;
  color: #fff;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
}

.benefit-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #ffd54a;
}

.benefit-card p {
  margin: 0;
  color: #d7d7d7;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.split-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.split-text h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
}

.split-text p {
  color: #444;
}

.footer {
  background: #0d0d0d;
  color: #fff;
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer h3 {
  margin: 0 0 10px;
}

.footer p {
  margin: 0;
  color: #cfcfcf;
  max-width: 520px;
}

.footer a {
  color: #ffd54a;
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-section,
  .feature-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    align-items: flex-start;
  }

  .nav {
    gap: 12px;
  }

  .hero {
    padding: 56px 0;
  }

  .form-card {
    padding: 22px;
  }

  .section {
    padding: 60px 0;
  }

  .image-card .image-wrap {
    height: 220px;
  }
}