/* ============================================
   MASUM PATEL — PERSONAL PORTFOLIO
   Core Stylesheet
   ============================================ */

:root {
  /* Color System */
  --bg-primary: #E9E7E1;
  --bg-secondary: #F5F3EE;
  --dark: #151619;
  --deep-navy: #101A35;
  --text-primary: #151619;
  --text-light: #F5F3EE;
  --text-muted: #747474;
  --border: rgba(21, 22, 25, 0.16);
  --accent: #C6FF00;

  /* Typography */
  --font-display: 'Manrope', 'Inter Tight', sans-serif;
  --font-editorial: 'Instrument Serif', serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --edge: clamp(24px, 5vw, 64px);
  --max-width: 1600px;

  /* Motion */
  --ease: cubic-bezier(0.76, 0, 0.24, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 860px), (hover: none) {
  body { cursor: auto; }
}

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

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

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

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--edge);
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.arrow, .arrow-down, .arrow-up {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

/* ============================================
   CURSOR
   ============================================ */

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--dark);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor.is-active {
  width: 64px;
  height: 64px;
  background: var(--accent);
}

.cursor-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--dark);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}

.cursor.is-active .cursor-label {
  opacity: 1;
}

@media (max-width: 860px), (hover: none) {
  .cursor { display: none; }
}

/* ============================================
   PRELOADER
   ============================================ */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
}

.preloader-panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preloader-panel--top {
  top: 0;
}

.preloader-panel--bottom {
  bottom: 0;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.preloader-panel--top .preloader-inner {
  transform: translateY(24px);
}

.preloader-panel--bottom .preloader-inner {
  transform: translateY(-24px);
}

.preloader-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--text-light);
  letter-spacing: -0.02em;
}

.preloader-mark sup {
  font-size: 0.4em;
  color: var(--accent);
}

.preloader-meta {
  display: flex;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.preloader-count {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  padding: 20px var(--edge);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

.nav.is-scrolled {
  background: rgba(233, 231, 225, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav.is-hidden {
  transform: translateY(-100%);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.nav-brand sup {
  font-size: 0.5em;
  color: var(--accent);
}

.nav-brand-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav-center {
  display: flex;
  gap: 40px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-center a {
  position: relative;
  padding-bottom: 4px;
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dark);
  transition: width 0.3s var(--ease);
}

.nav-center a:hover::after,
.nav-center a.is-active::after {
  width: 100%;
}

.nav-center a.is-active {
  color: var(--dark);
}

.nav-center a.is-active .arrow {
  color: var(--accent);
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-cta .arrow {
  color: var(--accent);
}

.nav-cta:hover .arrow {
  transform: translate(3px, -3px);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.nav-toggle-icon {
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease);
}

.nav-toggle.is-open .nav-toggle-icon {
  transform: rotate(45deg);
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px var(--edge) 40px;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease);
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-links a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 10vw, 3.5rem);
  color: var(--text-light);
  letter-spacing: -0.03em;
  position: relative;
  padding-left: 48px;
}

.mobile-menu-links a::before {
  content: attr(data-num);
  position: absolute;
  left: 0;
  top: 0.4em;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 700;
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.mobile-menu-name {
  color: var(--text-light);
  font-weight: 700;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg-mark {
  position: absolute;
  top: 50%;
  right: -4vw;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42vw;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(21, 22, 25, 0.08);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--edge);
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-height: calc(100svh - 100px);
}

.hero-top {
  padding-top: 20px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-copy {
  max-width: 620px;
}

.hero-hello {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--dark);
  padding: 6px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
  color: var(--text-primary);
}

.hero-name-serif {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  margin-top: 24px;
}

.hero-intro {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-primary);
  max-width: 480px;
  margin-top: 20px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-top: 40px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--text-primary);
}

.hero-cta:hover .arrow-down {
  transform: translateY(4px);
}

.hero-portrait {
  position: relative;
  width: clamp(280px, 38vw, 680px);
  flex-shrink: 0;
  align-self: flex-end;
}

.hero-portrait-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--deep-navy);
  transform: scale(1.12);
  opacity: 0;
  transition: transform 1.4s var(--ease), opacity 1.4s var(--ease);
}

.hero-portrait-frame.is-visible {
  transform: scale(1);
  opacity: 1;
}

.hero-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background:
    radial-gradient(circle at 30% 20%, rgba(198, 255, 0, 0.08), transparent 55%),
    linear-gradient(160deg, var(--deep-navy), var(--dark));
  color: var(--text-light);
}

.hero-portrait-placeholder span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4rem;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.hero-portrait-placeholder p {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(245, 243, 238, 0.5);
  text-align: center;
  line-height: 1.6;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  padding-bottom: 32px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  gap: 20px;
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

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

.hero-info-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.hero-info-value {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ============================================
   INTRODUCTION
   ============================================ */

.intro {
  padding: 180px 0;
  background: var(--bg-secondary);
}

.intro-statement {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 1100px;
}

.intro-statement em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--deep-navy);
}

.intro-support {
  margin-top: 40px;
  max-width: 480px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================================
   ABOUT
   ============================================ */

.about {
  padding: 160px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.about-portrait-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--deep-navy);
}

.about-portrait-placeholder span {
  font-size: 3rem;
}

.about-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.about-copy p:first-child {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--deep-navy);
}

.about-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 560px;
}

.about-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-field-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.about-field-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

/* ============================================
   SELECTED WORK
   ============================================ */

.work {
  padding: 160px 0;
  background: var(--bg-secondary);
}

.work-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin-bottom: 80px;
}

.work-list {
  display: flex;
  flex-direction: column;
}

.work-item {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  cursor: none;
}

.work-item:last-child {
  border-bottom: 1px solid var(--border);
}

.work-item-top {
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}

.work-item-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--dark);
  padding: 4px 10px;
  border-radius: 100px;
}

.work-item-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  transition: transform 0.4s var(--ease), color 0.3s var(--ease);
}

.work-item-cat {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-left: auto;
}

.work-item:hover .work-item-name {
  transform: translateX(12px);
  color: var(--deep-navy);
}

.work-item-body {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-top: 24px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), margin 0.5s var(--ease);
}

.work-item.is-open .work-item-body {
  max-height: 200px;
  opacity: 1;
}

.work-item-desc {
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
}

.work-item-meta {
  display: flex;
  align-items: center;
  gap: 32px;
}

.meta-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.meta-value {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
}

.work-item-link {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.work-item-link .arrow {
  color: var(--accent);
}

.work-item-link:hover .arrow {
  transform: translate(3px, -3px);
}

/* ============================================
   EXPERTISE
   ============================================ */

.expertise {
  padding: 160px 0;
}

.expertise-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 72px;
}

.expertise-list {
  display: flex;
  flex-direction: column;
}

.expertise-row {
  border-top: 1px solid var(--border);
}

.expertise-row:last-child {
  border-bottom: 1px solid var(--border);
}

.expertise-row-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 0;
  text-align: left;
}

.expertise-row-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.expertise-row-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  flex: 1;
}

.expertise-row-icon {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.35s var(--ease), color 0.3s var(--ease);
}

.expertise-row-header[aria-expanded="true"] .expertise-row-icon {
  transform: rotate(45deg);
  color: var(--accent);
  background: var(--dark);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-row:hover .expertise-row-title {
  color: var(--deep-navy);
}

.expertise-row-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s var(--ease), opacity 0.35s var(--ease), padding 0.45s var(--ease);
}

.expertise-row-body p {
  padding-bottom: 32px;
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.expertise-row-header[aria-expanded="true"] + .expertise-row-body {
  max-height: 200px;
  opacity: 1;
}

/* ============================================
   APPROACH
   ============================================ */

.approach {
  background: var(--dark);
  color: var(--text-light);
  padding: 160px 0 0;
}

.approach .section-label {
  color: rgba(245, 243, 238, 0.5);
}

.approach-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.approach-stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 100px;
}

.approach-stage {
  padding: 56px var(--edge) 100px;
  border-top: 1px solid rgba(245, 243, 238, 0.14);
  border-left: 1px solid rgba(245, 243, 238, 0.14);
}

.approach-stage:first-child {
  border-left: none;
}

.approach-stage-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 32px;
}

.approach-stage-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.approach-stage-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 243, 238, 0.6);
}

/* ============================================
   EXPERIENCE
   ============================================ */

.experience {
  padding: 160px 0;
}

.experience-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 72px;
}

.timeline {
  display: flex;
  flex-direction: column;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  align-items: baseline;
  gap: 24px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

.timeline-item:last-child {
  border-bottom: 1px solid var(--border);
}

.timeline-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-light);
  background: var(--deep-navy);
  padding: 5px 12px;
  border-radius: 100px;
  width: fit-content;
}

.timeline-role {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.timeline-company {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 6px;
}

.timeline-dates {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 8px;
}

.timeline-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-primary);
  grid-column: 3;
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
  background: var(--accent);
  color: var(--dark);
  padding: 160px 0;
}

.contact-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.contact-support {
  max-width: 480px;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 32px;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-top: 48px;
  padding: 16px 28px;
  background: var(--dark);
  color: var(--text-light);
  border-radius: 100px;
  transition: transform 0.3s var(--ease);
}

.contact-cta .arrow {
  color: var(--accent);
}

.contact-cta:hover {
  transform: translateY(-3px);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 100px;
  padding-top: 40px;
  border-top: 1px solid rgba(21, 22, 25, 0.24);
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.contact-field-value {
  position: relative;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  width: fit-content;
  border-bottom: 1px solid rgba(21, 22, 25, 0.3);
  padding-bottom: 4px;
}

.contact-email {
  cursor: none;
}

.copy-feedback {
  position: absolute;
  left: 0;
  top: -32px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  background: var(--dark);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  pointer-events: none;
}

.copy-feedback.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--dark);
  color: var(--text-light);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(245, 243, 238, 0.14);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.footer-mark sup {
  font-size: 0.5em;
  color: var(--accent);
}

.footer-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(245, 243, 238, 0.75);
  margin-top: 8px;
}

.footer-title {
  font-size: 0.85rem;
  color: rgba(245, 243, 238, 0.5);
}

.footer-links, .footer-social {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-links a, .footer-social a {
  color: rgba(245, 243, 238, 0.75);
  transition: color 0.25s var(--ease);
}

.footer-links a:hover, .footer-social a:hover {
  color: var(--accent);
}

.footer-social .arrow {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(245, 243, 238, 0.5);
}

.back-to-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 243, 238, 0.5);
  transition: color 0.25s var(--ease);
}

.back-to-top:hover {
  color: var(--accent);
}

.back-to-top .arrow-up {
  color: var(--accent);
}
