/* ============================================
   a31 furniture — placeholder page
   Resist Sans + grey/blue minimal
   ============================================ */

@font-face {
  font-family: "Resist Sans";
  src: url("fonts/ResistSansText-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Resist Sans";
  src: url("fonts/ResistSansText-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Resist Sans";
  src: url("fonts/ResistSansText-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Resist Sans";
  src: url("fonts/ResistSansText-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font: "Resist Sans", "Inter", "Helvetica Neue", Arial, sans-serif;
  --bg: #d9d9d9;
  --text: #1a1a1a;
  --muted: rgba(26, 26, 26, 0.44);
  --muted-light: rgba(26, 26, 26, 0.28);
  --blue: #2637ae;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

a:hover {
  color: var(--blue);
}

/* ---- Layout ---- */

.page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 28px 32px;
}

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

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

.logo-mark {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-fallback {
  display: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.brand-name {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--muted);
}

.top-actions {
  display: flex;
  align-items: center;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--muted-light);
  cursor: pointer;
  transition: color 180ms ease;
}

.lang-button:hover,
.lang-button.is-active {
  color: var(--muted);
}

.lang-divider {
  font-size: 0.58rem;
  color: var(--muted-light);
}

/* ---- Hero ---- */

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-copy {
  max-width: 1920px;
}

h1 {
  font-family: var(--font);
  font-size: clamp(1.8rem, 4.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
}
br {
  display: none;
}

.description {
  margin-top: 18px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  margin-left: auto;
  margin-right: auto;
}

/* ---- Footer / contacts ---- */

.bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-bottom: 8px;
}

.contact-note {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.social-links {
  display: flex;
  gap: 24px;
}

.link-btn {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--blue);
  padding: 8px 20px;
  border: 1px solid var(--blue);
  border-radius: 100px;
  transition: background 200ms ease, color 200ms ease;
}

.link-btn:hover {
  background: var(--blue);
  color: #fff;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.68rem;
  color: var(--muted-light);
  letter-spacing: 0.01em;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-info a {
  color: var(--muted-light);
}

.contact-info a:hover {
  color: var(--blue);
}

/* ---- Mobile ---- */

@media (max-width: 640px) {
  .page {
    padding: 18px 20px;
  }

  .brand-name {
    font-size: 0.78rem;
  }

  .logo-mark {
    width: 26px;
    height: 26px;
  }

  h1 {
    font-size: 1.6rem;
    line-height: 1.24;
  }

  .description {
    font-size: 0.8rem;
    max-width: 280px;
  }

  .contact-note {
    font-size: 0.66rem;
  }

  .social-links {
    gap: 12px;
  }

  .link-btn {
    font-size: 0.66rem;
    padding: 7px 16px;
  }

  .contact-info {
    flex-direction: column;
    gap: 6px;
    font-size: 0.62rem;
  }
}
