body {
  background: radial-gradient(circle at top, #f7f2e8 0%, #eff4ee 45%, #e7efe7 100%);
  color: var(--color-ink);
  min-height: 100vh;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 90px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.socials-top {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-right: auto;
}

.socials-top .social-item {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(27, 42, 36, 0.08);
  box-shadow: var(--shadow-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.socials-top .social-item:hover {
  opacity: 1;
}

.socials-top .social-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0;
}

.brand-subtitle {
  margin: 6px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.hero {
  background: white;
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow-strong);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 38px);
}

.hero-copy p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.hero-search {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--color-muted);
}

.hero-search label {
  font-weight: 600;
  color: var(--color-ink);
}

.search-field {
  position: relative;
}

.search-field input {
  width: 100%;
  padding: 12px 44px 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(27, 42, 36, 0.15);
  font-size: 14px;
  background: #f8f7f3;
}

.search-field input:focus {
  outline: none;
  border-color: var(--color-emerald);
  box-shadow: 0 0 0 3px rgba(62, 124, 95, 0.15);
  background: white;
}

.search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: rgba(27, 42, 36, 0.6);
}

.search-icon svg {
  width: 100%;
  height: 100%;
}

.branch-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-header h2 {
  margin: 0 0 6px;
  font-size: 22px;
}

.section-header p {
  margin: 0;
  color: var(--color-muted);
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}

.branch-card {
  background: white;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--color-ink);
  border: 1px solid transparent;
}

.branch-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(27, 42, 36, 0.12);
}

.branch-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.branch-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}

.branch-meta {
  font-size: 12px;
  color: var(--color-emerald-dark);
  font-weight: 600;
}

.empty-state {
  background: rgba(27, 42, 36, 0.05);
  padding: 16px;
  border-radius: 12px;
  color: var(--color-muted);
  font-size: 14px;
}

@media (max-width: 640px) {
  .brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 24px;
  }

  .socials-top {
    width: 100%;
  }
}
