:root {
  --font-fa: "Vazirmatn", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-en: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-bg: #020007;
  --color-panel: #020617;
  --color-panel-soft: #020617ee;
  --color-border-strong: rgba(236,72,153,0.6);
  --color-border-soft: rgba(236,72,153,0.3);
  --color-text-main: #f9fafb;
  --color-text-soft: #e5e7eb;
  --color-text-muted: #9ca3af;
  --color-accent: #ec4899;
  --color-accent-soft: #f9a8d4;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-fa);
  background: radial-gradient(circle at top, #ff4fa3 0, #050106 38%, var(--color-bg) 100%);
  color: var(--color-text-main);
  min-height: 100vh;
}

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

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.font-en {
  font-family: var(--font-en);
  letter-spacing: 0.06em;
}

.page-shell {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding: 5rem 0;
  border-top: 1px solid rgba(236,72,153,0.18);
}

.section:first-of-type {
  border-top: none;
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem auto;
}

.section-kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(251,207,232,0.85);
}

.section-title {
  margin: 0.4rem 0 0.6rem 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.section-subtitle {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(226,232,240,0.9);
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem;
  border: 1px solid rgba(244,114,182,0.6);
  background: rgba(0,0,0,0.6);
  color: rgba(255,241,242,0.95);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  border: none;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  background-image: linear-gradient(to right, #ec4899, #a855f7, #fb7185);
  color: #fff7fb;
  box-shadow: 0 0 26px rgba(236,72,153,0.6);
  transition: filter 0.2s ease, transform 0.1s ease;
}

.btn-primary:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(244,114,182,0.7);
  background: rgba(0,0,0,0.6);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,241,242,0.96);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:hover {
  background-color: rgba(244,114,182,0.12);
}

/* Scrollbar */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #050008;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #f973b8, #ec4899);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #fb7185, #db2777);
}

/* Background orbs */

.background-orbs {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  overflow: hidden;
}

.background-orbs .orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
}

.orb-top {
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 20rem;
  height: 20rem;
  background: rgba(244,114,182,0.28);
}

.orb-bottom-left {
  bottom: -5rem;
  left: 15%;
  width: 20rem;
  height: 20rem;
  background: rgba(162,28,175,0.3);
}

.orb-mid-right {
  top: 33%;
  right: 10%;
  width: 18rem;
  height: 18rem;
  background: rgba(251,113,133,0.25);
}

/* Header & navigation */

.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(244,114,182,0.25);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  background-image: linear-gradient(135deg, #E84F94, #E84F94, #f9a8d4);
  color: #fdf2ff;
  box-shadow: 0 0 20px rgba(236,72,153,0.7);
}

/* Block for main brand image + text (desktop & mobile) */
.logo-image-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.logo-image {
  width: 150px;
  height: 60px;
  object-fit: contain;

}

.myimage {
  width: 100px;
  height: 100px;
  object-fit: contain;      display: block; /* Images are inline by default, change to block */
  margin-left: auto;
  margin-right: auto;  border-radius: 20px;margin-bottom:10px;

}

.logo-image-text {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251,207,232,0.9);
}

.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  padding: 0.4rem 0.5rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  cursor: pointer;
  position: relative;
  z-index: 40;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(2px) rotate(-45deg);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  transform: translateY(-2px) rotate(45deg);
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 0.9rem;
  font-size: 0.8rem;
  color: #e5e7eb;
  z-index: 30;
}

.nav-link {
  position: relative;
  padding: 0 0.25rem 0.2rem 0.25rem;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #f9a8d4;
}

.nav-link-active {
  color: #34DED8;
  font-weight: 600;
}

.nav-underline {
  position: absolute;
  bottom: -0.9rem;
  left: 0;
  height: 3px;
  width: 2.2rem;
  border-radius: 999px;
  background-image: linear-gradient(to left, #ec4899, #a855f7, #f9a8d4);
  transform-origin: center;
  transition: transform 0.3s ease, width 0.3s ease;
  pointer-events: none;
}

/* Hero */

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-background-base {
  position: absolute;
  inset: 0;
  background-color: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-out;
}

.hero-slide-active {
  opacity: 1;
}

.hero-slide-hidden {
  opacity: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.82), rgba(0,0,0,0.45), rgba(0,0,0,0.9));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.hero-kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.38em;
  color: rgba(251,207,232,0.9);
}

.hero-title {
  max-width: 46rem;
  margin: 0;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.35;
}

.hero-name-highlight {
  background-image: linear-gradient(to right, #f9a8d4, #ec4899, #e879f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-role {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255,241,242,0.97);
}

.hero-text {
  max-width: 34rem;
  font-size: 0.9rem;
  color: rgba(241,245,249,0.9);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.hero-tip {
  margin-top: 0.7rem;
  max-width: 18rem;
  font-size: 0.72rem;
  color: rgba(203,213,225,0.92);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.8rem;
  inset-inline: 0;
  display: flex;
  justify-content: center;
}

.hero-scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: rgba(252,231,243,0.92);
}

.hero-scroll-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(244,114,182,0.7);
  background: rgba(15,23,42,0.8);
  font-size: 0.9rem;
}

/* BIO + INTERESTS */

.bio-section .section-header {
  margin-bottom: 2.5rem;
}

.bio-layout {
  display: grid;
  grid-template-columns: minmax(0,1.4fr) minmax(0,1fr);
  gap: 2rem;
  align-items: stretch;
}

.card {
  border-radius: 1.5rem;
  padding: 1.4rem 1.6rem;
  background: rgba(2,6,23,0.95);
  border: 1px solid rgba(236,72,153,0.45);
  box-shadow: 0 0 50px rgba(236,72,153,0.35);
}

.card-soft {
  background: rgba(0,0,0,0.75);
  border-color: rgba(236,72,153,0.35);
  box-shadow: none;
}

.card-title {
  margin: 0 0 0.6rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffe4f5;
}

.card-text {
  font-size: 0.86rem;
  color: rgba(226,232,240,0.92);
  line-height: 1.8;
}

.card-footer {
  margin-top: 0.75rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(236,72,153,0.3);
  font-size: 0.78rem;
  color: rgba(203,213,225,0.96);
}

.keyfacts-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.keyfacts-item {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin-bottom: 0.4rem;
}

.keyfacts-dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: #fb7185;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.keyfacts-text {
  font-size: 0.82rem;
  color: rgba(226,232,240,0.96);
}

.interests-block {
  margin-top: 2.6rem;
}

.interests-title {
  margin: 0 0 0.8rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffe4f5;
  text-align: right;
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 1.2rem;
}

.interest-card {
  border-radius: 1.5rem;
  padding: 1.2rem 1.35rem;
  background: rgba(2,6,23,0.92);
  border: 1px solid rgba(236,72,153,0.35);
}

.interest-title {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: #ffe4f5;
}

.interest-text {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: rgba(226,232,240,0.95);
}

.interest-list {
  margin-top: 0.6rem;
  padding-left: 1rem;
}

.interest-list li {
  font-size: 0.8rem;
  color: rgba(203,213,225,0.96);
  margin-bottom: 0.25rem;
}

/* Skills */

.skills-block {
  margin-top: 2.8rem;
}

.skills-title {
  margin: 0 0 1.1rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffe4f5;
}

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

.skill-group {
  border-radius: 1.5rem;
  padding: 1.2rem 1.3rem;
  background: rgba(2,6,23,0.95);
  border: 1px solid rgba(236,72,153,0.4);
}

.skill-group-title {
  margin: 0 0 0.7rem 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: #ffe4f5;
}

.skill-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.skill-item {
  padding: 0.2rem 0;
}

.skill-item-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.skill-thumb {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(236,72,153,0.55);
  background: rgba(15,23,42,0.98);
}

.skill-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skill-content {
  flex: 1;
}

.skill-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.skill-label {
  font-size: 0.8rem;
  color: rgba(226,232,240,0.96);
}

.skill-bar {
  position: relative;
  width: 100%;
  height: 0.9rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.9);
  overflow: hidden;
}

.skill-bar-fill {
  position: absolute;
  inset: 0;
  width: 0;
  border-radius: inherit;
  background-image: linear-gradient(90deg, #ec4899, #a855f7, #fb7185);
  box-shadow: 0 0 16px rgba(236,72,153,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 1s ease-out;
}

.skill-value {
  font-size: 0.7rem;
  color: #fff7fb;
}

/* Fashion grid */

.fashion-section .section-header {
  margin-bottom: 2rem;
}

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

.fashion-item {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(236,72,153,0.4);
  background: rgba(2,6,23,0.8);
  box-shadow: 0 0 45px rgba(236,72,153,0.35);
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.fashion-item-soft {
  box-shadow: none;
  border-color: rgba(236,72,153,0.3);
}

.fashion-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.5s ease; filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.fashion-gradient {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to top, rgba(255,255,255,0.55), rgba(0,0,0,0.15), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.fashion-caption {
  position: absolute;
  right: 0.85rem;
  bottom: 0.7rem;
  text-align: right;
  font-size: 0.7rem;
  color: #2C0730;
}

.fashion-caption-main {
  margin: 0;
}

.fashion-caption-sub {
  margin: 0.1rem 0 0 0;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
}

.fashion-item:hover .fashion-image {
  transform: scale(1.05); filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}

.fashion-item:hover .fashion-gradient {
  opacity: 1;
}

.fashion-note {
  margin-top: 1.1rem;
  font-size: 0.8rem;
  color: rgba(203,213,225,0.9);
}

/* Timeline */

.timeline-wrapper {
  position: relative;
  max-width: 42rem;
  margin: 2.6rem auto 0 auto;
  padding-right: 2rem;
  text-align: right;
}

.timeline-line {
  position: absolute;
  top: 0.3rem;
  bottom: 0.3rem;
  right: 0.5rem;
  width: 1px;
  background-image: linear-gradient(to bottom, #fb7185, rgba(236,72,153,0.45), rgba(236,72,153,0.1));
}

.timeline-items {
  position: relative;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-dot {
  position: absolute;
  top: 2.8rem;
  right: -1.8rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  border: 1px solid #fee2f2;
  background: #ec4899;
  box-shadow: 0 0 16px rgba(236,72,153,0.8);
}

.timeline-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.timeline-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem;
}

.timeline-period {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(251,207,232,0.9);
}

.timeline-title {
  margin: 0.15rem 0 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffe4f5;
}

.timeline-location {
  font-size: 0.74rem;
  color: rgba(148,163,184,0.9);
}

.timeline-text {
  margin: 0.35rem 0 0 0;
  font-size: 0.82rem;
  color: rgba(226,232,240,0.96);
}

/* Brands */

.brands-panel {
  margin-top: 2.6rem;
  border-radius: 1.7rem;
  padding: 1.5rem 1.6rem 1.6rem 1.6rem;
  background-image: linear-gradient(135deg, rgba(15,23,42,0.98), rgba(15,23,42,0.95), rgba(76,5,25,0.7));
  border: 1px solid rgba(236,72,153,0.35);
}

.brands-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(148,163,184,0.95);
  margin-bottom: 1rem;
}

.brands-panel-tag {
  font-family: var(--font-en);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(251,207,232,0.88);
}

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

.brand-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.1rem;
  padding: 0.75rem;
  background-image: linear-gradient(135deg, rgba(0,0,0,0.82), rgba(15,23,42,0.98));
  border: 1px solid rgba(236,72,153,0.45);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.18s ease;
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at top, rgba(244,114,182,0.23), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.brand-card::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: inherit;
  border: 1px solid rgba(236,72,153,0);
  mix-blend-mode: screen;
  transition: border-color 0.25s ease;
}

.brand-card:hover {
  border-color: rgba(249,168,212,0.95);
  box-shadow: 0 0 36px rgba(236,72,153,0.85);
  transform: translateY(-1px);
}

.brand-card:hover::before {
  opacity: 1;
}


.brand-logo {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 80px;
  object-fit: contain;
  opacity: 0.88;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.brand-card:hover .brand-logo {
  opacity: 1;
  transform: scale(1.04);
}

/* Playlist */

.playlist-section .section-header {
  margin-bottom: 2.3rem;
}

.playlist-card {
  max-width: 48rem;
  margin: 0 auto;
  border-radius: 1.7rem;
  padding: 1.6rem 1.5rem 1.4rem 1.5rem;
  background-image: linear-gradient(135deg, rgba(15,23,42,0.97), rgba(15,23,42,0.96), rgba(80,7,36,0.6));
  border: 1px solid rgba(236,72,153,0.4);
  box-shadow: 0 0 50px rgba(236,72,153,0.4);
}

.playlist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.playlist-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: rgba(251,207,232,0.85);
}

.playlist-title {
  margin: 0.25rem 0 0 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.playlist-list {
  list-style: none;
  margin: 1.1rem 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.playlist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: 1.1rem;
  padding: 0.45rem 0.7rem;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(236,72,153,0.4);
}

.playlist-item:nth-child(n+3) {
  border-color: rgba(236,72,153,0.28);
  background: rgba(0,0,0,0.6);
}

.playlist-item-main {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.playlist-cover {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 6px;
  overflow: hidden;

  background: rgba(15,23,42,0.9);
  flex-shrink: 0;
}

.playlist-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.playlist-play-button {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(135deg, #34B4DE, #0D6C89);
  color: #fff7fb;
  font-size: 0.8rem;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(0,0,0,0.8);
}

.playlist-text {
  display: flex;
  flex-direction: column;
}

.playlist-track-title {
  margin: 0;
  font-size: 0.82rem;
  color: #ffe4f5;
}

.playlist-track-artist {
  margin: 0.15rem 0 0 0;
  font-size: 0.72rem;
  color: rgba(203,213,225,0.96);
}

.playlist-note {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: rgba(203,213,225,0.9);
}

/* Graphics */

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

.graphic-item {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(236,72,153,0.4);
  background: rgba(2,6,23,0.92);
  box-shadow: 0 0 45px rgba(236,72,153,0.35);
  cursor: pointer;
  aspect-ratio: 3 / 4;
}

.graphic-item-soft {
  box-shadow: none;
  border-color: rgba(236,72,153,0.3);
}

.graphic-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.5s ease;filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.graphic-gradient {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.35), transparent);
  opacity: 0.4;
  transition: opacity 0.5s ease;
}

.graphic-caption {
  position: absolute;
  right: 1rem;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.graphic-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  background: rgba(0,0,0,0.7);
  font-size: 0.65rem;
  color: rgba(255,241,242,0.96);
}

.graphic-title {
  margin: 0.55rem 0 0 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.graphic-item:hover .graphic-image {
  transform: scale(0.9);filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}

.graphic-item:hover .graphic-gradient {
  opacity: 0.8;
}

.graphics-note {
  margin-top: 1.1rem;
  font-size: 0.8rem;
  color: rgba(203,213,225,0.9);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: 1.5rem;
  margin-top: 2.4rem;
}

.contact-card {
  position: relative;
  border-radius: 1.6rem;
  padding: 1.4rem 1.6rem;
  background-image: linear-gradient(135deg, rgba(15,23,42,0.98), rgba(15,23,42,0.97), rgba(80,7,36,0.65));
  border: 1px solid rgba(236,72,153,0.55);
  box-shadow: 0 0 48px rgba(236,72,153,0.5);
  overflow: hidden;
}

.contact-orb-a,
.contact-orb-b {
  position: absolute;
  border-radius: 999px;
  filter: blur(42px);
}

.contact-orb-a {
  top: -2.5rem;
  left: -2.5rem;
  width: 7rem;
  height: 7rem;
  background: rgba(236,72,153,0.3);
}

.contact-orb-b {
  bottom: -3rem;
  right: -3rem;
  width: 7rem;
  height: 7rem;
  background: rgba(168,85,247,0.32);
}

.contact-card-inner {
  position: relative;
}

.contact-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.contact-title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(244,114,182,0.65);
  background: rgba(0,0,0,0.65);
  font-family: var(--font-en);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,241,242,0.96);
}

.contact-links {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: 1.2rem;
  padding: 0.55rem 0.75rem;
  background: rgba(0,0,0,0.72);
  border: 1px solid rgba(236,72,153,0.55);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact-link:hover {
  border-color: rgba(249,168,212,0.98);
  background-color: rgba(244,114,182,0.12);
}

.contact-link-main {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff7fb;
  background-image: linear-gradient(135deg, #ec4899, #a855f7);
  box-shadow: 0 0 18px rgba(236,72,153,0.85);
}

.contact-icon-ig {
  background-image: linear-gradient(135deg, #a855f7, #f472b6);
}

.contact-label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(251,207,232,0.9);
}

.contact-value {
  margin: 0.15rem 0 0 0;
  font-size: 0.8rem;
}

.contact-link-note {
  display: none;
  font-size: 0.68rem;
  color: rgba(251,207,232,0.9);
}

.timezone-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: 1.2rem;
  padding: 0.55rem 0.75rem;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(236,72,153,0.3);
}

.timezone-main {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.timezone-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(236,72,153,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 0.8rem;
  color: rgba(251,207,232,0.96);
  background: rgba(0,0,0,0.7);
}

.timezone-label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(251,207,232,0.9);
}

.timezone-value {
  margin: 0.15rem 0 0 0;
  font-size: 0.78rem;
}

.timezone-note {
  display: none;
  font-size: 0.68rem;
  color: rgba(148,163,184,0.9);
}

.contact-footer {
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(236,72,153,0.35);
  font-size: 0.75rem;
  color: rgba(226,232,240,0.92);
}

/* Contact form */

.contact-form-card {
  border-radius: 1.6rem;
  padding: 1.4rem 1.5rem;
  background: rgba(2,6,23,0.95);
  border: 1px solid rgba(236,72,153,0.4);
}

.contact-form-kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: rgba(251,207,232,0.88);
}

.contact-form-title {
  margin: 0.4rem 0 0 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-field {
  margin-top: 0.7rem;
}

.form-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  color: rgba(226,232,240,0.9);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(236,72,153,0.4);
  background: rgba(0,0,0,0.7);
  color: rgba(248,250,252,0.98);
  font-size: 0.8rem;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(148,163,184,0.9);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(249,168,212,0.98);
  box-shadow: 0 0 0 1px rgba(236,72,153,0.7);
}

.form-textarea {
  resize: vertical;
  min-height: 4.5rem;
}

.form-submit {
  margin-top: 0.9rem;
  width: 100%;
  border-radius: 999px;
  border: none;
  padding: 0.6rem 1.4rem;
  background-image: linear-gradient(to right, #ec4899, #a855f7, #fb7185);
  color: #fff7fb;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 26px rgba(236,72,153,0.55);
}

.form-submit:hover {
  filter: brightness(1.12);
}

.form-note {
  margin-top: 0.6rem;
  font-size: 0.72rem;
  color: rgba(148,163,184,0.95);
}

/* Lightbox */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0,0,0,0.86);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox-overlay.is-open {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(244,114,182,0.75);
  background: rgba(0,0,0,0.78);
  color: #ffe4f5;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(236,72,153,0.7);
}

.lightbox-inner {
  max-width: 52rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.lightbox-image-wrapper {
  width: 100%;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(236,72,153,0.6);
  background: rgba(0,0,0,0.85);
}

.lightbox-image {
  max-height: 70vh;
  width: 100%;
  object-fit: contain;
}

.lightbox-caption {
  max-width: 34rem;
  font-size: 0.8rem;
  color: rgba(226,232,240,0.96);
  text-align: center;
}

/* Footer */

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(244,114,182,0.28);
  background: rgba(0,0,0,0.86);
  padding: 0.8rem 0;
  font-size: 0.72rem;
  color: rgba(203,213,225,0.9);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.footer-note {
  font-family: var(--font-en);
  font-size: 0.68rem;
  color: rgba(148,163,184,0.96);
}

/* Responsive */

@media (max-width: 900px) {
  .bio-layout {
    grid-template-columns: minmax(0,1fr);
  }

  .interests-grid,
  .contact-grid,
  .brands-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .skills-grid {
    grid-template-columns: minmax(0,1fr);
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding-inline: 1.1rem;
  }

  .header-inner {
    padding-inline: 0.9rem;
    gap: 0.5rem;
  }

  /* Hide NH circle on mobile, center brand image */
  .logo {
    display: none;
  }

  .logo-image-block {
    margin-inline: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .navbar {
    position: absolute;
    inset-inline: 0.75rem;
    top: 3.4rem;
    padding: 0.6rem 0.9rem;
    border-radius: 1rem;
    background: rgba(3,7,18,0.96);
    border: 1px solid rgba(236,72,153,0.5);
    box-shadow: 0 18px 40px rgba(15,23,42,0.9);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    font-size: 0.78rem;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }

  .navbar.is-open {
    max-height: 16rem;
    opacity: 1;
    pointer-events: auto;
  }

  .hero-title {
    font-size: 1.7rem;
    line-height: 1.4;
  }

  .hero-text {
    font-size: 0.84rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .bio-layout,
  .interests-grid,
  .contact-grid {
    grid-template-columns: minmax(0,1fr);
  }

  .brands-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }

  /* mobile: fashion 3 columns, graphics 2 columns */
  .fashion-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }

  .graphics-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .brands-panel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .contact-link-note,
  .timezone-note {
    display: inline;
  }

  .contact-link-note::before,
  .timezone-note::before {
    content: "";
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.25rem;
  }
}

@media (max-width: 480px) {
  .logo-name {
    font-size: 0.9rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-chips {
    gap: 0.4rem;
  }

  .contact-grid {
    gap: 1rem;
  }
}
