@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/playfair-regular.ttf") format("truetype");
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/playfair-italic.ttf") format("truetype");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/inter-medium.ttf") format("truetype");
}
:root {
  color-scheme: light;
  background: #fcfaf6;
  color: #241d18;
  font-family: Inter, Arial, sans-serif;
  font-synthesis: none;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 22%, rgb(219 186 124 / 8%), transparent 31%),
    #fcfaf6;
}
.navbar { position: absolute; inset: 0 0 auto; z-index: 2; padding: 16px 3.75%; }
.logo { font-family: "Playfair Display", Georgia, serif; font-size: 28.8px; font-style: italic; line-height: 1.6; }
.gold-threads {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url("/gold-threads.svg") center / cover no-repeat;
  opacity: 0.17;
}
.hero { min-height: 100vh; min-height: 100svh; display: flex; align-items: center; justify-content: center; padding: 90px 5%; text-align: center; }
.hero-content { width: 100%; max-width: 800px; }
.photo-wrapper { width: 200px; height: 200px; margin: 0 auto 32px; overflow: hidden; border-radius: 50%; box-shadow: 0 18px 48px rgb(64 43 25 / 20%); }
.profile-photo { display: block; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9) contrast(1.05); }
.hero-title { margin: 0 0 16px; font-family: "Playfair Display", Georgia, serif; font-size: 64px; font-weight: 400; line-height: 1.6; letter-spacing: -0.025em; }
.hero-title span { display: block; }
.connect-button { display: inline-flex; align-items: center; justify-content: center; min-height: 49px; padding: 12px 28px; border-radius: 999px; background: #30251e; color: #fffaf1; font-size: 15.2px; font-weight: 500; line-height: 1.6; text-decoration: none; box-shadow: 0 8px 24px rgb(73 48 28 / 12%); transition: background 160ms ease, transform 160ms ease; }
.connect-button:hover { background: #4a392d; transform: translateY(-2px); }
.connect-button:active { transform: translateY(0); }
.connect-button:focus-visible { outline: 2px solid #6d523e; outline-offset: 5px; }
@media (max-width: 900px) {
  .hero-title { font-size: clamp(34px, 6.8vw, 60px); }
}
@media (max-width: 600px) {
  .navbar { padding: 18px 6%; }
  .logo { font-size: 25px; }
  .hero { padding: 96px 6% 56px; }
  .photo-wrapper { width: 150px; height: 150px; margin-bottom: 30px; }
  .hero-title { font-size: clamp(31px, 8.2vw, 46px); line-height: 1.3; letter-spacing: -0.03em; margin-bottom: 28px; }
  .gold-threads { background-size: auto 100%; opacity: 0.1; }
}
@media (max-height: 600px) and (min-width: 601px) {
  .hero { padding-block: 80px 40px; }
  .photo-wrapper { width: 130px; height: 130px; margin-bottom: 20px; }
  .hero-title { font-size: 42px; line-height: 1.3; }
}
@media (prefers-reduced-motion: reduce) {
  .connect-button { transition: none; }
  .connect-button:hover { transform: none; }
}
