.seo-landing-page {
  background:
    radial-gradient(circle at top left, rgba(23, 198, 189, 0.18), transparent 34%),
    linear-gradient(180deg, #f8fbf8 0%, #eef4ee 100%);
}

.seo-landing-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(7, 47, 73, 0.1);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(230, 243, 238, 0.9)),
    radial-gradient(circle at 92% 18%, rgba(185, 37, 38, 0.16), transparent 30%);
  box-shadow: 0 20px 60px rgba(7, 47, 73, 0.08);
}

.seo-landing-hero h1 {
  max-width: 780px;
  margin: 8px 0 14px;
  color: #072f49;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.seo-landing-hero p {
  max-width: 760px;
  margin: 0;
  color: #334155;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.55;
}

.seo-landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.seo-landing-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: #072f49;
  color: #fff;
  font-weight: 950;
  text-decoration: none;
}

.seo-landing-actions a.secondary {
  background: #17c6bd;
  color: #072f49;
}

.seo-landing-section {
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto 0;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(7, 47, 73, 0.09);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(7, 47, 73, 0.07);
}

.seo-landing-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.seo-landing-heading h2 {
  margin: 0;
  color: #072f49;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.seo-landing-count {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(23, 198, 189, 0.16);
  color: #072f49;
  font-weight: 950;
  white-space: nowrap;
}

.seo-restaurant-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.seo-restaurant-card {
  display: grid;
  grid-template-rows: 184px minmax(170px, 1fr);
  min-height: 354px;
  overflow: hidden;
  border: 1px solid rgba(7, 47, 73, 0.1);
  border-radius: 24px;
  background: #fff;
  color: #17212b;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(7, 47, 73, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.seo-restaurant-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(7, 47, 73, 0.12);
  text-decoration: none;
}

.seo-restaurant-photo {
  width: 100%;
  height: 184px;
  min-height: 184px;
  max-height: 184px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f4f7f5;
  color: #fff;
  font-size: 42px;
  font-weight: 950;
}

.seo-restaurant-photo.no-photo {
  background: linear-gradient(135deg, #072f49, #17c6bd);
}

.seo-restaurant-photo img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.seo-restaurant-body {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 18px;
}

.seo-restaurant-body strong {
  color: #072f49;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.seo-restaurant-body span {
  color: #11776f;
  font-weight: 950;
}

.seo-restaurant-body p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #475569;
  font-weight: 650;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.seo-empty-state {
  padding: 30px;
  border: 2px dashed rgba(7, 47, 73, 0.2);
  border-radius: 24px;
  background: #f8fbf8;
  color: #334155;
  font-weight: 800;
}

.footer-guide-nav span {
  width: 100%;
  color: rgba(255,255,255,0.62);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .seo-restaurant-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .seo-landing-hero,
  .seo-landing-section { width: calc(100% - 20px); }
  .seo-landing-heading { align-items: start; flex-direction: column; }
  .seo-restaurant-grid { grid-template-columns: 1fr; }
  .seo-restaurant-card { grid-template-rows: 168px minmax(150px, 1fr); min-height: 318px; }
  .seo-restaurant-photo { height: 168px; min-height: 168px; max-height: 168px; }
}
