:root {
  --ink: #f2f4f8;
  --muted-ink: #b4bcc7;
  --paper: #0f1117;
  --paper-strong: #141722;
  --accent: #a88dff;
  --accent-light: #ff7a9c;
  --sunset: #ff6b6b;
  --gold: #f0b5ff;
  --white: #ffffff;
  --radius: 28px;
  --shadow-soft: 0 18px 45px rgba(8, 10, 16, 0.55);
  --shadow-bold: 0 30px 70px rgba(6, 8, 14, 0.7);
}

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

body.site {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(168, 141, 255, 0.25), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(255, 122, 156, 0.22), transparent 40%),
    linear-gradient(135deg, #12131a 0%, #191326 45%, #24141f 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 141, 255, 0.35), rgba(168, 141, 255, 0));
  top: -160px;
  left: -100px;
  z-index: 0;
  pointer-events: none;
}

.orb-two {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 122, 156, 0.3), rgba(255, 122, 156, 0));
  top: auto;
  bottom: -240px;
  right: -140px;
  left: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 1.4rem clamp(1.5rem, 4vw, 4rem);
  background: rgba(12, 14, 22, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(120, 130, 160, 0.18);
}

.brand {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 0.4rem 1rem;
  font-weight: 500;
}

.site-nav a {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(168, 141, 255, 0.18);
  color: var(--accent);
}

.header-cta {
  display: flex;
  align-items: center;
}

.pill {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(180, 188, 199, 0.35);
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pill:hover,
.pill:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.site-main {
  position: relative;
  z-index: 2;
  padding: 2.5rem clamp(1.5rem, 5vw, 5rem) 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 4rem;
}

.hero-profile {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}

.profile-ring {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  padding: 10px;
  background: conic-gradient(from 120deg, var(--accent), var(--gold), var(--sunset), var(--accent));
  box-shadow: var(--shadow-bold);
}

.profile-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(18, 20, 30, 0.9);
  border: 2px solid rgba(180, 188, 199, 0.25);
  display: block;
  padding: 0;
  line-height: 0;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% 82%;
  display: block;
}

.profile-caption {
  text-align: center;
  display: grid;
  gap: 0.2rem;
}

.profile-caption span {
  font-weight: 600;
}

.profile-caption small {
  color: var(--muted-ink);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Times New Roman", serif;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 1.2rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 0.6rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted-ink);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.primary-btn,
.ghost-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-btn {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.ghost-btn {
  border: 1px solid rgba(168, 141, 255, 0.4);
  color: var(--accent);
}

.primary-btn:hover,
.primary-btn:focus-visible,
.ghost-btn:hover,
.ghost-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-bold);
}

.quick-links {
  margin-top: 1rem;
}

.section-title {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.info-card,
.content-card {
  background: rgba(18, 20, 30, 0.85);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid rgba(120, 130, 160, 0.2);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover,
.info-card:focus-visible,
.content-card:hover,
.content-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-bold);
}

.info-card p,
.content-card p {
  color: var(--muted-ink);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.8rem;
  margin-top: auto;
}

.card-actions {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.card-actions a {
  color: var(--accent);
  font-weight: 600;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(168, 141, 255, 0.25), rgba(255, 122, 156, 0.25));
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
}

.cs-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.cs-badges img {
  height: 56px;
  width: auto;
  border-radius: 12px;
  border: 1px solid rgba(120, 130, 160, 0.2);
  background: rgba(18, 20, 30, 0.6);
  padding: 0.4rem;
}

.badge-link {
  display: inline-flex;
}

.badge-link:hover img,
.badge-link:focus-visible img {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.page-hero {
  background: rgba(18, 20, 30, 0.85);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-soft);
  margin-bottom: 2.5rem;
}

.page-content {
  margin-bottom: 3rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.photo-card {
  background: rgba(18, 20, 30, 0.85);
  border-radius: 22px;
  padding: 1rem;
  border: 1px solid rgba(120, 130, 160, 0.2);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-card:hover,
.photo-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-bold);
}

.photo-frame {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(168, 141, 255, 0.25), rgba(255, 122, 156, 0.3));
  display: grid;
  place-items: center;
  color: var(--muted-ink);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.photo-caption {
  font-size: 0.95rem;
  color: var(--muted-ink);
}

.gallery-note {
  margin: 1.5rem 0 2.5rem;
  padding: 1.4rem 1.8rem;
  border-radius: 22px;
  border: 1px solid rgba(120, 130, 160, 0.2);
  background: rgba(18, 20, 30, 0.75);
  color: var(--muted-ink);
}

.gallery-wall {
  column-count: 3;
  column-gap: 1.8rem;
}

.gallery-item {
  break-inside: avoid;
  margin: 0 0 1.8rem;
  display: grid;
  gap: 0.8rem;
}

.gallery-frame {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(168, 141, 255, 0.2), rgba(255, 122, 156, 0.28));
  border: 1px solid rgba(120, 130, 160, 0.2);
  box-shadow: var(--shadow-soft);
}

.gallery-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item figcaption {
  color: var(--muted-ink);
  font-size: 0.95rem;
}

.gallery-link {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-link:hover,
.gallery-link:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-bold);
}

.lan-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.lan-item {
  border-radius: 18px;
  display: block;
}

.lan-link {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(120, 130, 160, 0.25);
  background: transparent;
  padding: 0;
}

.lan-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
}

.site-footer {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  padding: 2.5rem clamp(1.5rem, 5vw, 5rem);
  background: rgba(12, 14, 22, 0.9);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  border-top: 1px solid rgba(120, 130, 160, 0.18);
}

.footer-title {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--accent);
  font-weight: 600;
}

.footer-right {
  display: grid;
  gap: 0.4rem;
  color: var(--muted-ink);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.7s ease forwards;
  animation-delay: var(--delay, 0s);
}

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

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav {
    order: 3;
    flex: 1 1 100%;
    justify-content: space-evenly;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .gallery-wall {
    column-count: 2;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-items: center;
  }
}

@media (max-width: 640px) {
  .site-nav {
    gap: 0.4rem;
    font-size: 0.95rem;
  }

  .profile-ring {
    width: 210px;
    height: 210px;
  }

  .gallery-wall {
    column-count: 1;
  }
}
