:root {
  --bg: #ffffff;
  --text: #151515;
  --text-muted: #4a4a4a;
  --border: rgb(244 184 72);
  --accent: rgb(244 184 72);
  --accent-hover: rgb(230 166 44);
  --accent-contrast: #1a1509;
  --radius: 14px;
  --max-width: 640px;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  min-height: 100vh;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
  padding: 0 20px;
}

.content {
  width: 100%;
  max-width: var(--max-width);
  padding: 48px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Profile */

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avatar-initials {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.brand-name {
  margin: 0 0 6px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.tagline {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.4;
}

/* Link buttons */

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.05s ease,
    border-color 0.15s ease;
}

.link-btn:hover {
  background: rgba(244, 184, 72, 0.12);
}

.link-btn:active {
  transform: translateY(1px);
}

.link-btn-primary {
  background: var(--accent);
  color: var(--accent-contrast);
  border-color: var(--accent);
}

.link-btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.link-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.link-label {
  line-height: 1.2;
}

/* Info card (address + hours) */

.info-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  text-align: center;
}

.info-title {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 700;
}

.info-line {
  margin: 0 0 4px;
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.info-hours {
  margin-top: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 3px 0;
}

.hours-row span:first-child {
  font-weight: 600;
  color: var(--text);
}

/* Footer */

.site-footer {
  margin-top: 32px;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: center;
}

@media (max-width: 480px) {
  .content {
    padding: 36px 0 32px;
  }

  .info-card {
    padding: 22px 20px;
  }
}
