:root {
  --black: #0d0d0d;
  --white: #faf9f6;
  --red: #e8191a;
  --yellow: #f5c842;
  --gray: #888;
  --light: #f0ede8;
}
*, *::before, *::after { 
	box-sizing: border-box; 
}
html { 
	scroll-behavior: smooth; 
}
body { 
	font-family: 'DM Sans', system-ui, -apple-system, sans-serif; 
	background: var(--white); 
	color: var(--black); 
	overflow-x: hidden;
	cursor: default; 
	}

/* Cursor */
.cursor { 
	position: fixed; 
	width: 12px; 
	height: 12px; 
	background: var(--red); 
	border-radius: 50%; 
	pointer-events: none;
	 z-index: 9999; 
	 transform: translate(-50%,-50%); 
	 transition: width .2s, height .2s, background .2s;
	 }
.cursor-ring { 
	position: fixed; 
	width: 36px; 
	height: 36px; 
	border: 1.5px solid var(--black); 
	border-radius: 50%;
	 pointer-events: none; 
	 z-index: 9998; 
	 transform: translate(-50%,-50%); 
	 transition: width .3s, height .3s, border-color .2s;
	 }

/* Reveal */
.rv {
	 opacity: 0; 
	 transform: translateY(32px); 
	 transition: opacity .7s ease, transform .7s ease; 
	}
.rv.visible { 
	opacity: 1; 
	transform: none;
 }
.rv-delay-1 { 
	transition-delay: .1s; 
}
.rv-delay-2 { 
	transition-delay: .2s;
 }
.rv-delay-3 {
	 transition-delay: .35s; 
	}
.rv-delay-4 {
	 transition-delay: .5s;
	 }

/* Navigation */
nav { 
	position: fixed; 
	top: 0; 
	left: 0; 
	right: 0; 
	z-index: 100; 
	display: flex; 
	align-items: center; 
	justify-content: space-between; 
	padding: 18px 48px; 
	background: rgba(250,249,246,.9);
	backdrop-filter: blur(12px); 
	border-bottom: 1px solid rgba(0,0,0,.07);
	 }
.nav-logo { 
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-weight: 700; 
	font-size: 1rem; 
	letter-spacing: -.02em; 
	color: var(--black); 
	text-decoration: none;
	display: flex; 
	align-items: center; 
	gap: 6px; z-index: 200; 
	position: relative; 
	}
.nav-logo::before { 
	content: '✓'; 
	color: var(--red); 
	font-family: 'Caveat', 'Comic Sans MS', cursive; 
	font-size: 1.3rem; 
}
nav ul { 
	list-style: none; 
	display: flex; 
	gap: 36px;
	 align-items: center;
	 }
nav ul a {
	 font-size: .82rem;
	  letter-spacing: .06em; 
	  text-transform: uppercase; 
	  text-decoration: none; 
	  color: var(--black); 
	  position: relative; 
	  font-weight: 400; 
	}
nav ul a::after {
	content: ''; 
	position: absolute; 
	bottom: -3px;
	left: 0; 
	right: 0; 
	height: 1.5px;
	background: var(--red); 
	transform: scaleX(0);
	transform-origin: right; 
	transition: transform .3s ease;
	 }
nav ul a:hover::after { 
	transform: scaleX(1); 
	transform-origin: left; 
}
.nav-cta { 
	background: var(--black); 
	color: var(--white); 
	padding: 10px 22px; 
	border-radius: 2px;
	 font-weight: 500; 
	 font-size: .8rem; 
	 transition: background .25s; 
	}
.nav-cta::after {
	 display: none;
	 }
.nav-cta:hover { 
	background: var(--red);
}

/* Hamburger */
.hamburger { 
	display: none; 
	flex-direction: column; 
	justify-content: center; 
	gap: 5px; 
	width: 36px;
	height: 36px;
	background: none; 
	border: none; 
	cursor: pointer; 
	position: relative; 
	z-index: 200; 
    padding: 4px; 
	}
.hamburger span {
	display: block; 
	height: 2px; 
	background: var(--black);
	border-radius: 2px;
	transition: transform .35s cubic-bezier(.23,1,.32,1), opacity .25s, width .3s; 
	transform-origin: center; 
	}
.hamburger span:nth-child(1) { 
	width: 24px;
 }
.hamburger span:nth-child(2) { 
	width: 18px;
 }
.hamburger span:nth-child(3) {
	 width: 24px;
	 }
.hamburger.open span:nth-child(1) { 
	transform: translateY(7px) rotate(45deg); 
	width: 24px; 
}
.hamburger.open span:nth-child(2) { 
	opacity: 0;
	 transform: scaleX(0);
 }
.hamburger.open span:nth-child(3) {
	 transform: translateY(-7px) rotate(-45deg); 
	 width: 24px;
	 }

/* Mobile menu */
.mobile-menu { 
	position: fixed; 
	inset: 0; 
	z-index: 150; 
	background: var(--white);
	display: flex; 
	flex-direction: column; 
	align-items: center; 
	justify-content: center; 
	opacity: 0; 
	pointer-events: none; 
	transform: translateY(-12px); 
	transition: opacity .4s ease, transform .4s cubic-bezier(.23,1,.32,1);
	 }
.mobile-menu.open { 
	opacity: 1;
	 pointer-events: all; 
	 transform: translateY(0); 
	}
.mobile-close { 
	position: absolute; 
	top: 18px; 
	right: 20px; 
	width: 40px; 
	height: 40px;
	border-radius: 50%;
	background: none;
	border: 1.5px solid rgba(0,0,0,.12); 
	display: flex;
	align-items: center; 
	justify-content: center; 
	cursor: pointer; 
	transition: background .2s, border-color .2s, transform .3s cubic-bezier(.34,1.56,.64,1); 
	z-index: 10; 
}
.mobile-close:hover { 
	background: var(--black);
	border-color: var(--black);
	transform: rotate(90deg) scale(1.1); 
	}
.mobile-close svg {
	 stroke: var(--black); 
	 transition: stroke .2s;
	 }
.mobile-close:hover svg { 
	stroke: var(--white);
 }
.mobile-menu-name { 
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: 1rem; 
	font-weight: 700; 
	letter-spacing: -.01em; 
	color: var(--black); 
	margin-bottom: 36px; 
	position: relative; 
	display: inline-block; 
	}
.mobile-menu-name::after { 
	content: ''; 
	position: absolute; 
	bottom: -5px; 
	left: 0; 
	right: 0; 
	height: 2px; 
	background: var(--red); 
	border-radius: 1px; 
}
.mobile-menu-name::before { 
	content: '✓'; 
	color: var(--red); 
	font-family: 'Caveat', 'Comic Sans MS', cursive; 
	font-size: 1.3rem; 
}

.mobile-menu-grid {
	 display: grid; 
	 grid-template-columns: 1fr 1fr; 
	 gap: 8px 32px; 
	 margin-bottom: 32px; 
	 text-align: center; 
	}
.mobile-menu-grid a { 
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	 font-size: 1.5rem; 
	 font-weight: 700; 
	 text-decoration: none; 
	 color: var(--black); 
	 padding: 10px 0;
	  transition: color .2s, transform .2s;
	   display: block; 
	}
.mobile-menu-grid a:hover { 
	color: var(--red); 
	transform: scale(1.04);
 }
.mobile-menu-cta { 
	display: inline-block; 
	font-size: .85rem;
	 letter-spacing: .1em; 
	 text-transform: uppercase; 
	 background: var(--black); 
	 color: var(--white); 
	 padding: 14px 40px; 
	 border-radius: 2px; 
	 font-weight: 600; 
	 text-decoration: none; 
	 margin-bottom: 28px; 
	 transition: background .25s; 
	}
.mobile-menu-cta:hover { 
	background: var(--red); 
}
.mobile-divider { 
	width: 40px; 
	height: 2px; 
	background: var(--yellow); 
	border-radius: 2px; 
	margin-bottom: 28px;
 }
.mobile-menu-socials { 
	display: flex;
	 gap: 16px;
	  align-items: center; 
	  justify-content: center;
	 }
.mobile-menu-socials a {
	 width: 42px; 
	 height: 42px; 
	 border-radius: 50%; 
	 border: 1.5px solid rgba(0,0,0,.15); 
	 display: flex; align-items: center;
	  justify-content: center;
	   color: var(--black); 
	   text-decoration: none; 
	   transition: background .2s, border-color .2s, color .2s, transform .25s; 
	}
.mobile-menu-socials a:hover { 
	background: var(--yellow); 
	color: var(--white);
	border-color: var(--black); 
	transform: translateY(-3px); 
	}

/* Section label – used everywhere */
.section-label { 
	font-size: .72rem; 
	letter-spacing: .18em; 
	text-transform: uppercase;
	color: var(--red); 
	font-weight: 500; 
	margin-bottom: 12px; 
	display: block;
 }

/* Hero */
#hero { 
	min-height: 100vh; 
	padding: 130px 48px 100px; 
	max-width: 1200px; 
	margin: 0 auto; display: grid; 
	grid-template-columns: 1fr 1fr; 
	align-items: center; gap: 60px; 
	position: relative; 
}
.hero-eyebrow { 
	font-size: .78rem; 
	letter-spacing: .15em; 
	text-transform: uppercase; 
	color: var(--gray); 
	margin-bottom: 16px; 
	font-weight: 400; 
}
.hero-name { 
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: clamp(3.5rem, 4vw, 4rem); 
	font-weight: 900; line-height: .95;
	letter-spacing: -.03em; 
	margin-bottom: 10px;
	display: block; 
	white-space: nowrap;
	}
.hero-name .letter { 
	display: inline-block; 
	transition: transform .2s cubic-bezier(.34,1.56,.64,1), color .2s ease; 
	cursor: default; 
}
.hero-name .letter:hover { 
	transform: scale(1.35) translateY(-4px); 
	color: var(--red); 
}
.hero-title { 
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	 font-style: italic; 
	 font-size: 1.4rem; 
	 color: var(--red); 
	 margin-bottom: 28px; 
	 display: flex; 
	 align-items: center; 
	 gap: 10px; 
	}
.hero-body {
	font-size: .95rem; 
	line-height: 1.75; 
	color: #444; 
	max-width: 400px;
	border-left: 2px solid var(--yellow);
	padding-left: 16px; 
	}
.hero-cta-row { 
	margin-top: 40px;
	display: flex; 
	gap: 16px;
	align-items: center;
	 }
.btn-primary {
	background: var(--black); 
	color: var(--white); 
	padding: 14px 32px; 
	font-size: .85rem;
	 letter-spacing: .06em; 
	 text-transform: uppercase; 
	 text-decoration: none; 
	 font-weight: 500; border-radius: 2px; 
	 transition: background .25s, transform .2s; 
	 display: inline-block;
	 }
.btn-primary:hover { 
	background: var(--red); 
	transform: translateY(-2px); 
}
.btn-ghost { 
	color: var(--black);
	font-size: .85rem;
	letter-spacing: .04em; 
	text-decoration: none;
	border-bottom: 1.5px solid var(--black); 
	padding-bottom: 2px; 
	transition: color .2s, border-color .2s;
	 }
.btn-ghost:hover { 
	color: var(--red); 
	border-color: var(--red); 
}
.hero-socials { 
	margin-top: 28px; 
	display: flex; 
	gap: 14px; 
	align-items: center; 
}
.hero-social-link { 
	width: 38px; 
	height: 38px; 
	border-radius: 50%; 
	border: 1.5px solid rgba(0,0,0,.15); 
	display: flex;
	 align-items: center; 
	 justify-content: center; 
	 color: var(--black); 
	 text-decoration: none; 
	 transition: background .25s, border-color .25s, color .25s, transform .25s; 
	}
	.ss-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.tools { 
	display:flex;
	flex-wrap:wrap;
	gap:10px; 
	margin-top:14px; 
	}
    .tag { 
		padding:7px 17px;
		border:1px solid var(--black); 
		font-size:.7rem;
		letter-spacing:.12em; 
		text-transform:uppercase; 
		color:var(--gray); 
		border-radius:6px;
		transition:all .3s; 
		 font-family: 'Caveat', 'Comic Sans MS', cursive; 
	}
    .tag:hover { 
		background-color:var(--yellow); 
	 }
.hero-social-link:hover { 
	background: var(--yellow); 
	color: var(--black); 
	border-color: var(--black); 
	transform: translateY(-3px) scale(1.08);
 }

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}
.hero-right { 
	position: relative; 
	display: flex; 
	justify-content: center; 
}
.hero-photo-wrap { 
	position: relative; 
	width: 300px; 
	height: 420px; 	
}

/*Floating badge*/
.hero-badge {
  position: absolute;
  bottom: 28px;
  right: -32px;
  z-index: 4;
  background: rgba(250,249,246,.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 100px;
  padding: 8px 16px 8px 12px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  animation: badge-float 4s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-float {
  0%,100% { transform: translateY(0px) rotate(-1deg); }
  50%      { transform: translateY(-8px) rotate(1deg); }
}
@keyframes badge-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  70%  { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Photo*/
.hero-photo-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 30%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
  overflow: hidden;
  
}

.hero-photo-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.star { 
	position: absolute; 
	pointer-events: none; 
	animation: star-spin 8s linear infinite;
 }
@keyframes star-spin { to { transform: rotate(360deg); } }
.star-1 { 
	top: -20px; 
	right: 20px; 
	animation-duration: 10s; 
}
.star-2 { 
	bottom: 40px;
	 left: -30px; 
	 animation-duration: 14s;
	  animation-direction: reverse;
	 }
.star-3 { 
	top: 50%; 
	right: -40px; 
	animation-duration: 7s;
 }
@keyframes arrow-wobble { 
	0%,100% { transform: rotate(0deg) scale(1);
	 } 50% { 
		transform: rotate(3deg) scale(1.03);
	 } }
.drawn-arrow { 
	pointer-events: none; 
	animation: arrow-wobble 3s ease-in-out infinite; 
	z-index: 1;
}

/* About */
#about { 
	display: grid; 
	grid-template-columns: 1fr 1fr; 
	gap: 80px; 
	align-items: center; 
	border-top: 1px solid rgba(0,0,0,.08);
	padding: 100px 48px; 
	max-width: 1200px; 
	margin: 0 auto; 
}
.section-heading {
	 font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; 
	 font-size: clamp(2.2rem,4vw,3.2rem); 
	 font-weight: 800; 
	 line-height: 1.1; 
	 letter-spacing: -.02em; 
	 margin-bottom: 24px; 
	}
.section-heading .underline-yellow { 
	position: relative; 
	display: inline-block; 
}
.section-heading .underline-yellow::after { 
	content: ''; 
	position: absolute; 
	bottom: 2px; 
	left: 0; 
	right: 0; height: 8px; 
	background: var(--yellow); 
	z-index: -1; 
	border-radius: 2px; 
}
.about-body { 
	font-size: .95rem;
	 line-height: 1.8; 
	 color: #444;
	 }
.about-body p + p {
	 margin-top: 14px; 
	}

.services-table { 
	width: 100%; 
	border-collapse: collapse; 
}
.services-table tr { 
	border-bottom: 1px solid rgba(0,0,0,.1); 
}
.services-table tr:first-child { 
	border-top: 1px solid rgba(0,0,0,.1); 
}
.services-table td { 
	padding: 14px 8px;
	font-size: .88rem;
	 color: #444; 
	}
.services-table td:first-child { 
	font-weight: 500; 
	color: var(--black); 
	width: 50%;
 }
.services-table .highlight {
	 color: var(--red); 
	 font-weight: 600; 
	}
.about-cta {
	 margin-top: 52px; 
	 font-family: 'Caveat', 'Comic Sans MS', cursive; 
	 font-size: 1.4rem; 
	 color: var(--black); 
	 display: flex; 
	 align-items: center;
	 gap: 10px; 
	 text-decoration: none; 
	}
.about-cta svg { 
	animation: arrow-wobble 2s ease-in-out infinite; 
}
.about-cta:hover { 
	color: var(--red);
 }

/* Projects */
#bento { 
	border-top: 1px solid rgba(0,0,0,.08); 
	padding: 100px 48px; 
	max-width: 1200px;
	margin: 0 auto; 
	}
.bento-header { 
	margin-bottom: 52px; 
}
.bento-header h2 {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: clamp(2rem,4vw,3rem); 
	font-weight: 800; 
	letter-spacing: -.02em; 
	margin-bottom: 10px; 
	position: relative; 
	display: inline-block; 
	}
.bento-header h2 .circle-underline { 
	position: absolute; 
	bottom: -6px; 
	left: 0; 
	right: 0; 
	height: 14px; 
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14'%3E%3Cpath d='M2 10 Q50 2 100 8 Q150 14 198 6' stroke='%23f5c842' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
 }
.bento-header p:not(.section-label):not(.bento-case-study) { 
	font-size: .95rem; 
	color: #555;
	max-width: 480px;
	margin-top: 18px; 
}
.bento-case-study {
  margin-top: 14px;
  font-family: 'Caveat', 'Comic Sans MS', cursive;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--red);
  line-height: 1.3;
}

/*project grid*/
.proj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.proj-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  display: block;
  aspect-ratio: 4 / 3; 
}
.proj-item:hover {
  transform: scale(1.025) translateY(-4px);
  box-shadow: 0 32px 72px rgba(0,0,0,.18);
}

/* number badge — top-left */
.proj-index {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 2;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: .72rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}

/* image */
.proj-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.proj-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .6s cubic-bezier(.25,1,.5,1);
}
.proj-item:hover .proj-img-wrap img {
  transform: scale(1.07);
}

/* gradient overlay — bottom-heavy */
.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.04) 0%,
    rgba(0,0,0,.18) 45%,
    rgba(0,0,0,.78) 100%
  );
  transition: background .4s ease;
}
.proj-item:hover .proj-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.1) 0%,
    rgba(0,0,0,.3) 45%,
    rgba(0,0,0,.88) 100%
  );
}

/* arrow — top-right */
.proj-arrow {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--white);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
  transition: background .28s, border-color .28s, color .28s, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.proj-item:hover .proj-arrow {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: rotate(45deg) scale(1.1);
}

/* info block — bottom */
.proj-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 24px 26px;
  z-index: 2;
  transform: translateY(6px);
  transition: transform .38s cubic-bezier(.34,1.56,.64,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.proj-info--right {
  align-items: flex-end;
  text-align: right;
}
.proj-info--right .proj-tags-row {
  justify-content: flex-end;
}
.proj-info--right .proj-desc {
  margin-left: auto;
}
.proj-item:hover .proj-info {
  transform: translateY(0);
}

.proj-tags-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 0;
  order: 3;
}
.proj-tag {
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,.08);
}

.proj-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 6px;
  order: 1;
}

.proj-desc {
  font-size: .75rem;
  color: var(--yellow);
  line-height: 1.5;
  max-width: 340px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s .05s ease, transform .35s .05s ease;
  order: 2;
}
.proj-item:hover .proj-desc {
  opacity: 1;
  transform: translateY(0);
}

/* responsive */
@media (max-width: 768px) {
  .proj-grid {
    grid-template-columns: 1fr;
  }
  .proj-item {
    aspect-ratio: 3 / 2;
  }
  .proj-desc {
    opacity: 1;
    transform: none;
  }
  .proj-info--right {
    align-items: flex-start;
    text-align: left;
  }
  .proj-info--right .proj-tags-row {
    justify-content: flex-start;
  }
  .proj-info--right .proj-desc {
    margin-left: 0;
  }
}

/* Skills */
#skills { 
	border-top: 1px solid rgba(0,0,0,.08); 
	padding: 100px 48px; 
	max-width: 1200px;
	 margin: 0 auto; 
	}
.skills-grid { 
	display: grid; 
	grid-template-columns: 1fr 1fr; 
	gap: 60px; 
	margin-top: 52px; 
}
.skills-col-title { 
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: 1.6rem; 
	font-style: italic;
	margin-bottom: 28px;
	display: flex; 
	align-items: center; 
	gap: 10px;
	 }
.skills-col-title svg { 
	animation: arrow-wobble 2s ease-in-out infinite; 
}
.skill-row { 
	display: flex; 
	align-items: center; 
	justify-content: space-between;
	 padding: 12px 0; 
	 border-bottom: 1px solid rgba(0,0,0,.08); 
	 font-size: .88rem;
	 }
.skill-row:first-of-type { 
	border-top: 1px solid rgba(0,0,0,.08); 
}
.skill-name { 
	font-weight: 500; 
}
.skill-bar { 
	width: 120px; 
	height: 4px; 
	background: var(--light);
	border-radius: 2px; 
	overflow: hidden; 
	}
.skill-fill { 
	height: 100%; 
	background: var(--red);
	border-radius: 2px; 
	transform: scaleX(0); 
	transform-origin: left;
	transition: transform 1s ease;
	 }
.design-tools-header { 
	margin-top: 32px;
	display: inline-block; 
	font-family: 'Caveat', 'Comic Sans MS', cursive; 
	font-size: 1.1rem; 
	border: 2px solid var(--yellow); 
	padding: 8px 20px; 
	border-radius: 4px; 
	color: var(--black); 
	font-weight: 500; 
	}
/* Services */
#services { 
	border-top: 1px solid rgba(0,0,0,.08); 
	padding: 100px 48px; 
	max-width: 1200px;
	margin: 0 auto; 
}
.services-header { 
	display: grid; 
	grid-template-columns: 1fr 1fr; 
	gap: 60px; 
	align-items: end;
	margin-bottom: 64px; 
}
.services-header-left .underline-yellow{
	position: relative; 
	display: inline-block; 
}
.services-header-left .underline-yellow::after { 
	content: ''; 
	position: absolute; 
	bottom: 2px; 
	left: 0; 
	right: 0; height: 8px; 
	background: var(--yellow); 
	z-index: -1; 
	border-radius: 2px; 
}
.services-header-left h2 {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: clamp(2rem,4vw,3rem); 
	font-weight: 800; 
	letter-spacing: -.02em; 
	margin-bottom: 10px; 
	position: relative; 
	display: inline-block; 
	}
.services-header-right { 
	font-size: .95rem; 
	line-height: 1.78; 
	color: #555;
	border-left: 2px solid #f5c842; 
	padding-left: 16px; 
	}
.services-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 2px; background: rgba(0,0,0,.08); 
	border-radius: 12px;
	overflow: hidden;
	 }
.srv-card { 
	background: #faf9f6; 
	padding: 36px 28px 32px; 
	display: flex; 
	flex-direction: column; 
	gap: 18px; 
	transition: background .25s; 
}
.srv-card:hover { 
	background: #f0ede8; 
}
.srv-card:hover .srv-num { 
	color: var(--black); 
}
.srv-card:hover .srv-icon-wrap { 
	background: var(--red);
 }
.srv-card:hover .srv-icon-wrap svg { 
	stroke: var(--yellow); 
}
.srv-num { 
	font-family: 'Playfair Display', Georgia, serif; 
	font-size: .72rem; 
	letter-spacing: .14em; 
	text-transform: uppercase; 
	color: rgba(0,0,0,.18); 
	font-weight: 700; 
	transition: color .25s; 
}
.srv-icon-wrap { 
	width: 48px; 
	height: 48px; 
	border-radius: 10px; 
	background: #f0ede8; 
	display: flex;
	 align-items: center; 
	 justify-content: center; 
	 transition: background .25s; 
	}
.srv-icon-wrap svg { 
	stroke: #0d0d0d; 
	fill: none; 
	stroke-width: 1.8; 
	stroke-linecap: round; 
	stroke-linejoin: round; 
	transition: stroke .25s;
 }
.srv-title { 
	font-family: 'Playfair Display', Georgia, serif; 
	font-size: 1.3rem; 
	font-weight: 700; 
	line-height: 1.15; 
	letter-spacing: -.015em; 
}
.srv-desc { 
	font-size: .82rem; 
	line-height: 1.65; 
	color: #555;
	flex: 1; 
}
.srv-tags { 
	display: flex;
	flex-wrap: wrap;
	gap: 10px; 
	margin-top: auto; 
	padding-top: 8px; 
	}
.srv-tag { 
	padding: 7px 17px;
	border: 1px solid var(--black); 
	font-size: .7rem;
	letter-spacing: .12em; 
	text-transform: uppercase; 
	color: var(--gray); 
	border-radius: 6px;
	transition: all .3s; 
	font-family: 'Caveat', 'Comic Sans MS', cursive; 
	}
.srv-tag:hover { 
	background-color: var(--yellow); 
	border-color: var(--black);
	color: var(--black);
}
.services-cta-row { 
	margin-top: 52px; 
	display: flex; 
	align-items: center; 
	gap: 28px;
 }
.services-cta-note { 
	margin-top: 20px; 
	font-family: 'Caveat', 'Comic Sans MS', cursive; 
	font-size: 1.4rem; 
	color: var(--black); 
	display: flex; align-items: center;
	gap: 10px; 
	text-decoration: none; 
	transition: color .2s;
}
.services-cta-note:hover { 
	color: var(--red); 
}
@media (max-width: 768px) {
  #services { 
	padding: 60px 20px; 
}
  .services-header { 
	grid-template-columns: 1fr;
	 gap: 24px; 
	 margin-bottom: 36px;
	 }
  .services-grid { 
	grid-template-columns: 1fr 1fr; 
}
  .services-cta-row { 
	flex-direction: column;
	 align-items: flex-start;
	  gap: 16px; 
	}
}
@media (max-width: 480px) {
  .services-grid { 
	grid-template-columns: 1fr;
 }
}

/* Certificates */
#certs { 
	border-top: 1px solid rgba(0,0,0,.08);
	 padding: 100px 48px; 
	 max-width: 1200px; 
	 margin: 0 auto; 
	}
.certs-grid { 
	display: grid; 
	grid-template-columns: repeat(4,1fr); 
	gap: 16px; 
	margin-top: 52px; 
}
.cert-card { 
	background: var(--white); 
	border: 1.5px solid rgba(0,0,0,.1); 
	border-radius: 10px; 
	padding: 20px; 
	text-align: center; 
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s; 
	cursor: default; 
}
.cert-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0,0,0,.1);
	border-color: var(--yellow); 
	}
.cert-logo { 
	font-weight: 700; 
	font-size: 1rem; 
	margin-bottom: 8px; 
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; 
}
.cert-logo.google { 
	color: #4285F4; 
}
.cert-logo.meta {
	 color: #1877F2; 
	}
.cert-logo.ibm {
	 color: #054ADA; 
	}
.cert-title { 
	font-size: .72rem; color: #666;
	 line-height: 1.4; 
	}
.cert-badge {
	 margin-top: 10px;
	  font-size: .65rem;
	   background: var(--light); 
	   padding: 3px 8px; 
	   border-radius: 2px; 
	   display: inline-block; 
	   letter-spacing: .06em; 
	   text-transform: uppercase;
	 }

/* contact */
#contact { 
	border-top: 1px solid rgba(0,0,0,.08); 
	padding: 120px 48px;
	max-width: 1200px; 
	margin: 0 auto;
	text-align: center;
}

/* contact heading wrap + decorative elements */
.contact-heading-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}
.contact-deco {
  position: absolute;
  pointer-events: none;
}
.contact-deco-star1 {
  top: -18px;
  left: -44px;
  animation: ch-star-spin 9s linear infinite;
  opacity: 0;
  transition: opacity .6s ease 1.2s;
}
.contact-deco-star2 {
  bottom: 8px;
  right: -36px;
  animation: ch-star-spin 7s linear infinite reverse;
  opacity: 0;
  transition: opacity .6s ease 1.5s;
}
@keyframes ch-star-spin { to { transform: rotate(360deg); } }

.contact-heading {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(3.5rem,10vw,8rem);
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--red);
  line-height: .95;
  display: block;
  cursor: default;
}

.ch-word { display: inline-block; white-space: nowrap; }
.ch-space { display: inline-block; width: .3em; }
.ch-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) rotate(8deg) scale(.8);
  transition: opacity .55s ease, transform .65s cubic-bezier(.34,1.56,.64,1), color .2s ease;
  will-change: transform, opacity;
}
.contact-heading.ch-visible .ch-letter {
  opacity: 1;
  transform: translateY(0) rotate(0deg) scale(1);
}
.contact-heading-wrap:has(.ch-visible) .contact-deco-star1,
.contact-heading-wrap:has(.ch-visible) .contact-deco-star2 {
  opacity: 1;
}

.contact-sub {
	font-size: 1rem; 
	color: #666; 
	margin-top: 10px;
	margin-bottom: 52px;
	max-width: 440px;
	margin-left: auto;
	margin-right: auto;
}
.btn-calendly { 
	display: inline-block; 
	background: var(--black); 
	color: var(--white);
	padding: 14px 32px; 
	font-size: .85rem; 
	letter-spacing: .06em; 
	text-transform: uppercase;
	text-decoration: none; 
	font-weight: 500; 
	border-radius: 2px; 
	margin-bottom: 40px; 
	transition: background .25s, transform .2s; 
}
.btn-calendly:hover { 
	background: var(--red); 
	transform: translateY(-2px); 
}
.contact-links { 
	display: flex; 
	gap: 32px; 
	justify-content: center; 
	flex-wrap: wrap; 
}
.contact-link {
	 display: flex; 
	 align-items: center; 
	 gap: 10px; 
	 font-size: 1rem; 
	 text-decoration: none; 
	 color: var(--black); 
	 font-weight: 500; 
	 transition: color .2s; 
	 position: relative; 
	}
.contact-link::before { 
	content: '✓'; 
	color: var(--red); 
	font-family: 'Caveat', 'Comic Sans MS', cursive; 
	font-size: 1.3rem; 
}
.contact-link:hover { 
	color: var(--red); 
}
.contact-link::after { 
	content: ''; 
	position: absolute; 
	bottom: -2px; 
	left: 0; 
	right: 0; 
	height: 1px;
	background: currentColor; 
	transform: scaleX(0); 
	transform-origin: right;
	transition: transform .3s ease; 
	}
.contact-link:hover::after { 
	transform: scaleX(1); 
	transform-origin: left; 
}

/* Footer */
footer { 
	border-top: 1px solid rgba(0,0,0,.08); 
	padding: 28px 48px;
	max-width: 1200px;
	margin: 0 auto; 
	display: flex; 
	align-items: center;
	justify-content: space-between;
	font-size: .75rem; 
	color: var(--gray); 
	}

/* Responsive */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  nav ul { display: none; }
  .hamburger { display: flex; }

  .cursor, .cursor-ring { display: none; }
  body { cursor: default; }

  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 110px 20px 60px;
    gap: 40px;
  }

  .hero-right { order: -1; }

  .hero-photo-wrap {
    width: 240px;
    height: 300px;
  }

  #about {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }

  #work-strip, #bento, #skills, #certs, #contact {
    padding-left: 20px;
    padding-right: 20px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  footer { padding: 20px; }

  .hero-name {
    font-size: clamp(2.6rem, 9vw, 3rem);
    white-space: nowrap;
  }

  .hero-name .letter {
    transition: transform .25s cubic-bezier(.34,1.56,.64,1), color .2s ease;
  }

  .bento-header h2 .circle-underline {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14'%3E%3Cpath d='M2 10 Q50 2 100 8 Q150 14 198 6' stroke='%23f5c842' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  }
}
