/* ============================================================
   NOUR ALMAHMOUD — PORTFOLIO STYLESHEET v2
   Palet: Salie · Perzik · Crème · Bloos · Roze
   D8E2DC | FFE5D9 | FBFAF0 | FFE9EE | FFDDE4
   Lettertypen: Playfair Display + Jost
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Jost:wght@300;400;500&display=swap');

:root {
  --sage: #D8E2DC;
  --sage-dark: #b0c4ba;
  --sage-deep: #6b9e90;
  --peach: #FFE5D9;
  --peach-dark: #e8b99a;
  --peach-deep: #c8845a;
  --cream: #FBFAF0;
  --blush: #FFE9EE;
  --blush-dark: #e8a8b8;
  --rose: #FFDDE4;
  --rose-dark: #cc7a90;
  --ink: #2c2828;
  --ink-mid: #4a4545;
  --ink-light: #8a8080;
  --border: rgba(180, 150, 140, 0.22);
  --shadow: rgba(44, 40, 40, 0.08);
  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

img,
video,
iframe {
  display: block;
  width: 100%
}

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

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.1
}

em {
  font-style: italic;
  color: var(--peach-deep)
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1.4rem;
  color: var(--ink)
}

.section-sub {
  font-size: 1rem;
  color: var(--ink-light);
  max-width: 540px;
  margin-bottom: 3rem
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem
}

.section {
  padding: 7rem 0
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s ease, transform .75s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* Cursor Blob */
#cursor-blob {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 229, 217, .32) 0%, rgba(255, 221, 228, .14) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left .1s linear, top .1s linear;
  mix-blend-mode: multiply;
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(251, 250, 240, .92);
  backdrop-filter: blur(16px);
  padding: 1rem 3rem;
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--peach-deep);
  letter-spacing: .04em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none
}

.nav-link {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: color .3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--peach-deep);
  transition: width .35s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--peach-deep)
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: var(--transition)
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

/* Animated blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: blobFloat 9s ease-in-out infinite;
  pointer-events: none
}

.hero-blob-1 {
  width: 520px;
  height: 520px;
  background: var(--peach);
  top: -120px;
  right: -100px;
  animation-delay: 0s
}

.hero-blob-2 {
  width: 380px;
  height: 380px;
  background: var(--rose);
  bottom: -80px;
  right: 180px;
  animation-delay: 3s
}

.hero-blob-3 {
  width: 300px;
  height: 300px;
  background: var(--sage);
  top: 35%;
  left: -80px;
  animation-delay: 6s
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(22px, -28px) scale(1.06)
  }

  66% {
    transform: translate(-14px, 22px) scale(.96)
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem;
  max-width: 800px;
  margin-left: max(3rem, 7vw);
}

.hero-tagline {
  font-size: .7rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}

.hero-tagline::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--sage-deep)
}

.hero-title {
  font-size: clamp(3.6rem, 9vw, 7.5rem);
  font-weight: 400;
  line-height: 1.0;
  margin-bottom: 1.8rem;
  color: var(--ink)
}

.accent-word {
  display: inline-block;
  position: relative
}

.accent-word::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 16px;
  background: var(--rose);
  z-index: -1;
  transform: skewX(-2deg);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-mid);
  max-width: 440px;
  margin-bottom: 2.8rem
}

.hero-content .reveal:nth-child(1) {
  transition-delay: .05s
}

.hero-content .reveal:nth-child(2) {
  transition-delay: .2s
}

.hero-content .reveal:nth-child(3) {
  transition-delay: .35s
}

.hero-content .reveal:nth-child(4) {
  transition-delay: .5s
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  font-size: .64rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-light);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 70px;
  background: linear-gradient(to bottom, var(--peach-deep), transparent);
  animation: scrollDrop 2.4s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1
  }

  100% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 0
  }
}

/* Floating photo strip */
.hero-photo-strip {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  z-index: 1;
  opacity: .8;
}

.hero-photo-strip img {
  flex: 1;
  object-fit: cover;
  filter: saturate(.88)
}

/* ─── BUTTON ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 2.4rem;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: box-shadow .3s, transform .25s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--peach-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.btn-primary:hover::before {
  transform: scaleX(1)
}

.btn-primary span {
  position: relative;
  z-index: 1
}

.btn-primary:hover {
  box-shadow: 0 10px 32px rgba(200, 132, 90, .3);
  transform: translateY(-2px)
}

.btn-primary.full {
  width: 100%;
  justify-content: center;
  border-radius: 10px
}

/* ─── ONEDRIVE BUTTON ─── */
.onedrive-button {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  margin: 2rem 0
}

.onedrive-button a {
  display: inline-block
}

.btn {

  padding: .85rem 2rem;
  background: var(--peach);
  color: var(--peach-deep);
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(200, 132, 90, .2);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--peach-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
  z-index: -1;
}

.btn:hover::before {
  transform: scaleX(1)
}

.btn:hover {
  color: var(--cream);
  box-shadow: 0 8px 28px rgba(200, 132, 90, .35);
  transform: translateY(-3px)
}

.btn:active {
  transform: translateY(-1px)
}

/* ─── OVER MIJ ─── */
.about {
  background: var(--sage);
  position: relative;
  overflow: hidden
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 233, 238, .5);
  filter: blur(80px);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 7rem;
  align-items: center;
  position: relative;
  z-index: 1
}

.about-photo-wrap {
  position: relative
}

.about-photo-placeholder {
  aspect-ratio: 3/4;
  background: var(--blush);
  border-radius: 160px 160px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-light);
  font-size: .88rem;
  letter-spacing: .04em;
  line-height: 1.6;
}

.about-photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 160px 160px 20px 20px
}

.about-deco-circle-1 {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--peach);
  z-index: -1;
}

.about-deco-circle-2 {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--rose);
  z-index: -1;
}

.about-body {
  color: var(--ink-mid);
  margin-bottom: 1.2rem;
  font-size: 1rem
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2rem
}

.tag {
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform .2s, box-shadow .2s;
  cursor: default;
}

.tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .1)
}

.tag:nth-child(3n+1) {
  background: var(--peach);
  color: var(--peach-deep)
}

.tag:nth-child(3n+2) {
  background: var(--rose);
  color: var(--rose-dark)
}

.tag:nth-child(3n+3) {
  background: var(--blush);
  color: var(--blush-dark)
}

/* ─── STATS BAND ─── */
.stats-band {
  background: var(--peach);
  padding: 4rem 0
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--peach-deep);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-top: .4rem
}

/* ─── PORTFOLIO ─── */
.portfolio {
  background: var(--cream)
}

.filter-bar {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem
}

.filter-btn {
  padding: .5rem 1.4rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--ink-mid);
  font-family: 'Jost', sans-serif;
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
}

.filter-btn:hover {
  border-color: var(--peach-deep);
  color: var(--peach-deep)
}

.filter-btn.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink)
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1.2rem
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px;
  background: var(--blush);
  transition: transform .4s ease, box-shadow .4s ease;
}

.portfolio-item.large {
  grid-column: span 2
}

.portfolio-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px var(--shadow)
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease
}

.portfolio-item:hover img {
  transform: scale(1.07)
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(to top, rgba(44, 40, 40, .75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity .4s;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1
}

.portfolio-cat {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: .25rem
}

.portfolio-overlay h3 {
  font-size: 1.25rem;
  color: #fff
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: var(--blush);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  color: var(--ink-light);
  font-size: .82rem;
}

.play-icon {
  width: 56px;
  height: 56px;
  background: var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--peach-deep);
  transition: transform .3s;
}

.portfolio-item:hover .play-icon {
  transform: scale(1.18)
}

.video-item video,
.video-item iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.portfolio-item.hidden {
  display: none
}

/* ─── ERVARING ─── */
.experience {
  background: var(--blush);
  position: relative;
  overflow: hidden
}

.experience::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(216, 226, 220, .5);
  filter: blur(80px);
  pointer-events: none;
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1
}

.timeline {
  position: relative
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 7px;
  bottom: 0;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--sage-deep), transparent);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.8rem;
  position: relative
}

.timeline-dot {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--sage);
  border: 2px solid var(--sage-deep);
  margin-top: .2rem;
  position: relative;
  z-index: 1;
  transition: background .3s, transform .3s;
}

.timeline-item:hover .timeline-dot {
  background: var(--sage-deep);
  transform: scale(1.35)
}

.timeline-year {
  font-size: .64rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: block;
  margin-bottom: .35rem;
  font-weight: 500
}

.timeline-content {
  background: rgba(251, 250, 240, .75);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}

.timeline-item:hover .timeline-content {
  transform: translateX(5px);
  box-shadow: 0 8px 24px var(--shadow)
}

.timeline-content h3 {
  font-size: 1.15rem;
  margin-bottom: .4rem;
  color: var(--ink)
}

.timeline-content p {
  color: var(--ink-mid);
  font-size: .9rem
}

.skills-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--ink)
}

.skill-bar {
  margin-bottom: 1.6rem
}

.skill-info {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--ink-mid);
  margin-bottom: .5rem
}

.skill-track {
  height: 6px;
  background: rgba(180, 150, 140, .18);
  border-radius: 100px;
  overflow: hidden
}

.skill-fill {
  height: 100%;
  border-radius: 100px;
  width: 0;
  transition: width 1.4s cubic-bezier(.25, .46, .45, .94)
}

.skill-bar:nth-child(1) .skill-fill {
  background: linear-gradient(to right, var(--sage-dark), var(--sage-deep))
}

.skill-bar:nth-child(2) .skill-fill {
  background: linear-gradient(to right, var(--peach-dark), var(--peach-deep))
}

.skill-bar:nth-child(3) .skill-fill {
  background: linear-gradient(to right, var(--blush-dark), #c06080)
}

.skill-bar:nth-child(4) .skill-fill {
  background: linear-gradient(to right, var(--rose-dark), #b05070)
}

.skill-bar:nth-child(5) .skill-fill {
  background: linear-gradient(to right, var(--sage-dark), var(--sage-deep))
}

.skill-bar:nth-child(6) .skill-fill {
  background: linear-gradient(to right, var(--peach-dark), var(--peach-deep))
}

.certs {
  margin-top: 3rem
}

.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  margin-bottom: .8rem;
  background: rgba(251, 250, 240, .8);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}

.cert-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--shadow)
}

.cert-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  color: var(--peach-deep);
}

.cert-item strong {
  display: block;
  font-weight: 500;
  font-size: .9rem
}

.cert-item p {
  font-size: .78rem;
  color: var(--ink-light);
  margin-top: .15rem
}

.reflection {
  margin-top: 5rem;
  padding: 3rem 3.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--peach) 0%, var(--rose) 100%);
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.reflection::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: rgba(200, 132, 90, .2);
  line-height: 1;
}

.reflection blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 1rem;
}

.reflection cite {
  font-size: .75rem;
  letter-spacing: .18em;
  color: var(--peach-deep);
  text-transform: uppercase;
  font-weight: 500
}

/* ─── CONTACT ─── */
.contact {
  background: var(--sage);
  position: relative;
  overflow: hidden
}

.contact::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 221, 228, .4);
  filter: blur(90px);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
  margin-top: 1rem;
  position: relative;
  z-index: 1
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border)
}

.contact-card:first-child {
  border-top: 1px solid var(--border)
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0
}

.contact-card strong {
  display: block;
  font-weight: 500;
  font-size: .88rem;
  margin-bottom: .2rem
}

.contact-card p {
  color: var(--ink-mid);
  font-size: .85rem
}

.contact-social {
  display: flex;
  gap: .8rem;
  margin-top: 2rem;
  flex-wrap: wrap
}

.social-btn {
  padding: .55rem 1.4rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  color: var(--ink-mid);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .3s;
  background: rgba(251, 250, 240, .6);
}

.social-btn:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink)
}

.contact-form {
  background: rgba(251, 250, 240, .75);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.form-group label {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 500
}

.form-group input,
.form-group textarea {
  background: var(--cream);
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-size: .92rem;
  font-weight: 300;
  padding: .9rem 1.1rem;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  resize: vertical;
  border-radius: 12px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 3px rgba(107, 158, 144, .18)
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-light)
}

.form-note {
  font-size: .82rem;
  min-height: 1.2rem;
  text-align: center;
  color: var(--sage-deep)
}

/* ─── FOOTER ─── */
.footer {
  background: var(--ink);
  padding: 2.5rem 0
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--peach);
  letter-spacing: .06em
}

.footer-copy {
  font-size: .74rem;
  color: var(--ink-light);
  text-align: center;
  flex: 1
}

.footer-nav {
  display: flex;
  gap: 1.5rem
}

.footer-nav a {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7a7070;
  transition: color .3s
}

.footer-nav a:hover {
  color: var(--peach)
}

/* ─── RESPONSIVE ─── */
@media(max-width:1000px) {
  .hero-photo-strip {
    display: none
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .about-photo-wrap {
    max-width: 360px;
    margin: 0 auto
  }

  .exp-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .portfolio-item.large {
    grid-column: span 1
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }
}

@media(max-width:640px) {
  #navbar {
    padding: 1.2rem 1.5rem
  }

  #navbar.scrolled {
    padding: .9rem 1.5rem
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(251, 250, 240, .97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav-links.open {
    display: flex
  }

  .nav-link {
    font-size: 1rem;
    color: var(--ink)
  }

  .nav-toggle {
    display: flex;
    z-index: 1001
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg)
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg)
  }

  .hero-content {
    padding: 0 1.5rem;
    margin-left: 0;
    margin-top: 80px
  }

  .hero-scroll-hint {
    display: none
  }

  .portfolio-grid {
    grid-template-columns: 1fr
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .section {
    padding: 5rem 0
  }

  .footer-inner {
    flex-direction: column;
    text-align: center
  }

  .footer-nav {
    justify-content: center;
    flex-wrap: wrap
  }

  .reflection {
    padding: 2rem
  }

  #cursor-blob {
    display: none
  }
}