/* Minimalist landing — Experience Design Consultant */

:root {
  --bg: #faf9f7;
  --text: #1a1a1a;
  --text-muted: #8d8d8d;
  --accent: #000000;
  --border: #e5e3df;
  --max-width: 42rem;
}

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

html {
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

/* Fade-in on load */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-content {
  animation: fadeIn 0.8s ease-out forwards;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 4vw, 2rem);
}

/* Two-column layout on large desktop */
@media (min-width: 64rem) {
  main {
    max-width: 56rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 3rem);
  }

  .col-hero {
    position: sticky;
    top: clamp(2rem, 4vw, 3rem);
  }

  .hero {
    padding-bottom: 0;
    border-bottom: none;
  }

  .col-right {
    padding-top: 0;
  }

  .col-right .about {
    padding-top: 0;
  }
}

/* Hero */
.hero {
  padding-bottom: clamp(2.5rem, 8vw, 4rem);
}

.hero h1 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 0.25rem 0;
  color: var(--text);
}

.role {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  margin: 0 0 1rem 0;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

/* Sections */
.about,
.brands {
  padding-top: clamp(2rem, 6vw, 3rem);
}


.about p,
.brand-note {
  margin: 0 0 1.25rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 60ch;
}

/* Brand list */
.brand-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brand-list li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.brand-list li span{
  margin: 0;
  color: var(--text-muted);
}

.brand-list li:last-child {
  border-bottom: none;
}

.brand-note {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
}

/* Footer */
.contact {
  margin-top: clamp(3rem, 10vw, 5rem);
  padding-bottom: 2rem;
}

.contact p {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-btn:hover {
  border-color: var(--accent);
  background: var(--bg);
}

.contact-btn-icon {
  flex-shrink: 0;
  margin-left: 0.5rem;
  color: var(--text-muted);
}

.contact-btn:hover .contact-btn-icon {
  color: var(--accent);
}
