/* =========================================================
   RAHUL EISEN — PORTFOLIO
   Neo-Brutalism UI Style
   ========================================================= */

:root {
  --ink: #4C2E86;
  --cream: #FBF3E7;
  --cream-2: #F3EAD9;
  --coral: #C43E4F;
  --coral-soft: #F3D9DC;
  --purple-soft: #DCD0EC;
  --purple: #6B3FA0;
  --dark: #4C2E86;
  --white: #FFFFFF;

  --border-w: 3px;
  --shadow-off: 6px;
  --radius: 14px;

  --shadow-hard: var(--shadow-off) var(--shadow-off) 0 0 var(--ink);
  --shadow-hard-sm: 4px 4px 0 0 var(--ink);
  --shadow-hard-lg: 10px 10px 0 0 var(--ink);

  --font-display: 'Arial Black', 'Segoe UI Black', 'Helvetica Neue', system-ui, sans-serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* subtle grain overlay for texture */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* custom cursor dot (desktop only, purely decorative) */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--coral-soft);
  border: 2px solid var(--ink);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .12s ease, opacity .2s ease, background .2s ease;
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-dot { opacity: 1; }
}

/* =========================================================
   TYPOGRAPHY HELPERS
   ========================================================= */

.section-kicker {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  background: var(--ink);
  color: var(--cream);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 18px;
}
.section-kicker--light { background: var(--coral); color: var(--ink); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 42px;
  max-width: 900px;
}
.section-title--light { color: var(--cream); }

.section-note {
  margin-top: -24px;
  margin-bottom: 32px;
  font-size: 0.9rem;
  opacity: 0.65;
}
.section-note code {
  background: var(--ink);
  color: var(--cream);
  padding: 2px 6px;
  border-radius: 4px;
}

.highlight {
  background: var(--coral);
  padding: 0 10px;
  border: var(--border-w) solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow-hard-sm);
  display: inline-block;
  transform: rotate(-2deg);
  color: var(--white);
}

.highlight-box {
  background: var(--coral-soft);
  padding: 2px 14px;
  border: var(--border-w) solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow-hard-sm);
  display: inline-block;
}
.highlight-box--dark { background: var(--coral); color: var(--white); }

.underline-pop {
  position: relative;
  white-space: nowrap;
}
.underline-pop::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 10px;
  background: var(--purple-soft);
  z-index: -1;
  transform: skewX(-8deg);
}

.arrow { display: inline-block; transition: transform .2s ease; }

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border: var(--border-w) solid var(--ink);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: var(--shadow-hard);
  transition: transform .15s ease, box-shadow .15s ease;
  background: var(--white);
  color: var(--ink);
}
.btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 0 var(--ink);
}
.btn:hover .arrow { transform: translate(3px, -2px); }
.btn:active {
  transform: translate(6px, 6px);
  box-shadow: 0 0 0 0 var(--ink);
}

.btn--primary { background: var(--coral); color: var(--white); }
.btn--ghost { background: var(--cream); }
.btn--block { width: 100%; justify-content: center; }

/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--cream);
  border-bottom: var(--border-w) solid var(--ink);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo__box {
  font-family: var(--font-display);
  font-size: 1.3rem;
  background: var(--ink);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 8px;
  border: var(--border-w) solid var(--ink);
}
.logo__box--sm { font-size: 1rem; padding: 6px 10px; }
.dot { color: var(--coral); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 600;
  position: relative;
  padding: 4px 2px;
}
.nav-link:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0%;
  height: 3px;
  background: var(--coral);
  transition: width .2s ease;
}
.nav-link:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--coral);
  color: var(--white);
  border: var(--border-w) solid var(--ink);
  border-radius: 8px;
  padding: 8px 16px;
  box-shadow: var(--shadow-hard-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.nav-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 0 var(--ink);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: var(--ink);
  border: var(--border-w) solid var(--ink);
  border-radius: 8px;
  cursor: pointer;
}
.burger span {
  width: 22px;
  height: 3px;
  background: var(--cream);
  margin: 0 auto;
  transition: transform .25s ease, opacity .25s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

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

.hero {
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  background: var(--white);
  border: var(--border-w) solid var(--ink);
  border-radius: 999px;
  padding: 6px 16px;
  box-shadow: var(--shadow-hard-sm);
  margin: 0 0 22px;
  font-size: 0.85rem;
}

.badge-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--coral);
  border: 1.5px solid var(--ink);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.12;
  margin: 0 0 20px;
}

.hero__sub {
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 0 28px;
  opacity: 0.8;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-chip {
  border: var(--border-w) solid var(--ink);
  border-radius: 10px;
  padding: 10px 18px;
  box-shadow: var(--shadow-hard-sm);
  display: flex;
  flex-direction: column;
  min-width: 110px;
}
.stat-chip strong { font-family: var(--font-display); font-size: 1.4rem; }
.stat-chip span { font-size: 0.78rem; font-weight: 600; opacity: 0.75; }
.stat-chip--coral { background: var(--coral); color: var(--white); }
.stat-chip--coral-soft { background: var(--coral-soft); }
.stat-chip--purple-soft { background: var(--purple-soft); }

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__photo-frame {
  position: relative;
  border: var(--border-w) solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard-lg);
  background: var(--white);
  padding: 10px;
  max-width: 380px;
  transform: rotate(-2deg);
}

.hero__photo {
  border-radius: 8px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
}

.tag {
  position: absolute;
  background: var(--ink);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: 8px;
  border: var(--border-w) solid var(--ink);
  box-shadow: var(--shadow-hard-sm);
}
.tag--rotate-left { top: -18px; left: -22px; transform: rotate(-8deg); background: var(--coral); color: var(--white); }
.tag--rotate-right { bottom: -16px; right: -18px; transform: rotate(6deg); background: var(--coral-soft); color: var(--ink); }

.floaty {
  position: absolute;
  pointer-events: none;
  animation: float 4s ease-in-out infinite;
}
.floaty--star { width: 60px; top: 4%; right: 4%; animation-delay: .3s; }
.floaty--squiggle { width: 90px; bottom: 8%; left: -4%; animation-delay: 1s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(6deg); }
}

.polaroid {
  position: absolute;
  width: 130px;
  border: var(--border-w) solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow-hard-sm);
  background: var(--white);
  padding: 6px 6px 18px;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.polaroid--1 { bottom: -6%; left: 4%; transform: rotate(9deg); }

.marquee {
  border-top: var(--border-w) solid var(--ink);
  border-bottom: var(--border-w) solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}
.marquee__track {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  animation: marquee 22s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

.about { padding: 100px 0; }

.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.about__photo-wrap { position: relative; }

.about__photo-frame {
  border: var(--border-w) solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard-lg);
  overflow: hidden;
  transform: rotate(2deg);
  background: var(--purple-soft);
}

.about__photo {
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  mix-blend-mode: normal;
}

.sticker-badge {
  position: absolute;
  bottom: -24px;
  right: -20px;
  background: var(--coral);
  color: var(--white);
  border: var(--border-w) solid var(--ink);
  border-radius: 50%;
  width: 120px; height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: var(--shadow-hard-sm);
  transform: rotate(-8deg);
  line-height: 1.3;
}

.about__lead {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.4;
  margin: 0 0 18px;
}

.about__text { opacity: 0.8; margin-bottom: 24px; }

.about__facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.about__facts li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  background: var(--white);
  border: var(--border-w) solid var(--ink);
  border-radius: 10px;
  padding: 10px 16px;
  box-shadow: var(--shadow-hard-sm);
  width: fit-content;
}
.fact-icon { font-size: 1.1rem; }

.toolkit {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.toolkit__group h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip-row span {
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 6px 14px;
  box-shadow: 3px 3px 0 0 var(--ink);
}

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

.experience { padding: 100px 0; background: var(--cream-2); border-top: var(--border-w) solid var(--ink); border-bottom: var(--border-w) solid var(--ink); }

.experience__layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
}

.experience__photo {
  position: relative;
  align-self: start;
  border: var(--border-w) solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard-lg);
  overflow: hidden;
  transform: rotate(-2deg);
  background: var(--coral-soft);
}
.experience__photo img {
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}

.timeline {
  position: relative;
  padding-left: 30px;
  border-left: var(--border-w) dashed var(--ink);
}

.timeline__item {
  position: relative;
  margin-bottom: 34px;
}
.timeline__item:last-child { margin-bottom: 0; }

.timeline__dot {
  position: absolute;
  left: -39px;
  top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--coral);
  border: var(--border-w) solid var(--ink);
}

.timeline__card {
  border: var(--border-w) solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  padding: 24px 26px;
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease;
}
.timeline__card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 0 var(--ink);
}
.timeline__card--coral { background: var(--coral); color: var(--white); }
.timeline__card--coral-soft { background: var(--coral-soft); }
.timeline__card--purple-soft { background: var(--purple-soft); }
.timeline__card--purple { background: var(--purple); color: var(--white); }

.timeline__date {
  display: inline-block;
  font-weight: 700;
  font-size: 0.78rem;
  background: var(--ink);
  color: var(--cream);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.timeline__card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 4px;
}

.timeline__company {
  font-weight: 700;
  margin: 0 0 14px;
  opacity: 0.8;
}

.timeline__card ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.timeline__card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
  opacity: 0.9;
}
.timeline__card li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
}

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

.work { padding: 100px 0; }

.work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.work-card {
  border: var(--border-w) solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.work-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 0 var(--ink);
}

.work-card__thumb {
  border-bottom: var(--border-w) solid var(--ink);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.06) 0 12px, transparent 12px 24px);
}
.work-card--coral .work-card__thumb { background-color: var(--coral); }
.work-card--coral-soft .work-card__thumb { background-color: var(--coral-soft); }
.work-card--purple-soft .work-card__thumb { background-color: var(--purple-soft); }
.work-card--purple .work-card__thumb { background-color: var(--purple); }

.work-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .3s ease;
}
.work-card:hover .work-card__thumb img { transform: scale(1.04); }

.work-card__ph {
  font-family: var(--font-display);
  font-size: 1.4rem;
  background: var(--white);
  border: var(--border-w) solid var(--ink);
  border-radius: 10px;
  padding: 10px 18px;
  box-shadow: var(--shadow-hard-sm);
}

.work-card__body { padding: 22px 24px 6px; flex: 1; }
.work-card__body h3 { font-family: var(--font-display); font-size: 1.15rem; margin: 0 0 8px; }
.work-card__body p { opacity: 0.8; margin: 0 0 16px; font-size: 0.95rem; }

.work-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.work-card__tags span {
  font-size: 0.72rem;
  font-weight: 700;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 3px 10px;
  background: var(--cream);
}

.work-card__link {
  margin: 18px 24px 22px;
  font-weight: 700;
  border-top: var(--border-w) solid var(--ink);
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.work-card__link:hover .arrow { transform: translate(3px, -3px); }

.work__cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonials { padding: 100px 0; background: var(--cream-2); border-top: var(--border-w) solid var(--ink); border-bottom: var(--border-w) solid var(--ink); }

.testi-track-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testi-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 4px 20px;
  flex: 1;
}
.testi-track::-webkit-scrollbar { height: 8px; }
.testi-track::-webkit-scrollbar-thumb { background: var(--ink); border-radius: 4px; }

.testi-card {
  scroll-snap-align: start;
  flex: 0 0 min(380px, 85vw);
  width: min(380px, 85vw);
  border: var(--border-w) solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  padding: 28px;
}
.testi-card--coral { background: var(--coral); color: var(--white); }
.testi-card--coral-soft { background: var(--coral-soft); }
.testi-card--purple-soft { background: var(--purple-soft); }

.testi-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0 0 24px;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: var(--border-w) solid var(--ink);
  background: var(--white);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-person strong { display: block; font-size: 0.95rem; }
.testi-person span { font-size: 0.8rem; opacity: 0.75; }

.testi-nav {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: var(--border-w) solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-hard-sm);
  font-size: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform .15s ease, box-shadow .15s ease;
}
.testi-nav:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 0 var(--ink); }

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

.contact {
  padding: 100px 0 80px;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}

.contact__sub { opacity: 0.75; max-width: 420px; margin-bottom: 30px; }

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  background: var(--cream);
  color: var(--ink);
  border: var(--border-w) solid var(--cream);
  border-radius: 10px;
  padding: 12px 18px;
  width: fit-content;
  box-shadow: 6px 6px 0 0 var(--coral);
  transition: transform .15s ease, box-shadow .15s ease;
}
.contact-link:hover { transform: translate(3px, 3px); box-shadow: 3px 3px 0 0 var(--coral); }
.contact-link em { opacity: 0.55; font-size: 0.75rem; font-style: normal; }
.contact-link__icon { width: 20px; height: 20px; }

.contact__socials { display: flex; gap: 14px; margin-bottom: 40px; }
.social-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  border: var(--border-w) solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 4px 4px 0 0 var(--coral);
  transition: transform .15s ease, box-shadow .15s ease;
}
.social-btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 0 var(--coral); background: var(--coral-soft); }
.social-btn img { width: 22px; height: 22px; }

.contact__photo {
  width: 200px;
  border: var(--border-w) solid var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  transform: rotate(-3deg);
}

.contact__form {
  background: var(--cream);
  color: var(--ink);
  border: var(--border-w) solid var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-hard-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: fit-content;
}

.form-field { display: flex; flex-direction: column; gap: 6px; font-weight: 700; font-size: 0.85rem; }
.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: var(--border-w) solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  box-shadow: var(--shadow-hard-sm);
}

.form-note { font-size: 0.85rem; font-weight: 700; min-height: 1.2em; margin: 0; }
.form-note.success { color: #1a7d3c; }

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

.footer {
  background: var(--ink);
  color: var(--cream);
  border-top: var(--border-w) solid var(--cream);
  padding: 24px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  opacity: 0.85;
}
.back-to-top { font-weight: 700; opacity: 1; }
.back-to-top:hover { text-decoration: underline; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; margin-bottom: 20px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__photo-wrap { max-width: 340px; margin: 0 auto; }
  .toolkit { grid-template-columns: 1fr; }
  .experience__layout { grid-template-columns: 1fr; }
  .experience__photo { max-width: 300px; margin: 0 auto; }
  .work__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__photo { display: none; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: var(--border-w) solid var(--ink);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    gap: 16px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
    z-index: 400;
  }
  .nav-links.is-open { transform: translateY(0); opacity: 1; }
  .nav-cta { justify-content: center; }
  .burger { display: flex; }
  .cursor-dot { display: none; }
}

@media (max-width: 560px) {
  .hero__stats { gap: 10px; }
  .stat-chip { min-width: 90px; padding: 8px 12px; }
  .polaroid { width: 100px; }
  .sticker-badge { width: 96px; height: 96px; font-size: 0.7rem; }
}
