:root {
  --bg: #ffffff;
  --bg-glow: #ffffff;
  --text-main: #1f1f1f;
  --text-muted: rgba(31, 31, 31, 0.6);
  --accent: #7a5a2a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text-main);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px 24px 72px;
  position: relative;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.logo-wrap {
  width: 330px;
  height: 330px;
  display: grid;
  place-items: center;
  background: transparent;
}

.logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  clip-path: inset(0 0 1px 0);
}

.tagline {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 36px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flag {
  width: 18px;
  height: 12px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12'><rect width='18' height='12' fill='%230039A6'/><g fill='%23FFCC00'><circle cx='9' cy='2.2' r='0.55'/><circle cx='10.9' cy='2.6' r='0.55'/><circle cx='12.4' cy='4.1' r='0.55'/><circle cx='12.4' cy='6' r='0.55'/><circle cx='12.4' cy='7.9' r='0.55'/><circle cx='10.9' cy='9.4' r='0.55'/><circle cx='9' cy='9.8' r='0.55'/><circle cx='7.1' cy='9.4' r='0.55'/><circle cx='5.6' cy='7.9' r='0.55'/><circle cx='5.6' cy='6' r='0.55'/><circle cx='5.6' cy='4.1' r='0.55'/><circle cx='7.1' cy='2.6' r='0.55'/></g></svg>");
  background-size: cover;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(193, 163, 107, 0.45);
}

.email {
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.email:hover {
  color: #e3c88f;
}

@media (max-width: 640px) {
  .footer {
    position: static;
    margin-top: 60px;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    padding: 0;
  }
}
