:root {
  --marine: #162338;
  --gold: #e0c889;
  --gold-soft: #efe1bc;
  --gold-dim: #b09452;
  --ivory: #f5f5f0;
  --ivory-deep: #ecebe3;
  --gray: #8c8a87;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--marine);
  background: var(--ivory);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero {
  background: var(--marine);
  color: var(--ivory);
  padding: 2rem 1.25rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0.55rem;
  transform: translateX(-50%);
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-inner {
  max-width: 480px;
  margin: 0 auto;
}

.brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.85rem, 8vw, 2.5rem);
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 3.6vw, 1.15rem);
  line-height: 1.25;
  color: var(--ivory);
  margin-bottom: 0.55rem;
}

.subtag {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 300;
}

main {
  max-width: 600px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--marine);
  margin-bottom: 0.6rem;
  position: relative;
  padding-bottom: 0.4rem;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.about {
  margin-bottom: 1.25rem;
}

.about p {
  color: var(--marine);
  opacity: 0.82;
  font-size: 0.82rem;
  line-height: 1.5;
}

.founders {
  margin-bottom: 1.25rem;
}

.card {
  background: #fff;
  border: 1px solid var(--ivory-deep);
  border-radius: 7px;
  padding: 0.9rem 0.75rem 1rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 1px 3px rgba(22, 35, 56, 0.04);
  text-align: center;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--marine);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  border: 1.5px solid var(--gold);
}

.name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--marine);
  margin-bottom: 0.1rem;
}

.role {
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.45rem 0.55rem;
  background: var(--ivory);
  color: var(--marine);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.77rem;
  font-weight: 500;
  transition: all 0.15s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.link:hover, .link:active {
  background: var(--gold-soft);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.link-icon {
  font-size: 0.85rem;
  opacity: 0.65;
  min-width: 14px;
  text-align: center;
  flex-shrink: 0;
}

.link > span:not(.link-icon) {
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.link-linkedin .link-icon {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  opacity: 1;
}

.link-vcard {
  background: var(--marine);
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-top: 0.15rem;
}

.link-vcard:hover, .link-vcard:active {
  background: #0f1a2b;
  color: var(--gold-soft);
  border-color: var(--gold);
}

.link-vcard .link-icon {
  color: var(--gold);
  opacity: 1;
}

.link-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.link-disabled > span:not(.link-icon)::after {
  content: ' · à venir';
  font-size: 0.7rem;
  font-style: italic;
  opacity: 0.7;
}

.company {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ivory-deep);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.company .link {
  background: transparent;
}

.company .link:hover {
  background: var(--ivory-deep);
}

footer {
  text-align: center;
  padding: 1rem 1.5rem 0.75rem;
  font-size: 0.66rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

@media (min-width: 720px) {
  main {
    padding: 1.5rem 2rem 1rem;
  }
  .hero {
    padding: 2.5rem 2rem 2rem;
  }
  .founders {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }
  .founders .section-title {
    grid-column: 1 / -1;
  }
  .card {
    margin-bottom: 0;
    min-width: 0;
  }
}
