.seo-page img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.seo-page .header-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: 220px;
}

.seo-page .header-contact a {
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.72);
  color: var(--red-dark);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 9px 11px;
  white-space: nowrap;
}

.seo-page .about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  width: min(1120px, 100% - 32px);
  margin-inline: auto;
  padding: clamp(54px, 8vw, 92px) 0;
  min-height: auto;
}

.seo-page .about-copy {
  max-width: 720px;
}

.seo-page h1 {
  max-width: 680px;
  text-wrap: balance;
}

.seo-page .hero-lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.58;
}

.seo-page .about-sign {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  align-self: center;
}

.seo-page .about-sign img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.seo-page .about-sign img[src*="gladys-top-banner"] {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  padding: clamp(8px, 1.4vw, 16px);
  background: white;
}

.seo-page .section,
.seo-page .about-story,
.seo-page .values-section,
.seo-page .visit-section {
  width: min(1120px, 100% - 32px);
  margin-inline: auto;
}

.seo-page .section {
  padding: clamp(54px, 8vw, 86px) 0;
}

.seo-page .section-alt {
  background:
    linear-gradient(135deg, rgba(215, 165, 47, 0.16), transparent 46%),
    var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}

.seo-page .section-heading {
  margin-bottom: 30px;
}

.seo-page .section-heading p:not(.section-kicker) {
  max-width: 860px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.seo-page .section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-page .menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.seo-page .menu-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.seo-page .menu-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.seo-page .menu-card div {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.seo-page .menu-card p,
.seo-page .values-section p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.seo-page .about-story {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.88fr);
  gap: 48px;
  padding: clamp(54px, 8vw, 86px) 0;
  border-top: 1px solid var(--line);
}

.seo-page .story-text p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.seo-page .values-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(48px, 7vw, 76px) 0;
}

.seo-page .values-section article {
  min-height: 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.seo-page .visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 18px;
  padding: clamp(50px, 7vw, 80px) 0;
}

.seo-page .visit-card,
.seo-page .hours-card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.seo-page .visit-card p,
.seo-page .hours-card p {
  color: var(--muted);
  line-height: 1.65;
}

.seo-page .visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.seo-page .large-stat {
  margin: 8px 0;
  color: var(--red-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 800;
  line-height: 0.92;
}

.seo-page .muted {
  color: var(--muted);
}

.seo-page .footer {
  width: auto;
}

@media (max-width: 980px) {
  .seo-page .about-hero,
  .seo-page .about-story,
  .seo-page .visit-section {
    grid-template-columns: 1fr;
  }

  .seo-page .menu-grid {
    grid-template-columns: 1fr;
  }

  .seo-page .values-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .seo-page .header-contact {
    justify-content: flex-start;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .seo-page .about-hero,
  .seo-page .section,
  .seo-page .about-story,
  .seo-page .values-section,
  .seo-page .visit-section {
    width: min(100% - 22px, 1120px);
  }

  .seo-page h1 {
    font-size: 40px;
    line-height: 1.04;
  }

  .seo-page .hero-actions,
  .seo-page .visit-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
