:root {
  --bg: #de9789;
  --black: #0b0b0a;
  --font: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--black);
  /* the JS engine repaints this every frame — no CSS transition here, it would fight the easing */
}

a {
  color: inherit;
}

.page {
  height: 100dvh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.content {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(20px, 3.2vw, 56px) clamp(20px, 3.6vw, 64px) 0;
}

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

.hero {
  position: relative;
  flex: 1;
  display: flex;
  min-height: 0;
}

.ouna-logo {
  height: 100%;
  width: auto;
  display: block;
}

.tag {
  position: absolute;
  top: 0;
  right: 0;
  height: clamp(12px, 1.6vw, 19px);
  width: auto;
}

@media (max-width: 760px) {
  .content {
    padding-left: 40px;
    padding-right: 40px;
  }
  .hero {
    flex-direction: column;
  }
  .ouna-logo {
    height: auto;
    width: 100%;
  }
  .tag {
    position: static;
    margin-top: clamp(16px, 5vw, 28px);
    align-self: flex-end;
    height: clamp(11px, 3vw, 15px);
  }
}

/* ---------- Brand row (BY + Kaufmann Keramik) ---------- */

.brand-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.6vw, 28px);
  padding-bottom: clamp(18px, 2.4vw, 32px);
}

.by {
  font-size: clamp(12px, 1.1vw, 20px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kaufmann-logo {
  position: relative;
  display: block;
  width: clamp(140px, 14.7vw, 244px);
  height: clamp(10px, 1.02vw, 17px);
  flex-shrink: 0;
}

.kaufmann-logo img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

.kl-square {
  width: 6.5%;
  height: 94%;
}

.kl-word {
  width: 100%;
  height: 100%;
}

@media (max-width: 760px) {
  .brand-row {
    justify-content: space-between;
  }
}

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

.bottom-bar {
  background: var(--black);
  color: #fdfaf7;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px clamp(16px, 3vw, 40px);
  padding: clamp(14px, 1.6vw, 24px) clamp(20px, 3.6vw, 64px);
  font-size: clamp(11px, 1.05vw, 18px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bottom-bar .contact {
  text-decoration: none;
  text-transform: none;
  order: 2;
}

.bottom-bar .soon {
  order: 3;
}

@media (max-width: 760px) {
  .bottom-bar .contact {
    flex-basis: 100%;
    order: 3;
    text-align: center;
    text-decoration: underline;
  }
  .bottom-bar .soon {
    order: 2;
  }
}
