* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f1f2f4;
  --panel: #ffffff;
  --soft-blue: #eef3f6;
  --text: #1d2040;
  --muted: #7d7d8c;
  --accent: #f4a024;
  --line: #eaeaea;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.72)),
    url("https://images.unsplash.com/photo-1467453678174-768ec283a940?auto=format&fit=crop&w=1400&q=80")
    left center / 420px auto no-repeat,
    #eef0f2;
  z-index: -1;
}

.wrapper {
  width: min(1280px, 94%);
  margin: 80px auto;
}

.main-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  background: transparent;
  gap: 0;
}

.left-column {
  background: var(--panel);
}

.right-column {
  background: #fbfbfb;
}

/* GENERAL */

img {
  width: 100%;
  display: block;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  color: var(--text);
}

h1 {
  font-size: 4.2rem;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -1px;
}

h2 {
  font-size: 3.3rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.8px;
}

h3 {
  font-size: 1.8rem;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.center-text {
  text-align: center;
}

/* HERO */

.hero {
  background: var(--soft-blue);
  padding: 22px 34px 0;
  min-height: 520px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.logo {
  font-size: 2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #4b4e63;
  font-size: 0.82rem;
}

.top-icons {
  display: flex;
  gap: 14px;
  font-size: 1rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  min-height: 430px;
}

.hero-text {
  padding: 20px 10px 50px 18px;
}

.search-row {
  display: flex;
  margin: 36px 0 26px;
  max-width: 520px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 0 0 1px #e3e3e3 inset;
  background: #fff;
}

.search-row input {
  flex: 1;
  border: none;
  outline: none;
  padding: 15px 16px;
  font-size: 0.9rem;
  font-family: inherit;
}

.search-row button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 0 24px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
}

.social-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: #5f6278;
  font-size: 0.9rem;
}

.hero-image {
  align-self: end;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: end;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  height: 380px;
  object-fit: cover;
  object-position: center;
}

/* STORY */

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 420px;
  padding: 0;
  background: #fff;
}

.story-image {
  height: 100%;
}

.story-image img {
  height: 100%;
  object-fit: cover;
}

.story-text {
  padding: 55px 48px;
}

.story-text p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.92rem;
  margin-top: 18px;
  max-width: 470px;
}

.primary-btn {
  margin-top: 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 13px 22px;
  font-size: 0.9rem;
  border-radius: 3px;
  cursor: pointer;
}

/* SPECIALITY */

.speciality {
  background: #fff;
  padding: 58px 46px 72px;
}

.speciality h2 {
  text-align: center;
  margin-bottom: 22px;
}

.tabs {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tabs li {
  color: #66697f;
  font-size: 0.92rem;
  padding-bottom: 8px;
  cursor: pointer;
}

.tabs .active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.menu-card {
  background: #f5f5f5;
  overflow: hidden;
  position: relative;
  min-height: 270px;
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 23, 18, 0.68), rgba(0, 0, 0, 0.05));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 16px;
}

.sale-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 0.74rem;
  padding: 5px 10px;
  border-radius: 20px;
}

.price {
  font-size: 2rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 2px;
}

.overlay h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 6px;
}

.stars {
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.overlay button {
  margin-top: 12px;
  width: fit-content;
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 3px;
  cursor: pointer;
}

/* RIGHT COLUMN */

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px 18px 28px;
  background: #f3f4f6;
}

.thumb-row img {
  width: 100%;
  height: 145px;
  object-fit: cover;
}

.hours-card,
.testimonial-card {
  background: #fbfbfb;
  padding: 44px 34px 52px;
  text-align: center;
}

.phone-circle {
  width: 54px;
  height: 54px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 24px auto 10px;
  color: var(--accent);
  font-size: 1.2rem;
}

.call-now {
  font-size: 0.85rem;
  color: #8f90a1;
  margin-bottom: 8px;
}

.phone-number {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.65rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  text-align: left;
  margin: 34px 0 34px;
}

.hours-grid p {
  color: #707385;
  font-size: 0.84rem;
  margin-bottom: 7px;
}

.hours-grid strong {
  font-size: 1rem;
  color: var(--text);
}

.hours-image {
  overflow: hidden;
}

.hours-image img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.testimonial-card {
  padding-top: 70px;
  min-height: 430px;
}

.avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  margin: 26px auto 16px;
}

.role {
  color: #8b8d9a;
  font-size: 0.9rem;
  margin: 6px 0 12px;
}

.orange {
  color: var(--accent);
  margin-bottom: 18px;
}

.review {
  max-width: 420px;
  margin: 0 auto;
  color: #7f8191;
  line-height: 1.9;
  font-size: 0.92rem;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .main-card {
    grid-template-columns: 1fr;
  }

  .right-column {
    border-top: 1px solid var(--line);
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .thumb-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-image {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .wrapper {
    width: 96%;
    margin: 24px auto;
  }

  .hero,
  .speciality,
  .hours-card,
  .testimonial-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .story {
    grid-template-columns: 1fr;
  }

  .story-text {
    padding: 30px 20px 40px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .hours-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.3rem;
  }

  .nav-links {
    gap: 12px;
  }
}