/* Digital visiting card — Cloudflare Pages static */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Outfit:wght@300;400;500;600&display=swap');

html,
body {
  margin: 0;
  padding: 0;
}

.vc-root {
  --card-font-display: 'Cormorant Garamond', Georgia, serif;
  --card-font-sans: 'Outfit', 'Avenir Next', sans-serif;
  --vc-ink: #1c1214;
  --vc-ink-soft: #3d2e32;
  --vc-muted: #8a7a7e;
  --vc-paper: #f7f3f1;
  --vc-paper-deep: #ebe3df;
  --vc-line: rgba(28, 18, 20, 0.1);
  --vc-accent: #6e3a46;
  --vc-accent-soft: #8f5a65;
  --vc-cream: #faf7f5;
  --vc-hero-from: #2a181c;
  --vc-hero-to: #4a2c33;
  min-height: 100vh;
  background: var(--vc-paper);
  color: var(--vc-ink);
  font-family: var(--card-font-sans), 'Avenir Next', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.vc-root * {
  box-sizing: border-box;
}

.vc {
  min-height: 100vh;
}

/* ——— Hero ——— */

.vc-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--vc-cream);
}

.vc-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(42, 24, 28, 0.35), rgba(42, 24, 28, 0.72)),
    url('/card-hero-silver-antique.png') center 35% / cover no-repeat;
  transform: scale(1.04);
  animation: vc-hero-drift 18s ease-in-out infinite alternate;
}

.vc-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 10, 12, 0.2) 0%, rgba(20, 10, 12, 0.55) 42%, rgba(20, 10, 12, 0.88) 100%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(143, 90, 101, 0.22), transparent 60%);
}

.vc-hero-inner {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 48px) clamp(20px, 5vw, 28px) 36px;
  animation: vc-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.vc-kicker {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 245, 0.72);
}

.vc-brand {
  margin: 0;
  font-family: var(--card-font-display), Georgia, serif;
  font-size: clamp(2.75rem, 11vw, 4.25rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
}

.vc-tagline {
  margin: 16px 0 0;
  max-width: 22rem;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.45;
  color: rgba(250, 247, 245, 0.82);
}

.vc-actions {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.vc-action {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.vc-action:hover,
.vc-action:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
  outline: none;
}

.vc-action-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.vc-action-icon svg {
  width: 18px;
  height: 18px;
}

.vc-action-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.vc-action-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 247, 245, 0.62);
}

.vc-action-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vc-apps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.vc-store {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  color: var(--vc-ink);
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.vc-store:hover,
.vc-store:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.vc-store svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--vc-accent);
}

.vc-store span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-size: 0.82rem;
  font-weight: 600;
}

.vc-store small {
  font-size: 0.62rem;
  font-weight: 450;
  letter-spacing: 0.02em;
  color: var(--vc-muted);
}

.vc-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.vc-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vc-social a:hover,
.vc-social a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
  outline: none;
}

.vc-social svg {
  width: 18px;
  height: 18px;
}

/* ——— Sections ——— */

.vc-section {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: clamp(48px, 10vw, 88px) clamp(20px, 5vw, 28px);
}

.vc-section-label {
  margin: 0 0 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vc-accent);
}

.vc-section-title {
  margin: 0;
  max-width: 16ch;
  font-family: var(--card-font-display), Georgia, serif;
  font-size: clamp(1.9rem, 6vw, 2.6rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--vc-ink);
}

.vc-about {
  border-bottom: 1px solid var(--vc-line);
  animation: vc-rise 1s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.vc-about-copy {
  margin: 22px 0 0;
  max-width: 38rem;
  font-size: 1.05rem;
  font-weight: 350;
  line-height: 1.65;
  color: var(--vc-ink-soft);
}

.vc-partners {
  padding-bottom: 40px;
}

.vc-partner-list {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 28px;
}

.vc-partner {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: start;
  animation: vc-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.vc-partner:nth-child(1) {
  animation-delay: 0.08s;
}
.vc-partner:nth-child(2) {
  animation-delay: 0.16s;
}
.vc-partner:nth-child(3) {
  animation-delay: 0.24s;
}

.vc-partner-photo {
  width: 112px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--vc-paper-deep);
}

.vc-partner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.6s ease;
}

.vc-partner:hover .vc-partner-photo img {
  transform: scale(1.04);
}

.vc-partner-copy h3 {
  margin: 4px 0 0;
  font-family: var(--card-font-display), Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--vc-ink);
}

.vc-partner-role {
  margin: 4px 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vc-accent);
}

.vc-partner-about {
  margin: 10px 0 0;
  font-size: 0.95rem;
  font-weight: 350;
  line-height: 1.5;
  color: var(--vc-ink-soft);
}

.vc-footer {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 28px clamp(20px, 5vw, 28px) 48px;
  border-top: 1px solid var(--vc-line);
  text-align: center;
}

.vc-footer-brand {
  margin: 0;
  font-family: var(--card-font-display), Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--vc-ink);
}

.vc-footer-meta {
  margin: 6px 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vc-muted);
}

.vc-powered {
  margin: 18px 0 0;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--vc-muted);
}

.vc-powered a,
.vc-powered span {
  color: var(--vc-ink-soft);
  font-weight: 500;
  text-decoration: none;
}

.vc-powered a:hover,
.vc-powered a:focus-visible {
  color: var(--vc-accent);
  outline: none;
}

@keyframes vc-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vc-hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(0, -1.5%, 0);
  }
}

@media (min-width: 720px) {
  .vc-hero {
    align-items: center;
  }

  .vc-hero-inner {
    padding-bottom: 56px;
  }

  .vc-actions {
    grid-template-columns: 1fr;
  }

  .vc-partner {
    grid-template-columns: 140px 1fr;
    gap: 24px;
  }

  .vc-partner-photo {
    width: 140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vc-hero-media,
  .vc-hero-inner,
  .vc-about,
  .vc-partner,
  .vc-partner-photo img {
    animation: none !important;
    transition: none !important;
  }
}
