@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400&family=Inter:wght@300;400&family=Space+Mono:wght@400&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f9f9f7;
  color: #111;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: #9A7B4B;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── Header ── */

header {
  padding: 2.25rem 4.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  color: #111;
  text-decoration: none;
  letter-spacing: 0.02em;
}

nav a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #777;
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover {
  color: #111;
}

/* ── Hero ── */

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 4rem 4.5rem;
}

.name-wrapper {
  display: flex;
  align-items: stretch;
  gap: 1.75rem;
  animation: fadeUp 0.8s ease both;
}

.accent-bar {
  width: 3px;
  background: #1B2B5E;
  flex-shrink: 0;
  border-radius: 2px;
}

.name-content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  justify-content: center;
}

.taglines {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e5e5e3;
}

.taglines p {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.75;
  color: #555;
  letter-spacing: 0em;
}


.label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #999;
}

.company-name {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #111;
}

/* ── Footer ── */

footer {
  padding: 1.75rem 4.5rem;
  border-top: 1px solid #e5e5e3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-link {
  font-size: 0.78rem;
  color: #555;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.contact-link:hover {
  color: #111;
}

.copyright {
  font-size: 0.72rem;
  color: #bbb;
  letter-spacing: 0.01em;
}

/* ── Animation ── */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */

@media (max-width: 640px) {
  header,
  main,
  footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
